diff --git a/src/ResourceManager/Dns/Commands.Dns.Test/ScenarioTests/ZoneTests.cs b/src/ResourceManager/Dns/Commands.Dns.Test/ScenarioTests/ZoneTests.cs index 8692b31a2f12..5e954a9dab92 100644 --- a/src/ResourceManager/Dns/Commands.Dns.Test/ScenarioTests/ZoneTests.cs +++ b/src/ResourceManager/Dns/Commands.Dns.Test/ScenarioTests/ZoneTests.cs @@ -32,35 +32,30 @@ public void TestZoneCrud() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestPrivateZoneCrud() { DnsTestsBase.NewInstance.RunPowerShellTest("Test-PrivateZoneCrud"); } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestPrivateZoneCrudRegistrationVirtualNetwork() { DnsTestsBase.NewInstance.RunPowerShellTest("Test-PrivateZoneCrudRegistrationVnet"); } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestPrivateZoneCrudResolutionVirtualNetwork() { DnsTestsBase.NewInstance.RunPowerShellTest("Test-PrivateZoneCrudResolutionVnet"); } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestPrivateZoneCrudByVirtualNetworkIds() { DnsTestsBase.NewInstance.RunPowerShellTest("Test-PrivateZoneCrudByVirtualNetworkIds"); } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestPrivateZoneCrudByVirtualNetworkObjects() { DnsTestsBase.NewInstance.RunPowerShellTest("Test-PrivateZoneCrudByVirtualNetworkObjects"); diff --git a/src/ResourceManager/Network/AzureRM.Network.Netcore.psd1 b/src/ResourceManager/Network/AzureRM.Network.Netcore.psd1 index d8a4d45e3e34..bb551fb89551 100644 --- a/src/ResourceManager/Network/AzureRM.Network.Netcore.psd1 +++ b/src/ResourceManager/Network/AzureRM.Network.Netcore.psd1 @@ -241,6 +241,11 @@ CmdletsToExport = 'Add-AzureRmApplicationGatewayAuthenticationCertificate', 'Reset-AzureRmVirtualNetworkGateway', 'Set-AzureRmVirtualNetworkGatewayDefaultSite', 'Remove-AzureRmVirtualNetworkGatewayDefaultSite', + 'New-AzureRmVpnClientIpsecPolicy', + 'New-AzureRmVpnClientIpsecParameter', + 'Set-AzureRmVpnClientIpsecParameter', + 'Get-AzureRmVpnClientIpsecParameter' + 'Remove-AzureRmVpnClientIpsecParameter', 'Remove-AzureRmLocalNetworkGateway', 'Get-AzureRmLocalNetworkGateway', 'New-AzureRmLocalNetworkGateway', 'Set-AzureRmLocalNetworkGateway', diff --git a/src/ResourceManager/Network/AzureRM.Network.psd1 b/src/ResourceManager/Network/AzureRM.Network.psd1 index cd96ba0f6770..e128ef38eb67 100644 --- a/src/ResourceManager/Network/AzureRM.Network.psd1 +++ b/src/ResourceManager/Network/AzureRM.Network.psd1 @@ -227,6 +227,11 @@ CmdletsToExport = 'Add-AzureRmApplicationGatewayAuthenticationCertificate', 'Add-AzureRmVpnClientRevokedCertificate', 'New-AzureRmVpnClientRootCertificate', 'New-AzureRmVpnClientRevokedCertificate', + 'New-AzureRmVpnClientIpsecPolicy', + 'New-AzureRmVpnClientIpsecParameter', + 'Set-AzureRmVpnClientIpsecParameter', + 'Get-AzureRmVpnClientIpsecParameter', + 'Remove-AzureRmVpnClientIpsecParameter', 'Resize-AzureRmVirtualNetworkGateway', 'Remove-AzureRmVpnClientRevokedCertificate', 'Remove-AzureRmVpnClientRootCertificate', diff --git a/src/ResourceManager/Network/ChangeLog.md b/src/ResourceManager/Network/ChangeLog.md index 748427c958ed..f6f28b1f00bc 100644 --- a/src/ResourceManager/Network/ChangeLog.md +++ b/src/ResourceManager/Network/ChangeLog.md @@ -22,6 +22,16 @@ ## Version 6.1.0 * Bump up Network SDK version from 18.0.0-preview to 19.0.0-preview +* Updated below commands for feature: Point to Site IPsec custom policy set/remove on Brooklyn Gateway. + - Updated New-AzureRmVirtualNetworkGateway: Added optional parameter -VpnClientIpsecPolicy [Pass the value from output of newly added command:- New-AzureRmVpnClientIpsecPolicy] + - Updated Set-AzureRmVirtualNetworkGateway: Added optional parameter -VpnClientIPsecParameter [Pass the value from output of newly added command:- New-AzureRmVpnClientIpsecPolicy] +* Added new commands for feature: Point to Site IPsec custom policy set/remove on Brooklyn Gateway. + - New-AzureRmVpnClientIpsecPolicy : Added for passing output from this command to existing commands: New-AzureRmVirtualNetworkGateway & Set-AzureRmVirtualNetworkGateway to set Vpn IPSec policy + - New-AzureRmVpnClientIpsecParameter + - Set-AzureRmVpnClientIpsecParameter + - Get-AzureRmVpnClientIpsecParameter + - Remove-AzureRmVpnClientIpsecParameter +* Added a warning note for existing command: Set-AzureRmVirtualNetworkGatewayVpnClientConfig to let users know of its plan of removal in next release. * Added cmdlet to create protocol configuration - New-AzureRmNetworkWatcherProtocolConfiguration * Added cmdlet to add a new circuit connection to an existing express route circuit. diff --git a/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj b/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj index 6ce7c07d80a6..0e47fa53da01 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj +++ b/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj @@ -558,6 +558,9 @@ PreserveNewest + + PreserveNewest + PreserveNewest @@ -618,6 +621,9 @@ PreserveNewest + + PreserveNewest + PreserveNewest diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayConnectionTests.cs b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayConnectionTests.cs index 44c2201188c0..18f4b7da36d4 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayConnectionTests.cs +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayConnectionTests.cs @@ -26,7 +26,7 @@ public VirtualNetworkGatewayConnectionTests(ITestOutputHelper output) XunitTracingInterceptor.AddToContext(new XunitTracingInterceptor(output)); } - [Fact(Skip = "Rerecord tests")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.Owner, Category.brooklynft)] public void TestVirtualNetworkGatewayConnectionCRUD() @@ -34,7 +34,7 @@ public void TestVirtualNetworkGatewayConnectionCRUD() NetworkResourcesController.NewInstance.RunPsTest("Test-VirtualNetworkGatewayConnectionCRUD"); } - [Fact(Skip = "Rerecord tests")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.Owner, Category.brooklynft)] public void TestVirtualNetworkGatewayConnectionSharedKeyCRUD() @@ -50,7 +50,7 @@ public void TestVirtualNetworkeExpressRouteGatewayConnectionCRUD() NetworkResourcesController.NewInstance.RunPsTest("Test-VirtualNetworkeExpressRouteGatewayConnectionCRUD"); } - [Fact(Skip = "Rerecord tests")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.Owner, Category.brooklynft)] public void TestVirtualNetworkGatewayConnectionWithBgpCRUD() diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayTests.cs b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayTests.cs index 4d197742c921..3c47d7a867aa 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayTests.cs +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayTests.cs @@ -27,7 +27,7 @@ public VirtualNetworkGatewayTests(ITestOutputHelper output) XunitTracingInterceptor.AddToContext(new XunitTracingInterceptor(output)); } - [Fact(Skip = "NRP code to be there to test this scenario, skipping it until NRP is ready")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.Owner, Category.brooklynft)] public void TestVirtualNetworkExpressRouteGatewayCRUD() @@ -43,7 +43,7 @@ public void TestVirtualNetworkGatewayCRUD() NetworkResourcesController.NewInstance.RunPsTest("Test-VirtualNetworkGatewayCRUD"); } - [Fact(Skip = "Need to record afterwards, failing due to product issue.")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.Owner, Category.brooklynft)] public void TestVirtualNetworkGatewayP2SAndSKU() @@ -65,15 +65,14 @@ public void VirtualNetworkGatewayActiveActiveFeatureTest() NetworkResourcesController.NewInstance.RunPsTest("Test-VirtualNetworkGatewayActiveActiveFeatureOperations"); } - [Fact(Skip = "Need service team to re-record test after changes to the ClientRuntime.")] - [Trait("Re-record", "ClientRuntime changes")] + [Fact] [Trait(Category.Owner, Category.brooklynft)] public void VirtualNetworkGatewayRouteApiTest() { NetworkResourcesController.NewInstance.RunPsTest("Test-VirtualNetworkGatewayBgpRouteApi"); } - [Fact(Skip ="Recorded with an older version of network, rerecord #4631")] + [Fact] [Trait(Category.Owner, Category.brooklynft)] public void TestVirtualNetworkGatewayP2SVpnProfile() { @@ -88,5 +87,12 @@ public void VirtualNetworkGatewayIkeV2Test() { NetworkResourcesController.NewInstance.RunPsTest("Test-VirtualNetworkGatewayIkeV2"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void VirtualNetworkGatewayVpnCustomIpsecPolicySetTest() + { + NetworkResourcesController.NewInstance.RunPsTest("Test-VirtualNetworkGatewayVpnCustomIpsecPolicySet"); + } } } diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayTests.ps1 b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayTests.ps1 index ffafd74ebdb3..66e4a9bd0da6 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayTests.ps1 +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayTests.ps1 @@ -300,7 +300,7 @@ function Test-VirtualNetworkGatewayP2SAndSKU try { # Create the resource group - $resourceGroup = New-AzureRmResourceGroup -Name $rgname -Location $rglocation -Tags @{ testtag = "testval" } + $resourceGroup = New-AzureRmResourceGroup -Name $rgname -Location $rglocation -Tags @{ testtag = "testval" } # Create & Get LocalNetworkGateway $actual = New-AzureRmLocalNetworkGateway -ResourceGroupName $rgname -name $rname -location $location -AddressPrefix 192.168.0.0/16 -GatewayIpAddress 192.168.4.5 @@ -309,7 +309,6 @@ function Test-VirtualNetworkGatewayP2SAndSKU Assert-AreEqual $localnetGateway.Name $actual.Name Assert-AreEqual "192.168.4.5" $localnetGateway.GatewayIpAddress Assert-AreEqual "192.168.0.0/16" $localnetGateway.LocalNetworkAddressSpace.AddressPrefixes[0] - $localnetGateway.Location = $location # Create the Virtual Network $subnet = New-AzureRmVirtualNetworkSubnetConfig -Name "GatewaySubnet" -AddressPrefix 10.0.0.0/24 @@ -331,17 +330,17 @@ function Test-VirtualNetworkGatewayP2SAndSKU $rootCert = New-AzureRmVpnClientRootCertificate -Name $clientRootCertName -PublicCertData $samplePublicCertData $clientCert = New-AzureRmVpnClientRevokedCertificate -Name $sampleClientCertName -Thumbprint $sampleClinentCertThumbprint - $actual = New-AzureRmVirtualNetworkGateway -ResourceGroupName $rgname -name $rname -location $location -IpConfigurations $vnetIpConfig -GatewayType Vpn -VpnType RouteBased -EnableBgp $false -GatewaySku Basic -GatewayDefaultSite $localnetGateway -VpnClientAddressPool 201.169.0.0/16 -VpnClientRootCertificates $rootCert -VpnClientRevokedCertificates $clientCert + $actual = New-AzureRmVirtualNetworkGateway -GatewayDefaultSite $localnetGateway -ResourceGroupName $rgname -Name $rname -Location $location -IpConfigurations $vnetIpConfig -GatewayType Vpn -VpnType RouteBased -EnableBgp $false -GatewaySku VpnGw1 -VpnClientAddressPool "201.169.0.0/16" -VpnClientProtocol SSTP -VpnClientRootCertificates $rootCert -VpnClientRevokedCertificates $clientCert $expected = Get-AzureRmVirtualNetworkGateway -ResourceGroupName $rgname -name $rname Assert-AreEqual $expected.ResourceGroupName $actual.ResourceGroupName Assert-AreEqual $expected.Name $actual.Name Assert-AreEqual "Vpn" $expected.GatewayType Assert-AreEqual "RouteBased" $expected.VpnType - Assert-AreEqual "Basic" $expected.Sku.Tier + Assert-AreEqual "VpnGw1" $expected.Sku.Tier Assert-AreEqual $localnetGateway.Id $expected.GatewayDefaultSite.Id - Assert-AreEqual $localnetGateway.LocalNetworkAddressSpace $expected.VpnClientConfiguration.VpnClientAddressPool - Assert-AreEqual $clientRootCertName $expected.VpnClientConfiguration.VpnClientRevokedCertificates[0].name - Assert-AreEqual $sampleClientCertName $expected.VpnClientConfiguration.VpnClientRootCertificates[0].name + Assert-AreEqual "201.169.0.0/16" $expected.VpnClientConfiguration.VpnClientAddressPool.AddressPrefixes[0] + Assert-AreEqual $sampleClientCertName $expected.VpnClientConfiguration.VpnClientRevokedCertificates[0].name + Assert-AreEqual $clientRootCertName $expected.VpnClientConfiguration.VpnClientRootCertificates[0].name # Remove default site set for force tunneling $actual = Remove-AzureRmVirtualNetworkGatewayDefaultSite -VirtualNetworkGateway $expected @@ -353,17 +352,17 @@ function Test-VirtualNetworkGatewayP2SAndSKU $expected = Get-AzureRmVirtualNetworkGateway -ResourceGroupName $rgname -name $rname Assert-AreEqual $localnetGateway.Id $expected.GatewayDefaultSite.Id - # Resize the virtual network gateway from 'Basic' to 'Standard' SKU - $actual = Resize-AzureRmVirtualNetworkGateway -VirtualNetworkGateway $expected -GatewaySku "Standard" + # Resize the virtual network gateway from 'VpnGw1' to 'VpnGw2' SKU + $actual = Resize-AzureRmVirtualNetworkGateway -VirtualNetworkGateway $expected -GatewaySku VpnGw2 Assert-AreEqual "Succeeded" $actual.ProvisioningState $expected = Get-AzureRmVirtualNetworkGateway -ResourceGroupName $rgname -name $rname - Assert-AreEqual "Standard" $expected.Sku.Tier + Assert-AreEqual "VpnGw2" $expected.Sku.Tier # Update P2S VPNClient Address Pool Set-AzureRmVirtualNetworkGatewayVpnClientConfig -VirtualNetworkGateway $expected -VpnClientAddressPool 200.168.0.0/16 $expected = Get-AzureRmVirtualNetworkGateway -ResourceGroupName $rgname -name $rname - Assert-AreEqual "200.168.0.0/16" $expected.VpnClientConfiguration.VpnClientAddressPool.AddressPrefixes - + Assert-AreEqual "200.168.0.0/16" $expected.VpnClientConfiguration.VpnClientAddressPool.AddressPrefixes[0] + # Get, list client Root certificates $rootCert = Get-AzureRmVpnClientRootCertificate -VpnClientRootCertificateName $clientRootCertName -VirtualNetworkGatewayName $expected.Name -ResourceGroupName $expected.ResourceGroupName Assert-AreEqual $clientRootCertName $rootCert.Name @@ -383,7 +382,7 @@ function Test-VirtualNetworkGatewayP2SAndSKU # Add client Root certificate $rootCerts = Add-AzureRmVpnClientRootCertificate -VpnClientRootCertificateName $clientRootCertName -VirtualNetworkGatewayName $expected.Name -ResourceGroupName $expected.ResourceGroupName -PublicCertData $samplePublicCertData - Assert-AreEqual 1 @(rootCerts).Count + Assert-AreEqual 1 @($rootCerts).Count # Get, list Vpn client revoked certificates $revokedCerts = Get-AzureRmVpnClientRevokedCertificate -VirtualNetworkGatewayName $expected.Name -ResourceGroupName $expected.ResourceGroupName @@ -619,3 +618,118 @@ function Test-VirtualNetworkGatewayIkeV2 Clean-ResourceGroup $rgname } } + +<# +.SYNOPSIS +Virtual network gateway tests +#> +function Test-VirtualNetworkGatewayVpnCustomIpsecPolicySet +{ +param + ( + $basedir = ".\" + ) + + # Setup + $rgname = Get-ResourceName + $rname = Get-ResourceName + $domainNameLabel = Get-ResourceName + $vnetName = Get-ResourceName + $publicIpName = Get-ResourceName + $vnetGatewayConfigName = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement + $resourceTypeParent = "Microsoft.Network/virtualNetworkGateways" + $location = Get-ProviderLocation $resourceTypeParent + $vpnclientAuthMethod = "EAPTLS" + + try + { + # Create the resource group + $resourceGroup = New-AzureRmResourceGroup -Name $rgname -Location $rglocation -Tags @{ testtag = "testval" } + + # create the client root cert + $clientRootCertName = "BrkLiteTestMSFTRootCA.cer" + #[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + $samplePublicCertData = "MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD"; + $rootCert = New-AzureRmVpnClientRootCertificate -Name $clientRootCertName -PublicCertData $samplePublicCertData + + # Create the Virtual Network + $subnet = New-AzureRmVirtualNetworkSubnetConfig -Name "GatewaySubnet" -AddressPrefix 10.0.0.0/24 + $vnet = New-AzureRmvirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $subnet + $vnet = Get-AzureRmvirtualNetwork -Name $vnetName -ResourceGroupName $rgname + $subnet = Get-AzureRmVirtualNetworkSubnetConfig -Name "GatewaySubnet" -VirtualNetwork $vnet + + # Create the IP config + $publicip = New-AzureRmPublicIpAddress -ResourceGroupName $rgname -name $publicIpName -location $location -AllocationMethod Dynamic -DomainNameLabel $domainNameLabel + $vnetIpConfig = New-AzureRmVirtualNetworkGatewayIpConfig -Name $vnetGatewayConfigName -PublicIpAddress $publicip -Subnet $subnet + + # Create IkeV2 virtualnetworkgateway with custom Ipsec policy specified + $vpnclientipsecpolicy1 = New-AzureRmVpnClientIpsecPolicy -IpsecEncryption AES256 -IpsecIntegrity SHA256 -SALifeTime 86471 -SADataSize 429496 -IkeEncryption AES256 -IkeIntegrity SHA384 -DhGroup DHGroup2 -PfsGroup PFS2 + $actual = New-AzureRmVirtualNetworkGateway -ResourceGroupName $rgname -name $rname -location $location -IpConfigurations $vnetIpConfig -GatewayType Vpn -VpnType RouteBased -EnableBgp $false -GatewaySku VpnGw1 -VpnClientProtocol IkeV2 -VpnClientAddressPool 201.169.0.0/16 -VpnClientRootCertificates $rootCert -VpnClientIpsecPolicy $vpnclientipsecpolicy1 + + # Get virtualnetworkgateway + $expected = Get-AzureRmVirtualNetworkGateway -ResourceGroupName $rgname -name $rname + $protocols = $expected.VpnClientConfiguration.VpnClientProtocols + Assert-AreEqual 1 @($protocols).Count + Assert-AreEqual "IkeV2" $protocols[0] + Assert-AreEqual 1 @($expected.VpnClientConfiguration.VpnClientIpsecPolicies).Count + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].SALifeTimeSeconds $actual.VpnClientConfiguration.VpnClientIpsecPolicies[0].SALifeTimeSeconds + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].SADataSizeKilobytes $actual.VpnClientConfiguration.VpnClientIpsecPolicies[0].SADataSizeKilobytes + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].IpsecEncryption $actual.VpnClientConfiguration.VpnClientIpsecPolicies[0].IpsecEncryption + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].IpsecIntegrity $actual.VpnClientConfiguration.VpnClientIpsecPolicies[0].IpsecIntegrity + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].IkeEncryption $actual.VpnClientConfiguration.VpnClientIpsecPolicies[0].IkeEncryption + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].IkeIntegrity $actual.VpnClientConfiguration.VpnClientIpsecPolicies[0].IkeIntegrity + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].DhGroup $actual.VpnClientConfiguration.VpnClientIpsecPolicies[0].DhGroup + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].PfsGroup $actual.VpnClientConfiguration.VpnClientIpsecPolicies[0].PfsGroup + + # Update P2S VPNClient Configuration :- custom Ipsec policy + $vpnclientipsecpolicy2 = New-AzureRmVpnClientIpsecPolicy -IpsecEncryption AES256 -IpsecIntegrity SHA256 -SALifeTime 86472 -SADataSize 429497 -IkeEncryption AES256 -IkeIntegrity SHA256 -DhGroup DHGroup2 -PfsGroup None + $gateway = Set-AzureRmVirtualNetworkGateway -VirtualNetworkGateway $expected -VpnClientIpsecPolicy $vpnclientipsecpolicy2 + Assert-AreEqual $vpnclientipsecpolicy2.SALifeTimeSeconds $gateway.VpnClientConfiguration.VpnClientIpsecPolicies[0].SALifeTimeSeconds + Assert-AreEqual $vpnclientipsecpolicy2.SADataSizeKilobytes $gateway.VpnClientConfiguration.VpnClientIpsecPolicies[0].SADataSizeKilobytes + Assert-AreEqual $vpnclientipsecpolicy2.IpsecEncryption $gateway.VpnClientConfiguration.VpnClientIpsecPolicies[0].IpsecEncryption + Assert-AreEqual $vpnclientipsecpolicy2.IpsecIntegrity $gateway.VpnClientConfiguration.VpnClientIpsecPolicies[0].IpsecIntegrity + Assert-AreEqual $vpnclientipsecpolicy2.IkeEncryption $gateway.VpnClientConfiguration.VpnClientIpsecPolicies[0].IkeEncryption + Assert-AreEqual $vpnclientipsecpolicy2.IkeIntegrity $gateway.VpnClientConfiguration.VpnClientIpsecPolicies[0].IkeIntegrity + Assert-AreEqual $vpnclientipsecpolicy2.DhGroup $gateway.VpnClientConfiguration.VpnClientIpsecPolicies[0].DhGroup + Assert-AreEqual $vpnclientipsecpolicy2.PfsGroup $gateway.VpnClientConfiguration.VpnClientIpsecPolicies[0].PfsGroup + + # Update P2S VPNClient Configuration :- custom Ipsec policy by using new API:- Set-AzureRmVpnClientIpsecParameter + $vpnclientipsecparams1 = New-AzureRmVpnClientIpsecParameter -IpsecEncryption AES256 -IpsecIntegrity SHA256 -SALifeTime 86473 -SADataSize 429498 -IkeEncryption AES256 -IkeIntegrity SHA384 -DhGroup DHGroup2 -PfsGroup PFS2 + $setvpnIpsecParams = Set-AzureRmVpnClientIpsecParameter -VirtualNetworkGatewayName $rname -ResourceGroupName $rgname -VpnClientIPsecParameter $vpnclientipsecparams1 + + # Get P2S VPNClient Configuration :- set custom Ipsec policy using new API:- Get-AzureRmVpnClientIpsecParameter + $vpnIpsecParams = Get-AzureRmVpnClientIpsecParameter -Name $rname -ResourceGroupName $rgname + Assert-AreEqual $vpnclientipsecparams1.SALifeTimeSeconds $vpnIpsecParams.SALifeTimeSeconds + Assert-AreEqual $vpnclientipsecparams1.SADataSizeKilobytes $vpnIpsecParams.SADataSizeKilobytes + Assert-AreEqual $vpnclientipsecparams1.IpsecEncryption $vpnIpsecParams.IpsecEncryption + Assert-AreEqual $vpnclientipsecparams1.IpsecIntegrity $vpnIpsecParams.IpsecIntegrity + Assert-AreEqual $vpnclientipsecparams1.IkeEncryption $vpnIpsecParams.IkeEncryption + Assert-AreEqual $vpnclientipsecparams1.IkeIntegrity $vpnIpsecParams.IkeIntegrity + Assert-AreEqual $vpnclientipsecparams1.DhGroup $vpnIpsecParams.DhGroup + Assert-AreEqual $vpnclientipsecparams1.PfsGroup $vpnIpsecParams.PfsGroup + + $expected = Get-AzureRmVirtualNetworkGateway -ResourceGroupName $rgname -name $rname + Assert-AreEqual 1 @($expected.VpnClientConfiguration.VpnClientIpsecPolicies).Count + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].SALifeTimeSeconds $vpnIpsecParams.SALifeTimeSeconds + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].SADataSizeKilobytes $vpnIpsecParams.SADataSizeKilobytes + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].IpsecEncryption $vpnIpsecParams.IpsecEncryption + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].IpsecIntegrity $vpnIpsecParams.IpsecIntegrity + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].IkeEncryption $vpnIpsecParams.IkeEncryption + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].IkeIntegrity $vpnIpsecParams.IkeIntegrity + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].DhGroup $vpnIpsecParams.DhGroup + Assert-AreEqual $expected.VpnClientConfiguration.VpnClientIpsecPolicies[0].PfsGroup $vpnIpsecParams.PfsGroup + + # Remove custom Ipsec policy set from P2S VPNClient Configuration using new API:- Remove-AzureRmVpnClientIpsecParameter + $delete = Remove-AzureRmVpnClientIpsecParameter -ResourceGroupName $rgname -VirtualNetworkGatewayName $rname + Assert-AreEqual $True $delete + $expected = Get-AzureRmVirtualNetworkGateway -ResourceGroupName $rgname -name $rname + Assert-AreEqual 0 @($expected.VpnClientConfiguration.VpnClientIpsecPolicies).Count + + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionCRUD.json index f80fe55aa385..b45b485fdeee 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionCRUD.json +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionCRUD.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5908" + "24460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,142 +28,49 @@ "14999" ], "x-ms-request-id": [ - "4b047434-84f1-4d26-97ec-f33798f2277c" + "bc0ea98d-bc8c-417d-89ce-b857421ffecb" ], "x-ms-correlation-request-id": [ - "4b047434-84f1-4d26-97ec-f33798f2277c" + "bc0ea98d-bc8c-417d-89ce-b857421ffecb" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T011946Z:4b047434-84f1-4d26-97ec-f33798f2277c" + "WESTUS2:20180510T171948Z:bc0ea98d-bc8c-417d-89ce-b857421ffecb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 07 Dec 2015 01:19:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourcegroups/onesdk723?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlZ3JvdXBzL29uZXNkazcyMz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "101" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-request-id": [ - "e2a7aa69-fa18-4adf-91db-782b752a0bf7" - ], - "x-ms-correlation-request-id": [ - "e2a7aa69-fa18-4adf-91db-782b752a0bf7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151207T011947Z:e2a7aa69-fa18-4adf-91db-782b752a0bf7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 07 Dec 2015 01:19:46 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourcegroups/onesdk723?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlZ3JvdXBzL29uZXNkazcyMz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "fcc261de-1ee0-43cc-a80b-715e00d37b1b" - ], - "x-ms-correlation-request-id": [ - "fcc261de-1ee0-43cc-a80b-715e00d37b1b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151207T015239Z:fcc261de-1ee0-43cc-a80b-715e00d37b1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:52:38 GMT" + "Thu, 10 May 2018 17:19:47 GMT" ] }, - "StatusCode": 204 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourcegroups/onesdk723?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlZ3JvdXBzL29uZXNkazcyMz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps4447?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzNDQ0Nz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "74" + "29" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723\",\r\n \"name\": \"onesdk723\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447\",\r\n \"name\": \"ps4447\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "200" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -178,40 +85,52 @@ "1199" ], "x-ms-request-id": [ - "b0361714-90cf-4279-b0c0-2f3e85129f8d" + "3825a727-f6d5-4444-84d4-c845bb6697c2" ], "x-ms-correlation-request-id": [ - "b0361714-90cf-4279-b0c0-2f3e85129f8d" + "3825a727-f6d5-4444-84d4-c845bb6697c2" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T011948Z:b0361714-90cf-4279-b0c0-2f3e85129f8d" + "WESTUS2:20180510T171950Z:3825a727-f6d5-4444-84d4-c845bb6697c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:19:47 GMT" + "Thu, 10 May 2018 17:19:49 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjU1NT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c7e244e4-b07e-469b-bb01-6d144125926c" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps6555' under resource group 'ps4447' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -222,50 +141,50 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "b437f92d-b268-4ec2-863e-c4d65c8f18f6" + "08eb04f7-6b7d-4059-92a0-1e5fa7cb8561" ], "x-ms-correlation-request-id": [ - "b437f92d-b268-4ec2-863e-c4d65c8f18f6" + "08eb04f7-6b7d-4059-92a0-1e5fa7cb8561" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T011948Z:b437f92d-b268-4ec2-863e-c4d65c8f18f6" + "WESTUS2:20180510T171950Z:08eb04f7-6b7d-4059-92a0-1e5fa7cb8561" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:19:47 GMT" + "Thu, 10 May 2018 17:19:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL29uZXNkazM3OTg/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjU1NT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e47ecb16-befd-4108-be9d-f4f0a70efde1" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/onesdk3798' under resource group 'onesdk723' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6555\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555\",\r\n \"etag\": \"W/\\\"799c2882-e459-49b3-bd0a-be2d1708bbd1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"02bf08f0-849d-4592-9927-3bc1e0fbdc4b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"799c2882-e459-49b3-bd0a-be2d1708bbd1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "157" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,17 +195,8 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" - ], "x-ms-request-id": [ - "da44b45a-ec42-4fb3-9056-287ab61bb1f5" - ], - "x-ms-correlation-request-id": [ - "da44b45a-ec42-4fb3-9056-287ab61bb1f5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151207T011950Z:da44b45a-ec42-4fb3-9056-287ab61bb1f5" + "a9001666-4b62-432a-aadc-9ee63fc852b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,26 +204,54 @@ "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"799c2882-e459-49b3-bd0a-be2d1708bbd1\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "0b5282a0-b115-4ba1-bc23-92e25049ef2b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T172012Z:0b5282a0-b115-4ba1-bc23-92e25049ef2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Mon, 07 Dec 2015 01:19:49 GMT" + "Thu, 10 May 2018 17:20:12 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL29uZXNkazM3OTg/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjU1NT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c7099f59-fdf8-4cfc-847b-b66ffd708769" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3798\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798\",\r\n \"etag\": \"W/\\\"096d81cb-ed7f-4110-80ab-cbacb93231fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9cd8ca1-139e-4cdb-ab2a-b3bd0825b5bf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"096d81cb-ed7f-4110-80ab-cbacb93231fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6555\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555\",\r\n \"etag\": \"W/\\\"799c2882-e459-49b3-bd0a-be2d1708bbd1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"02bf08f0-849d-4592-9927-3bc1e0fbdc4b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"799c2882-e459-49b3-bd0a-be2d1708bbd1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "956" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,7 +263,7 @@ "no-cache" ], "x-ms-request-id": [ - "9837a2fd-d3a3-4bed-8e3c-6d1353465c10" + "e8ab33b1-8620-4774-862e-d63ccb76b9e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,47 +272,53 @@ "no-cache" ], "ETag": [ - "W/\"096d81cb-ed7f-4110-80ab-cbacb93231fb\"" + "W/\"799c2882-e459-49b3-bd0a-be2d1708bbd1\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14995" ], "x-ms-correlation-request-id": [ - "79ec77ef-ee82-4b3c-b5a2-f7c93622f443" + "bc72c2f0-c86b-4e9e-b66a-6ebe7ec9244e" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012001Z:79ec77ef-ee82-4b3c-b5a2-f7c93622f443" + "WESTUS2:20180510T172012Z:bc72c2f0-c86b-4e9e-b66a-6ebe7ec9244e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:20:00 GMT" + "Thu, 10 May 2018 17:20:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL29uZXNkazM3OTg/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjU1NT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb9788cd-9351-4842-952d-b2dc89187a35" + "991b115b-cc0a-4b52-8b18-2f6b1ad47269" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3798\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798\",\r\n \"etag\": \"W/\\\"096d81cb-ed7f-4110-80ab-cbacb93231fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9cd8ca1-139e-4cdb-ab2a-b3bd0825b5bf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"096d81cb-ed7f-4110-80ab-cbacb93231fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6555\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555\",\r\n \"etag\": \"W/\\\"799c2882-e459-49b3-bd0a-be2d1708bbd1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"02bf08f0-849d-4592-9927-3bc1e0fbdc4b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"799c2882-e459-49b3-bd0a-be2d1708bbd1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "956" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -386,7 +330,7 @@ "no-cache" ], "x-ms-request-id": [ - "c23c2db8-8e88-457c-a7af-d569a3ecf31f" + "84542433-9fe7-4158-8e3d-c3f0a7d954d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,47 +339,59 @@ "no-cache" ], "ETag": [ - "W/\"096d81cb-ed7f-4110-80ab-cbacb93231fb\"" + "W/\"799c2882-e459-49b3-bd0a-be2d1708bbd1\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14994" ], "x-ms-correlation-request-id": [ - "e551c5aa-7c5d-48d9-8df1-32b03f8d91ce" + "7c302eae-6058-4109-9e42-1ecb0c7c7085" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012001Z:e551c5aa-7c5d-48d9-8df1-32b03f8d91ce" + "WESTUS2:20180510T172013Z:7c302eae-6058-4109-9e42-1ecb0c7c7085" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:20:00 GMT" + "Thu, 10 May 2018 17:20:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL29uZXNkazM3OTg/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjU1NT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "482" + ], "x-ms-client-request-id": [ - "c14a0037-17f6-4dde-a04f-2022af209708" + "91dd421a-7868-4e37-8693-2561a49f73e9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3798\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798\",\r\n \"etag\": \"W/\\\"096d81cb-ed7f-4110-80ab-cbacb93231fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9cd8ca1-139e-4cdb-ab2a-b3bd0825b5bf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"096d81cb-ed7f-4110-80ab-cbacb93231fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6555\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555\",\r\n \"etag\": \"W/\\\"2c4b92a1-b5b2-41c5-906d-28e1b6b2d9e7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"02bf08f0-849d-4592-9927-3bc1e0fbdc4b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"2c4b92a1-b5b2-41c5-906d-28e1b6b2d9e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "956" + "1103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -446,8 +402,14 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "3" + ], "x-ms-request-id": [ - "facaeb36-3a53-459f-9a7a-c2f80ae5aea7" + "5df08f53-6fb5-4330-8e13-f6da32d325bf" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/5df08f53-6fb5-4330-8e13-f6da32d325bf?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -455,54 +417,45 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"096d81cb-ed7f-4110-80ab-cbacb93231fb\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "8a9cbbb1-dc1c-41fa-bf8c-5bff72d52bb4" + "cf7b9def-1025-4e6c-9011-266ed56233ac" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012002Z:8a9cbbb1-dc1c-41fa-bf8c-5bff72d52bb4" + "WESTUS2:20180510T171952Z:cf7b9def-1025-4e6c-9011-266ed56233ac" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:20:01 GMT" + "Thu, 10 May 2018 17:19:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL29uZXNkazM3OTg/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/5df08f53-6fb5-4330-8e13-f6da32d325bf?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWRmMDhmNTMtNmZiNS00MzMwLThlMTMtZjZkYTMyZDMyNWJmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "338" - ], - "x-ms-client-request-id": [ - "172963f8-aacb-48bf-af36-a0ad414d681f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3798\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798\",\r\n \"etag\": \"W/\\\"6b585ee8-2442-42f4-bcaf-b747bd79af8a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f9cd8ca1-139e-4cdb-ab2a-b3bd0825b5bf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"6b585ee8-2442-42f4-bcaf-b747bd79af8a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "954" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -517,10 +470,7 @@ "10" ], "x-ms-request-id": [ - "c85e8f44-b270-4943-816b-88dfd481d206" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/c85e8f44-b270-4943-816b-88dfd481d206?api-version=2017-09-01" + "8f6d9714-ce97-4386-9caf-103f484b80dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,29 +482,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" ], "x-ms-correlation-request-id": [ - "19f30988-db5d-4a8b-960d-270f640cde46" + "3849cd7b-2b1e-4d87-8a01-fa96ad3cddfe" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T011951Z:19f30988-db5d-4a8b-960d-270f640cde46" + "WESTUS2:20180510T172002Z:3849cd7b-2b1e-4d87-8a01-fa96ad3cddfe" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:19:50 GMT" + "Thu, 10 May 2018 17:20:01 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/c85e8f44-b270-4943-816b-88dfd481d206?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvYzg1ZThmNDQtYjI3MC00OTQzLTgxNmItODhkZmQ0ODFkMjA2P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/5df08f53-6fb5-4330-8e13-f6da32d325bf?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWRmMDhmNTMtNmZiNS00MzMwLThlMTMtZjZkYTMyZDMyNWJmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -572,7 +528,7 @@ "no-cache" ], "x-ms-request-id": [ - "0925ffa8-51c8-47b7-9e87-eeaa81b55f47" + "8f8fe410-1cb5-482b-b752-90af279e5615" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585,40 +541,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "54ae0d9c-b73e-4a35-bed5-59b9b663c891" + "4a2232e1-6e7f-4214-8c5c-4082e278255e" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012001Z:54ae0d9c-b73e-4a35-bed5-59b9b663c891" + "WESTUS2:20180510T172012Z:4a2232e1-6e7f-4214-8c5c-4082e278255e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:20:00 GMT" + "Thu, 10 May 2018 17:20:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/publicIPAddresses/onesdk149?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvb25lc2RrMTQ5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/publicIPAddresses/ps290?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyOTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de97240f-b622-48e0-98ec-f5edeab9fb06" + "caf54454-1c27-4453-a7c3-229bcbd43db8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/onesdk149' under resource group 'onesdk723' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps290' under resource group 'ps4447' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "158" + "151" ], "Content-Type": [ "application/json; charset=utf-8" @@ -633,40 +595,46 @@ "gateway" ], "x-ms-request-id": [ - "00147c40-6265-4935-bcbb-4e7c4889bd0d" + "0264d303-356f-4336-96ee-62c01654d918" ], "x-ms-correlation-request-id": [ - "00147c40-6265-4935-bcbb-4e7c4889bd0d" + "0264d303-356f-4336-96ee-62c01654d918" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012002Z:00147c40-6265-4935-bcbb-4e7c4889bd0d" + "WESTUS2:20180510T172013Z:0264d303-356f-4336-96ee-62c01654d918" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:20:01 GMT" + "Thu, 10 May 2018 17:20:13 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/publicIPAddresses/onesdk149?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvb25lc2RrMTQ5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/publicIPAddresses/ps290?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyOTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk149\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/publicIPAddresses/onesdk149\",\r\n \"etag\": \"W/\\\"4971a18a-0337-4707-ac76-0de533eca66f\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bccc1fcf-c59d-4a94-a395-d3e05e0303a2\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk299\",\r\n \"fqdn\": \"onesdk299.centralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps290\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/publicIPAddresses/ps290\",\r\n \"etag\": \"W/\\\"1a50179d-2cbe-4fd1-b99f-a34962cb1397\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dcf5979f-9838-461d-9bc2-800e6578b775\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps2919\",\r\n \"fqdn\": \"ps2919.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "632" + "731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -678,56 +646,62 @@ "no-cache" ], "x-ms-request-id": [ - "956e2f59-7777-4a3f-bf94-99ec15e37aff" + "1bde4945-84ea-4407-abb6-71933d405056" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], "Cache-Control": [ "no-cache" ], "ETag": [ - "W/\"4971a18a-0337-4707-ac76-0de533eca66f\"" + "W/\"1a50179d-2cbe-4fd1-b99f-a34962cb1397\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], "x-ms-correlation-request-id": [ - "7118b290-b700-4826-9ea8-217768dc8415" + "b7e0438c-52d6-4e08-b2a7-4af0d699b35a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012014Z:7118b290-b700-4826-9ea8-217768dc8415" + "WESTUS2:20180510T172026Z:b7e0438c-52d6-4e08-b2a7-4af0d699b35a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:20:13 GMT" + "Thu, 10 May 2018 17:20:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/publicIPAddresses/onesdk149?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvb25lc2RrMTQ5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/publicIPAddresses/ps290?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyOTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce1b0da-a0a9-4183-b0b3-74f95733a4fb" + "1aacac7a-74cf-4cbe-b841-48be0d68a18c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk149\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/publicIPAddresses/onesdk149\",\r\n \"etag\": \"W/\\\"4971a18a-0337-4707-ac76-0de533eca66f\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bccc1fcf-c59d-4a94-a395-d3e05e0303a2\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk299\",\r\n \"fqdn\": \"onesdk299.centralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps290\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/publicIPAddresses/ps290\",\r\n \"etag\": \"W/\\\"1a50179d-2cbe-4fd1-b99f-a34962cb1397\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dcf5979f-9838-461d-9bc2-800e6578b775\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps2919\",\r\n \"fqdn\": \"ps2919.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "632" + "731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -739,7 +713,7 @@ "no-cache" ], "x-ms-request-id": [ - "685c7816-1355-43d6-8b3a-672587b6a65c" + "4ceaf41b-3967-494b-963f-98b218edcacf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,53 +722,59 @@ "no-cache" ], "ETag": [ - "W/\"4971a18a-0337-4707-ac76-0de533eca66f\"" + "W/\"1a50179d-2cbe-4fd1-b99f-a34962cb1397\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14990" ], "x-ms-correlation-request-id": [ - "eff01d6e-ccfe-400f-a667-79eba74c4f45" + "fb585550-a21b-42e4-83d1-f7738ecde4a4" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012014Z:eff01d6e-ccfe-400f-a667-79eba74c4f45" + "WESTUS2:20180510T172026Z:fb585550-a21b-42e4-83d1-f7738ecde4a4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:20:13 GMT" + "Thu, 10 May 2018 17:20:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/publicIPAddresses/onesdk149?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvb25lc2RrMTQ5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/publicIPAddresses/ps290?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyOTA/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk299\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps2919\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "168" + "197" ], "x-ms-client-request-id": [ - "1a963b25-cfe0-461f-b34c-f45b7598d627" + "512f700a-b3e6-451b-bf26-bc83943570ed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk149\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/publicIPAddresses/onesdk149\",\r\n \"etag\": \"W/\\\"c28af7e9-7863-4cde-a108-4d6f2075c54d\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"bccc1fcf-c59d-4a94-a395-d3e05e0303a2\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk299\",\r\n \"fqdn\": \"onesdk299.centralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps290\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/publicIPAddresses/ps290\",\r\n \"etag\": \"W/\\\"0c811e75-4b81-4d85-8d0f-183e6d97f4d8\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"dcf5979f-9838-461d-9bc2-800e6578b775\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps2919\",\r\n \"fqdn\": \"ps2919.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "631" + "730" ], "Content-Type": [ "application/json; charset=utf-8" @@ -806,13 +786,13 @@ "no-cache" ], "Retry-After": [ - "10" + "3" ], "x-ms-request-id": [ - "71039291-efb2-4984-a3f8-ac26daddf677" + "feab454e-a64a-4acc-9f6f-f3e7dd7fab16" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/71039291-efb2-4984-a3f8-ac26daddf677?api-version=2017-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/feab454e-a64a-4acc-9f6f-f3e7dd7fab16?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -828,25 +808,31 @@ "1198" ], "x-ms-correlation-request-id": [ - "ab695341-9219-4eae-a035-fdaead1ce2e9" + "11d2ae72-7170-4b54-83c4-4b0e044edc1f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012003Z:ab695341-9219-4eae-a035-fdaead1ce2e9" + "WESTUS2:20180510T172016Z:11d2ae72-7170-4b54-83c4-4b0e044edc1f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:20:03 GMT" + "Thu, 10 May 2018 17:20:16 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/71039291-efb2-4984-a3f8-ac26daddf677?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvNzEwMzkyOTEtZWZiMi00OTg0LWEzZjgtYWMyNmRhZGRmNjc3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/feab454e-a64a-4acc-9f6f-f3e7dd7fab16?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmVhYjQ1NGUtYTY0YS00YWNjLTlmNmYtZjNlN2RkN2ZhYjE2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -864,7 +850,7 @@ "no-cache" ], "x-ms-request-id": [ - "7456dcee-b415-4f6b-9d72-50ce02064d31" + "7d699580-e483-4406-91b6-f7690cd256a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -877,40 +863,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14992" ], "x-ms-correlation-request-id": [ - "dd679c54-e252-4a7c-a2bc-3865887cf514" + "648945ee-e132-4f6d-918f-5171702fa728" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012013Z:dd679c54-e252-4a7c-a2bc-3865887cf514" + "WESTUS2:20180510T172026Z:648945ee-e132-4f6d-918f-5171702fa728" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:20:13 GMT" + "Thu, 10 May 2018 17:20:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGs1MTk0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczU2NDg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "547a8077-f067-44a5-8aea-4e5fcb2bda44" + "89f0db83-ec9f-4331-973c-9bf416640a72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/onesdk5194' under resource group 'onesdk723' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/ps5648' under resource group 'ps4447' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "164" + "157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -925,40 +917,46 @@ "gateway" ], "x-ms-request-id": [ - "4bdf3c2e-f8d6-41f6-8a91-62e6c290abe7" + "2771a178-eaa6-4cef-a841-45095cdf8c07" ], "x-ms-correlation-request-id": [ - "4bdf3c2e-f8d6-41f6-8a91-62e6c290abe7" + "2771a178-eaa6-4cef-a841-45095cdf8c07" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012014Z:4bdf3c2e-f8d6-41f6-8a91-62e6c290abe7" + "WESTUS2:20180510T172026Z:2771a178-eaa6-4cef-a841-45095cdf8c07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:20:13 GMT" + "Thu, 10 May 2018 17:20:26 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGs1MTk0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczU2NDg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5194\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\",\r\n \"etag\": \"W/\\\"37bca8b3-d237-445d-b403-8858bac290a0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9a64c1c-a652-4417-8ab0-d2dbb923c77e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk4606\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194/ipConfigurations/onesdk4606\",\r\n \"etag\": \"W/\\\"37bca8b3-d237-445d-b403-8858bac290a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/publicIPAddresses/onesdk149\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5648\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\",\r\n \"etag\": \"W/\\\"4aa321e3-4c6e-4a3d-b015-08fb1e310212\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3158b6b1-30c4-4fbb-8567-63b4a650db1d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps7763\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648/ipConfigurations/ps7763\",\r\n \"etag\": \"W/\\\"4aa321e3-4c6e-4a3d-b015-08fb1e310212\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/publicIPAddresses/ps290\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1491" + "1594" ], "Content-Type": [ "application/json; charset=utf-8" @@ -970,7 +968,7 @@ "no-cache" ], "x-ms-request-id": [ - "46289ea8-1f5a-4931-a38e-393d346bffc4" + "79e30b00-c6d2-4555-b0ab-13b464742649" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -983,40 +981,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14861" ], "x-ms-correlation-request-id": [ - "abf02682-04fd-44e2-8379-b610c1671879" + "50fdfea1-e409-4bf1-9e26-5e7d83064f88" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014948Z:abf02682-04fd-44e2-8379-b610c1671879" + "WESTUS2:20180510T174147Z:50fdfea1-e409-4bf1-9e26-5e7d83064f88" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:49:47 GMT" + "Thu, 10 May 2018 17:41:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGs1MTk0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczU2NDg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb4d8f83-d663-480e-9499-92b81182f101" + "e6bab412-bf9b-4f84-a4b3-e4daba048810" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5194\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\",\r\n \"etag\": \"W/\\\"37bca8b3-d237-445d-b403-8858bac290a0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9a64c1c-a652-4417-8ab0-d2dbb923c77e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk4606\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194/ipConfigurations/onesdk4606\",\r\n \"etag\": \"W/\\\"37bca8b3-d237-445d-b403-8858bac290a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/publicIPAddresses/onesdk149\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5648\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\",\r\n \"etag\": \"W/\\\"4aa321e3-4c6e-4a3d-b015-08fb1e310212\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3158b6b1-30c4-4fbb-8567-63b4a650db1d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps7763\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648/ipConfigurations/ps7763\",\r\n \"etag\": \"W/\\\"4aa321e3-4c6e-4a3d-b015-08fb1e310212\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/publicIPAddresses/ps290\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1491" + "1594" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1028,7 +1032,7 @@ "no-cache" ], "x-ms-request-id": [ - "9946884c-e3ae-4cd0-8fd9-894c7aa6d20b" + "2def6c4f-4fd1-4ad8-97ef-20c1de99d2b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,40 +1045,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14860" ], "x-ms-correlation-request-id": [ - "9b6dd452-1dec-4c65-b79c-ea0a347875c3" + "a9f8108c-991a-46fb-af23-08a78149b797" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014948Z:9b6dd452-1dec-4c65-b79c-ea0a347875c3" + "WESTUS2:20180510T174147Z:a9f8108c-991a-46fb-af23-08a78149b797" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:49:47 GMT" + "Thu, 10 May 2018 17:41:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGs1MTk0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczU2NDg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13e83675-eb0e-40d8-b272-17820e867cd9" + "f70a394b-a55e-459e-9952-e45b65042c35" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5194\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\",\r\n \"etag\": \"W/\\\"37bca8b3-d237-445d-b403-8858bac290a0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9a64c1c-a652-4417-8ab0-d2dbb923c77e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk4606\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194/ipConfigurations/onesdk4606\",\r\n \"etag\": \"W/\\\"37bca8b3-d237-445d-b403-8858bac290a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/publicIPAddresses/onesdk149\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5648\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\",\r\n \"etag\": \"W/\\\"4aa321e3-4c6e-4a3d-b015-08fb1e310212\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3158b6b1-30c4-4fbb-8567-63b4a650db1d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps7763\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648/ipConfigurations/ps7763\",\r\n \"etag\": \"W/\\\"4aa321e3-4c6e-4a3d-b015-08fb1e310212\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/publicIPAddresses/ps290\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1491" + "1594" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1086,7 +1096,7 @@ "no-cache" ], "x-ms-request-id": [ - "20ec8750-22e0-4d5c-a4d4-4ab94ab58026" + "77d58c25-6922-4375-a82c-1afd2e71b39c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1099,46 +1109,52 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14859" ], "x-ms-correlation-request-id": [ - "092691d2-c785-4ccf-9424-7b9538786e12" + "a9aeed98-0a49-4d7a-b859-d31d5a91a30c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014948Z:092691d2-c785-4ccf-9424-7b9538786e12" + "WESTUS2:20180510T174147Z:a9aeed98-0a49-4d7a-b859-d31d5a91a30c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:49:47 GMT" + "Thu, 10 May 2018 17:41:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGs1MTk0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczU2NDg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk4606\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfigurations/onesdk4606\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/publicIPAddresses/onesdk149\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/publicIPAddresses/ps290\"\r\n }\r\n },\r\n \"name\": \"ps7763\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfiguration/ps7763\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "957" + "1052" ], "x-ms-client-request-id": [ - "145a682a-d88a-4a74-a6e7-f8a503b19c12" + "0398e0ba-336e-48c5-8d21-0ccc71016171" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5194\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\",\r\n \"etag\": \"W/\\\"96ce11ee-1692-40ed-9442-23f07ac28700\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f9a64c1c-a652-4417-8ab0-d2dbb923c77e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk4606\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194/ipConfigurations/onesdk4606\",\r\n \"etag\": \"W/\\\"96ce11ee-1692-40ed-9442-23f07ac28700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/publicIPAddresses/onesdk149\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5648\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\",\r\n \"etag\": \"W/\\\"8e135743-0711-47be-b1c6-52d95f673442\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3158b6b1-30c4-4fbb-8567-63b4a650db1d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps7763\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648/ipConfigurations/ps7763\",\r\n \"etag\": \"W/\\\"8e135743-0711-47be-b1c6-52d95f673442\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/publicIPAddresses/ps290\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1521" + "1711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1153,10 +1169,10 @@ "10" ], "x-ms-request-id": [ - "f7565308-f35e-4870-a663-1b3a7a326ab0" + "831df460-02b8-4804-8a25-9e2dbdfe51c4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,25 +1188,31 @@ "1197" ], "x-ms-correlation-request-id": [ - "5ceb9888-473d-48ca-b04f-357c9bbf15b8" + "da96fb72-1806-43dc-8e3a-bd589eedf7aa" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012015Z:5ceb9888-473d-48ca-b04f-357c9bbf15b8" + "WESTUS2:20180510T172027Z:da96fb72-1806-43dc-8e3a-bd589eedf7aa" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:20:14 GMT" + "Thu, 10 May 2018 17:20:27 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1207,8 +1229,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "61e445e1-788d-4a12-ba22-a7cb4b130550" + "44cd30f4-dc25-487b-8fcf-839122185eab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1221,28 +1246,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14988" ], "x-ms-correlation-request-id": [ - "14d234f7-d466-411e-815a-ab89c097d185" + "8ce3d028-5b9b-4e90-bc1c-87fa30602fca" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012025Z:14d234f7-d466-411e-815a-ab89c097d185" + "WESTUS2:20180510T172037Z:8ce3d028-5b9b-4e90-bc1c-87fa30602fca" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:20:25 GMT" + "Thu, 10 May 2018 17:20:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1259,8 +1290,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "604f23d1-3543-4bb0-b278-db8bbba79daa" + "34a527a5-2a82-49a5-9775-20da7137b6fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,28 +1307,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14987" ], "x-ms-correlation-request-id": [ - "7228c21b-1782-4cd5-a471-31e39bcefa05" + "5c50e9c3-5200-47ea-8231-27d319318331" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012056Z:7228c21b-1782-4cd5-a471-31e39bcefa05" + "WESTUS2:20180510T172047Z:5c50e9c3-5200-47ea-8231-27d319318331" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:20:55 GMT" + "Thu, 10 May 2018 17:20:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1311,8 +1351,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "c61e3950-f170-4baf-b2c7-34eafd9df3d5" + "eb8946e5-c909-4088-a256-e5f0d33c3dab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1325,28 +1368,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14986" ], "x-ms-correlation-request-id": [ - "9d8989b0-a776-470d-b034-3c7ec6ef19d1" + "3357c427-5d4f-4c7d-9c89-c34453deed35" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012126Z:9d8989b0-a776-470d-b034-3c7ec6ef19d1" + "WESTUS2:20180510T172057Z:3357c427-5d4f-4c7d-9c89-c34453deed35" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:21:26 GMT" + "Thu, 10 May 2018 17:20:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1363,8 +1412,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "c1862388-51b5-49ce-b00f-60b69691d0b3" + "5bbd8975-64e9-47f8-a095-54d0ece1881d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1377,28 +1429,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14985" ], "x-ms-correlation-request-id": [ - "f625ebd8-91ff-4ead-96d7-1d07afbbfedd" + "68edee30-07c9-4d10-9e7c-ef539f3b81f8" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012156Z:f625ebd8-91ff-4ead-96d7-1d07afbbfedd" + "WESTUS2:20180510T172107Z:68edee30-07c9-4d10-9e7c-ef539f3b81f8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:21:56 GMT" + "Thu, 10 May 2018 17:21:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1415,12 +1473,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "641db4bb-b48c-481b-a5a3-4f3327ed8984" + "c7a981ca-1535-411a-b6de-e24ecfc0d2d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], "Cache-Control": [ "no-cache" ], @@ -1428,29 +1492,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], "x-ms-correlation-request-id": [ - "2d59be35-04f1-42ad-9a82-2a7262fc3edc" + "7f216434-592b-4e2a-96b3-991871a10345" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012227Z:2d59be35-04f1-42ad-9a82-2a7262fc3edc" + "WESTUS2:20180510T172117Z:7f216434-592b-4e2a-96b3-991871a10345" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:22:27 GMT" + "Thu, 10 May 2018 17:21:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1467,8 +1534,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "6c6360d3-9f67-4666-a4de-9aa8766adf11" + "4964220c-50cc-43ec-b41c-739ecdb5749b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1481,28 +1551,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14983" ], "x-ms-correlation-request-id": [ - "4ed092ab-d563-4461-b8dd-41a405742adf" + "30ccd639-d207-4eb0-a2f4-134c93372d00" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012257Z:4ed092ab-d563-4461-b8dd-41a405742adf" + "WESTUS2:20180510T172127Z:30ccd639-d207-4eb0-a2f4-134c93372d00" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:22:57 GMT" + "Thu, 10 May 2018 17:21:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1519,60 +1595,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "9e3d0223-0227-4f24-9d73-0ce4cecfcd7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-correlation-request-id": [ - "fb4a31b3-3763-48d6-84b5-6bba8bc4e225" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151207T012328Z:fb4a31b3-3763-48d6-84b5-6bba8bc4e225" - ], - "Date": [ - "Mon, 07 Dec 2015 01:23:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4588d05f-bf86-46a8-b514-cca87bcdebbe" + "2ac4bdf1-deee-431b-83e8-b570160199a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1588,25 +1615,31 @@ "14982" ], "x-ms-correlation-request-id": [ - "a16d842b-eef3-4f7f-a5c0-3178aa55a4b7" + "f5ea363a-c090-4750-9414-59a12fa5de00" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012358Z:a16d842b-eef3-4f7f-a5c0-3178aa55a4b7" + "WESTUS2:20180510T172137Z:f5ea363a-c090-4750-9414-59a12fa5de00" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:23:57 GMT" + "Thu, 10 May 2018 17:21:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1623,8 +1656,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "44d0db45-dfa7-4fcf-b5d3-d6872e3ae440" + "074f42f6-75b9-4614-859f-09dae0a65e90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1640,25 +1676,31 @@ "14981" ], "x-ms-correlation-request-id": [ - "1c94473f-64de-41af-b67e-6a18ceb187b8" + "3d151f8b-2deb-4517-aca2-aed09aa1f8a8" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012428Z:1c94473f-64de-41af-b67e-6a18ceb187b8" + "WESTUS2:20180510T172148Z:3d151f8b-2deb-4517-aca2-aed09aa1f8a8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:24:28 GMT" + "Thu, 10 May 2018 17:21:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1675,8 +1717,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "c88909f2-f15f-4511-b066-c0c7e66a8183" + "6c38ba61-4d92-42a6-b742-c9771e0e6cdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1692,25 +1737,31 @@ "14980" ], "x-ms-correlation-request-id": [ - "bf1feaa3-49f5-4374-a83b-ea0302ab3fa7" + "ce96fb6a-ff1b-4db5-8f40-32729c329d01" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012459Z:bf1feaa3-49f5-4374-a83b-ea0302ab3fa7" + "WESTUS2:20180510T172158Z:ce96fb6a-ff1b-4db5-8f40-32729c329d01" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:24:59 GMT" + "Thu, 10 May 2018 17:21:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1727,8 +1778,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "f0226925-86ac-4129-9ade-486c38358158" + "722f1d9e-c874-45cb-b4f0-837ac8024a85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1744,25 +1798,31 @@ "14979" ], "x-ms-correlation-request-id": [ - "68e90578-1df7-4ef1-9410-bb6b660664e9" + "e32c52eb-0379-45f0-9be7-82377086c712" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012529Z:68e90578-1df7-4ef1-9410-bb6b660664e9" + "WESTUS2:20180510T172208Z:e32c52eb-0379-45f0-9be7-82377086c712" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:25:28 GMT" + "Thu, 10 May 2018 17:22:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1779,8 +1839,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "9fe96dad-8118-49d2-aebe-f30f177e64df" + "4fb62932-e26f-4ae8-85b4-8f259c26fad2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1796,25 +1859,31 @@ "14978" ], "x-ms-correlation-request-id": [ - "1a5075c4-6dfd-468c-a1d5-a3d8c503321c" + "e00d72ee-7a10-4379-bc27-4820f27f5556" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012559Z:1a5075c4-6dfd-468c-a1d5-a3d8c503321c" + "WESTUS2:20180510T172218Z:e00d72ee-7a10-4379-bc27-4820f27f5556" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:25:59 GMT" + "Thu, 10 May 2018 17:22:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1831,8 +1900,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "71d85a23-e5bc-4b89-8182-f274ac9320c3" + "a2568bf1-6292-4058-892a-081c904821e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1848,25 +1920,31 @@ "14977" ], "x-ms-correlation-request-id": [ - "20b1c128-d552-42af-8fd8-4f8ea158362c" + "d567cf27-a714-44d4-a6a0-1d5872588d59" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012630Z:20b1c128-d552-42af-8fd8-4f8ea158362c" + "WESTUS2:20180510T172228Z:d567cf27-a714-44d4-a6a0-1d5872588d59" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:26:29 GMT" + "Thu, 10 May 2018 17:22:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1883,12 +1961,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "b34477fb-238b-4345-a44d-84d0b023f1a3" + "94831709-86f4-473c-a21c-89108bc20984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], "Cache-Control": [ "no-cache" ], @@ -1896,29 +1980,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], "x-ms-correlation-request-id": [ - "6c81a55b-41e3-497e-8790-66f02e56d9f4" + "160f1227-f668-474d-ad6b-677c9d59771e" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012700Z:6c81a55b-41e3-497e-8790-66f02e56d9f4" + "WESTUS2:20180510T172238Z:160f1227-f668-474d-ad6b-677c9d59771e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:26:59 GMT" + "Thu, 10 May 2018 17:22:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1935,8 +2022,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "428c95c0-b521-4cff-82d6-20dcaef1393d" + "7a393fc5-2839-41ba-bc57-cd1889b9e2ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1952,25 +2042,31 @@ "14975" ], "x-ms-correlation-request-id": [ - "c8b533e1-de75-4210-8c13-576a7fc43c43" + "cb5e82e8-0863-4d24-98fc-f5a3ccbc1e88" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012731Z:c8b533e1-de75-4210-8c13-576a7fc43c43" + "WESTUS2:20180510T172248Z:cb5e82e8-0863-4d24-98fc-f5a3ccbc1e88" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:27:30 GMT" + "Thu, 10 May 2018 17:22:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1987,8 +2083,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "13f18e8b-02dc-4d54-8cb1-2a1663f2c76c" + "8633e474-0bc3-4c6c-98f6-4d0bb3cc7177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2004,25 +2103,31 @@ "14974" ], "x-ms-correlation-request-id": [ - "73b41e0c-ac0c-4c19-a30e-bd280180b878" + "825d2109-0e01-490f-a90a-0dad642a677c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012801Z:73b41e0c-ac0c-4c19-a30e-bd280180b878" + "WESTUS2:20180510T172258Z:825d2109-0e01-490f-a90a-0dad642a677c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:28:00 GMT" + "Thu, 10 May 2018 17:22:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2039,8 +2144,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "a0ef21d9-df02-4d98-8606-8bae854d6fb5" + "dfb51f23-3da3-4828-999c-85d677d9807e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2056,25 +2164,31 @@ "14973" ], "x-ms-correlation-request-id": [ - "bf17eb5a-5567-4471-b4b3-bc8666e27129" + "42a3402a-14ce-4bf3-b509-2a3a51b23d67" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012831Z:bf17eb5a-5567-4471-b4b3-bc8666e27129" + "WESTUS2:20180510T172308Z:42a3402a-14ce-4bf3-b509-2a3a51b23d67" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:28:30 GMT" + "Thu, 10 May 2018 17:23:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2091,8 +2205,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "8d9441de-8f08-4276-89e9-7f062d1d6755" + "d9ed7c6a-85c5-4a64-b82d-5cd5f8b50c7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2108,25 +2225,31 @@ "14972" ], "x-ms-correlation-request-id": [ - "8f039986-ba10-470d-aef5-06ed72d8c032" + "da8ff35e-afa9-47bb-87ca-4e2d403a0e89" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012902Z:8f039986-ba10-470d-aef5-06ed72d8c032" + "WESTUS2:20180510T172318Z:da8ff35e-afa9-47bb-87ca-4e2d403a0e89" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:29:01 GMT" + "Thu, 10 May 2018 17:23:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2143,8 +2266,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "e4467ae3-4d30-420c-94ce-1ce0e34b4f4f" + "c4e810cd-0dba-488d-afb9-83a5c4f1ee8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2160,25 +2286,31 @@ "14971" ], "x-ms-correlation-request-id": [ - "76b6c7f8-2570-4803-a148-bc8508218ec7" + "c0966c25-0e01-4c87-bc20-3cf23f48f694" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T012932Z:76b6c7f8-2570-4803-a148-bc8508218ec7" + "WESTUS2:20180510T172328Z:c0966c25-0e01-4c87-bc20-3cf23f48f694" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:29:32 GMT" + "Thu, 10 May 2018 17:23:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2195,8 +2327,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "9afbf4e0-d742-4b53-9a57-99e1e0ad5cf7" + "55981a95-a46f-486c-aae9-497c4bd7c731" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2212,25 +2347,31 @@ "14970" ], "x-ms-correlation-request-id": [ - "fb6c382c-1d40-43e3-be25-c52ce5a67395" + "5b5bad2f-4fbd-4b6e-aa0e-910e57ffc5c6" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013002Z:fb6c382c-1d40-43e3-be25-c52ce5a67395" + "WESTUS2:20180510T172338Z:5b5bad2f-4fbd-4b6e-aa0e-910e57ffc5c6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:30:02 GMT" + "Thu, 10 May 2018 17:23:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2247,8 +2388,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "7e2a1833-34fa-48dc-a5e7-6bdd6bd676ae" + "f0a6ae76-7613-44da-8e50-493f8dac7db2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2264,25 +2408,31 @@ "14969" ], "x-ms-correlation-request-id": [ - "0dcefba4-1a83-4972-abdc-510f677ee283" + "17feac63-9ec6-4b13-8e1f-1a81f6fe648c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013033Z:0dcefba4-1a83-4972-abdc-510f677ee283" + "WESTUS2:20180510T172348Z:17feac63-9ec6-4b13-8e1f-1a81f6fe648c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:30:32 GMT" + "Thu, 10 May 2018 17:23:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2299,12 +2449,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "97585cb4-725b-43c9-8393-0c79256f638e" + "d7aaa717-144f-4d04-8685-8030134994d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], "Cache-Control": [ "no-cache" ], @@ -2312,29 +2468,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], "x-ms-correlation-request-id": [ - "0605887d-5e73-436e-8b1d-ce3263b437ea" + "976062a1-116e-4ef3-b76c-5219f88483a6" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013103Z:0605887d-5e73-436e-8b1d-ce3263b437ea" + "WESTUS2:20180510T172358Z:976062a1-116e-4ef3-b76c-5219f88483a6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:31:02 GMT" + "Thu, 10 May 2018 17:23:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2351,8 +2510,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "bf3746ff-41ac-452f-bb45-25756d2b1425" + "60c4aac5-277e-4f84-b77a-1fce80b060f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2368,25 +2530,31 @@ "14967" ], "x-ms-correlation-request-id": [ - "7fd49f40-d81a-4abc-9e2b-0350cbf27de8" + "5c2fc192-2c77-4f09-b7d9-6a14a246d487" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013134Z:7fd49f40-d81a-4abc-9e2b-0350cbf27de8" + "WESTUS2:20180510T172409Z:5c2fc192-2c77-4f09-b7d9-6a14a246d487" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:31:33 GMT" + "Thu, 10 May 2018 17:24:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2403,8 +2571,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "1eb19db0-8148-4007-8aae-38998d27b95e" + "56ed80f8-def3-42d2-b8aa-6ce00099be8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2420,25 +2591,31 @@ "14966" ], "x-ms-correlation-request-id": [ - "ec519f7c-2aed-439f-a6af-69cafc271bc5" + "aa80421a-c604-4ae9-bc82-898e8c5d8509" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013204Z:ec519f7c-2aed-439f-a6af-69cafc271bc5" + "WESTUS2:20180510T172419Z:aa80421a-c604-4ae9-bc82-898e8c5d8509" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:32:04 GMT" + "Thu, 10 May 2018 17:24:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2455,8 +2632,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "43d96ee3-1bb9-495e-bf61-3cb63c77527c" + "5e0b1e36-13d9-4cef-9c25-0253ae72c869" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2472,25 +2652,31 @@ "14965" ], "x-ms-correlation-request-id": [ - "785c9e6d-ca9d-4528-bd93-1f9520fa7bad" + "9678bbf2-b021-4073-9191-f57bc670aa22" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013234Z:785c9e6d-ca9d-4528-bd93-1f9520fa7bad" + "WESTUS2:20180510T172429Z:9678bbf2-b021-4073-9191-f57bc670aa22" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:32:34 GMT" + "Thu, 10 May 2018 17:24:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2507,8 +2693,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "cb792250-2c50-48f1-82af-1da04b8ef196" + "62070edf-e4e2-4e26-9c7c-dec8acaa0634" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2524,25 +2713,31 @@ "14964" ], "x-ms-correlation-request-id": [ - "d2f59b04-bec2-48cd-ad47-89a5b8a6ba24" + "6029e8de-7201-4c71-a9e5-09fdea86471a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013305Z:d2f59b04-bec2-48cd-ad47-89a5b8a6ba24" + "WESTUS2:20180510T172439Z:6029e8de-7201-4c71-a9e5-09fdea86471a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:33:04 GMT" + "Thu, 10 May 2018 17:24:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2559,8 +2754,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "49c7048b-0175-4fa8-b215-7e230d64712c" + "06c845c8-4a6d-4bc0-af08-d14e81c410dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2576,25 +2774,31 @@ "14963" ], "x-ms-correlation-request-id": [ - "d97b6819-45d9-4758-8ec7-8a5074170c6d" + "39e34bf6-e8db-4637-8491-140d9361e6d3" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013335Z:d97b6819-45d9-4758-8ec7-8a5074170c6d" + "WESTUS2:20180510T172449Z:39e34bf6-e8db-4637-8491-140d9361e6d3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:33:35 GMT" + "Thu, 10 May 2018 17:24:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2611,8 +2815,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "0d2565d1-1ca3-4226-b18c-044da5b2c07e" + "ee040b1b-1e0b-4874-a5d7-189ef64994f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2628,25 +2835,31 @@ "14962" ], "x-ms-correlation-request-id": [ - "47d7d9a5-f1f4-4a58-9feb-a45641931c62" + "d39d7ceb-3724-471a-8f48-7ce0b15f8b5a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013406Z:47d7d9a5-f1f4-4a58-9feb-a45641931c62" + "WESTUS2:20180510T172459Z:d39d7ceb-3724-471a-8f48-7ce0b15f8b5a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:34:05 GMT" + "Thu, 10 May 2018 17:24:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2663,8 +2876,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "adcbf6d4-3306-4b09-8b6b-572fc6ea7ac0" + "61706dae-6416-44c0-abb9-e1469506df05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2680,25 +2896,31 @@ "14961" ], "x-ms-correlation-request-id": [ - "b61c1fe4-da3d-4b8d-94b7-c0b334aa13b9" + "9ee04a31-5246-4a34-bd0c-c5a949cbecb6" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013436Z:b61c1fe4-da3d-4b8d-94b7-c0b334aa13b9" + "WESTUS2:20180510T172509Z:9ee04a31-5246-4a34-bd0c-c5a949cbecb6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:34:36 GMT" + "Thu, 10 May 2018 17:25:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2715,12 +2937,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "6bd4dd6e-15b5-43c1-9c46-2b5f7737c36b" + "42f944f8-e0e0-4e74-ab6f-8984786dfb2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], "Cache-Control": [ "no-cache" ], @@ -2728,29 +2956,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" - ], "x-ms-correlation-request-id": [ - "b7375943-c83d-492c-89ac-ab4080c3ed5e" + "20be4a6e-5cf3-4462-a7b0-e6be87579e31" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013506Z:b7375943-c83d-492c-89ac-ab4080c3ed5e" + "WESTUS2:20180510T172519Z:20be4a6e-5cf3-4462-a7b0-e6be87579e31" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:35:05 GMT" + "Thu, 10 May 2018 17:25:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2767,8 +2998,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "f3b22c0c-b5b0-4c69-8f0e-febae18a92e3" + "2d467406-ef76-42fc-9094-c964dd7eba0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2784,25 +3018,31 @@ "14959" ], "x-ms-correlation-request-id": [ - "5adc3760-bc2c-4026-83c0-43a07d63e1c6" + "c835878c-5b0c-471d-84b4-9dc8c82bc5cc" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013537Z:5adc3760-bc2c-4026-83c0-43a07d63e1c6" + "WESTUS2:20180510T172529Z:c835878c-5b0c-471d-84b4-9dc8c82bc5cc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:35:37 GMT" + "Thu, 10 May 2018 17:25:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2819,8 +3059,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "4b4a9272-455c-46e7-801c-f66a4e81f127" + "bf031b1c-281b-4c04-bb34-df379a108172" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2836,25 +3079,31 @@ "14958" ], "x-ms-correlation-request-id": [ - "df7454e6-24f6-4869-a857-ebcd1f083cb7" + "889f7a89-5e48-4501-b851-9973b1a4410d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013607Z:df7454e6-24f6-4869-a857-ebcd1f083cb7" + "WESTUS2:20180510T172539Z:889f7a89-5e48-4501-b851-9973b1a4410d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:36:06 GMT" + "Thu, 10 May 2018 17:25:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2871,8 +3120,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "140c3281-ef8d-43e1-9a0f-2f92412fc204" + "ea37c0bf-3a3d-459e-9978-4084a5396936" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2888,25 +3140,31 @@ "14957" ], "x-ms-correlation-request-id": [ - "2d92268f-86ce-4d47-b0c7-e7460c4afcbc" + "0c3a5e38-2bf3-4c89-a994-3e9d18553afc" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013637Z:2d92268f-86ce-4d47-b0c7-e7460c4afcbc" + "WESTUS2:20180510T172549Z:0c3a5e38-2bf3-4c89-a994-3e9d18553afc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:36:37 GMT" + "Thu, 10 May 2018 17:25:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2923,8 +3181,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "8ea67fc5-550c-4d38-ba16-c8de067fdace" + "3a482efa-eb94-4bd1-bf5c-0ff995f98133" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2940,25 +3201,31 @@ "14956" ], "x-ms-correlation-request-id": [ - "8062fa3e-4b7c-4515-a27e-fb2715b1b893" + "afe8f59b-f7e0-4e2f-aeb3-ef20e6a978e7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013708Z:8062fa3e-4b7c-4515-a27e-fb2715b1b893" + "WESTUS2:20180510T172559Z:afe8f59b-f7e0-4e2f-aeb3-ef20e6a978e7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:37:07 GMT" + "Thu, 10 May 2018 17:25:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2975,8 +3242,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "efad206a-dad0-46a4-b1b4-123dbb9ae2b4" + "645ace0e-c22a-4ff0-981a-8aa52bc2c217" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2992,25 +3262,31 @@ "14955" ], "x-ms-correlation-request-id": [ - "1dccd0dd-85f8-47e2-b93c-9b7e9c6befcb" + "3b50ae77-b2ac-405d-9668-10a9151d7c5b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013738Z:1dccd0dd-85f8-47e2-b93c-9b7e9c6befcb" + "WESTUS2:20180510T172609Z:3b50ae77-b2ac-405d-9668-10a9151d7c5b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:37:38 GMT" + "Thu, 10 May 2018 17:26:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3027,8 +3303,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "2b0dbfbb-0ad8-412e-851d-be1f192c3cf4" + "83ae838c-e9ef-4527-993c-66ae62bcfc11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3044,25 +3323,31 @@ "14954" ], "x-ms-correlation-request-id": [ - "a18a2887-5cc5-45fb-ade8-08aaf8466f4b" + "9764c17f-bb8d-456e-a2ea-a1dc50fdbd5f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013809Z:a18a2887-5cc5-45fb-ade8-08aaf8466f4b" + "WESTUS2:20180510T172619Z:9764c17f-bb8d-456e-a2ea-a1dc50fdbd5f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:38:08 GMT" + "Thu, 10 May 2018 17:26:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3079,8 +3364,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "c329002d-f36c-4f98-befd-092651737263" + "ca7da09f-9315-4032-998a-4320becea0cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3096,25 +3384,31 @@ "14953" ], "x-ms-correlation-request-id": [ - "e06becca-3874-47d9-a43d-f17f5a883289" + "11aeda8a-8da6-4d16-bc72-d14751b24c29" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013839Z:e06becca-3874-47d9-a43d-f17f5a883289" + "WESTUS2:20180510T172629Z:11aeda8a-8da6-4d16-bc72-d14751b24c29" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:38:39 GMT" + "Thu, 10 May 2018 17:26:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3131,12 +3425,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "1bf9cec8-8747-4e28-b97c-09e3ee769ab9" + "2dc380c9-56f7-499b-b0cf-26776c63d8b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], "Cache-Control": [ "no-cache" ], @@ -3144,29 +3444,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" - ], "x-ms-correlation-request-id": [ - "3ec48ff3-d9d1-46be-8f8a-97440a1a33a2" + "bd65c6bf-0215-438b-8d89-031cc6a2f685" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013909Z:3ec48ff3-d9d1-46be-8f8a-97440a1a33a2" + "WESTUS2:20180510T172639Z:bd65c6bf-0215-438b-8d89-031cc6a2f685" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:39:09 GMT" + "Thu, 10 May 2018 17:26:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3183,8 +3486,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "2c848ed9-b053-4f51-af2d-528404c34882" + "d6748fef-d9ce-45d1-8f69-7872baa7742d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3200,25 +3506,31 @@ "14951" ], "x-ms-correlation-request-id": [ - "25b8d1c6-4f13-4309-a4ad-3cb84b45bb5b" + "efe3a3c3-c9df-4234-bf08-b997e68246c7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T013940Z:25b8d1c6-4f13-4309-a4ad-3cb84b45bb5b" + "WESTUS2:20180510T172650Z:efe3a3c3-c9df-4234-bf08-b997e68246c7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:39:39 GMT" + "Thu, 10 May 2018 17:26:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3235,8 +3547,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "aa9d01cf-4e35-4701-b508-bf1aafe52ebb" + "fda61ecb-277d-4e8c-a571-f777169c53fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3252,25 +3567,31 @@ "14950" ], "x-ms-correlation-request-id": [ - "c1157ea6-117b-488e-a7f8-19394e2b34c2" + "40fefaf0-698a-4b32-885c-a7e480eaee5c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014010Z:c1157ea6-117b-488e-a7f8-19394e2b34c2" + "WESTUS2:20180510T172700Z:40fefaf0-698a-4b32-885c-a7e480eaee5c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:40:10 GMT" + "Thu, 10 May 2018 17:26:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3287,8 +3608,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "799f2afa-b432-4747-b5bb-4246ef36a4e7" + "129a3f63-15f6-41b0-b184-46babd9a81f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3304,25 +3628,31 @@ "14949" ], "x-ms-correlation-request-id": [ - "99aa2a39-f05f-449c-bd22-7bbd63602ac7" + "0145d673-875c-42a1-9925-5a4e0974b4dc" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014040Z:99aa2a39-f05f-449c-bd22-7bbd63602ac7" + "WESTUS2:20180510T172710Z:0145d673-875c-42a1-9925-5a4e0974b4dc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:40:40 GMT" + "Thu, 10 May 2018 17:27:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3339,8 +3669,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "0bfc8002-e680-4a38-80aa-fa958a563abf" + "df182c50-75b9-4247-9087-d7db767898eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3356,25 +3689,31 @@ "14948" ], "x-ms-correlation-request-id": [ - "6c10db3d-508c-488e-b85a-065ed89d988c" + "6e3f64a0-d420-4f28-8d5a-16df3453ed47" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014111Z:6c10db3d-508c-488e-b85a-065ed89d988c" + "WESTUS2:20180510T172720Z:6e3f64a0-d420-4f28-8d5a-16df3453ed47" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:41:10 GMT" + "Thu, 10 May 2018 17:27:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3391,8 +3730,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "b1250991-ad41-4fca-bc8f-45ac2d6ecb60" + "76c462f7-d559-48e7-b678-24d195a21b21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3408,25 +3750,31 @@ "14947" ], "x-ms-correlation-request-id": [ - "5675043d-4505-4a0c-bae2-15f74c219b94" + "c535584a-a261-4307-85c5-a71e09de7f8b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014141Z:5675043d-4505-4a0c-bae2-15f74c219b94" + "WESTUS2:20180510T172730Z:c535584a-a261-4307-85c5-a71e09de7f8b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:41:41 GMT" + "Thu, 10 May 2018 17:27:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3443,8 +3791,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "dda1e926-70bd-4882-bc36-3db5a5906d2c" + "e70d89f7-2a2d-4034-b02c-bf0addfee9ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3460,25 +3811,31 @@ "14946" ], "x-ms-correlation-request-id": [ - "3c877721-edc1-477d-9416-e332d6fa7144" + "2e5f2e21-8f1e-4a84-8dab-af7b1ca5ceab" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014211Z:3c877721-edc1-477d-9416-e332d6fa7144" + "WESTUS2:20180510T172740Z:2e5f2e21-8f1e-4a84-8dab-af7b1ca5ceab" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:42:11 GMT" + "Thu, 10 May 2018 17:27:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3495,8 +3852,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "a69f8251-e179-45a9-8902-d72408a06360" + "35114b00-1881-450b-9cef-830a5dae333d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3512,25 +3872,31 @@ "14945" ], "x-ms-correlation-request-id": [ - "8bc63ef4-ab18-48a7-b6ba-68cf17609e70" + "2762193b-8fb1-40e8-8d85-f1517e118d5a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014242Z:8bc63ef4-ab18-48a7-b6ba-68cf17609e70" + "WESTUS2:20180510T172750Z:2762193b-8fb1-40e8-8d85-f1517e118d5a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:42:41 GMT" + "Thu, 10 May 2018 17:27:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3547,12 +3913,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "68c954c1-c243-492f-b41b-5cb8c4bf317f" + "aa90bdb7-616d-492f-ab25-de3116f0220e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], "Cache-Control": [ "no-cache" ], @@ -3560,29 +3932,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" - ], "x-ms-correlation-request-id": [ - "c074e37d-2dd7-499f-8b11-3c60616a0abb" + "625868b7-6ef8-4dc3-b2a3-27aa71f4c83c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014312Z:c074e37d-2dd7-499f-8b11-3c60616a0abb" + "WESTUS2:20180510T172800Z:625868b7-6ef8-4dc3-b2a3-27aa71f4c83c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:43:12 GMT" + "Thu, 10 May 2018 17:28:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3599,8 +3974,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "160a1716-9b52-467e-bffb-667da1b74889" + "942e7525-9bff-4a1f-ba40-a07bcdf7a497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3616,25 +3994,31 @@ "14943" ], "x-ms-correlation-request-id": [ - "bbdb2489-6acc-41dd-ab40-87c87a8590f6" + "967a6a4b-91e1-4103-a727-11d278cc0a5b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014343Z:bbdb2489-6acc-41dd-ab40-87c87a8590f6" + "WESTUS2:20180510T172810Z:967a6a4b-91e1-4103-a727-11d278cc0a5b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:43:42 GMT" + "Thu, 10 May 2018 17:28:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3651,8 +4035,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "8071699f-1391-4092-9da2-cf30c1c5ebb4" + "bc79209a-5cb4-4b9e-bca5-7c57d55db603" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3668,25 +4055,31 @@ "14942" ], "x-ms-correlation-request-id": [ - "149dddae-ab56-4a59-b4b3-6e26837aeedd" + "0f645f25-060c-4825-b1c3-f8abd6b57efe" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014413Z:149dddae-ab56-4a59-b4b3-6e26837aeedd" + "WESTUS2:20180510T172820Z:0f645f25-060c-4825-b1c3-f8abd6b57efe" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:44:13 GMT" + "Thu, 10 May 2018 17:28:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3703,8 +4096,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "1d5da33f-e7fe-4073-98ba-5d42c0a5497c" + "9df548b1-7c32-4989-afac-621f768cea9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3720,25 +4116,31 @@ "14941" ], "x-ms-correlation-request-id": [ - "3ae0d6b3-dbfd-47da-9c40-3a5ca88602c3" + "12f6abea-1ad8-45ff-a08d-730bc35cffea" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014443Z:3ae0d6b3-dbfd-47da-9c40-3a5ca88602c3" + "WESTUS2:20180510T172830Z:12f6abea-1ad8-45ff-a08d-730bc35cffea" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:44:43 GMT" + "Thu, 10 May 2018 17:28:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3755,8 +4157,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "b720fa88-27c0-4e04-bfba-88ff5b2696db" + "86a5b1a6-ae48-4edc-a33c-89bf9979fa20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3772,25 +4177,31 @@ "14940" ], "x-ms-correlation-request-id": [ - "506ae2df-0f27-486d-b270-7f7234f73058" + "9181dda3-eb5e-40e1-96bb-fe1c5dcaf989" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014514Z:506ae2df-0f27-486d-b270-7f7234f73058" + "WESTUS2:20180510T172840Z:9181dda3-eb5e-40e1-96bb-fe1c5dcaf989" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:45:13 GMT" + "Thu, 10 May 2018 17:28:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3807,8 +4218,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "6e920451-3c48-48e1-b17e-d804de6e5f9e" + "95b7fa66-d3ce-4644-a849-b3f0ea7e1a22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3824,25 +4238,31 @@ "14939" ], "x-ms-correlation-request-id": [ - "07aed823-9773-4ed7-bb79-5700ca7c0f58" + "58aea23f-e300-44ee-af05-c9ff1f0ab59f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014544Z:07aed823-9773-4ed7-bb79-5700ca7c0f58" + "WESTUS2:20180510T172851Z:58aea23f-e300-44ee-af05-c9ff1f0ab59f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:45:44 GMT" + "Thu, 10 May 2018 17:28:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3859,8 +4279,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "b8a9c7b3-ef37-43b3-b5a3-65ffba0e8f7e" + "5b1102db-a394-49f0-ab87-cde5d073b5b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3876,25 +4299,31 @@ "14938" ], "x-ms-correlation-request-id": [ - "46bf2591-5502-467b-a1f1-68b48e69c01c" + "b19578f4-a48e-4f27-9733-a905148eb05e" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014614Z:46bf2591-5502-467b-a1f1-68b48e69c01c" + "WESTUS2:20180510T172901Z:b19578f4-a48e-4f27-9733-a905148eb05e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:46:14 GMT" + "Thu, 10 May 2018 17:29:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3911,8 +4340,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "b1f956f6-c410-4b48-aa74-6242c2a99f01" + "52c620c4-62c3-4e43-9427-53894654df63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3928,25 +4360,31 @@ "14937" ], "x-ms-correlation-request-id": [ - "6a92a25c-f92c-435e-aefa-170c62bdc6d3" + "a2c9f1f0-c5c8-4e78-b41b-0aee5694d6da" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014645Z:6a92a25c-f92c-435e-aefa-170c62bdc6d3" + "WESTUS2:20180510T172911Z:a2c9f1f0-c5c8-4e78-b41b-0aee5694d6da" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:46:44 GMT" + "Thu, 10 May 2018 17:29:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3963,12 +4401,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "f37960cd-7b21-4f5c-b5e4-8ba820253ff2" + "766d6da6-cd71-44b0-a7c3-b58ad5b48b54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], "Cache-Control": [ "no-cache" ], @@ -3976,29 +4420,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" - ], "x-ms-correlation-request-id": [ - "2d5a139f-b5d4-4bad-9602-3d1de8ae0c13" + "96e5503c-577d-4273-ac98-272450646b98" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014715Z:2d5a139f-b5d4-4bad-9602-3d1de8ae0c13" + "WESTUS2:20180510T172921Z:96e5503c-577d-4273-ac98-272450646b98" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:47:15 GMT" + "Thu, 10 May 2018 17:29:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4015,8 +4462,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "de8ffeaf-690f-486f-8d0e-d8d0f32c7a90" + "1adc9c67-e59d-46dd-9c15-55d9cdeee98b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4032,25 +4482,31 @@ "14935" ], "x-ms-correlation-request-id": [ - "ef2977c4-b388-43f8-b35b-8bee8941d79a" + "f64f1fcc-1c85-48dd-a5f3-b3864a92bae1" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014746Z:ef2977c4-b388-43f8-b35b-8bee8941d79a" + "WESTUS2:20180510T172931Z:f64f1fcc-1c85-48dd-a5f3-b3864a92bae1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:47:45 GMT" + "Thu, 10 May 2018 17:29:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4067,8 +4523,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "e75f9b87-4528-482e-9a6a-6d99afc75167" + "10e903d5-0ce9-4d65-8037-516e6f1d9ce2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4084,25 +4543,31 @@ "14934" ], "x-ms-correlation-request-id": [ - "6af78ae9-4d92-48b2-a099-8b703f46343f" + "bf0c3cc4-f0d8-4f0f-bd2b-26257463c2d1" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014816Z:6af78ae9-4d92-48b2-a099-8b703f46343f" + "WESTUS2:20180510T172941Z:bf0c3cc4-f0d8-4f0f-bd2b-26257463c2d1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:48:15 GMT" + "Thu, 10 May 2018 17:29:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4119,8 +4584,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "1c85f1ab-6400-4b50-94f4-2332ac8d105f" + "4ec16871-6072-4257-8db2-c1c0ffded680" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4136,25 +4604,31 @@ "14933" ], "x-ms-correlation-request-id": [ - "f6d0d472-2b19-4d66-93f3-9ee622368d6c" + "88ccbb5b-6e0f-4992-b893-07405709a89f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014846Z:f6d0d472-2b19-4d66-93f3-9ee622368d6c" + "WESTUS2:20180510T172951Z:88ccbb5b-6e0f-4992-b893-07405709a89f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:48:46 GMT" + "Thu, 10 May 2018 17:29:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4171,8 +4645,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "72998fa6-508b-4ade-913d-a8d2aee284bb" + "a95ba862-bb71-400c-bcef-5c771f0a5cf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4188,31 +4665,37 @@ "14932" ], "x-ms-correlation-request-id": [ - "8a96ece8-87a4-49f7-b160-3b2695a36132" + "e08d0fdc-aec4-4ca0-811b-f3f70c0f58cd" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014917Z:8a96ece8-87a4-49f7-b160-3b2695a36132" + "WESTUS2:20180510T173001Z:e08d0fdc-aec4-4ca0-811b-f3f70c0f58cd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:49:16 GMT" + "Thu, 10 May 2018 17:30:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/f7565308-f35e-4870-a663-1b3a7a326ab0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjc1NjUzMDgtZjM1ZS00ODcwLWE2NjMtMWIzYTdhMzI2YWIwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4223,8 +4706,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "4ad37dbb-0818-4371-8658-9b61e3a4c4e5" + "1993836e-70bd-44d1-b62a-107d3d4ac206" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4240,37 +4726,37 @@ "14931" ], "x-ms-correlation-request-id": [ - "318042f0-c896-4119-8cb8-9d1d6c9a7076" + "fa7bcdc3-76d1-437d-a259-2531aed51da3" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014947Z:318042f0-c896-4119-8cb8-9d1d6c9a7076" + "WESTUS2:20180510T173011Z:fa7bcdc3-76d1-437d-a259-2531aed51da3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:49:46 GMT" + "Thu, 10 May 2018 17:30:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNjAyNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e94b6ad0-e381-4896-a132-5591e7a53c62" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/localNetworkGateways/onesdk6027' under resource group 'onesdk723' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "162" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4281,17 +4767,11 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "0c95336a-beba-4ae5-9493-94a7427e427b" - ], - "x-ms-correlation-request-id": [ - "0c95336a-beba-4ae5-9493-94a7427e427b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151207T014948Z:0c95336a-beba-4ae5-9493-94a7427e427b" + "7762ed37-0b06-4245-8d6b-d61c21240979" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4299,26 +4779,45 @@ "Cache-Control": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "0614d57c-5430-4b42-af42-2a5fbb19735b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173021Z:0614d57c-5430-4b42-af42-2a5fbb19735b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Mon, 07 Dec 2015 01:49:47 GMT" + "Thu, 10 May 2018 17:30:21 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNjAyNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6027\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\",\r\n \"etag\": \"W/\\\"087e3071-03c4-4e9d-b094-0aeb19c9cfeb\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a63f7ce5-9511-4cd8-9d88-d3bec695816a\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "586" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4329,8 +4828,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "3ae4708b-c32b-4bf7-9bd8-381e7e89c85f" + "080bc044-eb46-46dd-bdc1-5c4fdb53af83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4338,48 +4840,45 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"087e3071-03c4-4e9d-b094-0aeb19c9cfeb\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14929" ], "x-ms-correlation-request-id": [ - "87111219-3c5a-4dd2-b884-f1834b2beb4b" + "2cd3097b-4b9d-44fe-a2f4-0ccc577b3a6a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015000Z:87111219-3c5a-4dd2-b884-f1834b2beb4b" + "WESTUS2:20180510T173031Z:2cd3097b-4b9d-44fe-a2f4-0ccc577b3a6a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:49:59 GMT" + "Thu, 10 May 2018 17:30:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNjAyNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "973a3ea0-ea9d-44bc-91b3-2c72eba6498c" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6027\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\",\r\n \"etag\": \"W/\\\"087e3071-03c4-4e9d-b094-0aeb19c9cfeb\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a63f7ce5-9511-4cd8-9d88-d3bec695816a\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "586" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4390,57 +4889,57 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "63e174b5-07d4-4109-92b7-44e07a137a5f" + "09612f11-a7e8-407b-9bfb-ee19f835db50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"087e3071-03c4-4e9d-b094-0aeb19c9cfeb\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" - ], "x-ms-correlation-request-id": [ - "156e7d13-8dbf-40f6-9298-f80c3e632294" + "71e7e8b2-16f5-41bb-aa19-407c3de60843" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015000Z:156e7d13-8dbf-40f6-9298-f80c3e632294" + "WESTUS2:20180510T173041Z:71e7e8b2-16f5-41bb-aa19-407c3de60843" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:49:59 GMT" + "Thu, 10 May 2018 17:30:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNjAyNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2861fce3-6c96-44f9-a97a-ce0051d84d1e" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6027\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\",\r\n \"etag\": \"W/\\\"087e3071-03c4-4e9d-b094-0aeb19c9cfeb\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a63f7ce5-9511-4cd8-9d88-d3bec695816a\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "586" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4451,8 +4950,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "cea0798c-5238-400a-9067-61a0b9667017" + "8e5d565d-8955-4185-b6eb-1d85d2477c66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4460,54 +4962,45 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"087e3071-03c4-4e9d-b094-0aeb19c9cfeb\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14927" ], "x-ms-correlation-request-id": [ - "e3b6ceb2-7197-4644-ae6e-b4fe03607222" + "9c17bc25-10bc-4c7e-9f2e-8cdd741738d5" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015000Z:e3b6ceb2-7197-4644-ae6e-b4fe03607222" + "WESTUS2:20180510T173051Z:9c17bc25-10bc-4c7e-9f2e-8cdd741738d5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:49:59 GMT" + "Thu, 10 May 2018 17:30:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNjAyNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n }\r\n}", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "203" - ], - "x-ms-client-request-id": [ - "07bc2a2e-4d14-4cf0-bcf6-1f1140fdb9ce" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6027\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\",\r\n \"etag\": \"W/\\\"b8f76807-b182-42b1-ae92-952a5d09e5fe\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a63f7ce5-9511-4cd8-9d88-d3bec695816a\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "585" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4522,10 +5015,7 @@ "10" ], "x-ms-request-id": [ - "5cde846c-33d4-426a-897c-5680c7fae26a" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/5cde846c-33d4-426a-897c-5680c7fae26a?api-version=2017-09-01" + "92c3dea6-4b96-4cf6-a09c-66c838320385" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4537,35 +5027,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" ], "x-ms-correlation-request-id": [ - "391bfccf-9cfa-48d9-bc58-63f7fdb25d8c" + "56d5c65f-1825-4101-b838-17f8d3c3a0aa" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014949Z:391bfccf-9cfa-48d9-bc58-63f7fdb25d8c" + "WESTUS2:20180510T173101Z:56d5c65f-1825-4101-b838-17f8d3c3a0aa" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:49:48 GMT" + "Thu, 10 May 2018 17:31:01 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/5cde846c-33d4-426a-897c-5680c7fae26a?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvNWNkZTg0NmMtMzNkNC00MjZhLTg5N2MtNTY4MGM3ZmFlMjZhP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4576,8 +5072,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "da217b0b-d0dd-4c0f-a41d-8888cd57dd3f" + "aa7ca179-189f-4ed3-89a3-d2682a3121e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4590,40 +5089,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14925" ], "x-ms-correlation-request-id": [ - "6f6e0ffa-9d25-4fdf-8a2e-8c6a72873e36" + "2dedd0ba-f754-4d4b-851c-ec88808ea7f9" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T014959Z:6f6e0ffa-9d25-4fdf-8a2e-8c6a72873e36" + "WESTUS2:20180510T173112Z:2dedd0ba-f754-4d4b-851c-ec88808ea7f9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:49:59 GMT" + "Thu, 10 May 2018 17:31:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrODU4MD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "004462b8-44ff-44c8-8cce-d35958b26ccc" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/connections/onesdk8580' under resource group 'onesdk723' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "153" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4634,17 +5133,11 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "34c0cafc-456e-4be7-8c2a-1a294ef7a849" - ], - "x-ms-correlation-request-id": [ - "34c0cafc-456e-4be7-8c2a-1a294ef7a849" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151207T015000Z:34c0cafc-456e-4be7-8c2a-1a294ef7a849" + "094e9039-3e27-42ef-a841-0a2e296e4de0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4652,26 +5145,45 @@ "Cache-Control": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "97f3ef64-fa29-45d0-b084-17d371770620" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173122Z:97f3ef64-fa29-45d0-b084-17d371770620" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Mon, 07 Dec 2015 01:50:00 GMT" + "Thu, 10 May 2018 17:31:21 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrODU4MD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8580\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580\",\r\n \"etag\": \"W/\\\"4000254b-f109-4427-8242-d2a1d4c2078e\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb4cd322-ef41-42b3-b09b-773a0d667e4b\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "999" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4682,8 +5194,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "37c2a06d-2919-4fd7-951d-54808fb1b34a" + "7b1bf8f6-8df6-4dfd-b367-96a7cbcba668" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4696,40 +5211,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14923" ], "x-ms-correlation-request-id": [ - "fc429079-e580-42a6-a209-aebf471e2003" + "d847e6dc-8b37-4fb1-8fad-6f5e0fe490fd" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015113Z:fc429079-e580-42a6-a209-aebf471e2003" + "WESTUS2:20180510T173132Z:d847e6dc-8b37-4fb1-8fad-6f5e0fe490fd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:51:12 GMT" + "Thu, 10 May 2018 17:31:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrODU4MD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9c51d420-96e9-4fd7-9843-74e467a054d1" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8580\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580\",\r\n \"etag\": \"W/\\\"4000254b-f109-4427-8242-d2a1d4c2078e\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb4cd322-ef41-42b3-b09b-773a0d667e4b\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "999" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4740,8 +5255,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "d43df9c9-a339-4b72-85cb-58a960241c73" + "0990231b-4ff2-4902-9eed-0d423b079d87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4754,40 +5272,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14922" ], "x-ms-correlation-request-id": [ - "fd5fd39e-4b23-4061-88b1-7e7b55e14423" + "5674b8b8-8af0-403c-b228-4856adde5f4c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015113Z:fd5fd39e-4b23-4061-88b1-7e7b55e14423" + "WESTUS2:20180510T173142Z:5674b8b8-8af0-403c-b228-4856adde5f4c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:51:12 GMT" + "Thu, 10 May 2018 17:31:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrODU4MD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "651a7371-a65e-4701-9549-013e07a90b57" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8580\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580\",\r\n \"etag\": \"W/\\\"4000254b-f109-4427-8242-d2a1d4c2078e\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb4cd322-ef41-42b3-b09b-773a0d667e4b\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "999" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4798,8 +5316,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "503e7498-35a9-4ae1-ba5c-946eebd5c74b" + "8ee0b619-caaf-435c-9304-6870ed82395e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4812,40 +5333,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14921" ], "x-ms-correlation-request-id": [ - "db33fd84-5aef-4589-8a6a-c205c6c0d545" + "04cadf1b-5506-4523-ab04-d45efd0bb0e1" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015114Z:db33fd84-5aef-4589-8a6a-c205c6c0d545" + "WESTUS2:20180510T173152Z:04cadf1b-5506-4523-ab04-d45efd0bb0e1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:51:14 GMT" + "Thu, 10 May 2018 17:31:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrODU4MD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "03f4f18b-bda2-4490-9376-424ae631e11e" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8580\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580\",\r\n \"etag\": \"W/\\\"4000254b-f109-4427-8242-d2a1d4c2078e\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb4cd322-ef41-42b3-b09b-773a0d667e4b\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "999" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4856,12 +5377,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "f614ff8d-dab6-4018-b7f0-0d76a816aa9c" + "53412f8f-91e4-4af1-a0f7-146926e691f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], "Cache-Control": [ "no-cache" ], @@ -4869,35 +5396,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" - ], "x-ms-correlation-request-id": [ - "1f659f75-a3ec-4897-9bb3-1f6fc9ea2222" + "592dfcf7-9eda-41ec-9e56-50e28f6c4fc8" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015115Z:1f659f75-a3ec-4897-9bb3-1f6fc9ea2222" + "WESTUS2:20180510T173202Z:592dfcf7-9eda-41ec-9e56-50e28f6c4fc8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:51:15 GMT" + "Thu, 10 May 2018 17:32:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrODU4MD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8580\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580\",\r\n \"etag\": \"W/\\\"a5121649-c821-4ebb-9598-e8153934ea82\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb4cd322-ef41-42b3-b09b-773a0d667e4b\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "999" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4908,8 +5438,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "df85c2aa-6012-470a-8318-2e525f376479" + "e745bcec-2597-49d5-9048-5de693534a8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4922,40 +5455,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14919" ], "x-ms-correlation-request-id": [ - "af22a584-8f26-4d7d-a992-624b4a8eb869" + "85f688d3-86c5-4455-be6c-f8cac6508a71" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015126Z:af22a584-8f26-4d7d-a992-624b4a8eb869" + "WESTUS2:20180510T173212Z:85f688d3-86c5-4455-be6c-f8cac6508a71" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:51:25 GMT" + "Thu, 10 May 2018 17:32:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrODU4MD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "931abef8-cc06-453b-b6ff-c72998e1d1f2" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8580\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580\",\r\n \"etag\": \"W/\\\"a5121649-c821-4ebb-9598-e8153934ea82\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb4cd322-ef41-42b3-b09b-773a0d667e4b\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "999" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4966,8 +5499,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "994aeaae-f52b-4325-bed8-63a6ba3f31b0" + "e68365ee-8ec5-4217-8679-1b9eb583bda6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4980,40 +5516,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14918" ], "x-ms-correlation-request-id": [ - "589b298f-9b2e-424f-b8a2-7e1f5b6b2538" + "63f02d44-3a36-434d-aa03-3ea8af120ab9" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015127Z:589b298f-9b2e-424f-b8a2-7e1f5b6b2538" + "WESTUS2:20180510T173222Z:63f02d44-3a36-434d-aa03-3ea8af120ab9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:51:26 GMT" + "Thu, 10 May 2018 17:32:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrODU4MD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9127f981-7741-4326-9a29-e32e0244165f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8580\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580\",\r\n \"etag\": \"W/\\\"a5121649-c821-4ebb-9598-e8153934ea82\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb4cd322-ef41-42b3-b09b-773a0d667e4b\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "999" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5024,8 +5560,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "ae4af0c8-534a-4921-a173-0d1bc3db7cf3" + "5b144bb4-957e-4bc0-a8d1-862b042dbc7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5038,46 +5577,4289 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14917" ], "x-ms-correlation-request-id": [ - "1e52599c-96d8-4c3b-9e14-32ad4bc83f97" + "8527a00c-6a85-46d2-9149-e732b9379b92" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015127Z:1e52599c-96d8-4c3b-9e14-32ad4bc83f97" + "WESTUS2:20180510T173232Z:8527a00c-6a85-46d2-9149-e732b9379b92" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:51:27 GMT" + "Thu, 10 May 2018 17:32:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrODU4MD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"37bca8b3-d237-445d-b403-8858bac290a0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk4606\",\r\n \"etag\": \"W/\\\"37bca8b3-d237-445d-b403-8858bac290a0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194/ipConfigurations/onesdk4606\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworks/onesdk3798/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/publicIPAddresses/onesdk149\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"resourceGuid\": \"f9a64c1c-a652-4417-8ab0-d2dbb923c77e\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"087e3071-03c4-4e9d-b094-0aeb19c9cfeb\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"resourceGuid\": \"a63f7ce5-9511-4cd8-9d88-d3bec695816a\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"egressBytesTransferred\": 0,\r\n \"ingressBytesTransferred\": 0\r\n }\r\n}", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ba2ecaac-1024-4c35-adf3-34d1999d5e5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-correlation-request-id": [ + "9f0ea9fb-c374-40c0-af76-0271ecb85bb7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173242Z:9f0ea9fb-c374-40c0-af76-0271ecb85bb7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:32:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d48965fd-1edc-48a8-b5c9-f7a567a5fa8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-correlation-request-id": [ + "0c70c5e5-a191-4ff7-8f2e-c74a08b800fa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173253Z:0c70c5e5-a191-4ff7-8f2e-c74a08b800fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:32:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "144bc208-c68b-438f-ab03-fe10fc48280a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-correlation-request-id": [ + "275b33b6-fdc0-48b6-b69b-093844d05984" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173303Z:275b33b6-fdc0-48b6-b69b-093844d05984" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:33:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0c394fac-238d-4313-a48e-48e0cb08a2ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "05eab9cb-a67e-473d-a9e5-2f0d82d5c665" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173313Z:05eab9cb-a67e-473d-a9e5-2f0d82d5c665" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:33:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e6f8947f-e423-40ca-b752-18b7ead764fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d8cfe01e-28cb-45cd-84ad-75f6d233fb38" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173323Z:d8cfe01e-28cb-45cd-84ad-75f6d233fb38" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:33:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1f0a7614-3c70-4652-9985-32610c477b70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-correlation-request-id": [ + "b367a0e8-e858-403f-be80-ebabe9566516" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173333Z:b367a0e8-e858-403f-be80-ebabe9566516" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:33:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fd4e7f6f-4dc4-41de-8fd3-caf014baf684" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-correlation-request-id": [ + "7f0674e0-2968-4f95-84fc-a256df8c7a32" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173343Z:7f0674e0-2968-4f95-84fc-a256df8c7a32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:33:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a8249f95-3d65-4214-8478-d928ae9c1674" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-correlation-request-id": [ + "8b9b0036-d8dc-498e-8af8-766c25efdc7a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173353Z:8b9b0036-d8dc-498e-8af8-766c25efdc7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:33:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1379a714-6d38-498d-8f3b-8965257f731b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14908" + ], + "x-ms-correlation-request-id": [ + "bf98e8f6-784b-46cf-a0cd-44bc3ef60774" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173403Z:bf98e8f6-784b-46cf-a0cd-44bc3ef60774" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:34:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a6465771-6691-48f0-ac1e-21597180f2a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" + ], + "x-ms-correlation-request-id": [ + "7a509ba5-d895-4f55-ba21-fd20854e9499" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173413Z:7a509ba5-d895-4f55-ba21-fd20854e9499" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:34:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ae1f781c-9035-4048-b361-ff9092ffc642" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14906" + ], + "x-ms-correlation-request-id": [ + "55b42d58-b72e-4496-84e2-d8f85d97b4ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173423Z:55b42d58-b72e-4496-84e2-d8f85d97b4ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:34:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2aa0839a-4dcb-4cd4-8ea9-155ef2b0fbfe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14905" + ], + "x-ms-correlation-request-id": [ + "3ab123fe-ea9c-4660-8467-a5efe0e40abe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173433Z:3ab123fe-ea9c-4660-8467-a5efe0e40abe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:34:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "61299127-97c6-4d8b-b13e-a8d8cfaf0c21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14904" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "88351f85-b46c-4f5e-b18f-7899e31ab839" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173443Z:88351f85-b46c-4f5e-b18f-7899e31ab839" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:34:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e12092b3-d01d-441c-aee0-af0a5aaac74a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14903" + ], + "x-ms-correlation-request-id": [ + "290cc5be-06e7-49fb-af61-576b4d67fb16" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173453Z:290cc5be-06e7-49fb-af61-576b4d67fb16" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:34:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "08380319-0d0e-4634-8486-174b492b9d7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], + "x-ms-correlation-request-id": [ + "3c247a9c-c928-4e99-9dd8-a6a2da69a97b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173503Z:3c247a9c-c928-4e99-9dd8-a6a2da69a97b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:35:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "655aff6c-5a71-4698-b38d-053dff6624ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14901" + ], + "x-ms-correlation-request-id": [ + "e5029045-473f-4fe3-af2e-3c59d1789fee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173513Z:e5029045-473f-4fe3-af2e-3c59d1789fee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:35:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "81f6a414-59d4-4fd6-a7c5-d6fca58fc413" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14900" + ], + "x-ms-correlation-request-id": [ + "87f38e53-3d81-4751-879c-462179fab85e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173524Z:87f38e53-3d81-4751-879c-462179fab85e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:35:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e4b4addb-bd6d-45cf-b7b5-5c204db9df72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14899" + ], + "x-ms-correlation-request-id": [ + "fb0f0437-a215-4ffa-85fe-1707dba843ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173534Z:fb0f0437-a215-4ffa-85fe-1707dba843ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:35:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cae0a6b7-fa01-4cf9-b10b-9d1a814b6f91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14898" + ], + "x-ms-correlation-request-id": [ + "fbfac4fd-494e-4518-90c4-88f55539ba71" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173544Z:fbfac4fd-494e-4518-90c4-88f55539ba71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:35:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d6c6db2d-0f5b-4753-bb35-f4217dd43334" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14897" + ], + "x-ms-correlation-request-id": [ + "7e13292f-1275-4a91-9857-5494e6df6429" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173554Z:7e13292f-1275-4a91-9857-5494e6df6429" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:35:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a80bcaa1-ed31-413b-a438-87bf7279a7aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14896" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "779c585c-6523-459e-8ba1-124886c69050" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173604Z:779c585c-6523-459e-8ba1-124886c69050" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:36:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0765c5e3-1df8-4800-837b-8d8047fdb619" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14895" + ], + "x-ms-correlation-request-id": [ + "36e0bc13-572c-4775-8bf6-a67ebf171774" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173614Z:36e0bc13-572c-4775-8bf6-a67ebf171774" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:36:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "484d67a9-0bd4-4f40-8ec7-b56c52e41c97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14894" + ], + "x-ms-correlation-request-id": [ + "884e7a61-78a4-491d-8ddd-6e02d87c7d61" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173624Z:884e7a61-78a4-491d-8ddd-6e02d87c7d61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:36:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "31ce264e-f890-4277-9437-0277cf1e77cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14893" + ], + "x-ms-correlation-request-id": [ + "ad0e00a0-c6d3-4a71-bfde-94ccbf9e92d9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173634Z:ad0e00a0-c6d3-4a71-bfde-94ccbf9e92d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:36:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "67759401-9f31-48d5-8a0c-3ecf27bc1dd0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], + "x-ms-correlation-request-id": [ + "c4d7bb42-953c-4249-a730-c5ed1f8133ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173644Z:c4d7bb42-953c-4249-a730-c5ed1f8133ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:36:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "64187a1c-ec62-4820-98e7-c45ca9d92b5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14891" + ], + "x-ms-correlation-request-id": [ + "c5791bd2-7481-4aef-a116-4091d6fd196e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173654Z:c5791bd2-7481-4aef-a116-4091d6fd196e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:36:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b35050bf-d4fa-4f08-a200-86c1a2fe1825" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" + ], + "x-ms-correlation-request-id": [ + "e763a341-569d-4a21-85c6-22749addf842" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173704Z:e763a341-569d-4a21-85c6-22749addf842" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:37:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c65cd06c-dcf3-4e98-aad2-f3d01fb4b1e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" + ], + "x-ms-correlation-request-id": [ + "37a90fbc-ca15-4a79-a995-4ca26ad31816" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173714Z:37a90fbc-ca15-4a79-a995-4ca26ad31816" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:37:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "78015e86-3957-4ede-ae61-8db33dcf8150" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4aea3e68-c3fd-45a0-8f38-3bb86807e889" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173724Z:4aea3e68-c3fd-45a0-8f38-3bb86807e889" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:37:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2a2a47e9-4009-4a7a-b5cc-42ed13da5ed9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14887" + ], + "x-ms-correlation-request-id": [ + "36c6a405-85b6-4943-a44b-8b5b2b6099bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173734Z:36c6a405-85b6-4943-a44b-8b5b2b6099bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:37:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3af47c59-6149-48b0-aed7-c844435ee2ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14886" + ], + "x-ms-correlation-request-id": [ + "5e73e940-b036-4f24-95ac-3cf7d74f9499" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173745Z:5e73e940-b036-4f24-95ac-3cf7d74f9499" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:37:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fcb53792-914d-4a46-b2d2-dfd638568947" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14885" + ], + "x-ms-correlation-request-id": [ + "7e6beb13-9fa2-41ed-a115-15d9c29a6a26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173755Z:7e6beb13-9fa2-41ed-a115-15d9c29a6a26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:37:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ee35f4dd-a746-45af-b40c-d295b396336e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14884" + ], + "x-ms-correlation-request-id": [ + "9e2bee1c-f7f3-479f-bab9-af1d039e6d95" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173805Z:9e2bee1c-f7f3-479f-bab9-af1d039e6d95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:38:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ead8f7ce-2925-4200-b759-75bf042d9cab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14883" + ], + "x-ms-correlation-request-id": [ + "ff7ec912-9ec2-4300-b320-56636d8cdda7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173815Z:ff7ec912-9ec2-4300-b320-56636d8cdda7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:38:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f4bd1ea8-eee7-45af-910b-9126c6e3192b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14882" + ], + "x-ms-correlation-request-id": [ + "7d7364de-be96-48cc-be91-2b07dcedc009" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173825Z:7d7364de-be96-48cc-be91-2b07dcedc009" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:38:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "77d6e753-7718-47d6-b372-40644c302e76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14881" + ], + "x-ms-correlation-request-id": [ + "22919f7e-8b65-4db3-8f48-4f3fbc42a0c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173835Z:22919f7e-8b65-4db3-8f48-4f3fbc42a0c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:38:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c0636ce3-712a-4f9a-8752-8ac591712423" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14880" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "bb5c3308-3c7e-4a2f-b3ad-dca0f7c00a93" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173845Z:bb5c3308-3c7e-4a2f-b3ad-dca0f7c00a93" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:38:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "877e6288-3fab-4b5d-9a19-95b108833250" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14879" + ], + "x-ms-correlation-request-id": [ + "78db0874-b8b4-4b1b-91e9-94ee831d0ea3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173855Z:78db0874-b8b4-4b1b-91e9-94ee831d0ea3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:38:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5f668ce6-8ed5-44bc-af50-79c4c6269236" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14878" + ], + "x-ms-correlation-request-id": [ + "bd201bf8-ad5e-4816-b4a6-7df0e7bd3163" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173905Z:bd201bf8-ad5e-4816-b4a6-7df0e7bd3163" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:39:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3a8f2916-95ec-4025-bdfb-48089b69a766" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14877" + ], + "x-ms-correlation-request-id": [ + "2148d0c6-4459-4477-bbad-c734332c164a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173915Z:2148d0c6-4459-4477-bbad-c734332c164a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:39:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2715f329-3dd9-4f68-8232-63bdeb436480" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14876" + ], + "x-ms-correlation-request-id": [ + "d5bdd263-acd8-4be0-bfea-719de1bfc270" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173925Z:d5bdd263-acd8-4be0-bfea-719de1bfc270" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:39:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7bcd3ac9-a46a-46d0-8d8e-2181b66d5a94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14875" + ], + "x-ms-correlation-request-id": [ + "1935ad0e-1266-420e-8088-ddd61a39d144" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173935Z:1935ad0e-1266-420e-8088-ddd61a39d144" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:39:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d3aea59b-9a8d-4da6-927f-ac05982e2e2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14874" + ], + "x-ms-correlation-request-id": [ + "9574e763-1078-4e00-9493-3e4598db7dec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173945Z:9574e763-1078-4e00-9493-3e4598db7dec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:39:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c831e14d-1675-4b62-a481-7b8c17256027" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14873" + ], + "x-ms-correlation-request-id": [ + "bf7b2156-62ff-438c-8848-560d25bf7e88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T173956Z:bf7b2156-62ff-438c-8848-560d25bf7e88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:39:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7a940345-9302-488f-b866-b915b08a129c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14872" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "5484c3ee-035a-4e7b-9d32-53d556d9cc23" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174006Z:5484c3ee-035a-4e7b-9d32-53d556d9cc23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:40:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "153e226a-d07c-41e0-b3c5-66cb25090872" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14871" + ], + "x-ms-correlation-request-id": [ + "dad6a9f8-fce2-48df-acc4-d094fb20767a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174016Z:dad6a9f8-fce2-48df-acc4-d094fb20767a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:40:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7bed27c9-ded1-4b80-8eb9-c1c8ab8398b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14870" + ], + "x-ms-correlation-request-id": [ + "eb1dbb19-f174-46ca-8a83-7a3a30bba207" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174026Z:eb1dbb19-f174-46ca-8a83-7a3a30bba207" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:40:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ee2b213a-f417-4663-bb30-7a79c1b069fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14869" + ], + "x-ms-correlation-request-id": [ + "7e2217ee-ae3b-43cf-ba83-dae0a5d11342" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174036Z:7e2217ee-ae3b-43cf-ba83-dae0a5d11342" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:40:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4c953c13-2fe1-40e2-b8db-ce2f71d783b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14868" + ], + "x-ms-correlation-request-id": [ + "b127b20b-ebb5-49e0-b36e-59e51d8157e4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174046Z:b127b20b-ebb5-49e0-b36e-59e51d8157e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:40:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "71770ad9-3c02-4e78-b2ae-6c092f4731f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14867" + ], + "x-ms-correlation-request-id": [ + "363b2e8a-1441-442d-90d5-450452be2480" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174056Z:363b2e8a-1441-442d-90d5-450452be2480" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:40:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ecc8881d-4ef4-47c2-a3f2-5b9df4431031" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14866" + ], + "x-ms-correlation-request-id": [ + "b8af1596-a33e-4eba-a743-3e7025942d29" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174106Z:b8af1596-a33e-4eba-a743-3e7025942d29" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:41:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3895f6d1-f0f2-490a-8305-09cbf38c2dd9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14865" + ], + "x-ms-correlation-request-id": [ + "1ee96e0f-2521-4f48-988d-9fda4f79105f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174116Z:1ee96e0f-2521-4f48-988d-9fda4f79105f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:41:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0ca6b4d2-d607-4060-b26a-b945ec1a1034" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14864" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "7d1b2428-c2e8-4b3f-b820-5d7fab4eecd2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174126Z:7d1b2428-c2e8-4b3f-b820-5d7fab4eecd2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:41:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cf1f7048-9b01-416f-aa68-0f06c431fc13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14863" + ], + "x-ms-correlation-request-id": [ + "3c16aba4-78de-4c13-93c7-55b24e1ff933" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174136Z:3c16aba4-78de-4c13-93c7-55b24e1ff933" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:41:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/831df460-02b8-4804-8a25-9e2dbdfe51c4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMxZGY0NjAtMDJiOC00ODA0LThhMjUtOWUyZGJkZmU1MWM0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3acf5850-1c81-4a2f-a749-85349b3c4ea9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14862" + ], + "x-ms-correlation-request-id": [ + "6f7dd93e-8788-488a-b720-95f9b44e1bab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174146Z:6f7dd93e-8788-488a-b720-95f9b44e1bab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:41:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM5MDIwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0dee6eea-c1ef-4f06-a99c-e24204b27c3a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/localNetworkGateways/ps9020' under resource group 'ps4447' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "155" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "69c3c349-cd6e-4547-ac0a-6e1dd9cb955e" + ], + "x-ms-correlation-request-id": [ + "69c3c349-cd6e-4547-ac0a-6e1dd9cb955e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174147Z:69c3c349-cd6e-4547-ac0a-6e1dd9cb955e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 17:41:46 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM5MDIwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9020\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\",\r\n \"etag\": \"W/\\\"d437a393-6c5d-4eda-8b8c-c661d528baf5\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cb32b4d1-b249-42c1-b630-cf666daf722a\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "572" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "be40f6df-80de-492f-bd58-7ea840c89370" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d437a393-6c5d-4eda-8b8c-c661d528baf5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14856" + ], + "x-ms-correlation-request-id": [ + "bd900fc1-bea0-4d6c-bfa9-73e2472911ef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174158Z:bd900fc1-bea0-4d6c-bfa9-73e2472911ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:41:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM5MDIwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3451a4c7-2540-4bb7-8a82-a39bbdf838bb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9020\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\",\r\n \"etag\": \"W/\\\"d437a393-6c5d-4eda-8b8c-c661d528baf5\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cb32b4d1-b249-42c1-b630-cf666daf722a\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "572" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "227c3e5e-1832-422e-8f0e-54748a9eb7f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d437a393-6c5d-4eda-8b8c-c661d528baf5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14855" + ], + "x-ms-correlation-request-id": [ + "4f5e2bfd-7e42-428c-9130-60f8467c802c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174158Z:4f5e2bfd-7e42-428c-9130-60f8467c802c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:41:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM5MDIwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5450308-12a5-4ad0-acd8-fa98df7e8e9c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9020\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\",\r\n \"etag\": \"W/\\\"d437a393-6c5d-4eda-8b8c-c661d528baf5\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cb32b4d1-b249-42c1-b630-cf666daf722a\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "572" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "855645d7-b169-406b-a1ac-154b4d8707be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d437a393-6c5d-4eda-8b8c-c661d528baf5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14854" + ], + "x-ms-correlation-request-id": [ + "8ec92402-41bf-400b-a31f-2dedc5309bce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174158Z:8ec92402-41bf-400b-a31f-2dedc5309bce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:41:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM5MDIwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "447b4070-6a2e-4390-9db9-7c210b7863f1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9020\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\",\r\n \"etag\": \"W/\\\"f6ca2c74-c9bb-42ff-8643-d6c291671f77\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cb32b4d1-b249-42c1-b630-cf666daf722a\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "571" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "201efee5-6f7c-495f-ae8e-8caeca30b536" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/201efee5-6f7c-495f-ae8e-8caeca30b536?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "09f00aa2-f324-4dcb-8faf-c6bfa19ca82e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174148Z:09f00aa2-f324-4dcb-8faf-c6bfa19ca82e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:41:47 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/201efee5-6f7c-495f-ae8e-8caeca30b536?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjAxZWZlZTUtNmY3Yy00OTVmLWFlOGUtOGNhZWNhMzBiNTM2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "845cc191-3998-4185-bb20-9ea06c159a9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14857" + ], + "x-ms-correlation-request-id": [ + "c5f7f27e-4162-4c08-9b22-71f50053fa9b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174158Z:c5f7f27e-4162-4c08-9b22-71f50053fa9b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:41:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM0MzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f14a31a-9f2f-4b85-a79b-87180c5261a8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/connections/ps4347' under resource group 'ps4447' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "42cd1dac-0928-4f22-b564-687098722b6a" + ], + "x-ms-correlation-request-id": [ + "42cd1dac-0928-4f22-b564-687098722b6a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174158Z:42cd1dac-0928-4f22-b564-687098722b6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 17:41:57 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM0MzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4347\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347\",\r\n \"etag\": \"W/\\\"21966045-ae57-4056-8650-f5bd7302e17b\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e706eeb0-016e-41ed-bcfe-f85790e10cb2\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1063" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0b18c00d-b1d6-4c37-8f74-6d441aa2cd98" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14851" + ], + "x-ms-correlation-request-id": [ + "ef394ba9-557e-4891-bd6c-823800cd49c2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174210Z:ef394ba9-557e-4891-bd6c-823800cd49c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:42:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM0MzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9b1b105-17ae-49ca-af32-4caa95b77c16" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4347\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347\",\r\n \"etag\": \"W/\\\"21966045-ae57-4056-8650-f5bd7302e17b\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e706eeb0-016e-41ed-bcfe-f85790e10cb2\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1063" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0b6eea7f-31a5-4571-bb9c-10cc8d556a2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14850" + ], + "x-ms-correlation-request-id": [ + "01d84947-f35b-4dd8-8582-4a7a32c55d10" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174210Z:01d84947-f35b-4dd8-8582-4a7a32c55d10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:42:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM0MzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f24e3d98-38dc-40d7-9321-119691a40683" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4347\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347\",\r\n \"etag\": \"W/\\\"21966045-ae57-4056-8650-f5bd7302e17b\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e706eeb0-016e-41ed-bcfe-f85790e10cb2\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1063" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dbbe156d-8ec6-4c8c-9641-9196c3d90762" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14849" + ], + "x-ms-correlation-request-id": [ + "b23a9a91-feba-46c9-8147-b19fd183d1cb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174211Z:b23a9a91-feba-46c9-8147-b19fd183d1cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:42:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM0MzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5899574-10ff-4b83-8ad9-ebf1a6cb23ad" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4347\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347\",\r\n \"etag\": \"W/\\\"21966045-ae57-4056-8650-f5bd7302e17b\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e706eeb0-016e-41ed-bcfe-f85790e10cb2\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1063" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d38dcf8a-35fd-46ae-ae1c-98ae950ee7c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14847" + ], + "x-ms-correlation-request-id": [ + "d4044d12-ebb6-4cb8-9e3b-c9ffbff396d6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174211Z:d4044d12-ebb6-4cb8-9e3b-c9ffbff396d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:42:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM0MzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4347\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347\",\r\n \"etag\": \"W/\\\"c1399fc1-f401-4bf7-951e-23b18180ca91\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e706eeb0-016e-41ed-bcfe-f85790e10cb2\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1063" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "47bf805e-ffd0-4ca3-af8f-aeb3886f8186" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14845" + ], + "x-ms-correlation-request-id": [ + "53d6a472-4a2a-47fc-a0d6-9ec9d5410c96" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174222Z:53d6a472-4a2a-47fc-a0d6-9ec9d5410c96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:42:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM0MzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2a6eab1-b4ad-45bf-a386-7314ac512f6c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4347\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347\",\r\n \"etag\": \"W/\\\"c1399fc1-f401-4bf7-951e-23b18180ca91\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e706eeb0-016e-41ed-bcfe-f85790e10cb2\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1063" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "98728e35-a78a-4082-a63b-b3e8097d344f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14844" + ], + "x-ms-correlation-request-id": [ + "6e1f1c2b-8014-46c4-8a99-6d7856efd7b5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174223Z:6e1f1c2b-8014-46c4-8a99-6d7856efd7b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:42:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM0MzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "041e581e-2208-4cab-892c-67ab86b79cd8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4347\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347\",\r\n \"etag\": \"W/\\\"c1399fc1-f401-4bf7-951e-23b18180ca91\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e706eeb0-016e-41ed-bcfe-f85790e10cb2\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1063" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8074920d-bb1d-4ee1-bcdc-823035e163dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14843" + ], + "x-ms-correlation-request-id": [ + "c5ff045c-70c3-4b43-8e36-8789fc0d2bf8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174223Z:c5ff045c-70c3-4b43-8e36-8789fc0d2bf8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:42:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM0MzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworks/ps6555/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/publicIPAddresses/ps290\"\r\n }\r\n },\r\n \"name\": \"ps7763\",\r\n \"etag\": \"W/\\\"4aa321e3-4c6e-4a3d-b015-08fb1e310212\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648/ipConfigurations/ps7763\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"3158b6b1-30c4-4fbb-8567-63b4a650db1d\"\r\n },\r\n \"etag\": \"W/\\\"4aa321e3-4c6e-4a3d-b015-08fb1e310212\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n \"localNetworkGateway2\": {\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"resourceGuid\": \"cb32b4d1-b249-42c1-b630-cf666daf722a\"\r\n },\r\n \"etag\": \"W/\\\"d437a393-6c5d-4eda-8b8c-c661d528baf5\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": []\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2330" + "2428" ], "x-ms-client-request-id": [ - "6b6343d7-7022-4f20-bd28-4aabddf9b09a" + "06c18c0e-0d69-4b57-a5f9-13b812646675" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8580\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580\",\r\n \"etag\": \"W/\\\"481ba9a2-c3c7-4724-bfcb-290ea8f4d0d6\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"eb4cd322-ef41-42b3-b09b-773a0d667e4b\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"3082019006092A864886F70D010703A08201813082017D0201003182014930820145020100302D3019311730150603550403130E6E72702D656E6372797074696F6E02106CC87B9D2F498DBB4D188EFB3DE97813300D06092A864886F70D010101050004820100373F073245221F187894639A854456F3D47813010B0752EA42217D5C06FEB097C7A3FB1D9EFB583F3D5A37E3A10EB9EFC6A83BDBB4113DD783865C46575C4C0ACC15F185EF8F5B82DEB0B1E2FF1A25EF12D6C9CED6238D80BA4D5473A3EDC0CDECEBEC5A2375278F4E6E9BC69088DC1423DBBD79669670FFEF63DF30686E778E932ABAEA3185C5CFD3B4C6661875FA2C3FDA78B40A62FE547D0D8549F926C95363B1853E577A198B587511232887D7F6E36C7591FF772569BEBAEF231836BB3D4561E783877814F757E8A83545F9B80B20CD6FB5A42E0FB3A6F2C362E24B13E6C438706F35B99505136076D3F3E337312FA0D4C75E3CC703A99854186733E552302B06092A864886F70D010701301406082A864886F70D0307040894A5280951C57EF880085C40E169AF8DDF4B\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4347\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347\",\r\n \"etag\": \"W/\\\"7aaf5ab5-5c17-4c32-b35e-fe109883b226\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e706eeb0-016e-41ed-bcfe-f85790e10cb2\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1762" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5092,10 +9874,10 @@ "10" ], "x-ms-request-id": [ - "a20fa104-b7e5-4e87-8723-d9bd88b2933b" + "74dc7fbe-d54b-45a3-a54d-c1c41bd9d6ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/a20fa104-b7e5-4e87-8723-d9bd88b2933b?api-version=2017-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/74dc7fbe-d54b-45a3-a54d-c1c41bd9d6ea?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5111,43 +9893,49 @@ "1195" ], "x-ms-correlation-request-id": [ - "c3959d80-6de7-4c03-8aae-6f1d41b3b584" + "711f32cf-c205-4264-9c59-3a2b996d9d34" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015001Z:c3959d80-6de7-4c03-8aae-6f1d41b3b584" + "WESTUS2:20180510T174159Z:711f32cf-c205-4264-9c59-3a2b996d9d34" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:50:01 GMT" + "Thu, 10 May 2018 17:41:58 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrODU4MD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM0MzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"W/\\\"4000254b-f109-4427-8242-d2a1d4c2078e\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [],\r\n \"enableBgp\": false\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\",\r\n \"location\": \"Central US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"egressBytesTransferred\": 0,\r\n \"ingressBytesTransferred\": 0,\r\n \"resourceGuid\": \"eb4cd322-ef41-42b3-b09b-773a0d667e4b\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [],\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"resourceGuid\": \"e706eeb0-016e-41ed-bcfe-f85790e10cb2\"\r\n },\r\n \"etag\": \"W/\\\"21966045-ae57-4056-8650-f5bd7302e17b\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1052" + "1079" ], "x-ms-client-request-id": [ - "8c1f6431-fb49-4128-855d-b52cba8cec5d" + "3485dd49-62e3-4f8a-a107-86873188ec1b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8580\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580\",\r\n \"etag\": \"W/\\\"5cf460c6-e0fa-46bc-987b-c9c15dac8528\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"eb4cd322-ef41-42b3-b09b-773a0d667e4b\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"3082019006092A864886F70D010703A08201813082017D0201003182014930820145020100302D3019311730150603550403130E6E72702D656E6372797074696F6E02106CC87B9D2F498DBB4D188EFB3DE97813300D06092A864886F70D010101050004820100037E5A8AF1CEDFCDF0691C6CA26636527A4605C91D0EA816798DB873A64CB89A1239EBB5D7516F72ADB714F2E27791306C8AC7E52B90552D3563E0A265500BFE979369020570E3A7DB22AE2DC87AAD383F0BD28708DF430FF139625533F11A674753C726D89A4D1E5D2A57D9688C1270CCB9D3CE762370D7FB65597EE650F1379913620C593D1A4102AFEB8DB4C32B65DDAA4A13661C6CF8506A1111F074512AA7BDCCAED90A52168D66A4F7D89AF60081A52FDD281195BD9CC84E09645B3096C4039BBF4820640F6F78E2FD70AD41417931A8A49096998DF97681680E092E6925E25CFA70E0D6E91B40DD2C04357BFED0E932AA64A8D48EEEE59B2BCA06740B302B06092A864886F70D010701301406082A864886F70D0307040875C0E365F7BE09838008D417DD73968EDB65\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4347\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347\",\r\n \"etag\": \"W/\\\"c73bf96a-dc58-4dec-8af4-c505620a0191\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e706eeb0-016e-41ed-bcfe-f85790e10cb2\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1803" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5162,14 +9950,17 @@ "10" ], "x-ms-request-id": [ - "32cf7a65-af07-4212-b27c-5ead8e3f90d5" + "647edd97-cd11-4e0e-8cbb-7d1dfa1aa0d0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/32cf7a65-af07-4212-b27c-5ead8e3f90d5?api-version=2017-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/647edd97-cd11-4e0e-8cbb-7d1dfa1aa0d0?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], "Cache-Control": [ "no-cache" ], @@ -5177,35 +9968,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], "x-ms-correlation-request-id": [ - "9180e3ae-013e-49b4-b0e7-7c37e2b00380" + "83e83af5-61f1-42ed-9e7b-a16dad411451" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015115Z:9180e3ae-013e-49b4-b0e7-7c37e2b00380" + "WESTUS2:20180510T174212Z:83e83af5-61f1-42ed-9e7b-a16dad411451" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:51:15 GMT" + "Thu, 10 May 2018 17:42:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/a20fa104-b7e5-4e87-8723-d9bd88b2933b?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvYTIwZmExMDQtYjdlNS00ZTg3LTg3MjMtZDliZDg4YjI5MzNiP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/74dc7fbe-d54b-45a3-a54d-c1c41bd9d6ea?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzRkYzdmYmUtZDU0Yi00NWEzLWE1NGQtYzFjNDFiZDlkNmVhP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "30" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5217,7 +10011,7 @@ "no-cache" ], "x-ms-request-id": [ - "c48e0988-9755-428f-8d3c-9ec9313aa099" + "e6ce80f2-7190-4802-918e-91ab5d6cccee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5230,34 +10024,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14852" ], "x-ms-correlation-request-id": [ - "0533c465-3b5a-4d49-acf2-f5af9d5013c0" + "bc241978-02f8-41ea-b180-2866cffdca8c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015012Z:0533c465-3b5a-4d49-acf2-f5af9d5013c0" + "WESTUS2:20180510T174209Z:bc241978-02f8-41ea-b180-2866cffdca8c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:50:12 GMT" + "Thu, 10 May 2018 17:42:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/a20fa104-b7e5-4e87-8723-d9bd88b2933b?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvYTIwZmExMDQtYjdlNS00ZTg3LTg3MjMtZDliZDg4YjI5MzNiP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3124d8d8-113a-4d1f-b2bd-d3ddbf6adad5" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps4347\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347\",\r\n \"etag\": \"W/\\\"21966045-ae57-4056-8650-f5bd7302e17b\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e706eeb0-016e-41ed-bcfe-f85790e10cb2\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/virtualNetworkGateways/ps5648\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/localNetworkGateways/ps9020\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "30" + "1123" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5269,7 +10075,7 @@ "no-cache" ], "x-ms-request-id": [ - "c0a1e9a1-7632-4d6f-8d84-e265b1945a25" + "a3289080-2583-4b5e-9802-32e479c5bdbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5282,34 +10088,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14848" ], "x-ms-correlation-request-id": [ - "b0f65f3a-64d4-428e-9df6-6ca9a98b76a3" + "6faf488f-dc5f-4467-af1f-ea38ca655e42" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015042Z:b0f65f3a-64d4-428e-9df6-6ca9a98b76a3" + "WESTUS2:20180510T174211Z:6faf488f-dc5f-4467-af1f-ea38ca655e42" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:50:42 GMT" + "Thu, 10 May 2018 17:42:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/a20fa104-b7e5-4e87-8723-d9bd88b2933b?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvYTIwZmExMDQtYjdlNS00ZTg3LTg3MjMtZDliZDg4YjI5MzNiP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2b4bd466-76c4-457f-8e40-b59d832e272a" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "19" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5321,7 +10139,7 @@ "no-cache" ], "x-ms-request-id": [ - "f7760a61-f527-4519-8d80-be44559a6128" + "2ea51f28-6cf2-4f80-95be-f2acae604c43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5334,40 +10152,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14840" ], "x-ms-correlation-request-id": [ - "92ffb4e8-c89d-41c6-b856-ed2f19dca466" + "042bfd75-788f-4ca2-9d3e-b3642428990a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015112Z:92ffb4e8-c89d-41c6-b856-ed2f19dca466" + "WESTUS2:20180510T174234Z:042bfd75-788f-4ca2-9d3e-b3642428990a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:51:12 GMT" + "Thu, 10 May 2018 17:42:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/647edd97-cd11-4e0e-8cbb-7d1dfa1aa0d0?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjQ3ZWRkOTctY2QxMS00ZTBlLThjYmItN2QxZGZhMWFhMGQwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3bc38c23-9e6e-41bf-8d3f-3e6d1a03f753" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk8580\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580\",\r\n \"etag\": \"W/\\\"4000254b-f109-4427-8242-d2a1d4c2078e\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb4cd322-ef41-42b3-b09b-773a0d667e4b\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/virtualNetworkGateways/onesdk5194\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/localNetworkGateways/onesdk6027\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1042" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5379,7 +10197,7 @@ "no-cache" ], "x-ms-request-id": [ - "301095f6-e570-4390-ab2d-e75818f3ff71" + "1b9ede18-1378-4014-9dd3-f71ff64599fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5392,43 +10210,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14846" ], "x-ms-correlation-request-id": [ - "58408bbf-ea0e-4f0e-bd38-935e556fa704" + "324a795d-d539-44ec-b7a3-e42f402c921a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015114Z:58408bbf-ea0e-4f0e-bd38-935e556fa704" + "WESTUS2:20180510T174222Z:324a795d-d539-44ec-b7a3-e42f402c921a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 07 Dec 2015 01:51:14 GMT" + "Thu, 10 May 2018 17:42:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps4447/providers/Microsoft.Network/connections/ps4347?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM0MzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e12fda7-f08e-4550-897a-e551a21010fb" + "f2a58b0e-7797-425e-a5f6-fcf91d85723f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -5436,17 +10257,14 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "480287f5-89e8-4bbb-8f85-1d9028cb074f" + "659fa667-4a58-4fe0-9d9b-445db0ab08a1" ], - "x-ms-correlation-request-id": [ - "480287f5-89e8-4bbb-8f85-1d9028cb074f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151207T015239Z:480287f5-89e8-4bbb-8f85-1d9028cb074f" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/659fa667-4a58-4fe0-9d9b-445db0ab08a1?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5454,20 +10272,42 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/659fa667-4a58-4fe0-9d9b-445db0ab08a1?api-version=2018-04-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "9c1d684c-fda7-4ca8-9c24-cdd4edc83ce9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174224Z:9c1d684c-fda7-4ca8-9c24-cdd4edc83ce9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Mon, 07 Dec 2015 01:52:38 GMT" + "Thu, 10 May 2018 17:42:23 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/32cf7a65-af07-4212-b27c-5ead8e3f90d5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMzJjZjdhNjUtYWYwNy00MjEyLWIyN2MtNWVhZDhlM2Y5MGQ1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/659fa667-4a58-4fe0-9d9b-445db0ab08a1?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjU5ZmE2NjctNGE1OC00ZmUwLTlkOWItNDQ1ZGIwYWIwOGExP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -5485,7 +10325,7 @@ "no-cache" ], "x-ms-request-id": [ - "ab944deb-603f-4025-8936-da30762563b7" + "7c9068e6-2a10-4c3d-8a99-c3787cf5360e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5498,34 +10338,263 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14842" + ], + "x-ms-correlation-request-id": [ + "9f744138-487f-480b-b8da-06b5a022153a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174234Z:9f744138-487f-480b-b8da-06b5a022153a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:42:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/659fa667-4a58-4fe0-9d9b-445db0ab08a1?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjU5ZmE2NjctNGE1OC00ZmUwLTlkOWItNDQ1ZGIwYWIwOGExP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "659fa667-4a58-4fe0-9d9b-445db0ab08a1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/659fa667-4a58-4fe0-9d9b-445db0ab08a1?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/659fa667-4a58-4fe0-9d9b-445db0ab08a1?api-version=2018-04-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14841" + ], + "x-ms-correlation-request-id": [ + "6987cdea-4b81-4e2a-be4a-cb9f2c25bf40" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174234Z:6987cdea-4b81-4e2a-be4a-cb9f2c25bf40" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:42:33 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps4447?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzNDQ0Nz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "90e8aae6-7436-4bb1-820d-d1b69e163f3f" + ], + "x-ms-correlation-request-id": [ + "90e8aae6-7436-4bb1-820d-d1b69e163f3f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174234Z:90e8aae6-7436-4bb1-820d-d1b69e163f3f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 17:42:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "95185a20-82ad-4522-8662-8df70c5034cd" + ], + "x-ms-correlation-request-id": [ + "95185a20-82ad-4522-8662-8df70c5034cd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174235Z:95185a20-82ad-4522-8662-8df70c5034cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 17:42:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "5cbb8e27-649e-49de-ab92-7c533a25be83" ], "x-ms-correlation-request-id": [ - "c7f56970-31e3-4792-adfb-a3b00571b659" + "5cbb8e27-649e-49de-ab92-7c533a25be83" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015126Z:c7f56970-31e3-4792-adfb-a3b00571b659" + "WESTUS2:20180510T174250Z:5cbb8e27-649e-49de-ab92-7c533a25be83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:51:25 GMT" + "Thu, 10 May 2018 17:42:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk723/providers/Microsoft.Network/connections/onesdk8580?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrODU4MD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "72787748-b500-40d2-9198-8238c3a4ec66" - ], - "accept-language": [ - "en-US" + "x-ms-version": [ + "2016-02-01" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, "ResponseBody": "", @@ -5540,59 +10609,55 @@ "no-cache" ], "Retry-After": [ - "10" + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" ], "x-ms-request-id": [ - "844304d3-550f-4c64-8885-0e22be26f2b5" + "ae7e7ddc-5492-4ea0-814e-d6b5b1355274" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/844304d3-550f-4c64-8885-0e22be26f2b5?api-version=2017-09-01" + "x-ms-correlation-request-id": [ + "ae7e7ddc-5492-4ea0-814e-d6b5b1355274" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174305Z:ae7e7ddc-5492-4ea0-814e-d6b5b1355274" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operationResults/844304d3-550f-4c64-8885-0e22be26f2b5?api-version=2017-09-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-correlation-request-id": [ - "251858ff-1b66-4450-bdec-4a8d50a4d2c5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151207T015128Z:251858ff-1b66-4450-bdec-4a8d50a4d2c5" - ], "Date": [ - "Mon, 07 Dec 2015 01:51:27 GMT" + "Thu, 10 May 2018 17:43:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/844304d3-550f-4c64-8885-0e22be26f2b5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvODQ0MzA0ZDMtNTUwZi00YzY0LTg4ODUtMGUyMmJlMjZmMmI1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -5600,51 +10665,56 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], "x-ms-request-id": [ - "8179116c-f8c1-4e9d-aece-5b2cb9f06000" + "e3a49e85-0de0-42f5-a42d-c5da082fe354" + ], + "x-ms-correlation-request-id": [ + "e3a49e85-0de0-42f5-a42d-c5da082fe354" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174320Z:e3a49e85-0de0-42f5-a42d-c5da082fe354" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" - ], - "x-ms-correlation-request-id": [ - "4a0d6b8b-d111-4271-8915-d12bd967a7c3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151207T015138Z:4a0d6b8b-d111-4271-8915-d12bd967a7c3" - ], "Date": [ - "Mon, 07 Dec 2015 01:51:38 GMT" + "Thu, 10 May 2018 17:43:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/844304d3-550f-4c64-8885-0e22be26f2b5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvODQ0MzA0ZDMtNTUwZi00YzY0LTg4ODUtMGUyMmJlMjZmMmI1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -5652,51 +10722,56 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], "x-ms-request-id": [ - "e72bfc3b-f790-43d5-b13b-4624f126e54d" + "a96ea630-da95-477c-82da-fba224202b81" + ], + "x-ms-correlation-request-id": [ + "a96ea630-da95-477c-82da-fba224202b81" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174335Z:a96ea630-da95-477c-82da-fba224202b81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" - ], - "x-ms-correlation-request-id": [ - "0effa078-9a53-4e29-b6bc-8320e9d1ad4b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151207T015208Z:0effa078-9a53-4e29-b6bc-8320e9d1ad4b" - ], "Date": [ - "Mon, 07 Dec 2015 01:52:08 GMT" + "Thu, 10 May 2018 17:43:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/844304d3-550f-4c64-8885-0e22be26f2b5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvODQ0MzA0ZDMtNTUwZi00YzY0LTg4ODUtMGUyMmJlMjZmMmI1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "29" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -5704,40 +10779,48 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], "x-ms-request-id": [ - "2b50463f-5b2d-483c-80d7-d645ca140dc9" + "bd5b303d-67f1-4491-a682-5a2797d6f409" + ], + "x-ms-correlation-request-id": [ + "bd5b303d-67f1-4491-a682-5a2797d6f409" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T174350Z:bd5b303d-67f1-4491-a682-5a2797d6f409" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" - ], - "x-ms-correlation-request-id": [ - "53ef10c3-c3d5-4f8c-a3f2-ec646157d3d9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151207T015239Z:53ef10c3-c3d5-4f8c-a3f2-ec646157d3d9" - ], "Date": [ - "Mon, 07 Dec 2015 01:52:38 GMT" + "Thu, 10 May 2018 17:43:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourcegroups/onesdk723?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlZ3JvdXBzL29uZXNkazcyMz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -5756,41 +10839,44 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" ], "x-ms-request-id": [ - "89abd18a-9cc1-4157-a0ec-35bd84a14e23" + "c078aee0-a2ce-49e8-92bc-6d98c88372d7" ], "x-ms-correlation-request-id": [ - "89abd18a-9cc1-4157-a0ec-35bd84a14e23" + "c078aee0-a2ce-49e8-92bc-6d98c88372d7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015239Z:89abd18a-9cc1-4157-a0ec-35bd84a14e23" + "WESTUS2:20180510T174405Z:c078aee0-a2ce-49e8-92bc-6d98c88372d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:52:38 GMT" + "Thu, 10 May 2018 17:44:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -5811,40 +10897,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14991" ], "x-ms-request-id": [ - "910dea41-d558-4352-9fab-80d2f84a9414" + "709545b0-6f56-4c3d-823e-3a0b2fcd9137" ], "x-ms-correlation-request-id": [ - "910dea41-d558-4352-9fab-80d2f84a9414" + "709545b0-6f56-4c3d-823e-3a0b2fcd9137" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015239Z:910dea41-d558-4352-9fab-80d2f84a9414" + "WESTUS2:20180510T174420Z:709545b0-6f56-4c3d-823e-3a0b2fcd9137" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:52:38 GMT" + "Thu, 10 May 2018 17:44:20 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -5865,40 +10954,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14990" ], "x-ms-request-id": [ - "1ba794ee-e4a8-42c8-88c5-163d605ea650" + "bc9a0818-9c86-4c80-9d5f-38f3ebdd69af" ], "x-ms-correlation-request-id": [ - "1ba794ee-e4a8-42c8-88c5-163d605ea650" + "bc9a0818-9c86-4c80-9d5f-38f3ebdd69af" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015255Z:1ba794ee-e4a8-42c8-88c5-163d605ea650" + "WESTUS2:20180510T174435Z:bc9a0818-9c86-4c80-9d5f-38f3ebdd69af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:52:54 GMT" + "Thu, 10 May 2018 17:44:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -5919,40 +11011,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14989" ], "x-ms-request-id": [ - "475e1b08-b222-455c-80fd-d8641e976957" + "472c567d-19b5-4d98-9f76-f87a75eef57a" ], "x-ms-correlation-request-id": [ - "475e1b08-b222-455c-80fd-d8641e976957" + "472c567d-19b5-4d98-9f76-f87a75eef57a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015310Z:475e1b08-b222-455c-80fd-d8641e976957" + "WESTUS2:20180510T174450Z:472c567d-19b5-4d98-9f76-f87a75eef57a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:53:09 GMT" + "Thu, 10 May 2018 17:44:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -5973,40 +11068,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14988" ], "x-ms-request-id": [ - "3a32f07e-1220-4df3-b118-50528f1a5561" + "fa2d7c5e-af8d-4101-8e95-dc9a93d005d6" ], "x-ms-correlation-request-id": [ - "3a32f07e-1220-4df3-b118-50528f1a5561" + "fa2d7c5e-af8d-4101-8e95-dc9a93d005d6" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015325Z:3a32f07e-1220-4df3-b118-50528f1a5561" + "WESTUS2:20180510T174506Z:fa2d7c5e-af8d-4101-8e95-dc9a93d005d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:53:24 GMT" + "Thu, 10 May 2018 17:45:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6027,40 +11125,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14987" ], "x-ms-request-id": [ - "ebefeaf0-de85-4747-ade7-87836b8565df" + "ae8055ee-fa93-4afc-8031-e4eccc13801e" ], "x-ms-correlation-request-id": [ - "ebefeaf0-de85-4747-ade7-87836b8565df" + "ae8055ee-fa93-4afc-8031-e4eccc13801e" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015340Z:ebefeaf0-de85-4747-ade7-87836b8565df" + "WESTUS2:20180510T174521Z:ae8055ee-fa93-4afc-8031-e4eccc13801e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:53:39 GMT" + "Thu, 10 May 2018 17:45:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6081,40 +11182,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14986" ], "x-ms-request-id": [ - "3e3902d4-74cb-48a6-a500-c30807185601" + "9d4b4e87-d60b-4d92-af94-cc4916f2a394" ], "x-ms-correlation-request-id": [ - "3e3902d4-74cb-48a6-a500-c30807185601" + "9d4b4e87-d60b-4d92-af94-cc4916f2a394" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015355Z:3e3902d4-74cb-48a6-a500-c30807185601" + "WESTUS2:20180510T174536Z:9d4b4e87-d60b-4d92-af94-cc4916f2a394" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:53:55 GMT" + "Thu, 10 May 2018 17:45:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6135,40 +11239,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14985" ], "x-ms-request-id": [ - "f3746552-53f5-410e-adc3-bd2b5c49fa61" + "d0c00cec-5a0c-4db6-b349-67b4c8decaae" ], "x-ms-correlation-request-id": [ - "f3746552-53f5-410e-adc3-bd2b5c49fa61" + "d0c00cec-5a0c-4db6-b349-67b4c8decaae" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015410Z:f3746552-53f5-410e-adc3-bd2b5c49fa61" + "WESTUS2:20180510T174551Z:d0c00cec-5a0c-4db6-b349-67b4c8decaae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:54:09 GMT" + "Thu, 10 May 2018 17:45:51 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6189,40 +11296,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14984" ], "x-ms-request-id": [ - "1435c1ab-b068-4562-9e15-7234fba2f977" + "ff63c903-894f-44ca-8202-a61bd4e8d921" ], "x-ms-correlation-request-id": [ - "1435c1ab-b068-4562-9e15-7234fba2f977" + "ff63c903-894f-44ca-8202-a61bd4e8d921" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015425Z:1435c1ab-b068-4562-9e15-7234fba2f977" + "WESTUS2:20180510T174607Z:ff63c903-894f-44ca-8202-a61bd4e8d921" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:54:25 GMT" + "Thu, 10 May 2018 17:46:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6243,40 +11353,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14983" ], "x-ms-request-id": [ - "6c4fa497-9829-4e5d-a385-8426988d9e74" + "e3d95291-fbf3-4148-ac92-5f8302ca86d1" ], "x-ms-correlation-request-id": [ - "6c4fa497-9829-4e5d-a385-8426988d9e74" + "e3d95291-fbf3-4148-ac92-5f8302ca86d1" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015440Z:6c4fa497-9829-4e5d-a385-8426988d9e74" + "WESTUS2:20180510T174622Z:e3d95291-fbf3-4148-ac92-5f8302ca86d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:54:39 GMT" + "Thu, 10 May 2018 17:46:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6297,40 +11410,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14982" ], "x-ms-request-id": [ - "fbae7e8f-f9e8-4096-90f9-79921ed4cd48" + "4bfe4cf6-7a3c-44c8-abc5-10c7e591517a" ], "x-ms-correlation-request-id": [ - "fbae7e8f-f9e8-4096-90f9-79921ed4cd48" + "4bfe4cf6-7a3c-44c8-abc5-10c7e591517a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015455Z:fbae7e8f-f9e8-4096-90f9-79921ed4cd48" + "WESTUS2:20180510T174637Z:4bfe4cf6-7a3c-44c8-abc5-10c7e591517a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:54:54 GMT" + "Thu, 10 May 2018 17:46:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6351,40 +11467,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14981" ], "x-ms-request-id": [ - "69a25e4e-3669-49f2-ac79-6da4718ed788" + "e3560513-e8e1-4458-b221-e3de5964428a" ], "x-ms-correlation-request-id": [ - "69a25e4e-3669-49f2-ac79-6da4718ed788" + "e3560513-e8e1-4458-b221-e3de5964428a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015510Z:69a25e4e-3669-49f2-ac79-6da4718ed788" + "WESTUS2:20180510T174652Z:e3560513-e8e1-4458-b221-e3de5964428a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:55:10 GMT" + "Thu, 10 May 2018 17:46:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6405,40 +11524,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14980" ], "x-ms-request-id": [ - "4c37d282-c3cb-474a-b6ac-4908ca03f0d8" + "ba5f54f2-30ef-4bc8-901a-1a6f41826836" ], "x-ms-correlation-request-id": [ - "4c37d282-c3cb-474a-b6ac-4908ca03f0d8" + "ba5f54f2-30ef-4bc8-901a-1a6f41826836" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015525Z:4c37d282-c3cb-474a-b6ac-4908ca03f0d8" + "WESTUS2:20180510T174707Z:ba5f54f2-30ef-4bc8-901a-1a6f41826836" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:55:25 GMT" + "Thu, 10 May 2018 17:47:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6459,40 +11581,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14979" ], "x-ms-request-id": [ - "c8779e6c-70c3-4b23-a001-5280612121ed" + "0adfc75e-1d25-452b-9251-40f8f161cd0d" ], "x-ms-correlation-request-id": [ - "c8779e6c-70c3-4b23-a001-5280612121ed" + "0adfc75e-1d25-452b-9251-40f8f161cd0d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015540Z:c8779e6c-70c3-4b23-a001-5280612121ed" + "WESTUS2:20180510T174722Z:0adfc75e-1d25-452b-9251-40f8f161cd0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:55:39 GMT" + "Thu, 10 May 2018 17:47:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6513,40 +11638,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14978" ], "x-ms-request-id": [ - "ef5aeb5f-3a36-4d61-93ad-fa5609e9d07b" + "c20cff70-6e3d-4e47-aa7e-d1e917f10192" ], "x-ms-correlation-request-id": [ - "ef5aeb5f-3a36-4d61-93ad-fa5609e9d07b" + "c20cff70-6e3d-4e47-aa7e-d1e917f10192" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015555Z:ef5aeb5f-3a36-4d61-93ad-fa5609e9d07b" + "WESTUS2:20180510T174737Z:c20cff70-6e3d-4e47-aa7e-d1e917f10192" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:55:55 GMT" + "Thu, 10 May 2018 17:47:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6567,40 +11695,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14977" ], "x-ms-request-id": [ - "05e6acee-c0d3-4563-afc8-1e5c1961e950" + "c588f2f4-1b3e-4dd9-9fbb-842a23ce02cd" ], "x-ms-correlation-request-id": [ - "05e6acee-c0d3-4563-afc8-1e5c1961e950" + "c588f2f4-1b3e-4dd9-9fbb-842a23ce02cd" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015610Z:05e6acee-c0d3-4563-afc8-1e5c1961e950" + "WESTUS2:20180510T174752Z:c588f2f4-1b3e-4dd9-9fbb-842a23ce02cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:56:10 GMT" + "Thu, 10 May 2018 17:47:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6621,40 +11752,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14976" ], "x-ms-request-id": [ - "06733916-1cd8-4ac4-9096-d066c48917f4" + "3640f602-26cf-4578-a71b-fd1cd6adc63f" ], "x-ms-correlation-request-id": [ - "06733916-1cd8-4ac4-9096-d066c48917f4" + "3640f602-26cf-4578-a71b-fd1cd6adc63f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015625Z:06733916-1cd8-4ac4-9096-d066c48917f4" + "WESTUS2:20180510T174807Z:3640f602-26cf-4578-a71b-fd1cd6adc63f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:56:24 GMT" + "Thu, 10 May 2018 17:48:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6675,40 +11809,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14975" ], "x-ms-request-id": [ - "bc8b8b94-1393-4d9b-be99-291437d8b296" + "ed9abb6f-2a56-4d94-b14e-c1821d1e0d3f" ], "x-ms-correlation-request-id": [ - "bc8b8b94-1393-4d9b-be99-291437d8b296" + "ed9abb6f-2a56-4d94-b14e-c1821d1e0d3f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015640Z:bc8b8b94-1393-4d9b-be99-291437d8b296" + "WESTUS2:20180510T174822Z:ed9abb6f-2a56-4d94-b14e-c1821d1e0d3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:56:40 GMT" + "Thu, 10 May 2018 17:48:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6729,40 +11866,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14974" ], "x-ms-request-id": [ - "afa5c5d1-abb7-468c-ae42-0a18b2c15e89" + "705c3549-9454-4b43-b59d-a04e2af71d4d" ], "x-ms-correlation-request-id": [ - "afa5c5d1-abb7-468c-ae42-0a18b2c15e89" + "705c3549-9454-4b43-b59d-a04e2af71d4d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015655Z:afa5c5d1-abb7-468c-ae42-0a18b2c15e89" + "WESTUS2:20180510T174838Z:705c3549-9454-4b43-b59d-a04e2af71d4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:56:54 GMT" + "Thu, 10 May 2018 17:48:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6783,40 +11923,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14973" ], "x-ms-request-id": [ - "844e9c85-cfa1-4927-b025-e265d0a138d0" + "e40e1a70-24d5-4f29-a329-fc6f2a356603" ], "x-ms-correlation-request-id": [ - "844e9c85-cfa1-4927-b025-e265d0a138d0" + "e40e1a70-24d5-4f29-a329-fc6f2a356603" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015710Z:844e9c85-cfa1-4927-b025-e265d0a138d0" + "WESTUS2:20180510T174853Z:e40e1a70-24d5-4f29-a329-fc6f2a356603" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:57:10 GMT" + "Thu, 10 May 2018 17:48:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6837,40 +11980,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14972" ], "x-ms-request-id": [ - "ff7d0e92-e72a-4a3b-bbf4-22c613cd5bf0" + "9896a98d-e8a8-47d2-9648-5a74cc498285" ], "x-ms-correlation-request-id": [ - "ff7d0e92-e72a-4a3b-bbf4-22c613cd5bf0" + "9896a98d-e8a8-47d2-9648-5a74cc498285" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015725Z:ff7d0e92-e72a-4a3b-bbf4-22c613cd5bf0" + "WESTUS2:20180510T174908Z:9896a98d-e8a8-47d2-9648-5a74cc498285" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:57:25 GMT" + "Thu, 10 May 2018 17:49:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6891,40 +12037,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14971" ], "x-ms-request-id": [ - "1a4e2ced-599d-43ee-9593-71b3ef1934b6" + "364105ad-2697-4695-8632-cd562cd5e5bb" ], "x-ms-correlation-request-id": [ - "1a4e2ced-599d-43ee-9593-71b3ef1934b6" + "364105ad-2697-4695-8632-cd562cd5e5bb" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015740Z:1a4e2ced-599d-43ee-9593-71b3ef1934b6" + "WESTUS2:20180510T174923Z:364105ad-2697-4695-8632-cd562cd5e5bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:57:40 GMT" + "Thu, 10 May 2018 17:49:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6945,40 +12094,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14970" ], "x-ms-request-id": [ - "6e7ed2f5-0b2c-4efe-b4ca-6654d45fd252" + "9a8e11cb-a228-4dd4-b8bf-49fba9714624" ], "x-ms-correlation-request-id": [ - "6e7ed2f5-0b2c-4efe-b4ca-6654d45fd252" + "9a8e11cb-a228-4dd4-b8bf-49fba9714624" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015755Z:6e7ed2f5-0b2c-4efe-b4ca-6654d45fd252" + "WESTUS2:20180510T174938Z:9a8e11cb-a228-4dd4-b8bf-49fba9714624" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:57:55 GMT" + "Thu, 10 May 2018 17:49:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6999,40 +12151,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14969" ], "x-ms-request-id": [ - "c9adde35-2d76-41b8-adbe-64eae70ca000" + "5220989b-3f6b-46a7-a510-10af1a404802" ], "x-ms-correlation-request-id": [ - "c9adde35-2d76-41b8-adbe-64eae70ca000" + "5220989b-3f6b-46a7-a510-10af1a404802" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015811Z:c9adde35-2d76-41b8-adbe-64eae70ca000" + "WESTUS2:20180510T174953Z:5220989b-3f6b-46a7-a510-10af1a404802" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:58:10 GMT" + "Thu, 10 May 2018 17:49:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7053,40 +12208,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14968" ], "x-ms-request-id": [ - "ed69ccf7-f8b3-4ac8-8387-78f5d28924c4" + "780924d9-3f59-4996-aee1-d01751753142" ], "x-ms-correlation-request-id": [ - "ed69ccf7-f8b3-4ac8-8387-78f5d28924c4" + "780924d9-3f59-4996-aee1-d01751753142" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015826Z:ed69ccf7-f8b3-4ac8-8387-78f5d28924c4" + "WESTUS2:20180510T175008Z:780924d9-3f59-4996-aee1-d01751753142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:58:25 GMT" + "Thu, 10 May 2018 17:50:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7107,40 +12265,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14967" ], "x-ms-request-id": [ - "91a75f1c-108b-4fce-8311-7cf99a279678" + "beeb3ccf-a803-4921-b734-74a8ed30e653" ], "x-ms-correlation-request-id": [ - "91a75f1c-108b-4fce-8311-7cf99a279678" + "beeb3ccf-a803-4921-b734-74a8ed30e653" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015841Z:91a75f1c-108b-4fce-8311-7cf99a279678" + "WESTUS2:20180510T175023Z:beeb3ccf-a803-4921-b734-74a8ed30e653" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:58:40 GMT" + "Thu, 10 May 2018 17:50:23 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7161,40 +12322,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14966" ], "x-ms-request-id": [ - "17d407b0-e2a6-47ab-88f5-e0aa1c2e1182" + "46a92517-81a9-487d-8a4e-78ed12c973cd" ], "x-ms-correlation-request-id": [ - "17d407b0-e2a6-47ab-88f5-e0aa1c2e1182" + "46a92517-81a9-487d-8a4e-78ed12c973cd" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015856Z:17d407b0-e2a6-47ab-88f5-e0aa1c2e1182" + "WESTUS2:20180510T175038Z:46a92517-81a9-487d-8a4e-78ed12c973cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:58:55 GMT" + "Thu, 10 May 2018 17:50:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7215,40 +12379,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14965" ], "x-ms-request-id": [ - "35c0940b-0b20-4e26-8963-31bf90b6bbb1" + "590bbd71-fbf5-4ac2-9f9e-c14714d338a5" ], "x-ms-correlation-request-id": [ - "35c0940b-0b20-4e26-8963-31bf90b6bbb1" + "590bbd71-fbf5-4ac2-9f9e-c14714d338a5" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015911Z:35c0940b-0b20-4e26-8963-31bf90b6bbb1" + "WESTUS2:20180510T175053Z:590bbd71-fbf5-4ac2-9f9e-c14714d338a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:59:11 GMT" + "Thu, 10 May 2018 17:50:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7269,40 +12436,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14964" ], "x-ms-request-id": [ - "e28feeb5-167b-43c7-9e79-9785b31322f2" + "3d4753b4-9acf-4593-8926-fd535e44ed45" ], "x-ms-correlation-request-id": [ - "e28feeb5-167b-43c7-9e79-9785b31322f2" + "3d4753b4-9acf-4593-8926-fd535e44ed45" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015926Z:e28feeb5-167b-43c7-9e79-9785b31322f2" + "WESTUS2:20180510T175108Z:3d4753b4-9acf-4593-8926-fd535e44ed45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:59:25 GMT" + "Thu, 10 May 2018 17:51:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7323,40 +12493,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14963" ], "x-ms-request-id": [ - "439d2996-931c-40ff-90ef-d963bc40afa9" + "8906fcb0-5910-4a1e-9e90-d31eaec837fb" ], "x-ms-correlation-request-id": [ - "439d2996-931c-40ff-90ef-d963bc40afa9" + "8906fcb0-5910-4a1e-9e90-d31eaec837fb" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015941Z:439d2996-931c-40ff-90ef-d963bc40afa9" + "WESTUS2:20180510T175123Z:8906fcb0-5910-4a1e-9e90-d31eaec837fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:59:40 GMT" + "Thu, 10 May 2018 17:51:23 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7377,40 +12550,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14962" ], "x-ms-request-id": [ - "9ffae7f1-747f-43e0-94ee-0f541d8425e3" + "c6a7d615-7ef4-4681-b0e1-cf2130e34536" ], "x-ms-correlation-request-id": [ - "9ffae7f1-747f-43e0-94ee-0f541d8425e3" + "c6a7d615-7ef4-4681-b0e1-cf2130e34536" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T015956Z:9ffae7f1-747f-43e0-94ee-0f541d8425e3" + "WESTUS2:20180510T175139Z:c6a7d615-7ef4-4681-b0e1-cf2130e34536" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 01:59:56 GMT" + "Thu, 10 May 2018 17:51:38 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7431,40 +12607,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14961" ], "x-ms-request-id": [ - "3c04f210-e83c-45b2-b28d-37c148234d85" + "294a641c-3a8a-4896-97f3-0afd2c06e01e" ], "x-ms-correlation-request-id": [ - "3c04f210-e83c-45b2-b28d-37c148234d85" + "294a641c-3a8a-4896-97f3-0afd2c06e01e" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T020011Z:3c04f210-e83c-45b2-b28d-37c148234d85" + "WESTUS2:20180510T175154Z:294a641c-3a8a-4896-97f3-0afd2c06e01e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 02:00:10 GMT" + "Thu, 10 May 2018 17:51:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNak10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME5EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7482,25 +12661,28 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14960" ], "x-ms-request-id": [ - "2d715ea2-49c5-465c-b04b-caddf2148be6" + "6c65667f-0e75-4bf7-aede-5478bcf44441" ], "x-ms-correlation-request-id": [ - "2d715ea2-49c5-465c-b04b-caddf2148be6" + "6c65667f-0e75-4bf7-aede-5478bcf44441" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T020026Z:2d715ea2-49c5-465c-b04b-caddf2148be6" + "WESTUS2:20180510T175209Z:6c65667f-0e75-4bf7-aede-5478bcf44441" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 02:00:26 GMT" + "Thu, 10 May 2018 17:52:08 GMT" ] }, "StatusCode": 200 @@ -7508,17 +12690,17 @@ ], "Names": { "Test-VirtualNetworkGatewayConnectionCRUD": [ - "onesdk723", - "onesdk5194", - "onesdk299", - "onesdk3798", - "onesdk6027", - "onesdk8580", - "onesdk149", - "onesdk4606" + "ps4447", + "ps5648", + "ps2919", + "ps6555", + "ps9020", + "ps4347", + "ps290", + "ps7763" ] }, "Variables": { - "SubscriptionId": "64229c92-175a-4eba-a2fd-ee1f9e29766e" + "SubscriptionId": "b1f1deed-af60-4bab-9223-65d340462e24" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionSharedKeyCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionSharedKeyCRUD.json index e4198a87c80d..8f9fd85f96d4 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionSharedKeyCRUD.json +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionSharedKeyCRUD.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5908" + "24460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,146 +24,53 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-request-id": [ - "8020ddaa-ddb8-4f45-b85b-2d073074a40a" - ], - "x-ms-correlation-request-id": [ - "8020ddaa-ddb8-4f45-b85b-2d073074a40a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151206T223915Z:8020ddaa-ddb8-4f45-b85b-2d073074a40a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 06 Dec 2015 22:39:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourcegroups/onesdk5562?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-request-id": [ - "22f95b75-c219-4ae3-bab3-d8d2e9f19eb7" - ], - "x-ms-correlation-request-id": [ - "22f95b75-c219-4ae3-bab3-d8d2e9f19eb7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151206T223915Z:22f95b75-c219-4ae3-bab3-d8d2e9f19eb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 06 Dec 2015 22:39:14 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourcegroups/onesdk5562?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "14999" ], "x-ms-request-id": [ - "fce14781-a752-4e1c-b95a-48996b54a866" + "cfe5c28c-5342-4d7b-9ce2-c89fa3081740" ], "x-ms-correlation-request-id": [ - "fce14781-a752-4e1c-b95a-48996b54a866" + "cfe5c28c-5342-4d7b-9ce2-c89fa3081740" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231046Z:fce14781-a752-4e1c-b95a-48996b54a866" + "WESTUS2:20180510T175415Z:cfe5c28c-5342-4d7b-9ce2-c89fa3081740" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:10:45 GMT" + "Thu, 10 May 2018 17:54:15 GMT" ] }, - "StatusCode": 204 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourcegroups/onesdk5562?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps2050?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzMjA1MD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "74" + "29" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562\",\r\n \"name\": \"onesdk5562\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050\",\r\n \"name\": \"ps2050\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "202" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -175,97 +82,55 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "fce067d3-c194-40d0-bd2b-e306d08bcb14" + "2dfe807a-67f2-4c37-8a2e-266b2c34c1dc" ], "x-ms-correlation-request-id": [ - "fce067d3-c194-40d0-bd2b-e306d08bcb14" + "2dfe807a-67f2-4c37-8a2e-266b2c34c1dc" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T223916Z:fce067d3-c194-40d0-bd2b-e306d08bcb14" + "WESTUS2:20180510T175416Z:2dfe807a-67f2-4c37-8a2e-266b2c34c1dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 06 Dec 2015 22:39:15 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-request-id": [ - "a113f58b-16d9-484f-92d1-f1e533d43c5e" - ], - "x-ms-correlation-request-id": [ - "a113f58b-16d9-484f-92d1-f1e533d43c5e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151206T223916Z:a113f58b-16d9-484f-92d1-f1e533d43c5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 22:39:15 GMT" + "Thu, 10 May 2018 17:54:15 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs5NzYzP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTgzMT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52f5f84e-8e0b-4c78-ad5e-e4fcf6903dde" + "3930b9cd-158a-4b53-aefa-0fa039ecfe16" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/onesdk9763' under resource group 'onesdk5562' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps9831' under resource group 'ps2050' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "158" + "150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -280,40 +145,46 @@ "gateway" ], "x-ms-request-id": [ - "776f84dd-0f03-4e52-8e0d-b5e47e63889f" + "69d6594b-cb50-4f1f-9670-2490f13611c1" ], "x-ms-correlation-request-id": [ - "776f84dd-0f03-4e52-8e0d-b5e47e63889f" + "69d6594b-cb50-4f1f-9670-2490f13611c1" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T223918Z:776f84dd-0f03-4e52-8e0d-b5e47e63889f" + "WESTUS2:20180510T175416Z:69d6594b-cb50-4f1f-9670-2490f13611c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 22:39:17 GMT" + "Thu, 10 May 2018 17:54:16 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs5NzYzP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTgzMT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9763\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763\",\r\n \"etag\": \"W/\\\"b9844c07-ee0c-4ee4-bd01-1000d0089cd2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0fbbcf09-562e-4a11-97eb-fb62a193333b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"b9844c07-ee0c-4ee4-bd01-1000d0089cd2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9831\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831\",\r\n \"etag\": \"W/\\\"e3a675d7-1aec-4197-8892-625e9a467c0c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e3b64521-9325-49ba-823b-f5ebf68f20b2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"e3a675d7-1aec-4197-8892-625e9a467c0c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "958" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,7 +196,7 @@ "no-cache" ], "x-ms-request-id": [ - "c806854c-aefa-4589-b937-f0ad6f1fc93f" + "a966ee04-3e4a-4f99-ba57-32d8c72247bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,47 +205,53 @@ "no-cache" ], "ETag": [ - "W/\"b9844c07-ee0c-4ee4-bd01-1000d0089cd2\"" + "W/\"e3a675d7-1aec-4197-8892-625e9a467c0c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14997" ], "x-ms-correlation-request-id": [ - "fe7982fc-261e-4bec-881f-52d4c0a7c793" + "b078623a-daa4-4aad-acae-cf3bdf322027" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T223929Z:fe7982fc-261e-4bec-881f-52d4c0a7c793" + "WESTUS2:20180510T175429Z:b078623a-daa4-4aad-acae-cf3bdf322027" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:39:29 GMT" + "Thu, 10 May 2018 17:54:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs5NzYzP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTgzMT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dcda8830-0e5b-4b5d-a2ec-12508e7332e6" + "8bf644fc-a532-4f42-b07f-1993e3d01214" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9763\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763\",\r\n \"etag\": \"W/\\\"b9844c07-ee0c-4ee4-bd01-1000d0089cd2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0fbbcf09-562e-4a11-97eb-fb62a193333b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"b9844c07-ee0c-4ee4-bd01-1000d0089cd2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9831\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831\",\r\n \"etag\": \"W/\\\"e3a675d7-1aec-4197-8892-625e9a467c0c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e3b64521-9325-49ba-823b-f5ebf68f20b2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"e3a675d7-1aec-4197-8892-625e9a467c0c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "958" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -386,7 +263,7 @@ "no-cache" ], "x-ms-request-id": [ - "6178c6cd-61ca-400e-91e5-6233aaf5b533" + "baa3e408-2a83-4a0f-a690-39dc36bd9415" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,47 +272,53 @@ "no-cache" ], "ETag": [ - "W/\"b9844c07-ee0c-4ee4-bd01-1000d0089cd2\"" + "W/\"e3a675d7-1aec-4197-8892-625e9a467c0c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14996" ], "x-ms-correlation-request-id": [ - "4f85503c-abe0-4e00-ab36-84edd3d131b6" + "7f4dda59-c9fb-4bbe-a61b-16f868a9b798" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T223930Z:4f85503c-abe0-4e00-ab36-84edd3d131b6" + "WESTUS2:20180510T175429Z:7f4dda59-c9fb-4bbe-a61b-16f868a9b798" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:39:29 GMT" + "Thu, 10 May 2018 17:54:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs5NzYzP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTgzMT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "602e2c6e-0811-45ce-bd80-16de5dcfe3b9" + "83ee6cc5-5b4d-4717-b5ba-b2e3f9267ada" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9763\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763\",\r\n \"etag\": \"W/\\\"b9844c07-ee0c-4ee4-bd01-1000d0089cd2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0fbbcf09-562e-4a11-97eb-fb62a193333b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"b9844c07-ee0c-4ee4-bd01-1000d0089cd2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9831\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831\",\r\n \"etag\": \"W/\\\"e3a675d7-1aec-4197-8892-625e9a467c0c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e3b64521-9325-49ba-823b-f5ebf68f20b2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"e3a675d7-1aec-4197-8892-625e9a467c0c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "958" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -447,7 +330,7 @@ "no-cache" ], "x-ms-request-id": [ - "f915c5bc-e002-479d-b0d8-26d2abbd19f7" + "1691778d-1ed5-4fa4-8556-d9340a312f84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,53 +339,59 @@ "no-cache" ], "ETag": [ - "W/\"b9844c07-ee0c-4ee4-bd01-1000d0089cd2\"" + "W/\"e3a675d7-1aec-4197-8892-625e9a467c0c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14995" ], "x-ms-correlation-request-id": [ - "d70b3ec2-d277-4d0b-95b6-8dac3c685e98" + "e956e3c4-1ebe-4196-ae90-502e2808c64c" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T223930Z:d70b3ec2-d277-4d0b-95b6-8dac3c685e98" + "WESTUS2:20180510T175430Z:e956e3c4-1ebe-4196-ae90-502e2808c64c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:39:29 GMT" + "Thu, 10 May 2018 17:54:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs5NzYzP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTgzMT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "338" + "482" ], "x-ms-client-request-id": [ - "296402d2-69d0-4d40-a4ac-bfaacd423073" + "7dd8d598-3c61-4276-93d6-57d6aa170bd9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9763\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763\",\r\n \"etag\": \"W/\\\"635ccd86-6936-409d-ae5b-79fd87bdc923\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0fbbcf09-562e-4a11-97eb-fb62a193333b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"635ccd86-6936-409d-ae5b-79fd87bdc923\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9831\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831\",\r\n \"etag\": \"W/\\\"103845d8-981f-4dec-9bd1-a6376b2fecb1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e3b64521-9325-49ba-823b-f5ebf68f20b2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"103845d8-981f-4dec-9bd1-a6376b2fecb1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "956" + "1103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -514,13 +403,13 @@ "no-cache" ], "Retry-After": [ - "10" + "3" ], "x-ms-request-id": [ - "9ef5a2a7-d845-4c9f-8b49-b91dd1d8f2d6" + "d6f58e04-af96-4e43-bb93-e673d8f67a97" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/9ef5a2a7-d845-4c9f-8b49-b91dd1d8f2d6?api-version=2017-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/d6f58e04-af96-4e43-bb93-e673d8f67a97?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -536,25 +425,31 @@ "1199" ], "x-ms-correlation-request-id": [ - "dbe20e50-4e0b-4335-a5f8-ea7bbf2a28f4" + "116326a9-1e26-4cfe-bef2-b87eb2d9bb74" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T223919Z:dbe20e50-4e0b-4335-a5f8-ea7bbf2a28f4" + "WESTUS2:20180510T175419Z:116326a9-1e26-4cfe-bef2-b87eb2d9bb74" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:39:19 GMT" + "Thu, 10 May 2018 17:54:19 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/9ef5a2a7-d845-4c9f-8b49-b91dd1d8f2d6?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOWVmNWEyYTctZDg0NS00YzlmLThiNDktYjkxZGQxZDhmMmQ2P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/d6f58e04-af96-4e43-bb93-e673d8f67a97?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDZmNThlMDQtYWY5Ni00ZTQzLWJiOTMtZTY3M2Q4ZjY3YTk3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -572,7 +467,7 @@ "no-cache" ], "x-ms-request-id": [ - "c876269f-71f5-4aa3-9e89-9967c1e6acb4" + "b7d2df05-1a1b-4cc2-bbef-9d0379d30667" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585,40 +480,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "bbb24265-e10d-46bf-88af-4701d845a776" + "99ce4cb2-645e-459a-b8db-4a708df8a12a" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T223929Z:bbb24265-e10d-46bf-88af-4701d845a776" + "WESTUS2:20180510T175429Z:99ce4cb2-645e-459a-b8db-4a708df8a12a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:39:28 GMT" + "Thu, 10 May 2018 17:54:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/publicIPAddresses/onesdk4923?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazQ5MjM/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/publicIPAddresses/ps5895?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM1ODk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e58fe3eb-1c66-469b-8728-0b31727ded0f" + "f751afb8-6919-4e2a-9977-c7823fe4f13c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/onesdk4923' under resource group 'onesdk5562' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps5895' under resource group 'ps2050' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "160" + "152" ], "Content-Type": [ "application/json; charset=utf-8" @@ -633,40 +534,46 @@ "gateway" ], "x-ms-request-id": [ - "055bf9b1-2bbc-44f6-8919-c43527bca475" + "e864d141-bd21-47cf-9d1d-83a241c237d1" ], "x-ms-correlation-request-id": [ - "055bf9b1-2bbc-44f6-8919-c43527bca475" + "e864d141-bd21-47cf-9d1d-83a241c237d1" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T223930Z:055bf9b1-2bbc-44f6-8919-c43527bca475" + "WESTUS2:20180510T175430Z:e864d141-bd21-47cf-9d1d-83a241c237d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 22:39:29 GMT" + "Thu, 10 May 2018 17:54:29 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/publicIPAddresses/onesdk4923?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazQ5MjM/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/publicIPAddresses/ps5895?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM1ODk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4923\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/publicIPAddresses/onesdk4923\",\r\n \"etag\": \"W/\\\"9eee91fe-771e-4c91-9036-eba5288b1c6b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"523117e1-3adc-4aec-aa87-0be3a6e78be5\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk9617\",\r\n \"fqdn\": \"onesdk9617.centralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5895\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/publicIPAddresses/ps5895\",\r\n \"etag\": \"W/\\\"1bb17109-1b78-405f-b415-aef20b036f40\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f1ff8095-2318-4ce8-991a-c7b7bc078de4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps257\",\r\n \"fqdn\": \"ps257.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "637" + "731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -678,7 +585,7 @@ "no-cache" ], "x-ms-request-id": [ - "1f4ad9e1-7639-4773-8b57-85331fbb5db8" + "b167f623-e4b8-4eae-8f40-e0770d9c129b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -687,47 +594,53 @@ "no-cache" ], "ETag": [ - "W/\"9eee91fe-771e-4c91-9036-eba5288b1c6b\"" + "W/\"1bb17109-1b78-405f-b415-aef20b036f40\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14992" ], "x-ms-correlation-request-id": [ - "656fe01d-e898-472c-bd59-200221f16f1b" + "6bbaeb50-29ff-4df1-95db-27882c50fc8e" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T223942Z:656fe01d-e898-472c-bd59-200221f16f1b" + "WESTUS2:20180510T175441Z:6bbaeb50-29ff-4df1-95db-27882c50fc8e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:39:41 GMT" + "Thu, 10 May 2018 17:54:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/publicIPAddresses/onesdk4923?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazQ5MjM/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/publicIPAddresses/ps5895?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM1ODk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d92116f-7c89-4af0-8224-23b371922f0f" + "458af7eb-8838-40cb-b325-b5631ec6a721" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4923\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/publicIPAddresses/onesdk4923\",\r\n \"etag\": \"W/\\\"9eee91fe-771e-4c91-9036-eba5288b1c6b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"523117e1-3adc-4aec-aa87-0be3a6e78be5\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk9617\",\r\n \"fqdn\": \"onesdk9617.centralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5895\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/publicIPAddresses/ps5895\",\r\n \"etag\": \"W/\\\"1bb17109-1b78-405f-b415-aef20b036f40\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f1ff8095-2318-4ce8-991a-c7b7bc078de4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps257\",\r\n \"fqdn\": \"ps257.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "637" + "731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -739,7 +652,7 @@ "no-cache" ], "x-ms-request-id": [ - "f03273e5-4d12-4547-b6e2-0361bd2aa6fc" + "5ff60c64-6567-4de2-ac27-119500fb0dd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,53 +661,59 @@ "no-cache" ], "ETag": [ - "W/\"9eee91fe-771e-4c91-9036-eba5288b1c6b\"" + "W/\"1bb17109-1b78-405f-b415-aef20b036f40\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14991" ], "x-ms-correlation-request-id": [ - "ec533b43-26db-4264-bf9c-c23bf1da2ad9" + "19e3b8fa-1663-433d-a151-ee4630d370bc" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T223942Z:ec533b43-26db-4264-bf9c-c23bf1da2ad9" + "WESTUS2:20180510T175441Z:19e3b8fa-1663-433d-a151-ee4630d370bc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:39:41 GMT" + "Thu, 10 May 2018 17:54:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/publicIPAddresses/onesdk4923?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazQ5MjM/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/publicIPAddresses/ps5895?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM1ODk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk9617\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps257\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "169" + "196" ], "x-ms-client-request-id": [ - "e5728ef0-8181-4f99-a850-f9f2b2cb761e" + "5739707f-69a9-42aa-8d46-17826cb1d75d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4923\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/publicIPAddresses/onesdk4923\",\r\n \"etag\": \"W/\\\"3114c379-f875-4e81-8161-e9e57938d0db\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"523117e1-3adc-4aec-aa87-0be3a6e78be5\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk9617\",\r\n \"fqdn\": \"onesdk9617.centralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5895\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/publicIPAddresses/ps5895\",\r\n \"etag\": \"W/\\\"cace8172-59d9-4ae9-ab42-c4367144ab82\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f1ff8095-2318-4ce8-991a-c7b7bc078de4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps257\",\r\n \"fqdn\": \"ps257.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "636" + "730" ], "Content-Type": [ "application/json; charset=utf-8" @@ -806,13 +725,13 @@ "no-cache" ], "Retry-After": [ - "10" + "3" ], "x-ms-request-id": [ - "47bf5093-c0fd-4a47-bc10-23deda68761e" + "a236c6a9-014f-4776-8940-da7a1435e4fe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/47bf5093-c0fd-4a47-bc10-23deda68761e?api-version=2017-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/a236c6a9-014f-4776-8940-da7a1435e4fe?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -828,25 +747,31 @@ "1198" ], "x-ms-correlation-request-id": [ - "5e60b9a5-af9a-4000-b5d2-d6f74a317d91" + "6a9ecd0c-55dd-4e7f-8a07-a53710e12cd7" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T223931Z:5e60b9a5-af9a-4000-b5d2-d6f74a317d91" + "WESTUS2:20180510T175431Z:6a9ecd0c-55dd-4e7f-8a07-a53710e12cd7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:39:31 GMT" + "Thu, 10 May 2018 17:54:30 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/47bf5093-c0fd-4a47-bc10-23deda68761e?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvNDdiZjUwOTMtYzBmZC00YTQ3LWJjMTAtMjNkZWRhNjg3NjFlP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/a236c6a9-014f-4776-8940-da7a1435e4fe?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTIzNmM2YTktMDE0Zi00Nzc2LTg5NDAtZGE3YTE0MzVlNGZlP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -864,7 +789,7 @@ "no-cache" ], "x-ms-request-id": [ - "658bc592-087b-4ebe-b10a-5307b229a936" + "1f4162eb-0264-4f05-bbf8-410038ea1850" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -877,40 +802,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14993" ], "x-ms-correlation-request-id": [ - "99322de0-c5ae-493f-ac3d-9844aa3ab788" + "a177d139-56ee-4075-a70a-f097f5a2ff80" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T223942Z:99322de0-c5ae-493f-ac3d-9844aa3ab788" + "WESTUS2:20180510T175441Z:a177d139-56ee-4075-a70a-f097f5a2ff80" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:39:41 GMT" + "Thu, 10 May 2018 17:54:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNzM4OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczY5NjM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4b48b30-5fb2-456e-84ce-69ac8f143e20" + "aa4c8c47-8b59-4cd7-a6c1-fe44e3d5c840" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/onesdk7388' under resource group 'onesdk5562' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/ps6963' under resource group 'ps2050' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -925,40 +856,46 @@ "gateway" ], "x-ms-request-id": [ - "46a8fda1-7597-4242-a0c6-ca313b7d8b21" + "58716f57-76c2-4465-bd06-7d3c634d4fde" ], "x-ms-correlation-request-id": [ - "46a8fda1-7597-4242-a0c6-ca313b7d8b21" + "58716f57-76c2-4465-bd06-7d3c634d4fde" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T223942Z:46a8fda1-7597-4242-a0c6-ca313b7d8b21" + "WESTUS2:20180510T175441Z:58716f57-76c2-4465-bd06-7d3c634d4fde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 22:39:42 GMT" + "Thu, 10 May 2018 17:54:41 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNzM4OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczY5NjM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7388\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388\",\r\n \"etag\": \"W/\\\"45c109bc-3dd9-4d88-96e1-787ce69f7321\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"508361d4-b0d9-474d-8f42-99635a8c9b1e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk8169\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388/ipConfigurations/onesdk8169\",\r\n \"etag\": \"W/\\\"45c109bc-3dd9-4d88-96e1-787ce69f7321\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/publicIPAddresses/onesdk4923\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6963\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963\",\r\n \"etag\": \"W/\\\"eed9bc36-ac87-497c-96ce-597b842cd7d6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a81f0fc6-65e6-4681-9327-9d9e8e13fae6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps4908\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963/ipConfigurations/ps4908\",\r\n \"etag\": \"W/\\\"eed9bc36-ac87-497c-96ce-597b842cd7d6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/publicIPAddresses/ps5895\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1496" + "1595" ], "Content-Type": [ "application/json; charset=utf-8" @@ -970,7 +907,7 @@ "no-cache" ], "x-ms-request-id": [ - "77ac5ec1-193a-4b85-851e-843bd647dad4" + "01dc49eb-5d57-48a9-b7de-7036c8b321c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -983,40 +920,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14845" ], "x-ms-correlation-request-id": [ - "e3bef53e-181f-437e-a163-5865647b4771" + "fc2370cc-57ef-466d-a236-c7ffac6bf748" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230916Z:e3bef53e-181f-437e-a163-5865647b4771" + "WESTUS2:20180510T181853Z:fc2370cc-57ef-466d-a236-c7ffac6bf748" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:09:15 GMT" + "Thu, 10 May 2018 18:18:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNzM4OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczY5NjM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39effc24-bf45-4006-a733-3fdc4c337990" + "29c7eb05-9900-4ff4-915c-ecdb5cb0b04f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7388\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388\",\r\n \"etag\": \"W/\\\"45c109bc-3dd9-4d88-96e1-787ce69f7321\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"508361d4-b0d9-474d-8f42-99635a8c9b1e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk8169\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388/ipConfigurations/onesdk8169\",\r\n \"etag\": \"W/\\\"45c109bc-3dd9-4d88-96e1-787ce69f7321\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/publicIPAddresses/onesdk4923\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6963\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963\",\r\n \"etag\": \"W/\\\"eed9bc36-ac87-497c-96ce-597b842cd7d6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a81f0fc6-65e6-4681-9327-9d9e8e13fae6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps4908\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963/ipConfigurations/ps4908\",\r\n \"etag\": \"W/\\\"eed9bc36-ac87-497c-96ce-597b842cd7d6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/publicIPAddresses/ps5895\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1496" + "1595" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1028,7 +971,7 @@ "no-cache" ], "x-ms-request-id": [ - "570c730e-bbca-4741-b3ba-29215260c916" + "fa27c73c-cb99-4394-b81d-7c174e30ea35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,40 +984,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14844" ], "x-ms-correlation-request-id": [ - "4dc30ed1-7b24-41a4-827e-285ed1035eab" + "2ace627a-6d59-45c3-b3a5-013d318f074f" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230916Z:4dc30ed1-7b24-41a4-827e-285ed1035eab" + "WESTUS2:20180510T181853Z:2ace627a-6d59-45c3-b3a5-013d318f074f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:09:15 GMT" + "Thu, 10 May 2018 18:18:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNzM4OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczY5NjM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "362d53d4-293e-482a-83cd-0457d3db2b43" + "906aad8b-bb9d-454a-91bd-4a5cd4280bdd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7388\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388\",\r\n \"etag\": \"W/\\\"45c109bc-3dd9-4d88-96e1-787ce69f7321\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"508361d4-b0d9-474d-8f42-99635a8c9b1e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk8169\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388/ipConfigurations/onesdk8169\",\r\n \"etag\": \"W/\\\"45c109bc-3dd9-4d88-96e1-787ce69f7321\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/publicIPAddresses/onesdk4923\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6963\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963\",\r\n \"etag\": \"W/\\\"eed9bc36-ac87-497c-96ce-597b842cd7d6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a81f0fc6-65e6-4681-9327-9d9e8e13fae6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps4908\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963/ipConfigurations/ps4908\",\r\n \"etag\": \"W/\\\"eed9bc36-ac87-497c-96ce-597b842cd7d6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/publicIPAddresses/ps5895\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1496" + "1595" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1086,7 +1035,7 @@ "no-cache" ], "x-ms-request-id": [ - "a4a8bef7-4cae-472e-b7cf-33d9ab114884" + "6d8d747f-c7c6-4bd3-a4a0-2996582222d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1099,46 +1048,52 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14843" ], "x-ms-correlation-request-id": [ - "fa00b27b-1e24-4b29-89a4-23d6cf4592fe" + "7b389eb9-bb54-46f0-88c5-19133c5c6344" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230916Z:fa00b27b-1e24-4b29-89a4-23d6cf4592fe" + "WESTUS2:20180510T181853Z:7b389eb9-bb54-46f0-88c5-19133c5c6344" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:09:16 GMT" + "Thu, 10 May 2018 18:18:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNzM4OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczY5NjM/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk8169\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfigurations/onesdk8169\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/publicIPAddresses/onesdk4923\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/publicIPAddresses/ps5895\"\r\n }\r\n },\r\n \"name\": \"ps4908\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfiguration/ps4908\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "960" + "1053" ], "x-ms-client-request-id": [ - "fa519c15-e993-4eb2-813e-66e2d2fe21f3" + "ee65941b-cbe9-412f-9a0f-a35fb953d52c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7388\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388\",\r\n \"etag\": \"W/\\\"bdf3979d-a7dd-461c-83e4-84c4e74c84b9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"508361d4-b0d9-474d-8f42-99635a8c9b1e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk8169\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388/ipConfigurations/onesdk8169\",\r\n \"etag\": \"W/\\\"bdf3979d-a7dd-461c-83e4-84c4e74c84b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/publicIPAddresses/onesdk4923\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6963\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963\",\r\n \"etag\": \"W/\\\"8675c1bf-10d3-4c13-9480-3278ca78d05a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a81f0fc6-65e6-4681-9327-9d9e8e13fae6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps4908\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963/ipConfigurations/ps4908\",\r\n \"etag\": \"W/\\\"8675c1bf-10d3-4c13-9480-3278ca78d05a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/publicIPAddresses/ps5895\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1526" + "1712" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1153,10 +1108,10 @@ "10" ], "x-ms-request-id": [ - "1efdc049-e28f-46a0-93e8-e697944924ad" + "06bb3737-28a7-4933-a24a-8b88f22b18a9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,25 +1127,31 @@ "1197" ], "x-ms-correlation-request-id": [ - "e9fc3ae9-9f35-4a55-9b91-a9d8f7ff7019" + "377d68a2-4e09-4fc9-b883-7bf0d924c330" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T223945Z:e9fc3ae9-9f35-4a55-9b91-a9d8f7ff7019" + "WESTUS2:20180510T175442Z:377d68a2-4e09-4fc9-b883-7bf0d924c330" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:39:44 GMT" + "Thu, 10 May 2018 17:54:41 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1207,8 +1168,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "94863437-1f58-4ee8-b847-40b1ede688bc" + "7a1f72d6-944b-436c-8a8d-4c1d586a8e24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1221,28 +1185,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14989" ], "x-ms-correlation-request-id": [ - "c099ce36-5a34-4cf0-9975-84b834b5870f" + "ee80414e-acc9-4a07-9c46-5b1ee662b547" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T223955Z:c099ce36-5a34-4cf0-9975-84b834b5870f" + "WESTUS2:20180510T175452Z:ee80414e-acc9-4a07-9c46-5b1ee662b547" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:39:55 GMT" + "Thu, 10 May 2018 17:54:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1259,8 +1229,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "31a855ab-2e9e-46c5-b2b7-5c3bc5497a4f" + "35880c85-9696-4e67-9cc4-4df873e2d6c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1276,25 +1249,31 @@ "14988" ], "x-ms-correlation-request-id": [ - "3581922c-15d9-4b8a-b95c-fee93ab8a116" + "d1e31156-7640-4924-bb75-a06d938a4221" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224026Z:3581922c-15d9-4b8a-b95c-fee93ab8a116" + "WESTUS2:20180510T175502Z:d1e31156-7640-4924-bb75-a06d938a4221" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:40:25 GMT" + "Thu, 10 May 2018 17:55:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1311,8 +1290,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "4791fb88-758e-4346-ad62-e646d3e5f4d9" + "7b77c2ad-2049-41b3-aa88-0976c373637f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1328,25 +1310,31 @@ "14987" ], "x-ms-correlation-request-id": [ - "7a8ffba3-7828-4728-b51d-f3ff1af0f9e5" + "2113e0ab-41c9-46f5-aded-0a2cf6ab1f7e" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224056Z:7a8ffba3-7828-4728-b51d-f3ff1af0f9e5" + "WESTUS2:20180510T175512Z:2113e0ab-41c9-46f5-aded-0a2cf6ab1f7e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:40:56 GMT" + "Thu, 10 May 2018 17:55:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1363,12 +1351,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "59833bc2-7614-4088-89c5-4d89fb99a99b" + "3e448cc3-37a4-480c-baf1-15e5252cd618" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], "Cache-Control": [ "no-cache" ], @@ -1376,29 +1370,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], "x-ms-correlation-request-id": [ - "b1d68c51-f3fe-440d-b839-ddda93d0e6d8" + "d96489d3-c01c-4199-96b5-f98b94707c60" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224126Z:b1d68c51-f3fe-440d-b839-ddda93d0e6d8" + "WESTUS2:20180510T175522Z:d96489d3-c01c-4199-96b5-f98b94707c60" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:41:26 GMT" + "Thu, 10 May 2018 17:55:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1415,8 +1412,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "705e0b5c-91b7-4054-9996-48e847e44345" + "cf4f2446-f27e-4176-a56a-124513c7677d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1432,25 +1432,31 @@ "14985" ], "x-ms-correlation-request-id": [ - "891cb189-f708-494d-8bb7-dfca39e6d49b" + "e9479bd5-ccb6-43dc-8e72-5f7325c02512" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224157Z:891cb189-f708-494d-8bb7-dfca39e6d49b" + "WESTUS2:20180510T175532Z:e9479bd5-ccb6-43dc-8e72-5f7325c02512" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:41:56 GMT" + "Thu, 10 May 2018 17:55:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1467,8 +1473,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "c4a9b57c-3ba0-4d7e-9d90-778c5ef97240" + "f9835244-ab7f-4254-93d6-01d9ee4dc849" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1484,25 +1493,31 @@ "14984" ], "x-ms-correlation-request-id": [ - "9dd604c1-5f2d-49b9-b960-59df2640eacc" + "9578fa44-3dca-4e82-8eab-4dce2b69919e" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224227Z:9dd604c1-5f2d-49b9-b960-59df2640eacc" + "WESTUS2:20180510T175542Z:9578fa44-3dca-4e82-8eab-4dce2b69919e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:42:26 GMT" + "Thu, 10 May 2018 17:55:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1519,8 +1534,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "db3916d8-bc4c-4459-8a92-4de813cdaf5c" + "094ed248-7c42-4bf1-bd79-bfb7b4202c4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,25 +1554,31 @@ "14983" ], "x-ms-correlation-request-id": [ - "c018a261-7f4d-45bf-b500-afd86019b58a" + "33efbd27-d43e-4c52-a9f9-623ed32f0bb4" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224257Z:c018a261-7f4d-45bf-b500-afd86019b58a" + "WESTUS2:20180510T175553Z:33efbd27-d43e-4c52-a9f9-623ed32f0bb4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:42:56 GMT" + "Thu, 10 May 2018 17:55:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1571,8 +1595,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "7855943b-4076-4487-b6e8-b5fedbe87fb8" + "2a1e8e9d-d79b-44dd-b8f5-9e478418018f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1588,25 +1615,31 @@ "14982" ], "x-ms-correlation-request-id": [ - "2bf24393-ade8-40a6-b38f-5e1f63185821" + "9c256b7f-9123-4035-bbf7-2a6b720ef57f" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224328Z:2bf24393-ade8-40a6-b38f-5e1f63185821" + "WESTUS2:20180510T175603Z:9c256b7f-9123-4035-bbf7-2a6b720ef57f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:43:27 GMT" + "Thu, 10 May 2018 17:56:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1623,8 +1656,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "be5ed450-a09f-4f53-81c1-2b8b0f8db9a1" + "019c15a9-5328-48ec-9d08-80de2744f109" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1640,25 +1676,31 @@ "14981" ], "x-ms-correlation-request-id": [ - "641028e8-1f10-4fb6-8c9c-9133b5665827" + "a3ffebf3-a6ea-460a-8d57-37bacd9a25e5" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224358Z:641028e8-1f10-4fb6-8c9c-9133b5665827" + "WESTUS2:20180510T175613Z:a3ffebf3-a6ea-460a-8d57-37bacd9a25e5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:43:58 GMT" + "Thu, 10 May 2018 17:56:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1675,8 +1717,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "9dfe9f71-36ff-420e-a67a-a530815ee8fe" + "4d2ec1fa-5e0c-4f00-a504-c378278d4889" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1692,25 +1737,31 @@ "14980" ], "x-ms-correlation-request-id": [ - "f3bfd016-ef31-4587-acd5-bb08ca1e3bab" + "3260e3c0-b098-4f77-b747-eb2b09a4a6af" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224428Z:f3bfd016-ef31-4587-acd5-bb08ca1e3bab" + "WESTUS2:20180510T175623Z:3260e3c0-b098-4f77-b747-eb2b09a4a6af" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:44:28 GMT" + "Thu, 10 May 2018 17:56:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1727,12 +1778,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "2b3b1f2c-a06f-4b81-986d-135c18b8f514" + "63a51a55-e707-4cea-b149-096a31e83a72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], "Cache-Control": [ "no-cache" ], @@ -1740,29 +1797,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" - ], "x-ms-correlation-request-id": [ - "5cac1866-b277-455f-90cf-84010ff1873e" + "0bd3ae80-13bb-4e6a-8db3-280e1ebb3071" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224459Z:5cac1866-b277-455f-90cf-84010ff1873e" + "WESTUS2:20180510T175633Z:0bd3ae80-13bb-4e6a-8db3-280e1ebb3071" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:44:58 GMT" + "Thu, 10 May 2018 17:56:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1779,8 +1839,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "f9ed553e-3677-451e-a7d6-ab08673d147f" + "bc731723-61f7-4f98-b28a-05c7a0a9eeee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1796,25 +1859,31 @@ "14978" ], "x-ms-correlation-request-id": [ - "c275fd0f-314c-4f06-ab9e-be27eeb6e94f" + "9d5bafdf-c2fc-43f0-8fdb-ca98360499f2" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224529Z:c275fd0f-314c-4f06-ab9e-be27eeb6e94f" + "WESTUS2:20180510T175643Z:9d5bafdf-c2fc-43f0-8fdb-ca98360499f2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:45:29 GMT" + "Thu, 10 May 2018 17:56:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1831,8 +1900,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "b0b402b6-2008-4020-8ba6-280c1627afda" + "2b012837-f24f-41fd-b763-5ae60a2fcc38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1848,25 +1920,31 @@ "14977" ], "x-ms-correlation-request-id": [ - "551b3f6d-582c-41a9-908e-4091da291e18" + "8db6263c-d414-4375-aeca-91d213d7ce05" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224559Z:551b3f6d-582c-41a9-908e-4091da291e18" + "WESTUS2:20180510T175653Z:8db6263c-d414-4375-aeca-91d213d7ce05" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:45:59 GMT" + "Thu, 10 May 2018 17:56:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1883,8 +1961,5196 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "685ec4d7-e765-436e-9954-80f0fb08c418" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "1e987173-34b3-4c5b-8075-2b59be8674a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175703Z:1e987173-34b3-4c5b-8075-2b59be8674a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:57:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8cd37c7d-21d4-483d-860b-03ed447eb423" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "07be6c6b-a4e0-464d-b17b-dd3f065ba3c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175713Z:07be6c6b-a4e0-464d-b17b-dd3f065ba3c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:57:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6bb850ab-8195-41d5-baf1-918a1b58ac8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "52eb192d-8639-47ff-b60f-738203540da3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175723Z:52eb192d-8639-47ff-b60f-738203540da3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:57:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "61f3729f-68b4-4573-8ff6-6d3925138b78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "e9130758-2852-4910-b8ab-6e207955e877" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175733Z:e9130758-2852-4910-b8ab-6e207955e877" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:57:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "77a0859f-4730-486e-b245-418c1038a6e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "eaabfaaa-c3e6-4ddc-9198-63b0bb9dd744" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175743Z:eaabfaaa-c3e6-4ddc-9198-63b0bb9dd744" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:57:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d481be38-b5f8-46b7-a155-6bfec9e62cee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "94c60d63-1d3b-4441-838d-c2e8e6aa087e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175753Z:94c60d63-1d3b-4441-838d-c2e8e6aa087e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:57:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "eebd4b0e-7949-48c7-b930-85e6373fe542" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "2adb37ff-5f22-42c0-9c8e-7de48356f83a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175803Z:2adb37ff-5f22-42c0-9c8e-7de48356f83a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:58:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2c1bd73e-0f82-48d6-86c5-e5bec33e213b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "1bf1ea78-6782-44cc-acaa-d1e47be0adbd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175814Z:1bf1ea78-6782-44cc-acaa-d1e47be0adbd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:58:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "54aed566-0c61-45c4-94c1-471423f1530d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "e7590677-beb6-4c45-968b-5c9de2efebd2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175824Z:e7590677-beb6-4c45-968b-5c9de2efebd2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:58:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a1f657ee-194a-4b14-9b6b-2e5c86e77969" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "d040e66f-0f7c-44cf-b248-f324523e9e2e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175834Z:d040e66f-0f7c-44cf-b248-f324523e9e2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:58:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0944a6d1-635e-42a2-a09c-6fd84c1d5312" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "e8df760e-4fe5-4336-aafc-59a44242b45c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175844Z:e8df760e-4fe5-4336-aafc-59a44242b45c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:58:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e9dc3f04-c48e-4eb6-aca4-4f42edc5fbc6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "49c42270-c699-4d90-948f-1fd315a56136" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175854Z:49c42270-c699-4d90-948f-1fd315a56136" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:58:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7158399f-97c0-4bc5-a7e8-fdec849b14f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "e64de8e2-ca64-466f-bbe6-ba0edc5eaa5d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175904Z:e64de8e2-ca64-466f-bbe6-ba0edc5eaa5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:59:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4e8dc08e-f767-4b8a-9499-53fde1a68078" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "7bc7b525-3fb3-48f0-a619-287425cd445c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175914Z:7bc7b525-3fb3-48f0-a619-287425cd445c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:59:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "618837ae-490d-4c3f-b760-04da9255d284" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "21d63e14-7a3c-4168-b466-9277fda26737" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175924Z:21d63e14-7a3c-4168-b466-9277fda26737" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:59:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a36fab90-50ec-44d2-b64e-6389bd5e1606" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "f9e26aa8-62b1-4353-a226-27e0c70de689" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175934Z:f9e26aa8-62b1-4353-a226-27e0c70de689" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:59:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0e9ff465-c819-4aef-a05a-fde4225e2b7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "ac7fe50d-905c-4290-bc86-bf0c30c43639" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175944Z:ac7fe50d-905c-4290-bc86-bf0c30c43639" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:59:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "117ad1db-bde7-46a2-8c09-6d8a1e5b03ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "5825bdfb-f440-4ad4-b81c-153a507b8dbc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T175954Z:5825bdfb-f440-4ad4-b81c-153a507b8dbc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 17:59:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4ec6ab89-bfba-491e-bee4-16273d1f8183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "acfddea0-489b-43d6-a375-42ac1478e814" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180004Z:acfddea0-489b-43d6-a375-42ac1478e814" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:00:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ea3c2d05-777c-4f05-9d22-4c77e1fb7f1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "04a464d4-81c1-4946-be19-031494a2fef6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180014Z:04a464d4-81c1-4946-be19-031494a2fef6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:00:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8f3fa89a-384a-4353-9170-270b2fc33769" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "cbf8e8e0-fe47-4a9b-93f8-be7e7db5e8aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180024Z:cbf8e8e0-fe47-4a9b-93f8-be7e7db5e8aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:00:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fde5470c-a9de-4181-bada-e4e910be558e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "8647af74-6906-4c7d-a06c-209ddf624232" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180035Z:8647af74-6906-4c7d-a06c-209ddf624232" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:00:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7d2788a5-ef68-4ab2-9d7a-9ffca4ae489b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "9f37f754-e4f0-4150-bf2e-70b6767e4bcc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180045Z:9f37f754-e4f0-4150-bf2e-70b6767e4bcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:00:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fcaac9ee-8a04-4ae7-9a0e-5c13cf50f2f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "7bc38f95-c8b3-406c-b86e-b8821813de76" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180055Z:7bc38f95-c8b3-406c-b86e-b8821813de76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:00:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2d42cdf9-0af8-497f-bbb9-a1520cc18358" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "a0f6db8d-503c-493c-aaad-39a7c40c328d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180105Z:a0f6db8d-503c-493c-aaad-39a7c40c328d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:01:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e78335cb-7191-4888-9d86-9b42ffb9d246" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4f956bd6-56c5-4bdd-ad2f-d837b2dcb982" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180115Z:4f956bd6-56c5-4bdd-ad2f-d837b2dcb982" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:01:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "594df01f-459c-49e8-babc-d36bab8797a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "4bdaac2d-1fe9-41f3-a871-6c6bcc4f4817" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180125Z:4bdaac2d-1fe9-41f3-a871-6c6bcc4f4817" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:01:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6082d2d5-ba60-4de1-a7df-5818a2b3583c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "34270358-e315-4fc8-a6f4-7ef02641ce38" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180135Z:34270358-e315-4fc8-a6f4-7ef02641ce38" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:01:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "84563bda-74d8-4c2f-935a-f35623258a8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "7c888ee3-97a9-44a5-9f74-b3af23035415" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180145Z:7c888ee3-97a9-44a5-9f74-b3af23035415" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:01:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7b033339-bd1e-4f2d-96dd-e934efe1cd9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "7c15e2ef-7886-4fd3-8b06-9005e84f50a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180155Z:7c15e2ef-7886-4fd3-8b06-9005e84f50a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:01:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d346e4af-1a04-4196-a18d-7686460ed6ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "85aadcae-8725-4cdb-ac9e-7d51ea4bde03" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180205Z:85aadcae-8725-4cdb-ac9e-7d51ea4bde03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:02:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b4a6d2d9-91d3-4894-b60f-afa0120545f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "af8d0c2d-eead-4f31-8dc7-bc332501346d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180215Z:af8d0c2d-eead-4f31-8dc7-bc332501346d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:02:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0bedf9c7-04e7-41d2-a060-5bfa84fc051f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "838fbb5e-fee2-4cef-9104-e895ed2df6a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180225Z:838fbb5e-fee2-4cef-9104-e895ed2df6a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:02:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3a7c5695-407d-45e9-9d21-a2e590f97dea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "d6dff7d2-9808-462c-a406-a0021e951c6e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180235Z:d6dff7d2-9808-462c-a406-a0021e951c6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:02:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9c8f2e80-c214-4e26-9447-faf16cc1370f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "644ed1d0-ef9a-43f7-8b69-2743dcd21cf8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180245Z:644ed1d0-ef9a-43f7-8b69-2743dcd21cf8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:02:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ef0f37df-142a-4c72-9ed8-ef2b69ade3f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "fe6e0f65-4494-47eb-9c95-cbd30f227e41" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180255Z:fe6e0f65-4494-47eb-9c95-cbd30f227e41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:02:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "036b6eb0-3f0b-4488-8058-0703c0c1b3da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "3ef8a9ee-5d24-4fa8-a2e5-e16d47e176eb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180306Z:3ef8a9ee-5d24-4fa8-a2e5-e16d47e176eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:03:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "98f2fa70-de8b-4c79-a857-0496b8b004d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "1648db3f-0f79-4b04-924b-b16d736b8cee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180316Z:1648db3f-0f79-4b04-924b-b16d736b8cee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:03:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f7d766b2-b949-4d57-a0c3-9a236348c401" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "9f5d0992-def2-4436-be28-a28376078721" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180326Z:9f5d0992-def2-4436-be28-a28376078721" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:03:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9cd48237-fd74-4e24-be67-17472704309e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "66700383-92fd-49f9-bd27-2a8aad616ad3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180336Z:66700383-92fd-49f9-bd27-2a8aad616ad3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:03:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2aa2ceaa-f24e-418d-a467-5ef590d0e427" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "fd808af4-dac8-44c4-b49f-844d86cd7626" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180346Z:fd808af4-dac8-44c4-b49f-844d86cd7626" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:03:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e1236fb8-6bd2-4b67-abcb-719c86b7acaa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "efaf9f48-8fca-49bf-adda-33ac2a30d2e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180356Z:efaf9f48-8fca-49bf-adda-33ac2a30d2e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:03:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ab1b24f9-c566-4cf4-8a38-f731464bc683" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "89aaef5d-7438-45f8-97c5-cb78ad1f728d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180406Z:89aaef5d-7438-45f8-97c5-cb78ad1f728d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:04:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ccdce352-96b8-4a62-808b-1206a038f4fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "ad28d26a-1b1d-44c1-b282-84b4c40e9aa3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180416Z:ad28d26a-1b1d-44c1-b282-84b4c40e9aa3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:04:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "daa6e08b-70ae-4176-854a-03eadfddac78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "0a521994-f985-4a06-a01a-da95f10edac1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180426Z:0a521994-f985-4a06-a01a-da95f10edac1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:04:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f0dafb58-1372-457e-bed5-d6b59c60dbf5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "9e69b2bc-903d-4867-aa6f-fb5f15c1c1b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180436Z:9e69b2bc-903d-4867-aa6f-fb5f15c1c1b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:04:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b2c612bc-37ba-48aa-8a5d-e85e8af4fe1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "fa26dfae-b112-4d9e-bcdb-365631d639a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180446Z:fa26dfae-b112-4d9e-bcdb-365631d639a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:04:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6b58447d-c19f-4111-bdbb-c45c568daf71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "fea6b508-b4a2-47ef-bb5c-5f407c5870e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180456Z:fea6b508-b4a2-47ef-bb5c-5f407c5870e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:04:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "62f45766-cfd9-4c7e-b428-8273a0ebf834" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "3468d192-cdeb-4d63-a38b-d1349223f2db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180507Z:3468d192-cdeb-4d63-a38b-d1349223f2db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:05:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "10a9b16a-8e82-4199-9d65-bd8e487b8f17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "9dffd7e3-ccc5-4a1c-b102-ebd4dee228fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180517Z:9dffd7e3-ccc5-4a1c-b102-ebd4dee228fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:05:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "972e643c-c01e-4639-abf3-8cf9e7820e6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "dcb68481-998e-4fbb-ace3-428fff38fcb2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180527Z:dcb68481-998e-4fbb-ace3-428fff38fcb2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:05:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "349c28e0-990b-4e65-9aec-161fc86d7aed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "fc711089-750e-41f7-876b-59df24ae74ca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180537Z:fc711089-750e-41f7-876b-59df24ae74ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:05:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6ad48259-c82f-4cc6-81d6-7013a93d5e1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "fabe20d4-bca1-4d48-b4c0-de66544e1bf9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180547Z:fabe20d4-bca1-4d48-b4c0-de66544e1bf9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:05:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ee8fedd1-af9c-4a4b-ac17-e92c8b7b885b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c4156d0d-9c9d-47f4-b286-f1bc31c3e6ac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180557Z:c4156d0d-9c9d-47f4-b286-f1bc31c3e6ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:05:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "59b0e14b-f009-4776-9598-99d83f8462a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "8065fb77-e9ea-41cd-83f6-edcd84ff5499" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180607Z:8065fb77-e9ea-41cd-83f6-edcd84ff5499" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:06:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bbdacfe9-f6b8-4a0f-97b1-c82fa457f572" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-correlation-request-id": [ + "e2f2182c-0ee0-4044-a99f-166856027e78" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180617Z:e2f2182c-0ee0-4044-a99f-166856027e78" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:06:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e6ced54e-5791-47c3-8f80-805a7f7cbe95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "686cdcc1-1082-4bba-829d-2d003f16a6cb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180627Z:686cdcc1-1082-4bba-829d-2d003f16a6cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:06:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b356f597-2efe-4d53-b08f-3bc81334c1c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "4f24a81f-fedd-4b00-92d4-ff3bdde1f075" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180637Z:4f24a81f-fedd-4b00-92d4-ff3bdde1f075" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:06:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c31c72e6-9091-46d5-a864-8a0589ec6815" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "fd693331-6435-4918-aecb-304865505568" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180647Z:fd693331-6435-4918-aecb-304865505568" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:06:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "827b6060-7274-4a38-b017-53cdc82ebe02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-correlation-request-id": [ + "d04bf466-d02d-467d-a164-5232b07da253" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180657Z:d04bf466-d02d-467d-a164-5232b07da253" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:06:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d0a911f2-cfb2-4d9b-bf85-8280def1850d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "1a322ab8-27a3-4157-b4c0-44f5edd897c6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180707Z:1a322ab8-27a3-4157-b4c0-44f5edd897c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:07:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0f20e290-38e0-46ce-b423-24575b4122d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-correlation-request-id": [ + "f1c683f3-6bea-4b4b-9d31-248e4e047cae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180718Z:f1c683f3-6bea-4b4b-9d31-248e4e047cae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:07:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c53a1b9f-c0ce-4843-900b-e17ca2939898" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-correlation-request-id": [ + "06f34ec8-e73b-45c9-b82b-015491c39c75" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180728Z:06f34ec8-e73b-45c9-b82b-015491c39c75" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:07:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a6e219ef-231f-46b0-974d-fe60f1fd4975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "697f6c06-94c1-404f-996c-ba0f32afd02a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180738Z:697f6c06-94c1-404f-996c-ba0f32afd02a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:07:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f1f9dd0c-37a8-4e35-b860-a5e5855c9325" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-correlation-request-id": [ + "3dddeeae-8221-4c4b-bbbd-457cffeade1d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180748Z:3dddeeae-8221-4c4b-bbbd-457cffeade1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:07:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "73f1d615-808e-4205-80d0-6b4030178ccb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-correlation-request-id": [ + "e5bf7a67-298f-49ae-898c-e99de2d524da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180758Z:e5bf7a67-298f-49ae-898c-e99de2d524da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:07:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2dd023f5-23eb-4a72-bf5e-9a49db59da91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-correlation-request-id": [ + "4a617c30-fd20-458f-8af2-524083aa39db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180808Z:4a617c30-fd20-458f-8af2-524083aa39db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:08:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5ab318fc-a7b3-49f9-8a8d-6917df669dad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f3a66a7a-bcee-4518-8580-967df3923c3f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180818Z:f3a66a7a-bcee-4518-8580-967df3923c3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:08:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "11c7931d-fa11-4244-b02e-67119f7f360a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14908" + ], + "x-ms-correlation-request-id": [ + "884160d3-eed6-47e0-9594-811ab5303fb5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180828Z:884160d3-eed6-47e0-9594-811ab5303fb5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:08:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2a922121-f77c-4fe4-8566-27b594c71d0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" + ], + "x-ms-correlation-request-id": [ + "91287f77-78ed-4984-a473-78e3f5df17ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180838Z:91287f77-78ed-4984-a473-78e3f5df17ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:08:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "230b64a2-2d36-425d-9d4f-1ea76aa57de1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14906" + ], + "x-ms-correlation-request-id": [ + "1fd4a25d-d657-4c33-9a3a-73a1ec4f83ac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180848Z:1fd4a25d-d657-4c33-9a3a-73a1ec4f83ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:08:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "acfc2651-e868-491f-a5eb-f6cfd7551ffd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14905" + ], + "x-ms-correlation-request-id": [ + "1b55a666-f9c9-4365-9078-a7395a1e145a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180858Z:1b55a666-f9c9-4365-9078-a7395a1e145a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:08:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d45165d0-89ee-40ca-b9ab-7c46fb4aae9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14904" + ], + "x-ms-correlation-request-id": [ + "72f66e95-1822-41b6-b395-c3b9e4d24ed4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180908Z:72f66e95-1822-41b6-b395-c3b9e4d24ed4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:09:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0b1aa3b4-d70c-4aaa-962b-3390dc10eaa6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14903" + ], + "x-ms-correlation-request-id": [ + "790cc1de-5237-4354-9c38-a04497d75371" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180918Z:790cc1de-5237-4354-9c38-a04497d75371" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:09:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2c33a78c-7316-49ef-8ed4-9127dc11f5cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "b5b3e20d-f325-4bc1-891e-cea027f9028f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180928Z:b5b3e20d-f325-4bc1-891e-cea027f9028f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:09:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "49fad002-5efe-4a86-a901-92d1c5d9f975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14901" + ], + "x-ms-correlation-request-id": [ + "2cf7bc27-7e43-499a-a161-92f38f7ce7ee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180939Z:2cf7bc27-7e43-499a-a161-92f38f7ce7ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:09:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "43e06ad5-494c-46bd-b0de-2d0d42682fed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14900" + ], + "x-ms-correlation-request-id": [ + "63b7996c-5ad0-4da7-a6ed-3be2e2ec9e4e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180949Z:63b7996c-5ad0-4da7-a6ed-3be2e2ec9e4e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:09:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "697a1d7c-88d1-46c5-9c45-30a2ceaa860f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14899" + ], + "x-ms-correlation-request-id": [ + "295891a7-680a-4fbc-917e-1b144682caf6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T180959Z:295891a7-680a-4fbc-917e-1b144682caf6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:09:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "88386cba-e02e-41c3-904f-49fb555ce6a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14898" + ], + "x-ms-correlation-request-id": [ + "1358a6a0-9dfb-41fd-8b4e-25e874008477" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T181009Z:1358a6a0-9dfb-41fd-8b4e-25e874008477" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:10:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bd11209c-0e16-405e-b3a1-1182245f7deb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14897" + ], + "x-ms-correlation-request-id": [ + "78fe5877-8196-4967-82b9-15f2d6d2b8f3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T181019Z:78fe5877-8196-4967-82b9-15f2d6d2b8f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:10:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1356a20a-b66f-4d2d-a1e2-39d8001a7a38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14896" + ], + "x-ms-correlation-request-id": [ + "26b7677f-222b-4908-aedc-fc05460f89db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T181029Z:26b7677f-222b-4908-aedc-fc05460f89db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:10:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e9ff108f-ef29-448e-9ab3-fe8ef07c1e07" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14895" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f0ba1ca9-b569-4f89-a544-1bf83c36906e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T181039Z:f0ba1ca9-b569-4f89-a544-1bf83c36906e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:10:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "88633c28-7414-436d-8342-e6fb4862dae5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14894" + ], + "x-ms-correlation-request-id": [ + "ef34b9df-6fc6-42d1-bd5d-7784f572371d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T181049Z:ef34b9df-6fc6-42d1-bd5d-7784f572371d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:10:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "31d7549c-a681-406c-9101-7c07a7acb2fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14893" + ], + "x-ms-correlation-request-id": [ + "b7585fa1-1234-406e-b3ef-372ec40a76ac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T181059Z:b7585fa1-1234-406e-b3ef-372ec40a76ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:10:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e4a36941-69b4-4d5d-9738-e88f8d4fd1ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], + "x-ms-correlation-request-id": [ + "eed42de9-35b6-4e1d-a1bc-aafa37833be6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T181109Z:eed42de9-35b6-4e1d-a1bc-aafa37833be6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:11:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "bd5e32f3-5f5d-46d7-8a76-d7ca626295cc" + "7f6ee989-ff7c-443b-858c-aec8a195ba65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1897,28 +7163,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14891" ], "x-ms-correlation-request-id": [ - "77da5e6c-4adc-4921-8062-5e4ec785afa3" + "3309db48-4e79-4436-a6a1-cf3e03294d0d" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224630Z:77da5e6c-4adc-4921-8062-5e4ec785afa3" + "WESTUS2:20180510T181119Z:3309db48-4e79-4436-a6a1-cf3e03294d0d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:46:29 GMT" + "Thu, 10 May 2018 18:11:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1935,8 +7207,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "4cb4d500-8495-4a6c-aac5-37e563fbfc39" + "9eb59c2f-aa66-4edf-84b8-9d00678ddaeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1949,28 +7224,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14890" ], "x-ms-correlation-request-id": [ - "91d78b64-2602-4d8e-a655-ba9337620bf7" + "eaf7f27c-b643-4409-b040-5c77ee419623" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224700Z:91d78b64-2602-4d8e-a655-ba9337620bf7" + "WESTUS2:20180510T181129Z:eaf7f27c-b643-4409-b040-5c77ee419623" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:47:00 GMT" + "Thu, 10 May 2018 18:11:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1987,8 +7268,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "5515d67c-1bd1-4101-a671-f90ab855a06a" + "439aa17d-516b-48d9-a320-97b5dada5d76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2001,28 +7285,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14889" ], "x-ms-correlation-request-id": [ - "a79c978f-21c6-4754-a6e7-fcd0fa9ffa1f" + "1dc73e96-043c-43e7-92cf-893d54217f2f" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224730Z:a79c978f-21c6-4754-a6e7-fcd0fa9ffa1f" + "WESTUS2:20180510T181139Z:1dc73e96-043c-43e7-92cf-893d54217f2f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:47:30 GMT" + "Thu, 10 May 2018 18:11:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2039,12 +7329,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "d53b8760-b1a9-4a54-b733-d6eb999b87c0" + "56777d70-b580-412a-b565-8f071169eb32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], "Cache-Control": [ "no-cache" ], @@ -2052,29 +7348,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], "x-ms-correlation-request-id": [ - "0d748985-2f03-4e00-b2c3-66a078567af3" + "c658ee52-fdb0-49e3-9581-d9ded5328cbd" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224801Z:0d748985-2f03-4e00-b2c3-66a078567af3" + "WESTUS2:20180510T181150Z:c658ee52-fdb0-49e3-9581-d9ded5328cbd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:48:00 GMT" + "Thu, 10 May 2018 18:11:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2091,8 +7390,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "f12fe277-cb12-49f2-a4a9-73523b06747d" + "46bf3dfb-b967-4dc6-836b-41412c6586dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2105,28 +7407,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14887" ], "x-ms-correlation-request-id": [ - "a63f8946-cc4d-4e06-a2a5-42e793154581" + "bdd8d7d3-9ecf-4a9b-aea4-474736d06777" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224831Z:a63f8946-cc4d-4e06-a2a5-42e793154581" + "WESTUS2:20180510T181200Z:bdd8d7d3-9ecf-4a9b-aea4-474736d06777" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:48:31 GMT" + "Thu, 10 May 2018 18:11:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2143,8 +7451,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "0d21332e-8c05-459a-84e6-9e80bba5b482" + "a12b8e85-7bca-484d-8f7b-50c0a50d0078" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2157,28 +7468,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14886" ], "x-ms-correlation-request-id": [ - "90013876-5927-466d-9d4b-e069c627bc5e" + "587025f7-7c5e-49aa-9622-789171f84359" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224901Z:90013876-5927-466d-9d4b-e069c627bc5e" + "WESTUS2:20180510T181210Z:587025f7-7c5e-49aa-9622-789171f84359" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:49:01 GMT" + "Thu, 10 May 2018 18:12:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2195,8 +7512,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "a47fbe24-1633-4531-91d7-4a00310e5509" + "98b39eea-d731-4581-b8c8-454726ab6200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2209,28 +7529,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14885" ], "x-ms-correlation-request-id": [ - "4858755f-3e10-4de9-9c83-916e2579a9b6" + "dc8cab54-75cb-4903-97fa-480fdcc6fbf6" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T224932Z:4858755f-3e10-4de9-9c83-916e2579a9b6" + "WESTUS2:20180510T181220Z:dc8cab54-75cb-4903-97fa-480fdcc6fbf6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:49:31 GMT" + "Thu, 10 May 2018 18:12:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2247,8 +7573,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "b8ef69e5-b31d-4c36-8db2-18b7ade3305f" + "f89e4431-bfb4-4fbe-a149-417405599712" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2261,28 +7590,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14884" ], "x-ms-correlation-request-id": [ - "97efff32-2ce1-41b3-84bc-f3759e9af201" + "0bdd5b31-397b-441c-a5f2-58b987c718cd" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225002Z:97efff32-2ce1-41b3-84bc-f3759e9af201" + "WESTUS2:20180510T181230Z:0bdd5b31-397b-441c-a5f2-58b987c718cd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:50:02 GMT" + "Thu, 10 May 2018 18:12:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2299,8 +7634,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "dfa97d60-18fe-4a57-861f-f2123e61c674" + "c5ad5316-1e5e-4ad8-803f-3cddd99b2d1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2313,28 +7651,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14883" ], "x-ms-correlation-request-id": [ - "882d6002-f08f-4b81-a029-3d01a63c1cbc" + "b1823bd7-b884-4179-9a0a-3672deb73022" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225033Z:882d6002-f08f-4b81-a029-3d01a63c1cbc" + "WESTUS2:20180510T181240Z:b1823bd7-b884-4179-9a0a-3672deb73022" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:50:32 GMT" + "Thu, 10 May 2018 18:12:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2351,8 +7695,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "1a3ca0ad-9eac-4480-b196-1f535e3edf2c" + "c2872b19-cedf-4152-90f5-61b232ce6986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2365,28 +7712,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14882" ], "x-ms-correlation-request-id": [ - "b46291d4-97fc-4958-a832-e14e386e3b76" + "73ff9eca-35b7-4409-b470-58b4192b1b0a" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225103Z:b46291d4-97fc-4958-a832-e14e386e3b76" + "WESTUS2:20180510T181250Z:73ff9eca-35b7-4409-b470-58b4192b1b0a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:51:02 GMT" + "Thu, 10 May 2018 18:12:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2403,12 +7756,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "0f65f571-2854-4776-83e8-9720caaca4ef" + "e7ba9892-f1ee-4a7c-8e2f-78cb4f068e22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14881" + ], "Cache-Control": [ "no-cache" ], @@ -2416,29 +7775,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" - ], "x-ms-correlation-request-id": [ - "a5967266-b688-4277-922d-4e05b0cbaeff" + "31697310-bf5d-428e-9254-bf8f32ef6453" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225133Z:a5967266-b688-4277-922d-4e05b0cbaeff" + "WESTUS2:20180510T181300Z:31697310-bf5d-428e-9254-bf8f32ef6453" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:51:33 GMT" + "Thu, 10 May 2018 18:12:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2455,8 +7817,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "2e861536-3ebb-4527-b096-d4bdcc1baadf" + "3fc3e090-6379-4e54-bfac-673bfd4fb9df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2469,28 +7834,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14880" ], "x-ms-correlation-request-id": [ - "0edc01cb-4019-4824-aa30-57de9683e04e" + "dc3fe762-f685-45df-9d88-f4ce9ef9d269" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225204Z:0edc01cb-4019-4824-aa30-57de9683e04e" + "WESTUS2:20180510T181310Z:dc3fe762-f685-45df-9d88-f4ce9ef9d269" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:52:03 GMT" + "Thu, 10 May 2018 18:13:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2507,8 +7878,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "9d6f6ca6-9dc0-4ffd-a0b7-27b65a3b5bcd" + "6d9135ef-7e66-4105-a2cc-1ebe55e0ab88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2521,28 +7895,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14879" ], "x-ms-correlation-request-id": [ - "7695c232-4661-4e83-a84d-b80416c51c30" + "0076d66e-d54d-4efb-85ae-53cfb0ee27de" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225234Z:7695c232-4661-4e83-a84d-b80416c51c30" + "WESTUS2:20180510T181320Z:0076d66e-d54d-4efb-85ae-53cfb0ee27de" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:52:34 GMT" + "Thu, 10 May 2018 18:13:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2559,8 +7939,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "790d7238-7859-48a2-ae52-34fe7fb11985" + "b3415474-e5e2-425d-a886-0893b027f3d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2573,28 +7956,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14878" ], "x-ms-correlation-request-id": [ - "30a78645-f5e0-4779-acd3-d4549214e254" + "c1403c50-bc92-480e-87f8-7bc332b27350" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225304Z:30a78645-f5e0-4779-acd3-d4549214e254" + "WESTUS2:20180510T181330Z:c1403c50-bc92-480e-87f8-7bc332b27350" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:53:04 GMT" + "Thu, 10 May 2018 18:13:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2611,8 +8000,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "e6b8f436-4680-4fe9-ae2b-6c5fc98917e8" + "1fbb480e-c026-4b36-b347-35b39b4bfb2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2625,28 +8017,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14877" ], "x-ms-correlation-request-id": [ - "a16692b3-7827-464f-bda8-0e359d006518" + "b54c5b9d-83e2-46f4-8199-6659a0f12999" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225335Z:a16692b3-7827-464f-bda8-0e359d006518" + "WESTUS2:20180510T181340Z:b54c5b9d-83e2-46f4-8199-6659a0f12999" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:53:34 GMT" + "Thu, 10 May 2018 18:13:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2663,8 +8061,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "725f43d5-50ba-4173-b194-167a62373915" + "e745f806-02b2-4aef-8425-314127d55909" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2677,28 +8078,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14876" ], "x-ms-correlation-request-id": [ - "4b3b29a9-e632-4527-824d-725c54985521" + "fbc28393-8279-44dc-a524-7dbf1af2553a" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225405Z:4b3b29a9-e632-4527-824d-725c54985521" + "WESTUS2:20180510T181350Z:fbc28393-8279-44dc-a524-7dbf1af2553a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:54:04 GMT" + "Thu, 10 May 2018 18:13:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2715,8 +8122,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "81b21110-8a02-4625-9cf2-8c310a723540" + "847cbcde-a2ca-40fb-ab1c-ffad4fc8756c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2729,28 +8139,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14875" ], "x-ms-correlation-request-id": [ - "b373f1b1-ec95-4786-a950-b11354d8589c" + "643bb5fc-0edf-4707-8eba-6c6cb7183ab0" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225435Z:b373f1b1-ec95-4786-a950-b11354d8589c" + "WESTUS2:20180510T181400Z:643bb5fc-0edf-4707-8eba-6c6cb7183ab0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:54:35 GMT" + "Thu, 10 May 2018 18:14:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2767,12 +8183,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "66337048-006a-45dc-bc6f-c96f926c0506" + "59545d10-7123-4a27-89c3-58785cbd59d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14874" + ], "Cache-Control": [ "no-cache" ], @@ -2780,29 +8202,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" - ], "x-ms-correlation-request-id": [ - "cf0109f8-73cf-4ae1-90ad-750910c73f7a" + "e576b5e3-4475-44a3-a673-c2af7b7eaffc" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225506Z:cf0109f8-73cf-4ae1-90ad-750910c73f7a" + "WESTUS2:20180510T181411Z:e576b5e3-4475-44a3-a673-c2af7b7eaffc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:55:06 GMT" + "Thu, 10 May 2018 18:14:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2819,8 +8244,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "c6146f0f-0d47-4efd-87e4-5bf1e0ebd879" + "71098067-5d48-45ce-854c-49307313479a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2833,28 +8261,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14873" ], "x-ms-correlation-request-id": [ - "f3ef36ff-2159-42f6-872f-ba6860beba0a" + "6b989a9d-4ea2-475b-ab49-4cba1655d836" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225536Z:f3ef36ff-2159-42f6-872f-ba6860beba0a" + "WESTUS2:20180510T181421Z:6b989a9d-4ea2-475b-ab49-4cba1655d836" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:55:35 GMT" + "Thu, 10 May 2018 18:14:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2871,8 +8305,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "5239528e-4ed0-49c0-89ca-351e79f716b7" + "f26a0c0b-83a9-4a12-b463-27fb8d6fcbe0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2885,28 +8322,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14872" ], "x-ms-correlation-request-id": [ - "b5468d22-a0d9-4641-a4ec-1e1e902e695c" + "fc1e1b1b-c3b1-4def-9c42-ee76c90c6b0b" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225606Z:b5468d22-a0d9-4641-a4ec-1e1e902e695c" + "WESTUS2:20180510T181431Z:fc1e1b1b-c3b1-4def-9c42-ee76c90c6b0b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:56:06 GMT" + "Thu, 10 May 2018 18:14:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2923,8 +8366,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "78cdabba-185f-4917-8424-bac18ea3a270" + "5c2aa642-5de9-4c18-b88b-437240924613" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2937,28 +8383,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14871" ], "x-ms-correlation-request-id": [ - "29f6bde4-c27a-4340-8c29-172701acc88a" + "207f9109-67ce-4366-ac51-7907fa193930" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225637Z:29f6bde4-c27a-4340-8c29-172701acc88a" + "WESTUS2:20180510T181441Z:207f9109-67ce-4366-ac51-7907fa193930" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:56:37 GMT" + "Thu, 10 May 2018 18:14:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2975,8 +8427,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "26d6a4df-35a0-43ce-8c62-1e1b4b689548" + "5b2f6e5c-a916-452c-870b-beb9a89b0121" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2989,28 +8444,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14870" ], "x-ms-correlation-request-id": [ - "2e93949d-8549-484c-8ca8-07675d256e66" + "4755e45a-884a-400b-8f45-03a4b76252e7" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225707Z:2e93949d-8549-484c-8ca8-07675d256e66" + "WESTUS2:20180510T181451Z:4755e45a-884a-400b-8f45-03a4b76252e7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:57:06 GMT" + "Thu, 10 May 2018 18:14:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3027,8 +8488,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "ec937c86-24cf-4e13-b982-78065d5250c3" + "84beae22-973f-4434-8168-f14f16254a86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3041,28 +8505,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14869" ], "x-ms-correlation-request-id": [ - "c4563af6-3a5c-4b31-80c9-e54de08c586d" + "1d35872f-3cbf-4cc9-af41-d06af69e4ad7" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225737Z:c4563af6-3a5c-4b31-80c9-e54de08c586d" + "WESTUS2:20180510T181501Z:1d35872f-3cbf-4cc9-af41-d06af69e4ad7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:57:37 GMT" + "Thu, 10 May 2018 18:15:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3079,8 +8549,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "310b3173-b0a2-4228-96ac-ed199a877953" + "2a197ed3-01be-48b7-8c85-6f7a5807a3b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3093,28 +8566,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14868" ], "x-ms-correlation-request-id": [ - "2d3cb1e0-371d-4ec9-98d6-afb01049a4af" + "42910f7a-c3f1-4b4a-86d2-ad22b8f64505" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225808Z:2d3cb1e0-371d-4ec9-98d6-afb01049a4af" + "WESTUS2:20180510T181511Z:42910f7a-c3f1-4b4a-86d2-ad22b8f64505" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:58:07 GMT" + "Thu, 10 May 2018 18:15:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3131,12 +8610,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "809db8a3-2bff-4922-ba25-b67ccf8940cf" + "4fd12546-293d-469a-9c3f-72e7f389d34e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14867" + ], "Cache-Control": [ "no-cache" ], @@ -3144,29 +8629,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" - ], "x-ms-correlation-request-id": [ - "9f0a5e72-fec5-4139-b641-72aaf3e8ab86" + "8f8b4a2d-c6d8-4b61-82d2-b4c7802b9240" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225838Z:9f0a5e72-fec5-4139-b641-72aaf3e8ab86" + "WESTUS2:20180510T181521Z:8f8b4a2d-c6d8-4b61-82d2-b4c7802b9240" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:58:38 GMT" + "Thu, 10 May 2018 18:15:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3183,8 +8671,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "964f0047-bfad-4c9f-a118-307e4d8a3eaf" + "bea65f98-9d1e-45be-a0ee-6b7cf8d4c09f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3197,28 +8688,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14866" ], "x-ms-correlation-request-id": [ - "8b08d28d-15f6-4bda-892c-ca2897b26456" + "40b635d3-dc0b-4f0b-a214-9ef07a195515" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225909Z:8b08d28d-15f6-4bda-892c-ca2897b26456" + "WESTUS2:20180510T181531Z:40b635d3-dc0b-4f0b-a214-9ef07a195515" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:59:08 GMT" + "Thu, 10 May 2018 18:15:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3235,8 +8732,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "d9d2e9a5-b9f7-4b44-b36b-3ff707ff515d" + "182fd033-81c3-4892-8ef8-6edad3d1a329" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3249,28 +8749,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14865" ], "x-ms-correlation-request-id": [ - "6df98c9a-f644-41da-b0da-0e43188b8caf" + "ae9f1091-cb3f-464c-95dd-baf2a3718532" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T225939Z:6df98c9a-f644-41da-b0da-0e43188b8caf" + "WESTUS2:20180510T181541Z:ae9f1091-cb3f-464c-95dd-baf2a3718532" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 22:59:38 GMT" + "Thu, 10 May 2018 18:15:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3287,8 +8793,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "b6b3cab2-a7e8-406a-911a-fb0ac5f9c3dc" + "ae546baf-4153-4ebf-af9e-571cb1f7bf86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3301,28 +8810,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14864" ], "x-ms-correlation-request-id": [ - "072c3644-f1d8-4593-b9a8-7f3e7ce4eafb" + "fb35f40d-a77e-4818-a067-757c4a407af9" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230009Z:072c3644-f1d8-4593-b9a8-7f3e7ce4eafb" + "WESTUS2:20180510T181551Z:fb35f40d-a77e-4818-a067-757c4a407af9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:00:09 GMT" + "Thu, 10 May 2018 18:15:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3339,8 +8854,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "ab769787-53b3-491c-8513-98bd668670a9" + "47fbda0f-def5-44f1-9780-bb379fc6dd4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3353,28 +8871,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14863" ], "x-ms-correlation-request-id": [ - "044edc64-1cf5-4cdd-bf60-e40fa0e0496a" + "58cbe701-596d-4a2d-a47e-88a337c7c5ed" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230040Z:044edc64-1cf5-4cdd-bf60-e40fa0e0496a" + "WESTUS2:20180510T181601Z:58cbe701-596d-4a2d-a47e-88a337c7c5ed" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:00:40 GMT" + "Thu, 10 May 2018 18:16:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3391,8 +8915,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "847168d3-d667-43d2-97b4-5a5b49634a05" + "c67db6f7-95cb-49a9-b26a-50a713f33ee7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3405,28 +8932,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14862" ], "x-ms-correlation-request-id": [ - "6da76863-4893-44bc-94f2-4d63f4b0c90f" + "a6f8c228-7808-4897-b7c4-169b76e9a230" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230110Z:6da76863-4893-44bc-94f2-4d63f4b0c90f" + "WESTUS2:20180510T181611Z:a6f8c228-7808-4897-b7c4-169b76e9a230" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:01:10 GMT" + "Thu, 10 May 2018 18:16:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3443,8 +8976,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "70e355c3-fb04-4cf8-b461-f4f22c9d8d66" + "2b9460fa-4b04-4be8-8cf9-01dafdd68bd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3457,28 +8993,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14861" ], "x-ms-correlation-request-id": [ - "a49066f4-76e3-4126-82eb-9c69bc31bb1f" + "2d0c1055-a279-4e3e-adc0-1fd3a7ffe74f" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230140Z:a49066f4-76e3-4126-82eb-9c69bc31bb1f" + "WESTUS2:20180510T181621Z:2d0c1055-a279-4e3e-adc0-1fd3a7ffe74f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:01:39 GMT" + "Thu, 10 May 2018 18:16:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3495,12 +9037,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "bc4bc338-c5e0-43f9-a93c-ff26277548b0" + "bb84f9f5-ff49-4194-b4f2-c7f646b9f50f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14860" + ], "Cache-Control": [ "no-cache" ], @@ -3508,29 +9056,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" - ], "x-ms-correlation-request-id": [ - "70d53bac-d8f9-43af-a5b3-00e6e905a952" + "91c69bc3-54f9-42f0-afac-fa41efe14cd8" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230211Z:70d53bac-d8f9-43af-a5b3-00e6e905a952" + "WESTUS2:20180510T181632Z:91c69bc3-54f9-42f0-afac-fa41efe14cd8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:02:10 GMT" + "Thu, 10 May 2018 18:16:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3547,8 +9098,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "ec48af68-004c-4c66-9c7e-7db0a9e758a2" + "3d8989e9-72c7-4623-af01-3a85b1601eeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3561,28 +9115,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14859" ], "x-ms-correlation-request-id": [ - "18ee164b-ef65-4a91-85e0-feec53dd6db4" + "7c77208d-15de-4746-9fc4-261978b84890" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230241Z:18ee164b-ef65-4a91-85e0-feec53dd6db4" + "WESTUS2:20180510T181642Z:7c77208d-15de-4746-9fc4-261978b84890" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:02:40 GMT" + "Thu, 10 May 2018 18:16:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3599,8 +9159,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "e8b52cde-1cb2-4b24-ae5b-c3ce021aedfb" + "c9771e57-748b-4d0e-85f5-6ecc2d3a3d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3613,28 +9176,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14858" ], "x-ms-correlation-request-id": [ - "ec807cd5-8061-4fa7-8461-598a7b1392b4" + "4a20cb29-6431-43d1-bbb8-834a5d6fa527" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230311Z:ec807cd5-8061-4fa7-8461-598a7b1392b4" + "WESTUS2:20180510T181652Z:4a20cb29-6431-43d1-bbb8-834a5d6fa527" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:03:11 GMT" + "Thu, 10 May 2018 18:16:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3651,8 +9220,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "fcbc6391-5e68-446a-8e69-ef2324ce0f27" + "a14c87c0-04df-46ce-afef-4bffbc1ca6fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3665,28 +9237,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14857" ], "x-ms-correlation-request-id": [ - "faa64edc-c9f5-4500-8e18-c8cde941d542" + "ef3cccaf-d44c-4cf1-892c-9ebb81333870" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230342Z:faa64edc-c9f5-4500-8e18-c8cde941d542" + "WESTUS2:20180510T181702Z:ef3cccaf-d44c-4cf1-892c-9ebb81333870" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:03:41 GMT" + "Thu, 10 May 2018 18:17:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3703,8 +9281,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "9e82f8ee-4575-4040-8209-ac2ffb69549b" + "06d1fd78-8d41-43f3-86cd-b30439ef40f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3717,28 +9298,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14856" ], "x-ms-correlation-request-id": [ - "521db13c-44fd-4fa7-a8b8-39d05c64f866" + "9a7462a4-a9d1-434e-9388-e1574e193f1c" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230412Z:521db13c-44fd-4fa7-a8b8-39d05c64f866" + "WESTUS2:20180510T181712Z:9a7462a4-a9d1-434e-9388-e1574e193f1c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:04:11 GMT" + "Thu, 10 May 2018 18:17:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3755,8 +9342,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "e48692e1-8370-42b6-a678-116f83db3de1" + "df58a569-86a3-45a8-a219-1e65662741de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3769,28 +9359,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14855" ], "x-ms-correlation-request-id": [ - "744d4cb1-4d0e-43c3-979b-a37af6440ef5" + "1a02e4a5-5faf-418d-a8a6-d627837e7215" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230442Z:744d4cb1-4d0e-43c3-979b-a37af6440ef5" + "WESTUS2:20180510T181722Z:1a02e4a5-5faf-418d-a8a6-d627837e7215" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:04:42 GMT" + "Thu, 10 May 2018 18:17:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3807,8 +9403,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "b24a9592-a897-4e4f-a4d0-41f4484d28fb" + "00fb7956-9e3e-49b9-915e-0c762d019c72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3821,28 +9420,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14854" ], "x-ms-correlation-request-id": [ - "6e5d7eb1-bd8f-485e-b58d-07e6ee5ab075" + "c48b0bf5-69b3-407c-ac06-1020e42d7c4a" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230513Z:6e5d7eb1-bd8f-485e-b58d-07e6ee5ab075" + "WESTUS2:20180510T181732Z:c48b0bf5-69b3-407c-ac06-1020e42d7c4a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:05:12 GMT" + "Thu, 10 May 2018 18:17:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3859,12 +9464,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "a27c10cb-10e9-4393-a055-67a0a3bf7cb0" + "0faef06b-ebd2-4610-a919-8291932ffb63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14853" + ], "Cache-Control": [ "no-cache" ], @@ -3872,29 +9483,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" - ], "x-ms-correlation-request-id": [ - "fdb01900-4ee6-49d6-835e-da76a441cf7c" + "98141075-9f8c-44b9-95b9-e0fbac3c08f9" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230543Z:fdb01900-4ee6-49d6-835e-da76a441cf7c" + "WESTUS2:20180510T181742Z:98141075-9f8c-44b9-95b9-e0fbac3c08f9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:05:42 GMT" + "Thu, 10 May 2018 18:17:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3911,8 +9525,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "a819f5bf-d6be-40df-865d-4a93a0a82c51" + "ca2cf708-a742-41c5-9c0a-1fdaa8757ee3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3925,28 +9542,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14852" ], "x-ms-correlation-request-id": [ - "e0b969b4-3341-41dd-8042-15fcf9470b53" + "e3bc9dfd-b5c5-40bd-9741-0913fa366a90" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230613Z:e0b969b4-3341-41dd-8042-15fcf9470b53" + "WESTUS2:20180510T181752Z:e3bc9dfd-b5c5-40bd-9741-0913fa366a90" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:06:13 GMT" + "Thu, 10 May 2018 18:17:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3963,8 +9586,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "a5a95cdc-0fc9-49c3-b475-f01cd73de6a6" + "b818f9a1-453a-436e-b01d-4a641a02284b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3977,28 +9603,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14851" ], "x-ms-correlation-request-id": [ - "035f3aae-241d-42ed-b50f-ce66f758cdde" + "0eae10f2-1825-4ecc-9cca-61802763d533" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230644Z:035f3aae-241d-42ed-b50f-ce66f758cdde" + "WESTUS2:20180510T181802Z:0eae10f2-1825-4ecc-9cca-61802763d533" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:06:43 GMT" + "Thu, 10 May 2018 18:18:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4015,8 +9647,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "6f8991c3-a4e8-4d6a-af8a-ccef09f82e76" + "131f36e6-4cbd-4f48-bbc4-b63ec36d32bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4029,28 +9664,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14850" ], "x-ms-correlation-request-id": [ - "a508856e-f5e6-4d5f-9c74-c16c7e689106" + "4bbb39a4-3b25-4ce3-b98a-f5ede5545a9f" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230714Z:a508856e-f5e6-4d5f-9c74-c16c7e689106" + "WESTUS2:20180510T181812Z:4bbb39a4-3b25-4ce3-b98a-f5ede5545a9f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:07:14 GMT" + "Thu, 10 May 2018 18:18:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4067,8 +9708,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "734ab334-175e-43ed-8e8b-b61b2cc43a75" + "1667695e-e9a8-427d-81dc-fe93027e1809" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4081,28 +9725,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14849" ], "x-ms-correlation-request-id": [ - "a8d5dd8d-64e1-4e51-a2c7-b7629b028098" + "7bc0f546-3f4b-4844-9e20-c2d54d6a02a3" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230744Z:a8d5dd8d-64e1-4e51-a2c7-b7629b028098" + "WESTUS2:20180510T181822Z:7bc0f546-3f4b-4844-9e20-c2d54d6a02a3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:07:44 GMT" + "Thu, 10 May 2018 18:18:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4119,8 +9769,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "7e25446b-e48e-4eb3-9fa6-c3ce99a5539d" + "1385067d-6c2c-426b-85b5-ca30b9cf23cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4133,28 +9786,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14848" ], "x-ms-correlation-request-id": [ - "7660df0d-07af-4c53-a374-f5b4bcf00d78" + "34ff0995-1cfb-4f83-b625-756912592c11" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230815Z:7660df0d-07af-4c53-a374-f5b4bcf00d78" + "WESTUS2:20180510T181832Z:34ff0995-1cfb-4f83-b625-756912592c11" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:08:15 GMT" + "Thu, 10 May 2018 18:18:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4171,8 +9830,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "adab7c8a-7409-4933-b6cb-5eca94ddd133" + "eda68608-6856-4075-b58e-6aa4b77e16f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4185,28 +9847,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14847" ], "x-ms-correlation-request-id": [ - "e0bf8159-2dc6-490c-9153-a21ab71cf2ff" + "52ab2f6d-ccb7-477d-a006-4ec6fe0ae8f3" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230845Z:e0bf8159-2dc6-490c-9153-a21ab71cf2ff" + "WESTUS2:20180510T181842Z:52ab2f6d-ccb7-477d-a006-4ec6fe0ae8f3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:08:44 GMT" + "Thu, 10 May 2018 18:18:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/1efdc049-e28f-46a0-93e8-e697944924ad?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMWVmZGMwNDktZTI4Zi00NmEwLTkzZTgtZTY5Nzk0NDkyNGFkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/06bb3737-28a7-4933-a24a-8b88f22b18a9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZiYjM3MzctMjhhNy00OTMzLWEyNGEtOGI4OGYyMmIxOGE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -4224,11 +9892,14 @@ "no-cache" ], "x-ms-request-id": [ - "3ff431af-e1d3-4d76-8a44-406cc24f0de4" + "fe3afd30-4415-4b40-9290-9d3b37331b9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14846" + ], "Cache-Control": [ "no-cache" ], @@ -4236,41 +9907,44 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" - ], "x-ms-correlation-request-id": [ - "a8cf22b1-86aa-40a9-aaa3-99e57553f1dd" + "8ad3da9d-c354-4afe-9bdc-2425c0442d12" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230915Z:a8cf22b1-86aa-40a9-aaa3-99e57553f1dd" + "WESTUS2:20180510T181853Z:8ad3da9d-c354-4afe-9bdc-2425c0442d12" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:09:15 GMT" + "Thu, 10 May 2018 18:18:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/localNetworkGateways/onesdk8827?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazg4Mjc/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/localNetworkGateways/ps8493?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4NDkzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "667852ca-809f-4d7c-acc3-001bcdbd1fe3" + "d0e70ebe-0aab-42fd-bc4f-1d98b9533956" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/localNetworkGateways/onesdk8827' under resource group 'onesdk5562' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/localNetworkGateways/ps8493' under resource group 'ps2050' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "163" + "155" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4285,40 +9959,46 @@ "gateway" ], "x-ms-request-id": [ - "41b0326b-1c6b-4ebf-9b71-7a494e5f5cf6" + "3dde942e-4cd3-4b4e-8afe-c2f03f03e4e3" ], "x-ms-correlation-request-id": [ - "41b0326b-1c6b-4ebf-9b71-7a494e5f5cf6" + "3dde942e-4cd3-4b4e-8afe-c2f03f03e4e3" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230917Z:41b0326b-1c6b-4ebf-9b71-7a494e5f5cf6" + "WESTUS2:20180510T181853Z:3dde942e-4cd3-4b4e-8afe-c2f03f03e4e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:09:16 GMT" + "Thu, 10 May 2018 18:18:53 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/localNetworkGateways/onesdk8827?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazg4Mjc/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/localNetworkGateways/ps8493?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4NDkzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8827\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/localNetworkGateways/onesdk8827\",\r\n \"etag\": \"W/\\\"4dd398f1-9c15-4173-90a6-fb8e3d727201\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a8bf45ed-bdef-4ec1-9943-525f0c5cb70e\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8493\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/localNetworkGateways/ps8493\",\r\n \"etag\": \"W/\\\"2b27d9df-89c9-49ac-b2cd-f5caea3afa02\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ecb536c4-548b-4639-98b7-a946690029fb\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "587" + "572" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4330,7 +10010,7 @@ "no-cache" ], "x-ms-request-id": [ - "d7566a49-46a6-4ba4-8133-56a8b0b1054a" + "8866db4a-735a-4e76-b07a-8052574c2b4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4339,47 +10019,53 @@ "no-cache" ], "ETag": [ - "W/\"4dd398f1-9c15-4173-90a6-fb8e3d727201\"" + "W/\"2b27d9df-89c9-49ac-b2cd-f5caea3afa02\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14840" ], "x-ms-correlation-request-id": [ - "035b56e4-0424-4206-8050-12c654e947e5" + "2db25b8f-447f-4e56-9616-72331a5a4078" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230929Z:035b56e4-0424-4206-8050-12c654e947e5" + "WESTUS2:20180510T181904Z:2db25b8f-447f-4e56-9616-72331a5a4078" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:09:28 GMT" + "Thu, 10 May 2018 18:19:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/localNetworkGateways/onesdk8827?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazg4Mjc/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/localNetworkGateways/ps8493?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4NDkzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cfc06e9-a166-4eec-9fef-18552f4ef5e5" + "e34d50e1-0a0a-4665-bb90-5c8c19278ffe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8827\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/localNetworkGateways/onesdk8827\",\r\n \"etag\": \"W/\\\"4dd398f1-9c15-4173-90a6-fb8e3d727201\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a8bf45ed-bdef-4ec1-9943-525f0c5cb70e\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8493\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/localNetworkGateways/ps8493\",\r\n \"etag\": \"W/\\\"2b27d9df-89c9-49ac-b2cd-f5caea3afa02\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ecb536c4-548b-4639-98b7-a946690029fb\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "587" + "572" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4391,7 +10077,7 @@ "no-cache" ], "x-ms-request-id": [ - "cf0360d6-3529-40b5-bccc-2ccc8127bce9" + "5b87f572-9b93-415e-b9b4-e3bece1244eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4400,47 +10086,53 @@ "no-cache" ], "ETag": [ - "W/\"4dd398f1-9c15-4173-90a6-fb8e3d727201\"" + "W/\"2b27d9df-89c9-49ac-b2cd-f5caea3afa02\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14839" ], "x-ms-correlation-request-id": [ - "3e09bcf2-953f-44ee-a5f9-0c27edf9e679" + "51a92925-6bb5-4782-a305-f1fa4e3859ac" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230929Z:3e09bcf2-953f-44ee-a5f9-0c27edf9e679" + "WESTUS2:20180510T181904Z:51a92925-6bb5-4782-a305-f1fa4e3859ac" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:09:29 GMT" + "Thu, 10 May 2018 18:19:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/localNetworkGateways/onesdk8827?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazg4Mjc/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/localNetworkGateways/ps8493?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4NDkzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3949891d-6a5f-4788-b4f8-3840302b805f" + "b297a657-5a1c-48c8-9046-daab2ff8612f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8827\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/localNetworkGateways/onesdk8827\",\r\n \"etag\": \"W/\\\"4dd398f1-9c15-4173-90a6-fb8e3d727201\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a8bf45ed-bdef-4ec1-9943-525f0c5cb70e\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8493\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/localNetworkGateways/ps8493\",\r\n \"etag\": \"W/\\\"2b27d9df-89c9-49ac-b2cd-f5caea3afa02\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ecb536c4-548b-4639-98b7-a946690029fb\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "587" + "572" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4452,7 +10144,7 @@ "no-cache" ], "x-ms-request-id": [ - "a0762d4b-46b8-487e-813b-fa152200e014" + "df9daa17-0a90-4c91-b4ec-a840893a7371" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4461,53 +10153,59 @@ "no-cache" ], "ETag": [ - "W/\"4dd398f1-9c15-4173-90a6-fb8e3d727201\"" + "W/\"2b27d9df-89c9-49ac-b2cd-f5caea3afa02\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14838" ], "x-ms-correlation-request-id": [ - "bd72fad9-a8e1-411d-a180-a51fc8bbd931" + "61633111-fcb6-4765-84b8-1bdec3ffdcf7" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230929Z:bd72fad9-a8e1-411d-a180-a51fc8bbd931" + "WESTUS2:20180510T181905Z:61633111-fcb6-4765-84b8-1bdec3ffdcf7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:09:29 GMT" + "Thu, 10 May 2018 18:19:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/localNetworkGateways/onesdk8827?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazg4Mjc/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/localNetworkGateways/ps8493?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4NDkzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "203" + "200" ], "x-ms-client-request-id": [ - "04adc28a-1951-4cbf-88c4-b203a2b15dfe" + "e1dcc4ab-c4ec-4d21-a0a1-d936c29c2a9a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8827\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/localNetworkGateways/onesdk8827\",\r\n \"etag\": \"W/\\\"403dd8e8-8073-4b8b-afea-1e83721c99f5\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a8bf45ed-bdef-4ec1-9943-525f0c5cb70e\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8493\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/localNetworkGateways/ps8493\",\r\n \"etag\": \"W/\\\"32ffe628-74dc-42b5-b682-c842b81e767f\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ecb536c4-548b-4639-98b7-a946690029fb\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "586" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4522,10 +10220,10 @@ "10" ], "x-ms-request-id": [ - "86aae697-1d6c-4c95-9f4f-b82ee9c7f34d" + "30810c66-5fda-42c3-8e53-f38612d384e3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/86aae697-1d6c-4c95-9f4f-b82ee9c7f34d?api-version=2017-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/30810c66-5fda-42c3-8e53-f38612d384e3?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4541,25 +10239,31 @@ "1196" ], "x-ms-correlation-request-id": [ - "ad38d73e-1240-4061-b37d-d47e7569336e" + "0d34d011-c7fd-45a2-9b62-b002af8dd19e" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230918Z:ad38d73e-1240-4061-b37d-d47e7569336e" + "WESTUS2:20180510T181854Z:0d34d011-c7fd-45a2-9b62-b002af8dd19e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:09:17 GMT" + "Thu, 10 May 2018 18:18:54 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/86aae697-1d6c-4c95-9f4f-b82ee9c7f34d?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvODZhYWU2OTctMWQ2Yy00Yzk1LTlmNGYtYjgyZWU5YzdmMzRkP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/30810c66-5fda-42c3-8e53-f38612d384e3?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzA4MTBjNjYtNWZkYS00MmMzLThlNTMtZjM4NjEyZDM4NGUzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -4577,7 +10281,7 @@ "no-cache" ], "x-ms-request-id": [ - "ab38d22e-75f8-4371-af2d-0e3e8ed68222" + "5652a18c-f286-4f9b-90b0-c0ac33d2f826" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4590,40 +10294,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14841" ], "x-ms-correlation-request-id": [ - "6e77a245-2b6c-4aaf-aa4c-86142ad51b9f" + "48bfb122-dc0d-43a9-a96e-5e32956f5322" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230928Z:6e77a245-2b6c-4aaf-aa4c-86142ad51b9f" + "WESTUS2:20180510T181904Z:48bfb122-dc0d-43a9-a96e-5e32956f5322" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:09:28 GMT" + "Thu, 10 May 2018 18:19:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/connections/onesdk2365?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazIzNjU/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/connections/ps3614?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHMzNjE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c04913cb-1256-46e6-8e7b-5809b6c83e62" + "da48685b-febe-4f41-a044-5140a7e0e3bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/connections/onesdk2365' under resource group 'onesdk5562' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/connections/ps3614' under resource group 'ps2050' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "154" + "146" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4638,40 +10348,46 @@ "gateway" ], "x-ms-request-id": [ - "25da3ef8-c8f8-4142-bc06-6f96abf1c9bc" + "9ae2ac5e-e995-4d6b-9ea8-feb3ce3890f4" ], "x-ms-correlation-request-id": [ - "25da3ef8-c8f8-4142-bc06-6f96abf1c9bc" + "9ae2ac5e-e995-4d6b-9ea8-feb3ce3890f4" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230929Z:25da3ef8-c8f8-4142-bc06-6f96abf1c9bc" + "WESTUS2:20180510T181905Z:9ae2ac5e-e995-4d6b-9ea8-feb3ce3890f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:09:29 GMT" + "Thu, 10 May 2018 18:19:04 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/connections/onesdk2365?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazIzNjU/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/connections/ps3614?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHMzNjE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk2365\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/connections/onesdk2365\",\r\n \"etag\": \"W/\\\"1edf39da-8b68-493c-b1ee-322b39d77bee\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7eec8620-e33b-46ce-bcc4-b1fad5a15b4c\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/localNetworkGateways/onesdk8827\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3614\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/connections/ps3614\",\r\n \"etag\": \"W/\\\"9701a413-823b-4d7c-a658-8f65b23e134b\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"04c6653b-1b02-4e71-8e08-fc16e2849ded\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/localNetworkGateways/ps8493\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1002" + "1063" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4683,7 +10399,7 @@ "no-cache" ], "x-ms-request-id": [ - "b283d4d2-a265-4d89-8b9c-14e9069b46a5" + "92b07162-7565-40a0-a217-7b37c56cab50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4696,40 +10412,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14834" ], "x-ms-correlation-request-id": [ - "cbd6b6fe-2810-46fb-bb24-f15d8e5450e6" + "f6a1a72a-66cf-43c6-8ac9-433e40d401a7" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231042Z:cbd6b6fe-2810-46fb-bb24-f15d8e5450e6" + "WESTUS2:20180510T181927Z:f6a1a72a-66cf-43c6-8ac9-433e40d401a7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:10:42 GMT" + "Thu, 10 May 2018 18:19:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/connections/onesdk2365?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazIzNjU/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/connections/ps3614?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHMzNjE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bac0dac4-24da-4a13-b724-4ae1e9d70b6d" + "c86e66bb-9dda-47d1-b4be-959df593eeae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk2365\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/connections/onesdk2365\",\r\n \"etag\": \"W/\\\"1edf39da-8b68-493c-b1ee-322b39d77bee\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7eec8620-e33b-46ce-bcc4-b1fad5a15b4c\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/localNetworkGateways/onesdk8827\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3614\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/connections/ps3614\",\r\n \"etag\": \"W/\\\"9701a413-823b-4d7c-a658-8f65b23e134b\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"04c6653b-1b02-4e71-8e08-fc16e2849ded\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/localNetworkGateways/ps8493\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1002" + "1063" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4741,7 +10463,7 @@ "no-cache" ], "x-ms-request-id": [ - "b0d3a1eb-c082-4664-a852-a7f83923fa08" + "69733e5d-fd8d-433b-93ba-89deaaaacda9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4754,40 +10476,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14833" ], "x-ms-correlation-request-id": [ - "62672fbd-25eb-4e81-93bb-d3c674d6c15d" + "98a3be24-2c90-4b11-b0ff-052cd2f417fe" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231043Z:62672fbd-25eb-4e81-93bb-d3c674d6c15d" + "WESTUS2:20180510T181928Z:98a3be24-2c90-4b11-b0ff-052cd2f417fe" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:10:42 GMT" + "Thu, 10 May 2018 18:19:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/connections/onesdk2365?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazIzNjU/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/connections/ps3614?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHMzNjE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "870092ba-0f6e-4bc5-8cc6-a2c712655e69" + "24afe9ae-adb6-4670-8789-84f977f33582" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk2365\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/connections/onesdk2365\",\r\n \"etag\": \"W/\\\"1edf39da-8b68-493c-b1ee-322b39d77bee\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7eec8620-e33b-46ce-bcc4-b1fad5a15b4c\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/localNetworkGateways/onesdk8827\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3614\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/connections/ps3614\",\r\n \"etag\": \"W/\\\"9701a413-823b-4d7c-a658-8f65b23e134b\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"04c6653b-1b02-4e71-8e08-fc16e2849ded\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/localNetworkGateways/ps8493\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1002" + "1063" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4799,7 +10527,7 @@ "no-cache" ], "x-ms-request-id": [ - "30f3e1ab-12fb-4d7b-9a9b-88ac8efa2814" + "d33e685b-7e3c-4291-95c9-51ee74a4c046" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4812,46 +10540,52 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14832" ], "x-ms-correlation-request-id": [ - "28486675-1d8c-4ffc-97cd-96dec6136022" + "3ceadfda-59dd-40d5-ba02-4464d3288ebd" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231043Z:28486675-1d8c-4ffc-97cd-96dec6136022" + "WESTUS2:20180510T181929Z:3ceadfda-59dd-40d5-ba02-4464d3288ebd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:10:43 GMT" + "Thu, 10 May 2018 18:19:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/connections/onesdk2365?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazIzNjU/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/connections/ps3614?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHMzNjE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"45c109bc-3dd9-4d88-96e1-787ce69f7321\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk8169\",\r\n \"etag\": \"W/\\\"45c109bc-3dd9-4d88-96e1-787ce69f7321\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388/ipConfigurations/onesdk8169\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworks/onesdk9763/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/publicIPAddresses/onesdk4923\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"resourceGuid\": \"508361d4-b0d9-474d-8f42-99635a8c9b1e\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"4dd398f1-9c15-4173-90a6-fb8e3d727201\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/localNetworkGateways/onesdk8827\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\",\r\n \"resourceGuid\": \"a8bf45ed-bdef-4ec1-9943-525f0c5cb70e\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"egressBytesTransferred\": 0,\r\n \"ingressBytesTransferred\": 0\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworks/ps9831/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/publicIPAddresses/ps5895\"\r\n }\r\n },\r\n \"name\": \"ps4908\",\r\n \"etag\": \"W/\\\"eed9bc36-ac87-497c-96ce-597b842cd7d6\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963/ipConfigurations/ps4908\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"a81f0fc6-65e6-4681-9327-9d9e8e13fae6\"\r\n },\r\n \"etag\": \"W/\\\"eed9bc36-ac87-497c-96ce-597b842cd7d6\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n \"localNetworkGateway2\": {\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\",\r\n \"resourceGuid\": \"ecb536c4-548b-4639-98b7-a946690029fb\"\r\n },\r\n \"etag\": \"W/\\\"2b27d9df-89c9-49ac-b2cd-f5caea3afa02\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/localNetworkGateways/ps8493\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": []\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2336" + "2429" ], "x-ms-client-request-id": [ - "9488ac72-ffe6-4911-8b39-15780b40d76e" + "b70a8d5a-9f83-496c-8c3c-f166ababcdbe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk2365\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/connections/onesdk2365\",\r\n \"etag\": \"W/\\\"5db02836-8806-41a0-a9d6-fff1738b4a8b\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7eec8620-e33b-46ce-bcc4-b1fad5a15b4c\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/virtualNetworkGateways/onesdk7388\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/localNetworkGateways/onesdk8827\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"3082019006092A864886F70D010703A08201813082017D0201003182014930820145020100302D3019311730150603550403130E6E72702D656E6372797074696F6E02106CC87B9D2F498DBB4D188EFB3DE97813300D06092A864886F70D01010105000482010067FEFA174ABE1409B78B3DFB2D5E161A189C44CDAD5CF0B53837D4ABA349E85154A5767DC55277A7374F9584BF8E297F15A936455CF394D8D783F1476006435487AA77F3830FFB8617E11BE3AB7BAEBD3CC5FAEB728F5151C118FA79F57267BB3275B22C814AF79AA27B1DBB35ED932997CE70DE32223332024CF5B23EA7B07173FF909FF9443F00E322F85104555C36FA1D9D0D9C699415D51B0471C67D8C4472DE5F8E9CF3F68AFAEB93EC6BEFFCBF590B38F944C7812D4E929D3296751E55F3CD4EA9DC7D0ACFEFE763F0ECC846022B1F9FEE3952F02E867711C66C54E819B55F6F372498DE3B0F7E08F326D8E5DED3178E7B37D5ED2BF96BA549AE525D6E302B06092A864886F70D010701301406082A864886F70D03070408AA4948071D23FCE38008DD9F780579DE591E\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3614\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/connections/ps3614\",\r\n \"etag\": \"W/\\\"9749d769-d6c0-41de-94c1-cbf74ba1bb05\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"04c6653b-1b02-4e71-8e08-fc16e2849ded\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/virtualNetworkGateways/ps6963\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/localNetworkGateways/ps8493\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1765" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4866,10 +10600,10 @@ "10" ], "x-ms-request-id": [ - "c9b2a17e-faf1-4ca4-bdb4-4915da22a369" + "ef2339f2-4c99-4065-a237-fcb6af372730" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/c9b2a17e-faf1-4ca4-bdb4-4915da22a369?api-version=2017-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/ef2339f2-4c99-4065-a237-fcb6af372730?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4885,25 +10619,31 @@ "1195" ], "x-ms-correlation-request-id": [ - "59d5fe6d-268b-47a0-b1b0-4e153c237f8a" + "8325b9eb-aff2-4eae-9c1e-e74382054a10" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T230930Z:59d5fe6d-268b-47a0-b1b0-4e153c237f8a" + "WESTUS2:20180510T181907Z:8325b9eb-aff2-4eae-9c1e-e74382054a10" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:09:30 GMT" + "Thu, 10 May 2018 18:19:06 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/c9b2a17e-faf1-4ca4-bdb4-4915da22a369?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvYzliMmExN2UtZmFmMS00Y2E0LWJkYjQtNDkxNWRhMjJhMzY5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/ef2339f2-4c99-4065-a237-fcb6af372730?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWYyMzM5ZjItNGM5OS00MDY1LWEyMzctZmNiNmFmMzcyNzMwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4920,60 +10660,11 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "52c252c4-795c-44cd-94a4-6ab09a070b85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" - ], - "x-ms-correlation-request-id": [ - "220b1204-b787-4548-87eb-e313237e950d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151206T230941Z:220b1204-b787-4548-87eb-e313237e950d" - ], - "Date": [ - "Sun, 06 Dec 2015 23:09:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/c9b2a17e-faf1-4ca4-bdb4-4915da22a369?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvYzliMmExN2UtZmFmMS00Y2E0LWJkYjQtNDkxNWRhMjJhMzY5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "3c63a1fe-dac5-435c-8a94-3fd082b690bb" + "05052d04-804b-4dad-9b07-287743df04cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4986,28 +10677,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14836" ], "x-ms-correlation-request-id": [ - "2b897006-9696-4c36-b9ea-12e6129c091b" + "786938e7-7ea3-4de5-a75f-229376e2602a" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231011Z:2b897006-9696-4c36-b9ea-12e6129c091b" + "WESTUS2:20180510T181917Z:786938e7-7ea3-4de5-a75f-229376e2602a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:10:10 GMT" + "Thu, 10 May 2018 18:19:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/c9b2a17e-faf1-4ca4-bdb4-4915da22a369?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvYzliMmExN2UtZmFmMS00Y2E0LWJkYjQtNDkxNWRhMjJhMzY5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/ef2339f2-4c99-4065-a237-fcb6af372730?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWYyMzM5ZjItNGM5OS00MDY1LWEyMzctZmNiNmFmMzcyNzMwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -5025,7 +10722,7 @@ "no-cache" ], "x-ms-request-id": [ - "66a26f95-45b9-40bb-a0d7-6fe0297bcc9e" + "0cc590f7-9a90-4172-a591-4f3b1a34ad10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5038,34 +10735,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14835" ], "x-ms-correlation-request-id": [ - "a1c15d39-15ee-475d-a3de-d21b392af221" + "d166a9cb-27e8-4a89-876c-9a82dc1b6f82" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231041Z:a1c15d39-15ee-475d-a3de-d21b392af221" + "WESTUS2:20180510T181927Z:d166a9cb-27e8-4a89-876c-9a82dc1b6f82" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:10:41 GMT" + "Thu, 10 May 2018 18:19:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/connections/onesdk2365/sharedkey?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazIzNjUvc2hhcmVka2V5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/connections/ps3614/sharedkey?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHMzNjE0L3NoYXJlZGtleT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff3451cf-99bf-4e70-9f36-f3021ad4c473" + "7dcaacd0-3d33-473b-9627-ae71403c5eff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": \"abc\"\r\n}", @@ -5083,7 +10786,7 @@ "no-cache" ], "x-ms-request-id": [ - "53ece2f5-8211-4c92-b837-1f49ec4bb45c" + "eb77dcba-8e66-4edd-806e-9b865bf2a430" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5096,34 +10799,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14831" ], "x-ms-correlation-request-id": [ - "777f0a15-8eb4-4da9-90e4-67c2eb3ad8f3" + "40fae63b-c67d-439a-a374-37f633fdb63b" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231043Z:777f0a15-8eb4-4da9-90e4-67c2eb3ad8f3" + "WESTUS2:20180510T181929Z:40fae63b-c67d-439a-a374-37f633fdb63b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:10:43 GMT" + "Thu, 10 May 2018 18:19:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/connections/onesdk2365/sharedkey?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazIzNjUvc2hhcmVka2V5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/connections/ps3614/sharedkey?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHMzNjE0L3NoYXJlZGtleT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": \"abc\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"TestSharedKeyValue\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "22" + "37" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5135,7 +10844,7 @@ "no-cache" ], "x-ms-request-id": [ - "c9ec82cd-1f0d-4e54-b741-f9d62782e047" + "9f3a7df7-54d5-458b-bd08-11065b672cd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5148,40 +10857,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14830" ], "x-ms-correlation-request-id": [ - "bad2fdae-ada5-42c7-b21f-1cc7dc43e333" + "993a9fad-d20d-4b46-9470-a6c20b7d3d7f" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231045Z:bad2fdae-ada5-42c7-b21f-1cc7dc43e333" + "WESTUS2:20180510T181930Z:993a9fad-d20d-4b46-9470-a6c20b7d3d7f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:10:44 GMT" + "Thu, 10 May 2018 18:19:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/connections/onesdk2365/sharedkey?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazIzNjUvc2hhcmVka2V5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/connections/ps3614/sharedkey?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHMzNjE0L3NoYXJlZGtleT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2ad8cf1-d147-45c2-8046-733d367f13b5" + "cfd7be89-30ab-4069-9cab-d4d2a0638273" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": \"abc\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"TestSharedKeyValue\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "22" + "37" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5193,7 +10908,7 @@ "no-cache" ], "x-ms-request-id": [ - "37e629c7-7b33-4c3d-8223-b981b59b0a28" + "3ea20983-d77c-4bcc-af1b-c2f43f4d9d60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5206,34 +10921,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14829" ], "x-ms-correlation-request-id": [ - "aefe737e-0556-432a-a89f-09517dda9f00" + "7a832665-bf5e-488c-a004-54f39da0ce96" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231045Z:aefe737e-0556-432a-a89f-09517dda9f00" + "WESTUS2:20180510T181930Z:7a832665-bf5e-488c-a004-54f39da0ce96" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:10:45 GMT" + "Thu, 10 May 2018 18:19:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/connections/onesdk2365/sharedkey?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazIzNjUvc2hhcmVka2V5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/connections/ps3614/sharedkey?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHMzNjE0L3NoYXJlZGtleT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "485cc042-eac0-47ca-8b87-681b4ec6fa04" + "da79350a-4983-4cfe-98cb-9ea87692c2bc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": \"TestSharedKeyValue\"\r\n}", @@ -5251,7 +10972,7 @@ "no-cache" ], "x-ms-request-id": [ - "02800e05-7a61-4424-8246-3bc6362a9ff1" + "1b06d49f-3487-4f88-a218-999030e637f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5264,43 +10985,52 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14828" ], "x-ms-correlation-request-id": [ - "09c97e24-53f1-4737-a3a9-b026ef7d6fdd" + "090e1282-86a5-416a-9086-12e860204e41" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231045Z:09c97e24-53f1-4737-a3a9-b026ef7d6fdd" + "WESTUS2:20180510T181930Z:090e1282-86a5-416a-9086-12e860204e41" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:10:45 GMT" + "Thu, 10 May 2018 18:19:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/connections/onesdk2365/sharedkey?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazIzNjUvc2hhcmVka2V5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps2050/providers/Microsoft.Network/connections/ps3614/sharedkey?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzMjA1MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHMzNjE0L3NoYXJlZGtleT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"value\": \"TestSharedKeyValue\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ], "x-ms-client-request-id": [ - "478b00a3-ea47-4782-9a01-6b3c81ef140b" + "5e9763f3-9343-4008-a0f2-f3b10b5590c4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": \"TestSharedKeyValue\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "37" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -5308,8 +11038,14 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "99dab409-a9cb-45de-9bb6-f95d78cbc65a" + "5834489f-de59-48fe-8006-624a771578ea" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/5834489f-de59-48fe-8006-624a771578ea?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5321,41 +11057,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" ], "x-ms-correlation-request-id": [ - "cb07d59c-3859-4f24-b3a6-dbf101088b23" + "dcadb5e2-882b-4fef-818c-50cc3652b712" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231046Z:cb07d59c-3859-4f24-b3a6-dbf101088b23" + "WESTUS2:20180510T181929Z:dcadb5e2-882b-4fef-818c-50cc3652b712" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sun, 06 Dec 2015 23:10:45 GMT" + "Thu, 10 May 2018 18:19:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/onesdk5562/providers/Microsoft.Network/connections/onesdk2365/sharedkey?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazIzNjUvc2hhcmVka2V5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"value\": \"TestSharedKeyValue\"\r\n}", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps2050?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzMjA1MD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "37" - ], - "x-ms-client-request-id": [ - "63df3cb6-2294-4c0d-9ff7-b65933b43027" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, "ResponseBody": "", @@ -5370,45 +11097,47 @@ "no-cache" ], "Retry-After": [ - "10" + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "68b1e6d0-bf03-43dd-ab38-1e2db957eead" + "1be57254-b9c7-4ed2-b9ef-0bbb79cb7ca4" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/centralus/operations/68b1e6d0-bf03-43dd-ab38-1e2db957eead?api-version=2017-09-01" + "x-ms-correlation-request-id": [ + "1be57254-b9c7-4ed2-b9ef-0bbb79cb7ca4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T181931Z:1be57254-b9c7-4ed2-b9ef-0bbb79cb7ca4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-correlation-request-id": [ - "05e6af83-52c3-497c-b340-a5174d3e1984" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151206T231044Z:05e6af83-52c3-497c-b340-a5174d3e1984" - ], "Date": [ - "Sun, 06 Dec 2015 23:10:43 GMT" + "Thu, 10 May 2018 18:19:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourcegroups/onesdk5562?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -5427,41 +11156,44 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" ], "x-ms-request-id": [ - "c2d8b66b-f075-4025-a9ad-afb3373464aa" + "157397ab-32a4-43bc-aa8b-3318f59a799b" ], "x-ms-correlation-request-id": [ - "c2d8b66b-f075-4025-a9ad-afb3373464aa" + "157397ab-32a4-43bc-aa8b-3318f59a799b" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231046Z:c2d8b66b-f075-4025-a9ad-afb3373464aa" + "WESTUS2:20180510T181931Z:157397ab-32a4-43bc-aa8b-3318f59a799b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:10:46 GMT" + "Thu, 10 May 2018 18:19:30 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -5485,37 +11217,40 @@ "14998" ], "x-ms-request-id": [ - "e8cd4388-c914-42f2-bea4-5d0e67db9d85" + "c9b10ea8-3e9b-4520-bfe7-69db45337db9" ], "x-ms-correlation-request-id": [ - "e8cd4388-c914-42f2-bea4-5d0e67db9d85" + "c9b10ea8-3e9b-4520-bfe7-69db45337db9" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231047Z:e8cd4388-c914-42f2-bea4-5d0e67db9d85" + "WESTUS2:20180510T181946Z:c9b10ea8-3e9b-4520-bfe7-69db45337db9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:10:46 GMT" + "Thu, 10 May 2018 18:19:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -5539,37 +11274,40 @@ "14997" ], "x-ms-request-id": [ - "b666014f-6009-4c96-9472-da3224cc6bef" + "e98621b3-b603-4adc-82a1-07764a7585bd" ], "x-ms-correlation-request-id": [ - "b666014f-6009-4c96-9472-da3224cc6bef" + "e98621b3-b603-4adc-82a1-07764a7585bd" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231102Z:b666014f-6009-4c96-9472-da3224cc6bef" + "WESTUS2:20180510T182001Z:e98621b3-b603-4adc-82a1-07764a7585bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:11:01 GMT" + "Thu, 10 May 2018 18:20:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -5593,37 +11331,40 @@ "14996" ], "x-ms-request-id": [ - "23664339-8c26-45dd-b4f1-35b37231b2e4" + "896c39b1-eff3-454d-a058-1c045f70494e" ], "x-ms-correlation-request-id": [ - "23664339-8c26-45dd-b4f1-35b37231b2e4" + "896c39b1-eff3-454d-a058-1c045f70494e" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231117Z:23664339-8c26-45dd-b4f1-35b37231b2e4" + "WESTUS2:20180510T182016Z:896c39b1-eff3-454d-a058-1c045f70494e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:11:16 GMT" + "Thu, 10 May 2018 18:20:16 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -5647,37 +11388,40 @@ "14995" ], "x-ms-request-id": [ - "f823b412-e304-43ee-a3e4-958036dc426b" + "18450673-c118-4ab7-9f04-fbdffd6dc91f" ], "x-ms-correlation-request-id": [ - "f823b412-e304-43ee-a3e4-958036dc426b" + "18450673-c118-4ab7-9f04-fbdffd6dc91f" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231132Z:f823b412-e304-43ee-a3e4-958036dc426b" + "WESTUS2:20180510T182032Z:18450673-c118-4ab7-9f04-fbdffd6dc91f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:11:31 GMT" + "Thu, 10 May 2018 18:20:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -5701,37 +11445,40 @@ "14994" ], "x-ms-request-id": [ - "08a40610-8030-4392-b4bc-7c6b76e2787f" + "a7fb90ad-d2db-4318-a24f-01e474eabfd2" ], "x-ms-correlation-request-id": [ - "08a40610-8030-4392-b4bc-7c6b76e2787f" + "a7fb90ad-d2db-4318-a24f-01e474eabfd2" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231147Z:08a40610-8030-4392-b4bc-7c6b76e2787f" + "WESTUS2:20180510T182047Z:a7fb90ad-d2db-4318-a24f-01e474eabfd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:11:46 GMT" + "Thu, 10 May 2018 18:20:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -5755,37 +11502,40 @@ "14993" ], "x-ms-request-id": [ - "24d3868b-98d6-4450-8c62-891706c05255" + "a582b8b6-7912-4bac-91ed-deee68076772" ], "x-ms-correlation-request-id": [ - "24d3868b-98d6-4450-8c62-891706c05255" + "a582b8b6-7912-4bac-91ed-deee68076772" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231202Z:24d3868b-98d6-4450-8c62-891706c05255" + "WESTUS2:20180510T182102Z:a582b8b6-7912-4bac-91ed-deee68076772" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:12:02 GMT" + "Thu, 10 May 2018 18:21:01 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -5809,37 +11559,40 @@ "14992" ], "x-ms-request-id": [ - "c4344868-09e6-40c3-ae2c-cc6aef8befe2" + "581342c9-06ef-4461-8c6f-456d74cc5f27" ], "x-ms-correlation-request-id": [ - "c4344868-09e6-40c3-ae2c-cc6aef8befe2" + "581342c9-06ef-4461-8c6f-456d74cc5f27" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231217Z:c4344868-09e6-40c3-ae2c-cc6aef8befe2" + "WESTUS2:20180510T182117Z:581342c9-06ef-4461-8c6f-456d74cc5f27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:12:16 GMT" + "Thu, 10 May 2018 18:21:16 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -5863,37 +11616,40 @@ "14991" ], "x-ms-request-id": [ - "117fe63a-bdf3-4247-9038-c45d9a383261" + "ff12d16b-25b8-4928-adb8-a13eeacf69e0" ], "x-ms-correlation-request-id": [ - "117fe63a-bdf3-4247-9038-c45d9a383261" + "ff12d16b-25b8-4928-adb8-a13eeacf69e0" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231232Z:117fe63a-bdf3-4247-9038-c45d9a383261" + "WESTUS2:20180510T182132Z:ff12d16b-25b8-4928-adb8-a13eeacf69e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:12:31 GMT" + "Thu, 10 May 2018 18:21:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -5917,37 +11673,40 @@ "14990" ], "x-ms-request-id": [ - "5b3443bf-4f96-423f-8137-f301898f652c" + "5094c7e9-3459-4c54-8e49-a4c67135102c" ], "x-ms-correlation-request-id": [ - "5b3443bf-4f96-423f-8137-f301898f652c" + "5094c7e9-3459-4c54-8e49-a4c67135102c" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231247Z:5b3443bf-4f96-423f-8137-f301898f652c" + "WESTUS2:20180510T182147Z:5094c7e9-3459-4c54-8e49-a4c67135102c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:12:47 GMT" + "Thu, 10 May 2018 18:21:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -5971,37 +11730,40 @@ "14989" ], "x-ms-request-id": [ - "c588fbe5-749e-46aa-bf2d-77698a734d2f" + "4a6fe83a-c1bf-43a2-8401-6aeed9970226" ], "x-ms-correlation-request-id": [ - "c588fbe5-749e-46aa-bf2d-77698a734d2f" + "4a6fe83a-c1bf-43a2-8401-6aeed9970226" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231302Z:c588fbe5-749e-46aa-bf2d-77698a734d2f" + "WESTUS2:20180510T182202Z:4a6fe83a-c1bf-43a2-8401-6aeed9970226" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:13:02 GMT" + "Thu, 10 May 2018 18:22:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6025,37 +11787,40 @@ "14988" ], "x-ms-request-id": [ - "3093f236-cbb9-4fa8-bd0f-10ba2bd1c073" + "c2e11827-2f98-4431-8f39-c395fe5e1790" ], "x-ms-correlation-request-id": [ - "3093f236-cbb9-4fa8-bd0f-10ba2bd1c073" + "c2e11827-2f98-4431-8f39-c395fe5e1790" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231317Z:3093f236-cbb9-4fa8-bd0f-10ba2bd1c073" + "WESTUS2:20180510T182217Z:c2e11827-2f98-4431-8f39-c395fe5e1790" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:13:17 GMT" + "Thu, 10 May 2018 18:22:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6079,37 +11844,40 @@ "14987" ], "x-ms-request-id": [ - "4eccc266-8225-4ca3-b608-e2efe59455f1" + "3cc34578-6335-401d-9017-75dc73de9f6a" ], "x-ms-correlation-request-id": [ - "4eccc266-8225-4ca3-b608-e2efe59455f1" + "3cc34578-6335-401d-9017-75dc73de9f6a" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231332Z:4eccc266-8225-4ca3-b608-e2efe59455f1" + "WESTUS2:20180510T182232Z:3cc34578-6335-401d-9017-75dc73de9f6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:13:32 GMT" + "Thu, 10 May 2018 18:22:32 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6133,37 +11901,40 @@ "14986" ], "x-ms-request-id": [ - "f6b15135-218b-49f9-ad83-030e9279a605" + "13d96b95-1dac-4cc4-bc04-25e8b6e3576d" ], "x-ms-correlation-request-id": [ - "f6b15135-218b-49f9-ad83-030e9279a605" + "13d96b95-1dac-4cc4-bc04-25e8b6e3576d" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231347Z:f6b15135-218b-49f9-ad83-030e9279a605" + "WESTUS2:20180510T182248Z:13d96b95-1dac-4cc4-bc04-25e8b6e3576d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:13:47 GMT" + "Thu, 10 May 2018 18:22:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6187,37 +11958,40 @@ "14985" ], "x-ms-request-id": [ - "0145d443-76e8-4a6b-988c-1036d65e2045" + "ae5b1cff-84a4-47b4-aa67-784cc794276b" ], "x-ms-correlation-request-id": [ - "0145d443-76e8-4a6b-988c-1036d65e2045" + "ae5b1cff-84a4-47b4-aa67-784cc794276b" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231402Z:0145d443-76e8-4a6b-988c-1036d65e2045" + "WESTUS2:20180510T182303Z:ae5b1cff-84a4-47b4-aa67-784cc794276b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:14:02 GMT" + "Thu, 10 May 2018 18:23:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6241,37 +12015,40 @@ "14984" ], "x-ms-request-id": [ - "9c48e20e-ed38-45be-a030-56c515b22dab" + "ba2cd994-d05b-4f4b-9675-779ff491c5a4" ], "x-ms-correlation-request-id": [ - "9c48e20e-ed38-45be-a030-56c515b22dab" + "ba2cd994-d05b-4f4b-9675-779ff491c5a4" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231417Z:9c48e20e-ed38-45be-a030-56c515b22dab" + "WESTUS2:20180510T182318Z:ba2cd994-d05b-4f4b-9675-779ff491c5a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:14:17 GMT" + "Thu, 10 May 2018 18:23:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6295,37 +12072,40 @@ "14983" ], "x-ms-request-id": [ - "02f6e2bf-4280-4524-a810-805b02dca0c9" + "e41d6541-844c-458b-97ef-9931ebe1cb07" ], "x-ms-correlation-request-id": [ - "02f6e2bf-4280-4524-a810-805b02dca0c9" + "e41d6541-844c-458b-97ef-9931ebe1cb07" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231432Z:02f6e2bf-4280-4524-a810-805b02dca0c9" + "WESTUS2:20180510T182333Z:e41d6541-844c-458b-97ef-9931ebe1cb07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:14:32 GMT" + "Thu, 10 May 2018 18:23:32 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6349,37 +12129,40 @@ "14982" ], "x-ms-request-id": [ - "a532e1d5-6747-4b68-99bc-15e80b9413a4" + "31b47abf-0f51-4eb4-b114-4c5266351338" ], "x-ms-correlation-request-id": [ - "a532e1d5-6747-4b68-99bc-15e80b9413a4" + "31b47abf-0f51-4eb4-b114-4c5266351338" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231448Z:a532e1d5-6747-4b68-99bc-15e80b9413a4" + "WESTUS2:20180510T182348Z:31b47abf-0f51-4eb4-b114-4c5266351338" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:14:47 GMT" + "Thu, 10 May 2018 18:23:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6403,37 +12186,40 @@ "14981" ], "x-ms-request-id": [ - "64a8ddb8-08fa-4257-8867-67999d27cdc5" + "35a72d26-179c-4e2a-9cf3-0c8c18dead17" ], "x-ms-correlation-request-id": [ - "64a8ddb8-08fa-4257-8867-67999d27cdc5" + "35a72d26-179c-4e2a-9cf3-0c8c18dead17" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231503Z:64a8ddb8-08fa-4257-8867-67999d27cdc5" + "WESTUS2:20180510T182403Z:35a72d26-179c-4e2a-9cf3-0c8c18dead17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:15:02 GMT" + "Thu, 10 May 2018 18:24:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6457,37 +12243,40 @@ "14980" ], "x-ms-request-id": [ - "80b04d29-b9d2-4e3f-8e37-e43dfc6bf34c" + "914a76b9-b4de-4d73-a484-0b8c12e9f69a" ], "x-ms-correlation-request-id": [ - "80b04d29-b9d2-4e3f-8e37-e43dfc6bf34c" + "914a76b9-b4de-4d73-a484-0b8c12e9f69a" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231518Z:80b04d29-b9d2-4e3f-8e37-e43dfc6bf34c" + "WESTUS2:20180510T182418Z:914a76b9-b4de-4d73-a484-0b8c12e9f69a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:15:17 GMT" + "Thu, 10 May 2018 18:24:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6511,37 +12300,40 @@ "14979" ], "x-ms-request-id": [ - "b931a285-0805-42f8-b260-d57db7667a31" + "853fcbb1-9a7f-4001-9138-78c145f849c0" ], "x-ms-correlation-request-id": [ - "b931a285-0805-42f8-b260-d57db7667a31" + "853fcbb1-9a7f-4001-9138-78c145f849c0" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231533Z:b931a285-0805-42f8-b260-d57db7667a31" + "WESTUS2:20180510T182433Z:853fcbb1-9a7f-4001-9138-78c145f849c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:15:32 GMT" + "Thu, 10 May 2018 18:24:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6565,37 +12357,40 @@ "14978" ], "x-ms-request-id": [ - "06d51673-180a-4163-9840-d306d0456854" + "f727a5d4-3899-405d-b616-ceca33c8314d" ], "x-ms-correlation-request-id": [ - "06d51673-180a-4163-9840-d306d0456854" + "f727a5d4-3899-405d-b616-ceca33c8314d" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231548Z:06d51673-180a-4163-9840-d306d0456854" + "WESTUS2:20180510T182448Z:f727a5d4-3899-405d-b616-ceca33c8314d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:15:47 GMT" + "Thu, 10 May 2018 18:24:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6619,37 +12414,40 @@ "14977" ], "x-ms-request-id": [ - "0d331447-6cea-4803-beae-a3cbc6e7ad0a" + "9dc8d1c8-401e-4a6e-9be9-da94898811e4" ], "x-ms-correlation-request-id": [ - "0d331447-6cea-4803-beae-a3cbc6e7ad0a" + "9dc8d1c8-401e-4a6e-9be9-da94898811e4" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231603Z:0d331447-6cea-4803-beae-a3cbc6e7ad0a" + "WESTUS2:20180510T182503Z:9dc8d1c8-401e-4a6e-9be9-da94898811e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:16:02 GMT" + "Thu, 10 May 2018 18:25:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6673,37 +12471,40 @@ "14976" ], "x-ms-request-id": [ - "146d2f16-e7e1-408f-9440-30c9486cb36b" + "854222fd-5b42-476c-a95b-a907065794cc" ], "x-ms-correlation-request-id": [ - "146d2f16-e7e1-408f-9440-30c9486cb36b" + "854222fd-5b42-476c-a95b-a907065794cc" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231618Z:146d2f16-e7e1-408f-9440-30c9486cb36b" + "WESTUS2:20180510T182518Z:854222fd-5b42-476c-a95b-a907065794cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:16:17 GMT" + "Thu, 10 May 2018 18:25:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6727,37 +12528,40 @@ "14975" ], "x-ms-request-id": [ - "f3102f84-c5e0-48a5-b611-06d7e1ce076d" + "b23e77c4-d444-42ce-b41d-806c7e28f3c3" ], "x-ms-correlation-request-id": [ - "f3102f84-c5e0-48a5-b611-06d7e1ce076d" + "b23e77c4-d444-42ce-b41d-806c7e28f3c3" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231633Z:f3102f84-c5e0-48a5-b611-06d7e1ce076d" + "WESTUS2:20180510T182533Z:b23e77c4-d444-42ce-b41d-806c7e28f3c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:16:32 GMT" + "Thu, 10 May 2018 18:25:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6781,37 +12585,40 @@ "14974" ], "x-ms-request-id": [ - "273ebb5d-1925-4a33-aeb1-ed16d723eb9f" + "0b95cbf3-6946-4e26-a21f-ff0b6d873bb7" ], "x-ms-correlation-request-id": [ - "273ebb5d-1925-4a33-aeb1-ed16d723eb9f" + "0b95cbf3-6946-4e26-a21f-ff0b6d873bb7" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231648Z:273ebb5d-1925-4a33-aeb1-ed16d723eb9f" + "WESTUS2:20180510T182548Z:0b95cbf3-6946-4e26-a21f-ff0b6d873bb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:16:47 GMT" + "Thu, 10 May 2018 18:25:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6835,37 +12642,40 @@ "14973" ], "x-ms-request-id": [ - "4bebb530-9bda-4ec0-9fa3-00b30d4f9b8b" + "4f3dc604-4162-4020-be77-df4f9fbe4fbd" ], "x-ms-correlation-request-id": [ - "4bebb530-9bda-4ec0-9fa3-00b30d4f9b8b" + "4f3dc604-4162-4020-be77-df4f9fbe4fbd" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231703Z:4bebb530-9bda-4ec0-9fa3-00b30d4f9b8b" + "WESTUS2:20180510T182604Z:4f3dc604-4162-4020-be77-df4f9fbe4fbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:17:03 GMT" + "Thu, 10 May 2018 18:26:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6889,37 +12699,40 @@ "14972" ], "x-ms-request-id": [ - "1ddcf992-f33c-4b2c-9b8f-d1c6e8ed0ace" + "77f667b1-b822-4271-b72a-2b59fe6a4dc4" ], "x-ms-correlation-request-id": [ - "1ddcf992-f33c-4b2c-9b8f-d1c6e8ed0ace" + "77f667b1-b822-4271-b72a-2b59fe6a4dc4" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231718Z:1ddcf992-f33c-4b2c-9b8f-d1c6e8ed0ace" + "WESTUS2:20180510T182619Z:77f667b1-b822-4271-b72a-2b59fe6a4dc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:17:18 GMT" + "Thu, 10 May 2018 18:26:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6943,37 +12756,40 @@ "14971" ], "x-ms-request-id": [ - "e4e79b7d-9e30-48fc-ae54-8f2ae87e9332" + "b08849c4-bd09-4e10-88f6-1233af0031ab" ], "x-ms-correlation-request-id": [ - "e4e79b7d-9e30-48fc-ae54-8f2ae87e9332" + "b08849c4-bd09-4e10-88f6-1233af0031ab" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231733Z:e4e79b7d-9e30-48fc-ae54-8f2ae87e9332" + "WESTUS2:20180510T182634Z:b08849c4-bd09-4e10-88f6-1233af0031ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:17:33 GMT" + "Thu, 10 May 2018 18:26:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6997,37 +12813,40 @@ "14970" ], "x-ms-request-id": [ - "50edc49d-0002-4b6a-897c-967ae2efbb69" + "92730b15-55a4-4c1d-b2c6-3126580bcc05" ], "x-ms-correlation-request-id": [ - "50edc49d-0002-4b6a-897c-967ae2efbb69" + "92730b15-55a4-4c1d-b2c6-3126580bcc05" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231748Z:50edc49d-0002-4b6a-897c-967ae2efbb69" + "WESTUS2:20180510T182649Z:92730b15-55a4-4c1d-b2c6-3126580bcc05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:17:47 GMT" + "Thu, 10 May 2018 18:26:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7051,37 +12870,40 @@ "14969" ], "x-ms-request-id": [ - "8a2288ce-b27b-474b-9431-31482ee6347c" + "653a329a-77af-4932-8d95-c05258b9470e" ], "x-ms-correlation-request-id": [ - "8a2288ce-b27b-474b-9431-31482ee6347c" + "653a329a-77af-4932-8d95-c05258b9470e" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231803Z:8a2288ce-b27b-474b-9431-31482ee6347c" + "WESTUS2:20180510T182704Z:653a329a-77af-4932-8d95-c05258b9470e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:18:02 GMT" + "Thu, 10 May 2018 18:27:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7105,37 +12927,40 @@ "14968" ], "x-ms-request-id": [ - "6a361593-5eea-4234-b631-87099273d010" + "2c51b1d0-b6d4-464e-a69f-1745b2821b3a" ], "x-ms-correlation-request-id": [ - "6a361593-5eea-4234-b631-87099273d010" + "2c51b1d0-b6d4-464e-a69f-1745b2821b3a" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231818Z:6a361593-5eea-4234-b631-87099273d010" + "WESTUS2:20180510T182719Z:2c51b1d0-b6d4-464e-a69f-1745b2821b3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:18:18 GMT" + "Thu, 10 May 2018 18:27:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7159,37 +12984,40 @@ "14967" ], "x-ms-request-id": [ - "89021803-dbe7-4bfd-b0a2-1315624122d4" + "6b77bed0-ec7e-453d-809d-e2d090e59b8f" ], "x-ms-correlation-request-id": [ - "89021803-dbe7-4bfd-b0a2-1315624122d4" + "6b77bed0-ec7e-453d-809d-e2d090e59b8f" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231833Z:89021803-dbe7-4bfd-b0a2-1315624122d4" + "WESTUS2:20180510T182734Z:6b77bed0-ec7e-453d-809d-e2d090e59b8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:18:33 GMT" + "Thu, 10 May 2018 18:27:34 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7213,37 +13041,40 @@ "14966" ], "x-ms-request-id": [ - "9dfcd969-d3a8-43f8-9295-43f09939a754" + "a2096029-dc9f-4e99-87db-c67b037a7776" ], "x-ms-correlation-request-id": [ - "9dfcd969-d3a8-43f8-9295-43f09939a754" + "a2096029-dc9f-4e99-87db-c67b037a7776" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231848Z:9dfcd969-d3a8-43f8-9295-43f09939a754" + "WESTUS2:20180510T182749Z:a2096029-dc9f-4e99-87db-c67b037a7776" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:18:48 GMT" + "Thu, 10 May 2018 18:27:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7267,37 +13098,40 @@ "14965" ], "x-ms-request-id": [ - "858735ef-2043-4ee8-9d72-f121b91cae48" + "d9c6b144-af05-40bb-b157-c8619420aca9" ], "x-ms-correlation-request-id": [ - "858735ef-2043-4ee8-9d72-f121b91cae48" + "d9c6b144-af05-40bb-b157-c8619420aca9" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231903Z:858735ef-2043-4ee8-9d72-f121b91cae48" + "WESTUS2:20180510T182804Z:d9c6b144-af05-40bb-b157-c8619420aca9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:19:03 GMT" + "Thu, 10 May 2018 18:28:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7321,37 +13155,40 @@ "14964" ], "x-ms-request-id": [ - "332c6227-e036-4b30-a161-c20dc1ac261d" + "f3c13c52-a298-42dd-be53-a108c2933f23" ], "x-ms-correlation-request-id": [ - "332c6227-e036-4b30-a161-c20dc1ac261d" + "f3c13c52-a298-42dd-be53-a108c2933f23" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231918Z:332c6227-e036-4b30-a161-c20dc1ac261d" + "WESTUS2:20180510T182819Z:f3c13c52-a298-42dd-be53-a108c2933f23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:19:18 GMT" + "Thu, 10 May 2018 18:28:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7375,37 +13212,40 @@ "14963" ], "x-ms-request-id": [ - "d8442092-bbe4-4a3d-94fa-6c172afdfa22" + "deaa56ae-934c-40ff-84d8-38133df82c74" ], "x-ms-correlation-request-id": [ - "d8442092-bbe4-4a3d-94fa-6c172afdfa22" + "deaa56ae-934c-40ff-84d8-38133df82c74" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231933Z:d8442092-bbe4-4a3d-94fa-6c172afdfa22" + "WESTUS2:20180510T182834Z:deaa56ae-934c-40ff-84d8-38133df82c74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:19:32 GMT" + "Thu, 10 May 2018 18:28:34 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7429,37 +13269,40 @@ "14962" ], "x-ms-request-id": [ - "46f81951-8099-4f14-a77f-fd75c3da1dd5" + "5d63a3c5-4f96-4e1d-a05c-c202a16b37e8" ], "x-ms-correlation-request-id": [ - "46f81951-8099-4f14-a77f-fd75c3da1dd5" + "5d63a3c5-4f96-4e1d-a05c-c202a16b37e8" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T231949Z:46f81951-8099-4f14-a77f-fd75c3da1dd5" + "WESTUS2:20180510T182850Z:5d63a3c5-4f96-4e1d-a05c-c202a16b37e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:19:48 GMT" + "Thu, 10 May 2018 18:28:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7483,37 +13326,40 @@ "14961" ], "x-ms-request-id": [ - "bee67357-5ca7-47ca-a948-f31535310298" + "d0ef9279-4863-4549-a76e-3b870f41ce3f" ], "x-ms-correlation-request-id": [ - "bee67357-5ca7-47ca-a948-f31535310298" + "d0ef9279-4863-4549-a76e-3b870f41ce3f" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232004Z:bee67357-5ca7-47ca-a948-f31535310298" + "WESTUS2:20180510T182905Z:d0ef9279-4863-4549-a76e-3b870f41ce3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:20:03 GMT" + "Thu, 10 May 2018 18:29:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7537,37 +13383,40 @@ "14960" ], "x-ms-request-id": [ - "da0e3a76-ed1c-4cbb-914e-285200d6e9e6" + "9e25fa8f-4edf-4a5b-9fe5-ea69d93b24ec" ], "x-ms-correlation-request-id": [ - "da0e3a76-ed1c-4cbb-914e-285200d6e9e6" + "9e25fa8f-4edf-4a5b-9fe5-ea69d93b24ec" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232019Z:da0e3a76-ed1c-4cbb-914e-285200d6e9e6" + "WESTUS2:20180510T182920Z:9e25fa8f-4edf-4a5b-9fe5-ea69d93b24ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:20:18 GMT" + "Thu, 10 May 2018 18:29:20 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7591,37 +13440,40 @@ "14959" ], "x-ms-request-id": [ - "1b711515-4afb-4b16-a19f-d9dcf240ed27" + "864d7452-ef94-480b-af3e-9da95c1f1e34" ], "x-ms-correlation-request-id": [ - "1b711515-4afb-4b16-a19f-d9dcf240ed27" + "864d7452-ef94-480b-af3e-9da95c1f1e34" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232034Z:1b711515-4afb-4b16-a19f-d9dcf240ed27" + "WESTUS2:20180510T182935Z:864d7452-ef94-480b-af3e-9da95c1f1e34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:20:33 GMT" + "Thu, 10 May 2018 18:29:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7645,37 +13497,40 @@ "14958" ], "x-ms-request-id": [ - "5ef65231-8e62-40c5-a8e0-89b758842675" + "894582bb-e3e3-402a-9c72-c4aa682b50f6" ], "x-ms-correlation-request-id": [ - "5ef65231-8e62-40c5-a8e0-89b758842675" + "894582bb-e3e3-402a-9c72-c4aa682b50f6" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232049Z:5ef65231-8e62-40c5-a8e0-89b758842675" + "WESTUS2:20180510T182950Z:894582bb-e3e3-402a-9c72-c4aa682b50f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:20:49 GMT" + "Thu, 10 May 2018 18:29:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7699,37 +13554,40 @@ "14957" ], "x-ms-request-id": [ - "5343d9eb-db1c-407e-a6b3-1560b3762e45" + "eb588736-111a-4712-94f9-755d016404dc" ], "x-ms-correlation-request-id": [ - "5343d9eb-db1c-407e-a6b3-1560b3762e45" + "eb588736-111a-4712-94f9-755d016404dc" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232104Z:5343d9eb-db1c-407e-a6b3-1560b3762e45" + "WESTUS2:20180510T183005Z:eb588736-111a-4712-94f9-755d016404dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:21:03 GMT" + "Thu, 10 May 2018 18:30:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7753,37 +13611,40 @@ "14956" ], "x-ms-request-id": [ - "a314763d-724c-4fc3-98a6-d74dd51cfb18" + "a079eb9b-d3fa-4386-99bb-a64c6afaebd5" ], "x-ms-correlation-request-id": [ - "a314763d-724c-4fc3-98a6-d74dd51cfb18" + "a079eb9b-d3fa-4386-99bb-a64c6afaebd5" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232119Z:a314763d-724c-4fc3-98a6-d74dd51cfb18" + "WESTUS2:20180510T183020Z:a079eb9b-d3fa-4386-99bb-a64c6afaebd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:21:18 GMT" + "Thu, 10 May 2018 18:30:20 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7807,37 +13668,40 @@ "14955" ], "x-ms-request-id": [ - "742e76f8-ace1-4cda-aee0-df069b7e2aad" + "9e4428b0-32fb-4b1c-bc5f-101c7e3e0095" ], "x-ms-correlation-request-id": [ - "742e76f8-ace1-4cda-aee0-df069b7e2aad" + "9e4428b0-32fb-4b1c-bc5f-101c7e3e0095" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232134Z:742e76f8-ace1-4cda-aee0-df069b7e2aad" + "WESTUS2:20180510T183035Z:9e4428b0-32fb-4b1c-bc5f-101c7e3e0095" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:21:34 GMT" + "Thu, 10 May 2018 18:30:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7861,37 +13725,40 @@ "14954" ], "x-ms-request-id": [ - "9879474f-8689-4d3a-b20b-4441c7c7effb" + "dc1f2518-adbf-4efd-a850-def9b1671368" ], "x-ms-correlation-request-id": [ - "9879474f-8689-4d3a-b20b-4441c7c7effb" + "dc1f2518-adbf-4efd-a850-def9b1671368" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232149Z:9879474f-8689-4d3a-b20b-4441c7c7effb" + "WESTUS2:20180510T183051Z:dc1f2518-adbf-4efd-a850-def9b1671368" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:21:48 GMT" + "Thu, 10 May 2018 18:30:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7915,37 +13782,40 @@ "14953" ], "x-ms-request-id": [ - "fea73688-89bf-4c13-a5eb-979d7156d44c" + "d09a9f7a-f116-4add-b3b4-1edbea0b417f" ], "x-ms-correlation-request-id": [ - "fea73688-89bf-4c13-a5eb-979d7156d44c" + "d09a9f7a-f116-4add-b3b4-1edbea0b417f" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232204Z:fea73688-89bf-4c13-a5eb-979d7156d44c" + "WESTUS2:20180510T183106Z:d09a9f7a-f116-4add-b3b4-1edbea0b417f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:22:03 GMT" + "Thu, 10 May 2018 18:31:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7969,37 +13839,40 @@ "14952" ], "x-ms-request-id": [ - "572120a2-10ac-4d25-89b8-1b16f632fc7d" + "14d3198a-03c4-4d2e-ba03-13daa20aa403" ], "x-ms-correlation-request-id": [ - "572120a2-10ac-4d25-89b8-1b16f632fc7d" + "14d3198a-03c4-4d2e-ba03-13daa20aa403" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232219Z:572120a2-10ac-4d25-89b8-1b16f632fc7d" + "WESTUS2:20180510T183121Z:14d3198a-03c4-4d2e-ba03-13daa20aa403" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:22:19 GMT" + "Thu, 10 May 2018 18:31:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -8023,37 +13896,40 @@ "14951" ], "x-ms-request-id": [ - "c94aafcb-7479-4c09-8b10-01703d002c61" + "be5e40d0-cc90-49be-849f-b8b8ca4e629e" ], "x-ms-correlation-request-id": [ - "c94aafcb-7479-4c09-8b10-01703d002c61" + "be5e40d0-cc90-49be-849f-b8b8ca4e629e" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232234Z:c94aafcb-7479-4c09-8b10-01703d002c61" + "WESTUS2:20180510T183136Z:be5e40d0-cc90-49be-849f-b8b8ca4e629e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:22:34 GMT" + "Thu, 10 May 2018 18:31:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -8077,37 +13953,40 @@ "14950" ], "x-ms-request-id": [ - "94542a40-4977-4bfe-9a0a-93aeb32ddca4" + "51269e07-b386-4e17-9b75-41aab94f8cdc" ], "x-ms-correlation-request-id": [ - "94542a40-4977-4bfe-9a0a-93aeb32ddca4" + "51269e07-b386-4e17-9b75-41aab94f8cdc" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232249Z:94542a40-4977-4bfe-9a0a-93aeb32ddca4" + "WESTUS2:20180510T183151Z:51269e07-b386-4e17-9b75-41aab94f8cdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:22:49 GMT" + "Thu, 10 May 2018 18:31:51 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -8131,37 +14010,40 @@ "14949" ], "x-ms-request-id": [ - "f6d48f9f-b13b-4f67-b378-d59004bc666f" + "ca7aeffa-7321-43a4-af0a-dc53fa9c9eeb" ], "x-ms-correlation-request-id": [ - "f6d48f9f-b13b-4f67-b378-d59004bc666f" + "ca7aeffa-7321-43a4-af0a-dc53fa9c9eeb" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232304Z:f6d48f9f-b13b-4f67-b378-d59004bc666f" + "WESTUS2:20180510T183206Z:ca7aeffa-7321-43a4-af0a-dc53fa9c9eeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:23:03 GMT" + "Thu, 10 May 2018 18:32:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -8185,37 +14067,40 @@ "14948" ], "x-ms-request-id": [ - "9c1a0cf1-97d5-46c3-a39e-999fc6097660" + "51286a0a-6416-4a21-bae1-d2747b349e53" ], "x-ms-correlation-request-id": [ - "9c1a0cf1-97d5-46c3-a39e-999fc6097660" + "51286a0a-6416-4a21-bae1-d2747b349e53" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232319Z:9c1a0cf1-97d5-46c3-a39e-999fc6097660" + "WESTUS2:20180510T183221Z:51286a0a-6416-4a21-bae1-d2747b349e53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:23:19 GMT" + "Thu, 10 May 2018 18:32:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -8239,37 +14124,40 @@ "14947" ], "x-ms-request-id": [ - "bf8f148b-064f-4f10-a88f-bff58fc4260a" + "2f8a1f1f-4358-41d2-aa93-3094b3ada51b" ], "x-ms-correlation-request-id": [ - "bf8f148b-064f-4f10-a88f-bff58fc4260a" + "2f8a1f1f-4358-41d2-aa93-3094b3ada51b" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232334Z:bf8f148b-064f-4f10-a88f-bff58fc4260a" + "WESTUS2:20180510T183236Z:2f8a1f1f-4358-41d2-aa93-3094b3ada51b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:23:34 GMT" + "Thu, 10 May 2018 18:32:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -8293,37 +14181,40 @@ "14946" ], "x-ms-request-id": [ - "18929431-7aed-4f18-8ae9-a2f1664e0f6d" + "ed55c593-a8ea-43b9-a9ea-af9006c2e1ca" ], "x-ms-correlation-request-id": [ - "18929431-7aed-4f18-8ae9-a2f1664e0f6d" + "ed55c593-a8ea-43b9-a9ea-af9006c2e1ca" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232349Z:18929431-7aed-4f18-8ae9-a2f1664e0f6d" + "WESTUS2:20180510T183251Z:ed55c593-a8ea-43b9-a9ea-af9006c2e1ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:23:49 GMT" + "Thu, 10 May 2018 18:32:51 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -8340,80 +14231,29 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "14945" ], "x-ms-request-id": [ - "92bba7a5-4d2b-4221-97ea-b62b3c8707c4" + "956de253-8cdc-4518-a28f-6fa56c736615" ], "x-ms-correlation-request-id": [ - "92bba7a5-4d2b-4221-97ea-b62b3c8707c4" + "956de253-8cdc-4518-a28f-6fa56c736615" ], "x-ms-routing-request-id": [ - "WESTUS:20151206T232404Z:92bba7a5-4d2b-4221-97ea-b62b3c8707c4" + "WESTUS2:20180510T183307Z:956de253-8cdc-4518-a28f-6fa56c736615" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 06 Dec 2015 23:24:04 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjQyMjljOTItMTc1YS00ZWJhLWEyZmQtZWUxZjllMjk3NjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFl5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" - ], - "x-ms-request-id": [ - "c6d7e559-b5ab-4286-80e8-81eb91d0ad7f" - ], - "x-ms-correlation-request-id": [ - "c6d7e559-b5ab-4286-80e8-81eb91d0ad7f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151206T232419Z:c6d7e559-b5ab-4286-80e8-81eb91d0ad7f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sun, 06 Dec 2015 23:24:19 GMT" + "Thu, 10 May 2018 18:33:06 GMT" ] }, "StatusCode": 200 @@ -8421,17 +14261,17 @@ ], "Names": { "Test-VirtualNetworkGatewayConnectionSharedKeyCRUD": [ - "onesdk5562", - "onesdk7388", - "onesdk9617", - "onesdk9763", - "onesdk8827", - "onesdk2365", - "onesdk4923", - "onesdk8169" + "ps2050", + "ps6963", + "ps257", + "ps9831", + "ps8493", + "ps3614", + "ps5895", + "ps4908" ] }, "Variables": { - "SubscriptionId": "64229c92-175a-4eba-a2fd-ee1f9e29766e" + "SubscriptionId": "b1f1deed-af60-4bab-9223-65d340462e24" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionWithBgpCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionWithBgpCRUD.json index bb7907e1cc5f..4751a3ae02f3 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionWithBgpCRUD.json +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionWithBgpCRUD.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5934" + "24460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,145 +25,52 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-request-id": [ - "af209fcc-b56c-4560-b647-460a670081a0" - ], - "x-ms-correlation-request-id": [ - "af209fcc-b56c-4560-b647-460a670081a0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160310T035043Z:af209fcc-b56c-4560-b647-460a670081a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 10 Mar 2016 03:50:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourcegroups/onesdk1844?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlZ3JvdXBzL29uZXNkazE4NDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14999" ], "x-ms-request-id": [ - "2bcd6cbe-4dc2-48b2-9369-48e8bbf97a19" + "6f5e81c6-71e0-42ba-ae57-7fafad2c6cc2" ], "x-ms-correlation-request-id": [ - "2bcd6cbe-4dc2-48b2-9369-48e8bbf97a19" + "6f5e81c6-71e0-42ba-ae57-7fafad2c6cc2" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035043Z:2bcd6cbe-4dc2-48b2-9369-48e8bbf97a19" + "WESTUS2:20180510T183443Z:6f5e81c6-71e0-42ba-ae57-7fafad2c6cc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 10 Mar 2016 03:50:42 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourcegroups/onesdk1844?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlZ3JvdXBzL29uZXNkazE4NDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-request-id": [ - "229e7051-abc5-46a3-9c45-e5cd835e9c10" - ], - "x-ms-correlation-request-id": [ - "229e7051-abc5-46a3-9c45-e5cd835e9c10" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160310T043139Z:229e7051-abc5-46a3-9c45-e5cd835e9c10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:31:39 GMT" + "Thu, 10 May 2018 18:34:43 GMT" ] }, - "StatusCode": 204 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourcegroups/onesdk1844?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlZ3JvdXBzL29uZXNkazE4NDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps9885?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzOTg4NT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "74" + "29" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844\",\r\n \"name\": \"onesdk1844\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885\",\r\n \"name\": \"ps9885\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "202" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -178,40 +85,52 @@ "1199" ], "x-ms-request-id": [ - "cdece79b-c066-4b05-9c49-572963c5b839" + "e3972eac-53b6-4000-bc21-ab4bed26d245" ], "x-ms-correlation-request-id": [ - "cdece79b-c066-4b05-9c49-572963c5b839" + "e3972eac-53b6-4000-bc21-ab4bed26d245" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035044Z:cdece79b-c066-4b05-9c49-572963c5b839" + "WESTUS2:20180510T183444Z:e3972eac-53b6-4000-bc21-ab4bed26d245" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 03:50:44 GMT" + "Thu, 10 May 2018 18:34:43 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDQ2MD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b113f437-b8ac-4ac1-bd08-4bceddebc253" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps4460' under resource group 'ps9885' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -222,50 +141,50 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "148aaa16-6657-4fe8-9f6f-0c6c6fd6390d" + "6012e1dc-3216-4bf7-8dd7-572d784a5616" ], "x-ms-correlation-request-id": [ - "148aaa16-6657-4fe8-9f6f-0c6c6fd6390d" + "6012e1dc-3216-4bf7-8dd7-572d784a5616" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035044Z:148aaa16-6657-4fe8-9f6f-0c6c6fd6390d" + "WESTUS2:20180510T183444Z:6012e1dc-3216-4bf7-8dd7-572d784a5616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 03:50:44 GMT" + "Thu, 10 May 2018 18:34:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs1NTA5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDQ2MD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2ebcac3a-3152-4600-a331-dd901efba90a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/onesdk5509' under resource group 'onesdk1844' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4460\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460\",\r\n \"etag\": \"W/\\\"6cd786e8-e097-4abd-a459-51b211875d4b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"103bb55e-9f7e-4e90-b8a4-7aff6b5d92de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"6cd786e8-e097-4abd-a459-51b211875d4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "158" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,17 +195,8 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" - ], "x-ms-request-id": [ - "03a1b9cb-fa11-42c1-ade1-8f6bb2e4c9fb" - ], - "x-ms-correlation-request-id": [ - "03a1b9cb-fa11-42c1-ade1-8f6bb2e4c9fb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160310T035046Z:03a1b9cb-fa11-42c1-ade1-8f6bb2e4c9fb" + "c674a882-e547-44ef-9591-1176dcd543e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,26 +204,54 @@ "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"6cd786e8-e097-4abd-a459-51b211875d4b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "6d1024a4-1263-4190-903d-df8d62675ef4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T183507Z:6d1024a4-1263-4190-903d-df8d62675ef4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Thu, 10 Mar 2016 03:50:46 GMT" + "Thu, 10 May 2018 18:35:07 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs1NTA5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDQ2MD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1ee36050-3858-4c57-ac50-ad8236aa824c" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5509\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509\",\r\n \"etag\": \"W/\\\"3e3c3100-c152-4c0b-ba7f-dafee23a47bf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ff1d7b02-4154-417e-beb9-f0f4879db07f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"3e3c3100-c152-4c0b-ba7f-dafee23a47bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4460\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460\",\r\n \"etag\": \"W/\\\"6cd786e8-e097-4abd-a459-51b211875d4b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"103bb55e-9f7e-4e90-b8a4-7aff6b5d92de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"6cd786e8-e097-4abd-a459-51b211875d4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "955" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,7 +263,7 @@ "no-cache" ], "x-ms-request-id": [ - "0fa2d3ae-e3ac-4f86-9110-53e5a6ac8036" + "5119e630-aaa8-44ef-9074-58f1ff686b12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,47 +272,53 @@ "no-cache" ], "ETag": [ - "W/\"3e3c3100-c152-4c0b-ba7f-dafee23a47bf\"" + "W/\"6cd786e8-e097-4abd-a459-51b211875d4b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14995" ], "x-ms-correlation-request-id": [ - "58f0ca58-cb74-4856-868d-a5f857cd0862" + "1171605d-aab1-4f4c-a6ef-d4f409a46c9f" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035118Z:58f0ca58-cb74-4856-868d-a5f857cd0862" + "WESTUS2:20180510T183507Z:1171605d-aab1-4f4c-a6ef-d4f409a46c9f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:51:18 GMT" + "Thu, 10 May 2018 18:35:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs1NTA5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDQ2MD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "238f18f3-6f0e-440d-b580-c279b2a391b7" + "dd89ddc3-b00e-4ad0-af08-329cc03e3a18" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5509\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509\",\r\n \"etag\": \"W/\\\"3e3c3100-c152-4c0b-ba7f-dafee23a47bf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ff1d7b02-4154-417e-beb9-f0f4879db07f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"3e3c3100-c152-4c0b-ba7f-dafee23a47bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4460\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460\",\r\n \"etag\": \"W/\\\"6cd786e8-e097-4abd-a459-51b211875d4b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"103bb55e-9f7e-4e90-b8a4-7aff6b5d92de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"6cd786e8-e097-4abd-a459-51b211875d4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "955" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -386,7 +330,7 @@ "no-cache" ], "x-ms-request-id": [ - "907244f8-8bf8-4fac-bd57-94b63219cd34" + "4398dc39-5b4d-458e-8c21-b85f8abdceae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,47 +339,59 @@ "no-cache" ], "ETag": [ - "W/\"3e3c3100-c152-4c0b-ba7f-dafee23a47bf\"" + "W/\"6cd786e8-e097-4abd-a459-51b211875d4b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14994" ], "x-ms-correlation-request-id": [ - "50256c28-bfd7-469f-aafa-0d5458663008" + "03e7e81b-caee-4eaa-8d7b-c2d713fe3212" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035119Z:50256c28-bfd7-469f-aafa-0d5458663008" + "WESTUS2:20180510T183507Z:03e7e81b-caee-4eaa-8d7b-c2d713fe3212" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:51:19 GMT" + "Thu, 10 May 2018 18:35:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs1NTA5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDQ2MD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "482" + ], "x-ms-client-request-id": [ - "cbaeb3db-d4c8-4f20-97a7-53fc8c90c82a" + "05a6683d-2652-4f9b-9766-d0bd7ab6348f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5509\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509\",\r\n \"etag\": \"W/\\\"3e3c3100-c152-4c0b-ba7f-dafee23a47bf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ff1d7b02-4154-417e-beb9-f0f4879db07f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"3e3c3100-c152-4c0b-ba7f-dafee23a47bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4460\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460\",\r\n \"etag\": \"W/\\\"0ecaa129-45e8-4444-9d5b-6181365a50d1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"103bb55e-9f7e-4e90-b8a4-7aff6b5d92de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"0ecaa129-45e8-4444-9d5b-6181365a50d1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "955" + "1103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -446,8 +402,14 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "3" + ], "x-ms-request-id": [ - "895eadb6-c46e-44cf-b29a-aafe084026e3" + "e5c0f85d-3bbb-443e-a640-e5e677297824" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/e5c0f85d-3bbb-443e-a640-e5e677297824?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -455,54 +417,45 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"3e3c3100-c152-4c0b-ba7f-dafee23a47bf\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "7e2dca8c-231a-43c6-9995-ab090cee3628" + "06356c12-0c81-48fb-9d6e-475be76add01" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035119Z:7e2dca8c-231a-43c6-9995-ab090cee3628" + "WESTUS2:20180510T183447Z:06356c12-0c81-48fb-9d6e-475be76add01" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:51:19 GMT" + "Thu, 10 May 2018 18:34:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs1NTA5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/e5c0f85d-3bbb-443e-a640-e5e677297824?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTVjMGY4NWQtM2JiYi00NDNlLWE2NDAtZTVlNjc3Mjk3ODI0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "335" - ], - "x-ms-client-request-id": [ - "4f69591c-6989-4cbc-9d38-012c67d01555" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5509\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509\",\r\n \"etag\": \"W/\\\"e2b113d8-0c4c-416e-b0b1-c640d3054061\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ff1d7b02-4154-417e-beb9-f0f4879db07f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"e2b113d8-0c4c-416e-b0b1-c640d3054061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "953" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -517,10 +470,7 @@ "10" ], "x-ms-request-id": [ - "038f34d4-eb27-4a97-90e2-69c015674045" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/038f34d4-eb27-4a97-90e2-69c015674045?api-version=2017-09-01" + "2556491d-d647-4ecd-baf8-28461a86c4ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,29 +482,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" ], "x-ms-correlation-request-id": [ - "6e8bff4d-3960-4a14-b2f6-e5cdbbeef840" + "0eccf8fb-a1e7-4f48-9a3c-ec17b240d459" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035048Z:6e8bff4d-3960-4a14-b2f6-e5cdbbeef840" + "WESTUS2:20180510T183457Z:0eccf8fb-a1e7-4f48-9a3c-ec17b240d459" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:50:47 GMT" + "Thu, 10 May 2018 18:34:56 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/038f34d4-eb27-4a97-90e2-69c015674045?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDM4ZjM0ZDQtZWIyNy00YTk3LTkwZTItNjljMDE1Njc0MDQ1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/e5c0f85d-3bbb-443e-a640-e5e677297824?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTVjMGY4NWQtM2JiYi00NDNlLWE2NDAtZTVlNjc3Mjk3ODI0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -572,7 +528,7 @@ "no-cache" ], "x-ms-request-id": [ - "bf71e3a1-32ed-459c-add0-7d1b0afd6936" + "103f9e41-9135-4fc6-b9b4-6a6b2fb03a00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585,40 +541,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14997" ], "x-ms-correlation-request-id": [ - "73edab2a-df88-48d4-b2d4-c26d566a3f49" + "49c6046c-d3c9-4183-99d3-e0be5b5e2e8e" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035118Z:73edab2a-df88-48d4-b2d4-c26d566a3f49" + "WESTUS2:20180510T183507Z:49c6046c-d3c9-4183-99d3-e0be5b5e2e8e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:51:18 GMT" + "Thu, 10 May 2018 18:35:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/publicIPAddresses/onesdk5094?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazUwOTQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/publicIPAddresses/ps161?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxNjE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2a2f723-f297-4857-83f1-a5184ed53f53" + "b88f7897-d287-4732-a670-c4633616184a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/onesdk5094' under resource group 'onesdk1844' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps161' under resource group 'ps9885' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "160" + "151" ], "Content-Type": [ "application/json; charset=utf-8" @@ -633,40 +595,46 @@ "gateway" ], "x-ms-request-id": [ - "7ed799ee-3b7f-45ba-bea3-3476ff489370" + "0f18d9cd-ed2b-4f96-ba58-28bf00394538" ], "x-ms-correlation-request-id": [ - "7ed799ee-3b7f-45ba-bea3-3476ff489370" + "0f18d9cd-ed2b-4f96-ba58-28bf00394538" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035119Z:7ed799ee-3b7f-45ba-bea3-3476ff489370" + "WESTUS2:20180510T183507Z:0f18d9cd-ed2b-4f96-ba58-28bf00394538" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 03:51:19 GMT" + "Thu, 10 May 2018 18:35:07 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/publicIPAddresses/onesdk5094?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazUwOTQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/publicIPAddresses/ps161?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxNjE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5094\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/publicIPAddresses/onesdk5094\",\r\n \"etag\": \"W/\\\"efb21205-c2b1-4647-aeda-b2fdabb522b8\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"54c43d1f-d0b6-475f-9ca5-afb7617b79a4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk6773\",\r\n \"fqdn\": \"onesdk6773.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps161\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/publicIPAddresses/ps161\",\r\n \"etag\": \"W/\\\"a43597de-caa0-434b-aca3-a87df0ce0f1c\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"92ee2c34-b890-4ed7-9f7f-4d0ea2f8c684\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps134\",\r\n \"fqdn\": \"ps134.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "631" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -678,7 +646,7 @@ "no-cache" ], "x-ms-request-id": [ - "1df2e6b9-5c33-4dd9-88ee-7ad9321dc6b2" + "7d47cf5a-251f-4646-ad9b-e200e12062d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -687,47 +655,53 @@ "no-cache" ], "ETag": [ - "W/\"efb21205-c2b1-4647-aeda-b2fdabb522b8\"" + "W/\"a43597de-caa0-434b-aca3-a87df0ce0f1c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14991" ], "x-ms-correlation-request-id": [ - "39c1cb08-e77b-4e1b-ac38-8f1bf02ca89c" + "90789668-a50d-4bce-924e-90bf512adc2f" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035151Z:39c1cb08-e77b-4e1b-ac38-8f1bf02ca89c" + "WESTUS2:20180510T183518Z:90789668-a50d-4bce-924e-90bf512adc2f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:51:51 GMT" + "Thu, 10 May 2018 18:35:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/publicIPAddresses/onesdk5094?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazUwOTQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/publicIPAddresses/ps161?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxNjE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83a099e1-5625-48c8-a6d2-7f6764f3d8ce" + "6e7b2e05-1b83-4479-ae68-8277d48332e1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5094\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/publicIPAddresses/onesdk5094\",\r\n \"etag\": \"W/\\\"efb21205-c2b1-4647-aeda-b2fdabb522b8\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"54c43d1f-d0b6-475f-9ca5-afb7617b79a4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk6773\",\r\n \"fqdn\": \"onesdk6773.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps161\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/publicIPAddresses/ps161\",\r\n \"etag\": \"W/\\\"a43597de-caa0-434b-aca3-a87df0ce0f1c\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"92ee2c34-b890-4ed7-9f7f-4d0ea2f8c684\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps134\",\r\n \"fqdn\": \"ps134.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "631" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -739,7 +713,7 @@ "no-cache" ], "x-ms-request-id": [ - "90016513-2592-4a12-b3dc-4392bde2fb0c" + "5b00715b-37ee-4c20-a05c-6942078a6601" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,53 +722,59 @@ "no-cache" ], "ETag": [ - "W/\"efb21205-c2b1-4647-aeda-b2fdabb522b8\"" + "W/\"a43597de-caa0-434b-aca3-a87df0ce0f1c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14990" ], "x-ms-correlation-request-id": [ - "57c5104f-b450-4ea3-ad06-595cea45e2dc" + "8e1499ee-f4d5-47c4-a52c-bd483dceed2a" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035152Z:57c5104f-b450-4ea3-ad06-595cea45e2dc" + "WESTUS2:20180510T183518Z:8e1499ee-f4d5-47c4-a52c-bd483dceed2a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:51:51 GMT" + "Thu, 10 May 2018 18:35:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/publicIPAddresses/onesdk5094?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazUwOTQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/publicIPAddresses/ps161?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxNjE/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk6773\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps134\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "166" + "196" ], "x-ms-client-request-id": [ - "2f352021-b34c-4b1d-813c-4c1a01f3ca96" + "de92553d-857b-4088-8be9-e276ce52abca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5094\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/publicIPAddresses/onesdk5094\",\r\n \"etag\": \"W/\\\"b84a0f03-0533-48b8-a0e9-c55e499387d4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"54c43d1f-d0b6-475f-9ca5-afb7617b79a4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk6773\",\r\n \"fqdn\": \"onesdk6773.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps161\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/publicIPAddresses/ps161\",\r\n \"etag\": \"W/\\\"f9fca575-44a6-402e-a86e-259f71341695\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"92ee2c34-b890-4ed7-9f7f-4d0ea2f8c684\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps134\",\r\n \"fqdn\": \"ps134.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "630" + "728" ], "Content-Type": [ "application/json; charset=utf-8" @@ -806,13 +786,13 @@ "no-cache" ], "Retry-After": [ - "10" + "3" ], "x-ms-request-id": [ - "889157c3-2214-429a-b61d-429a9759211a" + "08b6d5d2-a6dc-4b99-a84a-2b12fa8279bc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/889157c3-2214-429a-b61d-429a9759211a?api-version=2017-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/08b6d5d2-a6dc-4b99-a84a-2b12fa8279bc?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -828,25 +808,31 @@ "1198" ], "x-ms-correlation-request-id": [ - "ae9a4264-bb3a-4e37-affb-aa7b3dd1b362" + "e811fa1f-f965-401b-a14f-6d578ae7e0db" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035121Z:ae9a4264-bb3a-4e37-affb-aa7b3dd1b362" + "WESTUS2:20180510T183508Z:e811fa1f-f965-401b-a14f-6d578ae7e0db" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:51:21 GMT" + "Thu, 10 May 2018 18:35:08 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/889157c3-2214-429a-b61d-429a9759211a?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODg5MTU3YzMtMjIxNC00MjlhLWI2MWQtNDI5YTk3NTkyMTFhP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/08b6d5d2-a6dc-4b99-a84a-2b12fa8279bc?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDhiNmQ1ZDItYTZkYy00Yjk5LWE4NGEtMmIxMmZhODI3OWJjP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -864,7 +850,7 @@ "no-cache" ], "x-ms-request-id": [ - "dcc69907-816b-4938-a157-36a3703ec2a4" + "bbbf6a27-5a18-43f6-b2b8-7013832bf91f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -877,40 +863,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14992" ], "x-ms-correlation-request-id": [ - "d17b248a-71e8-4ae6-925a-69849d3f84cf" + "26bf91b8-8780-4758-9209-c77616dd1064" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035151Z:d17b248a-71e8-4ae6-925a-69849d3f84cf" + "WESTUS2:20180510T183518Z:26bf91b8-8780-4758-9209-c77616dd1064" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:51:51 GMT" + "Thu, 10 May 2018 18:35:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNjQwNT9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczg3Mjg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96937d8b-1319-4676-aac6-8a4cc516efe6" + "1ea47d2d-51b9-4a8f-8179-12f7aa835ec9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/onesdk6405' under resource group 'onesdk1844' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/ps8728' under resource group 'ps9885' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -925,40 +917,46 @@ "gateway" ], "x-ms-request-id": [ - "584cbe75-cd2c-4ea2-a3dd-6668c2481732" + "a22880db-2a3c-43a8-8baf-3ff4821c18a4" ], "x-ms-correlation-request-id": [ - "584cbe75-cd2c-4ea2-a3dd-6668c2481732" + "a22880db-2a3c-43a8-8baf-3ff4821c18a4" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035152Z:584cbe75-cd2c-4ea2-a3dd-6668c2481732" + "WESTUS2:20180510T183519Z:a22880db-2a3c-43a8-8baf-3ff4821c18a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 03:51:51 GMT" + "Thu, 10 May 2018 18:35:18 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNjQwNT9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczg3Mjg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6405\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405\",\r\n \"etag\": \"W/\\\"fd221cc0-4a8f-476d-9ab8-f41adcaedcc7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c3f7353d-8d39-4b88-acaa-6206f0940618\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk2103\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405/ipConfigurations/onesdk2103\",\r\n \"etag\": \"W/\\\"fd221cc0-4a8f-476d-9ab8-f41adcaedcc7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/publicIPAddresses/onesdk5094\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 55000,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8728\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728\",\r\n \"etag\": \"W/\\\"f9741b86-5384-4e0e-afd0-71e08027e065\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1426c179-2936-46b1-ab74-d1a2d18870a9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6903\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728/ipConfigurations/ps6903\",\r\n \"etag\": \"W/\\\"f9741b86-5384-4e0e-afd0-71e08027e065\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/publicIPAddresses/ps161\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 55000,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1615" + "1598" ], "Content-Type": [ "application/json; charset=utf-8" @@ -970,11 +968,14 @@ "no-cache" ], "x-ms-request-id": [ - "02e2df85-c5ea-495c-a4ec-dfb0e341db20" + "4be8f6a5-2d0c-4b92-a2e9-2e9f0c2fc2f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14825" + ], "Cache-Control": [ "no-cache" ], @@ -982,41 +983,44 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" - ], "x-ms-correlation-request-id": [ - "378dde67-32c1-4069-b6f8-5e2c95fb2713" + "8a39c6e5-9b35-4782-b4c5-95a353efb287" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042221Z:378dde67-32c1-4069-b6f8-5e2c95fb2713" + "WESTUS2:20180510T190242Z:8a39c6e5-9b35-4782-b4c5-95a353efb287" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:22:21 GMT" + "Thu, 10 May 2018 19:02:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNjQwNT9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczg3Mjg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44e72d14-e023-43a8-a208-87955880a773" + "7de8892e-c6e5-44f0-aee0-e015e3dc7ce8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6405\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405\",\r\n \"etag\": \"W/\\\"fd221cc0-4a8f-476d-9ab8-f41adcaedcc7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c3f7353d-8d39-4b88-acaa-6206f0940618\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk2103\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405/ipConfigurations/onesdk2103\",\r\n \"etag\": \"W/\\\"fd221cc0-4a8f-476d-9ab8-f41adcaedcc7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/publicIPAddresses/onesdk5094\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 55000,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8728\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728\",\r\n \"etag\": \"W/\\\"f9741b86-5384-4e0e-afd0-71e08027e065\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1426c179-2936-46b1-ab74-d1a2d18870a9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6903\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728/ipConfigurations/ps6903\",\r\n \"etag\": \"W/\\\"f9741b86-5384-4e0e-afd0-71e08027e065\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/publicIPAddresses/ps161\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 55000,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1615" + "1598" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1028,7 +1032,7 @@ "no-cache" ], "x-ms-request-id": [ - "1c8c5cae-44aa-4a41-b9b4-832103e42997" + "e113512a-f2ee-4d39-bf90-21b80d560b97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,40 +1045,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "14824" ], "x-ms-correlation-request-id": [ - "a8d7e351-8bc9-4af8-b48a-11310c9c739f" + "a59277f0-219b-45c4-8b9f-adb8948980de" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042221Z:a8d7e351-8bc9-4af8-b48a-11310c9c739f" + "WESTUS2:20180510T190242Z:a59277f0-219b-45c4-8b9f-adb8948980de" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:22:21 GMT" + "Thu, 10 May 2018 19:02:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNjQwNT9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczg3Mjg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec846972-5904-4168-96ed-b1bed3794623" + "b5c22a5c-cf14-498a-a975-121f4c4539e8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6405\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405\",\r\n \"etag\": \"W/\\\"fd221cc0-4a8f-476d-9ab8-f41adcaedcc7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c3f7353d-8d39-4b88-acaa-6206f0940618\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk2103\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405/ipConfigurations/onesdk2103\",\r\n \"etag\": \"W/\\\"fd221cc0-4a8f-476d-9ab8-f41adcaedcc7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/publicIPAddresses/onesdk5094\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 55000,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8728\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728\",\r\n \"etag\": \"W/\\\"f9741b86-5384-4e0e-afd0-71e08027e065\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1426c179-2936-46b1-ab74-d1a2d18870a9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6903\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728/ipConfigurations/ps6903\",\r\n \"etag\": \"W/\\\"f9741b86-5384-4e0e-afd0-71e08027e065\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/publicIPAddresses/ps161\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 55000,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1615" + "1598" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1086,7 +1096,7 @@ "no-cache" ], "x-ms-request-id": [ - "1f10b259-23e5-4b35-bb9b-3ffd6c4694f3" + "9ed1cbe4-80e2-4799-bf50-917bb9a27d0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1099,46 +1109,52 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" + "14823" ], "x-ms-correlation-request-id": [ - "0f1a3ff7-3311-4dfc-85fa-c4bcd288917d" + "8f6f293a-bff0-4a30-afc1-5744c8cd7ba3" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042222Z:0f1a3ff7-3311-4dfc-85fa-c4bcd288917d" + "WESTUS2:20180510T190242Z:8f6f293a-bff0-4a30-afc1-5744c8cd7ba3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:22:21 GMT" + "Thu, 10 May 2018 19:02:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNjQwNT9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczg3Mjg/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk2103\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfigurations/onesdk2103\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/publicIPAddresses/onesdk5094\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 55000\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/publicIPAddresses/ps161\"\r\n }\r\n },\r\n \"name\": \"ps6903\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfiguration/ps6903\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 55000\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1104" + "1106" ], "x-ms-client-request-id": [ - "c7002698-3741-452a-8854-a5e1feb903e0" + "7da066b0-99de-4cfd-bcb8-ff25850db6b4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6405\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405\",\r\n \"etag\": \"W/\\\"3d223b84-2619-47e0-b231-e4f6c529dd8b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c3f7353d-8d39-4b88-acaa-6206f0940618\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk2103\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405/ipConfigurations/onesdk2103\",\r\n \"etag\": \"W/\\\"3d223b84-2619-47e0-b231-e4f6c529dd8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/publicIPAddresses/onesdk5094\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 55000,\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8728\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728\",\r\n \"etag\": \"W/\\\"bf84cffd-26fe-46ed-94d9-529e888502c5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1426c179-2936-46b1-ab74-d1a2d18870a9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6903\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728/ipConfigurations/ps6903\",\r\n \"etag\": \"W/\\\"bf84cffd-26fe-46ed-94d9-529e888502c5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/publicIPAddresses/ps161\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 55000,\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1694" + "1789" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1153,10 +1169,10 @@ "10" ], "x-ms-request-id": [ - "3cc43983-ec18-4391-8120-286b6865bb99" + "31a5732c-836e-4ab3-98ad-1f05f2761054" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,25 +1188,31 @@ "1197" ], "x-ms-correlation-request-id": [ - "14817b74-4372-423b-a6e2-cfe17260461c" + "97293689-ca07-4d95-ab2d-dafe593e85c1" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035153Z:14817b74-4372-423b-a6e2-cfe17260461c" + "WESTUS2:20180510T183519Z:97293689-ca07-4d95-ab2d-dafe593e85c1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:51:53 GMT" + "Thu, 10 May 2018 18:35:19 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1207,8 +1229,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "23bbfc3e-0a1c-4f1f-9006-64e536bc00bf" + "6669e858-9be9-44b3-947e-42a717381f3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1221,28 +1246,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14988" ], "x-ms-correlation-request-id": [ - "83dc01f6-8e00-4580-b8d3-ddecbc14ba91" + "f9197afb-a51e-4d86-bd95-e5da6bdce8b8" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035224Z:83dc01f6-8e00-4580-b8d3-ddecbc14ba91" + "WESTUS2:20180510T183529Z:f9197afb-a51e-4d86-bd95-e5da6bdce8b8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:52:24 GMT" + "Thu, 10 May 2018 18:35:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1259,8 +1290,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "def25883-a2fa-4cc7-aac2-1c13d6d7412a" + "09f53544-3f7a-4b36-84a1-e98d053f287d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,28 +1307,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14987" ], "x-ms-correlation-request-id": [ - "55400776-cc0a-4b5c-97d0-4d7e514af108" + "5b0442a9-6f56-4b9b-b845-af1544521bb4" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035254Z:55400776-cc0a-4b5c-97d0-4d7e514af108" + "WESTUS2:20180510T183539Z:5b0442a9-6f56-4b9b-b845-af1544521bb4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:52:53 GMT" + "Thu, 10 May 2018 18:35:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1311,12 +1351,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "34ef2b3c-92f6-4fbe-af81-27f16ef35e2b" + "8c15ec28-555c-4248-aae0-ff8c04fe9954" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], "Cache-Control": [ "no-cache" ], @@ -1324,29 +1370,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" - ], "x-ms-correlation-request-id": [ - "d5d10447-7b76-4777-a60c-68ac9320d225" + "02d8178c-d363-4d25-8714-a8ba97679fa6" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035325Z:d5d10447-7b76-4777-a60c-68ac9320d225" + "WESTUS2:20180510T183550Z:02d8178c-d363-4d25-8714-a8ba97679fa6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:53:24 GMT" + "Thu, 10 May 2018 18:35:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1363,8 +1412,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "dc43910a-6ed6-44a1-8502-3a162f893837" + "ea08ee26-31a9-4e6a-97fd-7ef7fba95419" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1377,28 +1429,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14985" ], "x-ms-correlation-request-id": [ - "f3bb4ccd-5686-42bb-ae09-a346d792f47c" + "22b1468e-4e0b-4f20-8eb1-c5a62a49d254" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035355Z:f3bb4ccd-5686-42bb-ae09-a346d792f47c" + "WESTUS2:20180510T183600Z:22b1468e-4e0b-4f20-8eb1-c5a62a49d254" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:53:55 GMT" + "Thu, 10 May 2018 18:35:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1415,8 +1473,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "b72556e2-91cc-41e8-a651-4fad1d298d3d" + "b570e3dd-941e-4e18-aea3-77b785282f20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1429,28 +1490,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14984" ], "x-ms-correlation-request-id": [ - "5aa7e56f-1ecc-4a94-b910-daa85e87a0a6" + "4204c995-314f-4503-b05a-8d45f1f240e1" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035425Z:5aa7e56f-1ecc-4a94-b910-daa85e87a0a6" + "WESTUS2:20180510T183610Z:4204c995-314f-4503-b05a-8d45f1f240e1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:54:25 GMT" + "Thu, 10 May 2018 18:36:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1467,8 +1534,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "2595d3f0-12d0-465e-ad1d-e83ee3e82229" + "e754dbb7-1492-411a-9f08-d6a9e98a714f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1481,28 +1551,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14983" ], "x-ms-correlation-request-id": [ - "9ec77c70-e7f4-4e3d-9e9f-d0e470ed68ae" + "ff140f31-06d2-4d21-8ded-f6bfc560fa70" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035456Z:9ec77c70-e7f4-4e3d-9e9f-d0e470ed68ae" + "WESTUS2:20180510T183620Z:ff140f31-06d2-4d21-8ded-f6bfc560fa70" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:54:55 GMT" + "Thu, 10 May 2018 18:36:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1519,8 +1595,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "6ad602e8-4fcf-4760-819f-f8791afe2f60" + "a9c170cd-680d-4ce8-9007-a3fe31e67ec0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1533,28 +1612,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14982" ], "x-ms-correlation-request-id": [ - "bda44683-56a6-4239-b67a-93825295b456" + "cca14aa3-0436-4d8d-84e8-0d272985abd8" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035526Z:bda44683-56a6-4239-b67a-93825295b456" + "WESTUS2:20180510T183630Z:cca14aa3-0436-4d8d-84e8-0d272985abd8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:55:26 GMT" + "Thu, 10 May 2018 18:36:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1571,8 +1656,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "5a74d572-b3d8-4702-8b9c-d7399f9bef7b" + "f3d23d50-85c1-49b4-9ff8-92295afb8d12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1585,28 +1673,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14981" ], "x-ms-correlation-request-id": [ - "46c5146d-3b03-40be-906e-14f1a57ff91f" + "41a1b95a-3b5f-4c04-8cd7-ca7fdb76133d" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035557Z:46c5146d-3b03-40be-906e-14f1a57ff91f" + "WESTUS2:20180510T183640Z:41a1b95a-3b5f-4c04-8cd7-ca7fdb76133d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:55:56 GMT" + "Thu, 10 May 2018 18:36:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1623,12 +1717,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "38af3903-5d7c-43bb-a531-b61e89d2c1e0" + "85814016-e755-4252-9254-aa6350f07f3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], "Cache-Control": [ "no-cache" ], @@ -1636,29 +1736,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" - ], "x-ms-correlation-request-id": [ - "97260dcd-dffc-45ac-987a-94d0cf9175aa" + "b16453fe-422f-4fbc-9e2a-381eaeab75b7" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035627Z:97260dcd-dffc-45ac-987a-94d0cf9175aa" + "WESTUS2:20180510T183650Z:b16453fe-422f-4fbc-9e2a-381eaeab75b7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:56:27 GMT" + "Thu, 10 May 2018 18:36:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1675,8 +1778,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "b44757c0-ef27-40f9-95ea-672c7925a4f7" + "b3136209-5b39-4ecc-a50b-369b448e0b77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1689,28 +1795,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14979" ], "x-ms-correlation-request-id": [ - "4c03a3f8-d4a8-45e4-8e5e-9d7f688db0d4" + "33ba4def-e7da-4c96-ba9b-23c5267fa50f" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035658Z:4c03a3f8-d4a8-45e4-8e5e-9d7f688db0d4" + "WESTUS2:20180510T183700Z:33ba4def-e7da-4c96-ba9b-23c5267fa50f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:56:57 GMT" + "Thu, 10 May 2018 18:36:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1727,8 +1839,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "76ecb50a-8b30-4fa2-9b8e-02ecc92e8435" + "8d7e4f95-38a7-4c4a-8a03-a93fe0fdcfd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1741,28 +1856,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14978" ], "x-ms-correlation-request-id": [ - "229ac832-e7e2-43f5-8217-e9cece3e650b" + "c1337fd6-fe51-404a-8327-8adea3a9f3a9" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035728Z:229ac832-e7e2-43f5-8217-e9cece3e650b" + "WESTUS2:20180510T183710Z:c1337fd6-fe51-404a-8327-8adea3a9f3a9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:57:28 GMT" + "Thu, 10 May 2018 18:37:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1779,8 +1900,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "803f2b94-3a3c-4c32-9a1e-e2834e3871d8" + "6795de3f-afb8-4e11-8d25-0cd577d871e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1793,28 +1917,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14977" ], "x-ms-correlation-request-id": [ - "d870e4cb-5e6d-40cd-9020-08f58f032892" + "65ecb271-6c2f-4fe4-872e-9393d02f5f92" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035759Z:d870e4cb-5e6d-40cd-9020-08f58f032892" + "WESTUS2:20180510T183720Z:65ecb271-6c2f-4fe4-872e-9393d02f5f92" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:57:58 GMT" + "Thu, 10 May 2018 18:37:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1831,8 +1961,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "f54dad69-ba41-4793-b4c6-f7e9011df18b" + "f3f91be5-ea8d-42bc-af4d-37aaf5b26c69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1845,28 +1978,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14976" ], "x-ms-correlation-request-id": [ - "fd590f62-0926-447c-a71f-b831c068d983" + "6fb2a333-ca5b-4b1d-8846-0b35774bc92a" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035829Z:fd590f62-0926-447c-a71f-b831c068d983" + "WESTUS2:20180510T183730Z:6fb2a333-ca5b-4b1d-8846-0b35774bc92a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:58:29 GMT" + "Thu, 10 May 2018 18:37:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1883,8 +2022,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "b6baf6b3-2e82-4877-8694-7f3efc4ee043" + "f40f4e32-dad6-4fff-80dd-16a1849eff40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1897,28 +2039,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14975" ], "x-ms-correlation-request-id": [ - "c584aff7-f327-40fa-8390-ae5d57884185" + "5358fd06-458e-41f0-8915-c804d408027f" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035859Z:c584aff7-f327-40fa-8390-ae5d57884185" + "WESTUS2:20180510T183740Z:5358fd06-458e-41f0-8915-c804d408027f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:58:59 GMT" + "Thu, 10 May 2018 18:37:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1935,12 +2083,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "24db5d14-3267-41c5-8ca9-4a82a2fda045" + "fae7a068-4ec0-41de-a214-04f4722178ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], "Cache-Control": [ "no-cache" ], @@ -1948,29 +2102,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" - ], "x-ms-correlation-request-id": [ - "edd91f2f-248b-4122-badc-a629e015fd06" + "4df44e46-b3eb-48ed-9466-0b106e201d15" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T035930Z:edd91f2f-248b-4122-badc-a629e015fd06" + "WESTUS2:20180510T183750Z:4df44e46-b3eb-48ed-9466-0b106e201d15" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 03:59:29 GMT" + "Thu, 10 May 2018 18:37:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1987,8 +2144,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "4d95dac6-c666-4ffd-a16d-b38d1fbf70f7" + "1f3a33ea-c37a-4960-a7fe-fc940b7be171" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2001,28 +2161,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14973" ], "x-ms-correlation-request-id": [ - "4f4986f7-bb0e-4607-b6a5-2e7e947fa6fa" + "03d9e4df-3ecb-434f-8719-9296f7f0dd30" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040000Z:4f4986f7-bb0e-4607-b6a5-2e7e947fa6fa" + "WESTUS2:20180510T183801Z:03d9e4df-3ecb-434f-8719-9296f7f0dd30" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:00:00 GMT" + "Thu, 10 May 2018 18:38:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2039,8 +2205,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "4144714a-6d39-4d6a-85f9-888f777ba6af" + "49ba2429-87bb-4d83-92b3-84193614b055" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2053,28 +2222,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14972" ], "x-ms-correlation-request-id": [ - "b0b93530-14bd-4b18-b775-50aa96a25604" + "367ef6b7-d9bb-417f-aeb0-7fcb552faf0e" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040031Z:b0b93530-14bd-4b18-b775-50aa96a25604" + "WESTUS2:20180510T183811Z:367ef6b7-d9bb-417f-aeb0-7fcb552faf0e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:00:30 GMT" + "Thu, 10 May 2018 18:38:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2091,8 +2266,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "88723337-c90a-400a-acac-a2a410433fa0" + "c1bd6668-a9d1-4909-a739-dc2c97439d3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2105,28 +2283,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14971" ], "x-ms-correlation-request-id": [ - "1996f6b3-28f1-4baf-827f-ccd5617d41dc" + "22482a37-b8b9-4ffd-a21c-d54b3e48ad22" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040101Z:1996f6b3-28f1-4baf-827f-ccd5617d41dc" + "WESTUS2:20180510T183821Z:22482a37-b8b9-4ffd-a21c-d54b3e48ad22" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:01:01 GMT" + "Thu, 10 May 2018 18:38:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2143,8 +2327,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "d86ae901-95f9-478b-8433-3543f295077f" + "71541ffc-0a27-4737-8d2e-75f3c214403a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2157,28 +2344,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14970" ], "x-ms-correlation-request-id": [ - "7ccfce45-d335-4795-8771-f90299b4ff21" + "826821c1-6b68-4842-85f9-1b1eec5ac45c" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040132Z:7ccfce45-d335-4795-8771-f90299b4ff21" + "WESTUS2:20180510T183831Z:826821c1-6b68-4842-85f9-1b1eec5ac45c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:01:31 GMT" + "Thu, 10 May 2018 18:38:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2195,8 +2388,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "9b8a078f-52f5-4ab0-854d-c463e917e27f" + "43d8aac3-1793-4dac-b311-29d66cc2dac1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2209,28 +2405,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14969" ], "x-ms-correlation-request-id": [ - "4d5ea50f-62f8-4ae0-9600-a26bb9271102" + "680d0618-f2fb-4405-a187-804194391f87" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040202Z:4d5ea50f-62f8-4ae0-9600-a26bb9271102" + "WESTUS2:20180510T183841Z:680d0618-f2fb-4405-a187-804194391f87" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:02:02 GMT" + "Thu, 10 May 2018 18:38:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2247,12 +2449,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "7c258be4-f500-4649-81e7-62ac8efab2e4" + "e0c8bea8-463b-4c10-8694-9781b992f37e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], "Cache-Control": [ "no-cache" ], @@ -2260,29 +2468,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" - ], "x-ms-correlation-request-id": [ - "18096707-8da7-4809-9614-5a842f4725ef" + "96654fc8-9670-4e3a-971f-91fe60c4ff06" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040233Z:18096707-8da7-4809-9614-5a842f4725ef" + "WESTUS2:20180510T183851Z:96654fc8-9670-4e3a-971f-91fe60c4ff06" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:02:32 GMT" + "Thu, 10 May 2018 18:38:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2299,8 +2510,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "130033d2-f384-4dc3-b34a-977a1e596812" + "c7bf8eea-ff60-4801-9b38-79af0bc69c7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2313,28 +2527,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14967" ], "x-ms-correlation-request-id": [ - "f92e140a-7971-4bb0-81ed-86bbe02e0877" + "29bef196-d15c-4bfe-a7b7-ae998a95be93" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040303Z:f92e140a-7971-4bb0-81ed-86bbe02e0877" + "WESTUS2:20180510T183901Z:29bef196-d15c-4bfe-a7b7-ae998a95be93" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:03:02 GMT" + "Thu, 10 May 2018 18:39:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2351,8 +2571,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "1a060494-ccf7-4b84-ac22-381832e338f1" + "eaeba170-7bf9-4b09-a060-55d7be7b7543" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2365,28 +2588,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14966" ], "x-ms-correlation-request-id": [ - "d2f5d44c-f701-4a67-8c51-3a34479e0efc" + "5ba0f824-98fe-4344-b7a2-81b4f6419e1c" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040334Z:d2f5d44c-f701-4a67-8c51-3a34479e0efc" + "WESTUS2:20180510T183911Z:5ba0f824-98fe-4344-b7a2-81b4f6419e1c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:03:33 GMT" + "Thu, 10 May 2018 18:39:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2403,8 +2632,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "3eb88ce6-5c29-4ba6-af57-374b1c222130" + "dfb82fa1-e441-4022-a0f9-b322c58456aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2417,28 +2649,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14965" ], "x-ms-correlation-request-id": [ - "c6b032e7-0fe5-4ae2-9b59-ba2368e20f58" + "3c95bc28-b14d-4639-bccf-017f5bda393e" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040404Z:c6b032e7-0fe5-4ae2-9b59-ba2368e20f58" + "WESTUS2:20180510T183921Z:3c95bc28-b14d-4639-bccf-017f5bda393e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:04:04 GMT" + "Thu, 10 May 2018 18:39:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2455,8 +2693,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "0a4b8af9-6425-4045-beeb-b41a7e6b122b" + "ab9cf4cd-20d2-4efe-89b9-1bcc49541f33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2469,28 +2710,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14964" ], "x-ms-correlation-request-id": [ - "66b8ce64-ebce-4123-b572-b2044e77181c" + "5a1ba6b8-0fef-4874-90f9-beff99068d04" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040435Z:66b8ce64-ebce-4123-b572-b2044e77181c" + "WESTUS2:20180510T183931Z:5a1ba6b8-0fef-4874-90f9-beff99068d04" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:04:34 GMT" + "Thu, 10 May 2018 18:39:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2507,8 +2754,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "55e88814-3d63-4676-b450-1b304c910625" + "6899516c-7df2-45f4-a781-7173f6f72759" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2521,28 +2771,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14963" ], "x-ms-correlation-request-id": [ - "8eceaf83-d246-4a5e-b294-1441c956debf" + "01d6f0f1-c8e4-4aee-90a7-ec9d1cfdd5c7" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040505Z:8eceaf83-d246-4a5e-b294-1441c956debf" + "WESTUS2:20180510T183941Z:01d6f0f1-c8e4-4aee-90a7-ec9d1cfdd5c7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:05:04 GMT" + "Thu, 10 May 2018 18:39:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2559,12 +2815,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "d51393dd-e1b4-4b63-9fc6-e34610535fa9" + "c7c83f78-6143-4fc5-93ec-4f817f659ff7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], "Cache-Control": [ "no-cache" ], @@ -2572,29 +2834,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" - ], "x-ms-correlation-request-id": [ - "88040296-1f28-4a63-82b1-ba464f09005a" + "37f5ec77-0d6a-49f5-86f8-5a4dfbdcab84" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040535Z:88040296-1f28-4a63-82b1-ba464f09005a" + "WESTUS2:20180510T183951Z:37f5ec77-0d6a-49f5-86f8-5a4dfbdcab84" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:05:35 GMT" + "Thu, 10 May 2018 18:39:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2611,8 +2876,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "4ac092aa-d3e3-455f-9698-9378d74d53a0" + "b7fff312-d750-444c-b879-e63c8740adc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2625,28 +2893,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14961" ], "x-ms-correlation-request-id": [ - "e3f67eaa-a3af-4a99-a1c9-d202d81b541b" + "9d2b7545-e55c-4058-b152-bb820d7a399a" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040606Z:e3f67eaa-a3af-4a99-a1c9-d202d81b541b" + "WESTUS2:20180510T184001Z:9d2b7545-e55c-4058-b152-bb820d7a399a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:06:06 GMT" + "Thu, 10 May 2018 18:40:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2663,8 +2937,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "b01c94e4-8950-4d49-97f7-e53ad976013d" + "9282dad9-541e-4e78-8860-1df4af2dc46f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2677,28 +2954,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14960" ], "x-ms-correlation-request-id": [ - "fbede9fb-27bd-49ba-be10-4f0783fff024" + "c051ef81-37a2-4cb0-b7c3-c22ae3677265" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040636Z:fbede9fb-27bd-49ba-be10-4f0783fff024" + "WESTUS2:20180510T184012Z:c051ef81-37a2-4cb0-b7c3-c22ae3677265" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:06:36 GMT" + "Thu, 10 May 2018 18:40:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2715,8 +2998,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "772a8438-cce6-4c65-b709-6dcfea3e6e1f" + "5b32fb72-93f0-4c6b-9f39-f2d19da19d47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2729,28 +3015,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14959" ], "x-ms-correlation-request-id": [ - "3f2b8149-e725-4aae-b4f9-38097f48e961" + "d1da14a0-3a34-406c-9e16-036c7edb7652" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040707Z:3f2b8149-e725-4aae-b4f9-38097f48e961" + "WESTUS2:20180510T184022Z:d1da14a0-3a34-406c-9e16-036c7edb7652" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:07:07 GMT" + "Thu, 10 May 2018 18:40:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2767,8 +3059,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "e012431a-37fe-4677-8e1d-00e6a337fd81" + "433d7486-9186-4cd9-ad28-6e2d184f8a8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2781,28 +3076,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14958" ], "x-ms-correlation-request-id": [ - "10057fb0-28d4-486d-b52c-9f88e14c17fe" + "d32e058f-6efc-4135-8207-8aec555dc97b" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040737Z:10057fb0-28d4-486d-b52c-9f88e14c17fe" + "WESTUS2:20180510T184032Z:d32e058f-6efc-4135-8207-8aec555dc97b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:07:37 GMT" + "Thu, 10 May 2018 18:40:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2819,8 +3120,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "61386723-e168-4f2d-ae77-0e79163b4122" + "dfc3e5ba-1f87-4123-9187-28ef341baa4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2833,28 +3137,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14957" ], "x-ms-correlation-request-id": [ - "a9dbe5f7-99e0-4f47-93d6-2d63efb17161" + "6baccbe8-47d8-4640-997d-68bcca62cd70" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040808Z:a9dbe5f7-99e0-4f47-93d6-2d63efb17161" + "WESTUS2:20180510T184042Z:6baccbe8-47d8-4640-997d-68bcca62cd70" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:08:08 GMT" + "Thu, 10 May 2018 18:40:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2871,12 +3181,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "9da08f9c-d600-4fff-b33c-0c2869b5e5fa" + "3414010e-283e-4d9f-91ed-f7508fca4d01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], "Cache-Control": [ "no-cache" ], @@ -2884,29 +3200,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" - ], "x-ms-correlation-request-id": [ - "37aa44b5-a6d1-4cc3-b443-405e22ebf775" + "4c285e00-6fdb-4c12-9fdc-35c43558dee4" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040838Z:37aa44b5-a6d1-4cc3-b443-405e22ebf775" + "WESTUS2:20180510T184052Z:4c285e00-6fdb-4c12-9fdc-35c43558dee4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:08:38 GMT" + "Thu, 10 May 2018 18:40:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2923,8 +3242,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "eff7a41a-3922-45cd-9f62-141b98279a1c" + "a9fc10f3-7899-4f15-999e-52dd94ced78c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2937,28 +3259,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14955" ], "x-ms-correlation-request-id": [ - "6793c477-4c38-4ce3-9094-cefac3da713b" + "ec2bdabc-cd62-4cc7-84ea-f95d4f3da762" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040909Z:6793c477-4c38-4ce3-9094-cefac3da713b" + "WESTUS2:20180510T184102Z:ec2bdabc-cd62-4cc7-84ea-f95d4f3da762" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:09:08 GMT" + "Thu, 10 May 2018 18:41:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2975,8 +3303,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "86dc37bd-26f5-42df-b5be-3aa4a3a23f47" + "d4c156ed-c008-459e-aebb-0af309a990c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2989,28 +3320,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14954" ], "x-ms-correlation-request-id": [ - "23119efa-be71-4af4-99da-b4bfd50b1cf8" + "cf865b45-34bb-4da1-9116-2edb1cce82e6" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T040939Z:23119efa-be71-4af4-99da-b4bfd50b1cf8" + "WESTUS2:20180510T184112Z:cf865b45-34bb-4da1-9116-2edb1cce82e6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:09:39 GMT" + "Thu, 10 May 2018 18:41:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3027,8 +3364,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "03d34a2a-517d-4426-9e02-e6761d0b73e1" + "8c028cc3-6682-4ea2-9928-60e55693a687" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3041,28 +3381,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14953" ], "x-ms-correlation-request-id": [ - "93fb19b8-d07c-4950-a653-579bc14e9161" + "b9d5f56d-8273-4d91-90c4-3a1d40714fad" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041010Z:93fb19b8-d07c-4950-a653-579bc14e9161" + "WESTUS2:20180510T184122Z:b9d5f56d-8273-4d91-90c4-3a1d40714fad" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:10:10 GMT" + "Thu, 10 May 2018 18:41:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3079,8 +3425,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "bc173c31-6d86-4048-90f8-c2095fdab877" + "5fad1318-8ee4-4070-ba46-078f2c1931c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3093,28 +3442,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14952" ], "x-ms-correlation-request-id": [ - "3b3982ba-956a-4780-9bce-3496761f918f" + "a6fa2252-8c2f-4441-95ea-d4c2e4cd2417" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041040Z:3b3982ba-956a-4780-9bce-3496761f918f" + "WESTUS2:20180510T184132Z:a6fa2252-8c2f-4441-95ea-d4c2e4cd2417" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:10:40 GMT" + "Thu, 10 May 2018 18:41:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3131,8 +3486,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "621bd404-8003-4cf7-b1ca-0bfbbd72db06" + "935f93d7-cf0b-414c-a691-8882f0daf31c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3145,28 +3503,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14951" ], "x-ms-correlation-request-id": [ - "61df6a69-2f4b-4d69-8cca-0edd95264e07" + "8ad4fccb-88f3-46eb-8c17-ab3c4b6f564c" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041111Z:61df6a69-2f4b-4d69-8cca-0edd95264e07" + "WESTUS2:20180510T184142Z:8ad4fccb-88f3-46eb-8c17-ab3c4b6f564c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:11:11 GMT" + "Thu, 10 May 2018 18:41:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3183,12 +3547,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "dd844c42-c658-488f-a201-baf4e70020cc" + "30609d2f-eafd-4bbc-878a-b8ab5a6a4677" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], "Cache-Control": [ "no-cache" ], @@ -3196,29 +3566,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" - ], "x-ms-correlation-request-id": [ - "d4dc45f9-9b11-40b5-89b7-c01af14574ee" + "59d7cb3a-25e6-4951-84c3-242c95b89806" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041141Z:d4dc45f9-9b11-40b5-89b7-c01af14574ee" + "WESTUS2:20180510T184152Z:59d7cb3a-25e6-4951-84c3-242c95b89806" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:11:40 GMT" + "Thu, 10 May 2018 18:41:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3235,8 +3608,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "e5225b75-57d2-42fb-b518-f7e93604684d" + "cd92a50f-1c31-4abe-bf52-8ee9d01ebc56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3249,28 +3625,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14949" ], "x-ms-correlation-request-id": [ - "dbbd1d01-f332-4a2a-9ce1-2d1a07070b40" + "6a05ce54-cb81-4e41-88d9-e0e9afb3b5f5" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041212Z:dbbd1d01-f332-4a2a-9ce1-2d1a07070b40" + "WESTUS2:20180510T184202Z:6a05ce54-cb81-4e41-88d9-e0e9afb3b5f5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:12:11 GMT" + "Thu, 10 May 2018 18:42:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3287,8 +3669,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "dd3965ea-30bb-4e13-9b87-a0004fee4b0d" + "c907c4a8-ec88-40a3-979e-62222f542328" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3301,28 +3686,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14948" ], "x-ms-correlation-request-id": [ - "6a85e767-743f-45ad-b1f0-b0577b564629" + "a558f627-e706-42c0-8e90-51c42a798aa0" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041242Z:6a85e767-743f-45ad-b1f0-b0577b564629" + "WESTUS2:20180510T184212Z:a558f627-e706-42c0-8e90-51c42a798aa0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:12:42 GMT" + "Thu, 10 May 2018 18:42:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3339,8 +3730,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "ec79ccb3-0a48-4183-a935-92cb6ec4aed3" + "3f77cc68-57ce-48d5-83c3-8db528fce27d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3353,28 +3747,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14947" ], "x-ms-correlation-request-id": [ - "ad95ed2c-2cb8-4f6b-9c49-b1cbb13f612d" + "c9276a1a-eb67-42eb-8673-02b59f32e20b" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041313Z:ad95ed2c-2cb8-4f6b-9c49-b1cbb13f612d" + "WESTUS2:20180510T184223Z:c9276a1a-eb67-42eb-8673-02b59f32e20b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:13:12 GMT" + "Thu, 10 May 2018 18:42:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3391,8 +3791,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "6d0de672-2dae-488a-8f80-182459b17d57" + "43cb0d18-2b7b-48d4-b4f1-da37422b05aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3405,28 +3808,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14946" ], "x-ms-correlation-request-id": [ - "c3c80e85-7179-47e8-813b-8f8ab3846e04" + "cc77f73c-74e1-4471-880d-6d2658c8f018" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041343Z:c3c80e85-7179-47e8-813b-8f8ab3846e04" + "WESTUS2:20180510T184233Z:cc77f73c-74e1-4471-880d-6d2658c8f018" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:13:42 GMT" + "Thu, 10 May 2018 18:42:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3443,8 +3852,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "0c6dfe9a-ed07-468f-8be6-f4bf9dbaeddf" + "92053dd3-34aa-4759-8c42-42bf48706fdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3457,28 +3869,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14945" ], "x-ms-correlation-request-id": [ - "24d9bf2a-76b8-4a50-a849-85b3d068fd38" + "b9355dde-4fdb-4bed-a413-057f61356249" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041414Z:24d9bf2a-76b8-4a50-a849-85b3d068fd38" + "WESTUS2:20180510T184243Z:b9355dde-4fdb-4bed-a413-057f61356249" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:14:13 GMT" + "Thu, 10 May 2018 18:42:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3495,12 +3913,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "40d1d845-0460-40c9-b062-321dc12a7d73" + "689ecff6-13a7-48db-b084-fdff9d3eb06b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], "Cache-Control": [ "no-cache" ], @@ -3508,29 +3932,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" - ], "x-ms-correlation-request-id": [ - "abe9c41c-64cb-4ee5-9118-7b9041830c78" + "6c281590-814b-4649-9e4d-c9959e720f72" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041444Z:abe9c41c-64cb-4ee5-9118-7b9041830c78" + "WESTUS2:20180510T184253Z:6c281590-814b-4649-9e4d-c9959e720f72" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:14:43 GMT" + "Thu, 10 May 2018 18:42:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3547,8 +3974,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "6a608f09-ad64-49f1-9c6d-c5cbc53c8dca" + "33d7adcf-5ca9-48a9-a39c-91202e644ec4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3561,28 +3991,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14943" ], "x-ms-correlation-request-id": [ - "3020a09d-d69a-49be-a89e-269455b0babc" + "8d391275-eb52-45a7-a557-0ee6074da96d" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041515Z:3020a09d-d69a-49be-a89e-269455b0babc" + "WESTUS2:20180510T184303Z:8d391275-eb52-45a7-a557-0ee6074da96d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:15:14 GMT" + "Thu, 10 May 2018 18:43:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3599,8 +4035,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "79519ffd-d4f8-471a-8962-5cc35d2d095a" + "682328ba-b675-4e3a-ae25-31d8a097e32f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3613,28 +4052,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14942" ], "x-ms-correlation-request-id": [ - "6376b92a-af04-4a85-84cb-e2785f6c49d2" + "b250f3a3-949b-446b-9675-fc1ee0185e75" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041545Z:6376b92a-af04-4a85-84cb-e2785f6c49d2" + "WESTUS2:20180510T184313Z:b250f3a3-949b-446b-9675-fc1ee0185e75" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:15:44 GMT" + "Thu, 10 May 2018 18:43:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3651,8 +4096,11 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "af4f5dd3-6817-47f7-8e16-04f5c85d9e1a" + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2f1fd5c6-c940-4fb2-94e4-61d1907fdea7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3665,28 +4113,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14941" ], "x-ms-correlation-request-id": [ - "0d062afb-2c1f-45e6-9676-fc6fdf75af23" + "94368104-50e3-4b5a-ac38-6749d9b00bf6" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041615Z:0d062afb-2c1f-45e6-9676-fc6fdf75af23" + "WESTUS2:20180510T184323Z:94368104-50e3-4b5a-ac38-6749d9b00bf6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:16:15 GMT" + "Thu, 10 May 2018 18:43:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3703,8 +4157,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "0d3e59eb-e8b3-48ba-8e14-ed5b9d6c7d5f" + "a58b5ebf-ea37-4c97-a6af-b5ce833b4a97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3717,28 +4174,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14940" ], "x-ms-correlation-request-id": [ - "46b4dfaa-2f35-4908-a81f-8112d041b69d" + "51a6af58-88b8-4cdf-8f56-20966cdf057a" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041646Z:46b4dfaa-2f35-4908-a81f-8112d041b69d" + "WESTUS2:20180510T184333Z:51a6af58-88b8-4cdf-8f56-20966cdf057a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:16:45 GMT" + "Thu, 10 May 2018 18:43:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3755,8 +4218,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "406971b4-ad85-41bd-9fce-d78fe0cadf6b" + "8fe28f49-f94a-4465-afcd-804e2c33c733" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3769,28 +4235,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14939" ], "x-ms-correlation-request-id": [ - "c392c6df-4f6e-4af9-aee4-64a0c35f19fb" + "ebbc8929-6e97-4d6b-b096-ab61c2c85e42" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041717Z:c392c6df-4f6e-4af9-aee4-64a0c35f19fb" + "WESTUS2:20180510T184343Z:ebbc8929-6e97-4d6b-b096-ab61c2c85e42" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:17:16 GMT" + "Thu, 10 May 2018 18:43:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3807,12 +4279,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "1b7f5966-e927-4016-b1bb-2b15e468a028" + "5679e52e-d952-433b-bb4c-bf1e46998a7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], "Cache-Control": [ "no-cache" ], @@ -3820,29 +4298,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" - ], "x-ms-correlation-request-id": [ - "8adb56e3-0d5a-48bf-8c0d-b542d422b836" + "a3da65f2-1924-423f-8a3f-f97252925359" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041747Z:8adb56e3-0d5a-48bf-8c0d-b542d422b836" + "WESTUS2:20180510T184353Z:a3da65f2-1924-423f-8a3f-f97252925359" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:17:46 GMT" + "Thu, 10 May 2018 18:43:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3859,8 +4340,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "71049c53-5fd1-4df9-8836-1dcef90ed866" + "e11156e3-520a-4508-b258-25e2c0af4927" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3873,28 +4357,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14937" ], "x-ms-correlation-request-id": [ - "8f6e198a-1595-4f03-b542-5fb8b58745df" + "042b9555-b272-4302-98ae-b3de8ed3cb22" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041818Z:8f6e198a-1595-4f03-b542-5fb8b58745df" + "WESTUS2:20180510T184403Z:042b9555-b272-4302-98ae-b3de8ed3cb22" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:18:17 GMT" + "Thu, 10 May 2018 18:44:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3911,8 +4401,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "9e23b7c7-03ca-48aa-9084-9c4ec2f4f712" + "bb4997c0-326e-48a4-9db9-e9acac8dd038" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3925,28 +4418,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14936" ], "x-ms-correlation-request-id": [ - "25318a54-f3cf-4cb8-84d2-3b5b892aaffd" + "a6818b8b-1305-4d63-9678-14a272515b74" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041848Z:25318a54-f3cf-4cb8-84d2-3b5b892aaffd" + "WESTUS2:20180510T184413Z:a6818b8b-1305-4d63-9678-14a272515b74" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:18:47 GMT" + "Thu, 10 May 2018 18:44:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3963,8 +4462,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "8cee6fcd-41f5-41c6-bc02-be817464a005" + "5a17f565-e0c5-41dc-8765-cff43f41b597" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3977,28 +4479,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14935" ], "x-ms-correlation-request-id": [ - "d6343681-4fd2-4923-9c45-ad1babd64f95" + "91686e01-bdbe-4945-af2a-6bd2342b63b8" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041918Z:d6343681-4fd2-4923-9c45-ad1babd64f95" + "WESTUS2:20180510T184423Z:91686e01-bdbe-4945-af2a-6bd2342b63b8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:19:18 GMT" + "Thu, 10 May 2018 18:44:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4015,8 +4523,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "34f9eb13-1dcb-48ac-a3b1-ca78a54ac421" + "d8858cdc-f829-4302-a70b-e66728b71832" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4029,28 +4540,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14934" ], "x-ms-correlation-request-id": [ - "ae4abb59-1d1e-42f0-bcb3-c47d2088b7be" + "68e45899-dff5-4a9d-9175-b05e3a353782" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T041949Z:ae4abb59-1d1e-42f0-bcb3-c47d2088b7be" + "WESTUS2:20180510T184433Z:68e45899-dff5-4a9d-9175-b05e3a353782" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:19:48 GMT" + "Thu, 10 May 2018 18:44:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4067,8 +4584,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "cb029523-e1bd-4231-bf01-70c2a3d8cf64" + "ccf093f9-5ad5-4e7e-a1b3-2becb65c9a82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4081,28 +4601,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14933" ], "x-ms-correlation-request-id": [ - "cf0616ca-8c68-4a54-bf45-00d68c8062c2" + "b240f798-68ff-49a2-85d7-3d07137f3b2b" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042019Z:cf0616ca-8c68-4a54-bf45-00d68c8062c2" + "WESTUS2:20180510T184444Z:b240f798-68ff-49a2-85d7-3d07137f3b2b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:20:18 GMT" + "Thu, 10 May 2018 18:44:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4119,12 +4645,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "a8caa833-91dc-4542-bd38-5f208e1d4093" + "3b469aa0-3e31-4bfd-bce3-42f5c2b372ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], "Cache-Control": [ "no-cache" ], @@ -4132,29 +4664,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" - ], "x-ms-correlation-request-id": [ - "529105c9-7e14-4711-8ef7-cf953273550f" + "6f238912-7743-4c8c-a8ea-abb6b9238244" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042050Z:529105c9-7e14-4711-8ef7-cf953273550f" + "WESTUS2:20180510T184454Z:6f238912-7743-4c8c-a8ea-abb6b9238244" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:20:49 GMT" + "Thu, 10 May 2018 18:44:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4171,8 +4706,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "4a062a59-3a6e-41bb-8da2-ade642d881ce" + "249ee208-d361-49a7-a596-003f4c26e991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4185,28 +4723,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "14931" ], "x-ms-correlation-request-id": [ - "44d65006-60aa-44dc-93d6-c698fddf3666" + "28caf77f-403c-4874-b875-cdb8fdf16253" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042120Z:44d65006-60aa-44dc-93d6-c698fddf3666" + "WESTUS2:20180510T184504Z:28caf77f-403c-4874-b875-cdb8fdf16253" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:21:20 GMT" + "Thu, 10 May 2018 18:45:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4223,8 +4767,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "9c545b81-d69e-48a3-abe8-cc2e21a736f6" + "c5fe2c7c-fe2c-44fb-969c-6a349a21774a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4237,34 +4784,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "14930" ], "x-ms-correlation-request-id": [ - "53ea1536-6fea-44bf-bcc3-bcf47c965db5" + "c8d92de4-f2d0-4ed7-aa81-b846ee25730d" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042151Z:53ea1536-6fea-44bf-bcc3-bcf47c965db5" + "WESTUS2:20180510T184514Z:c8d92de4-f2d0-4ed7-aa81-b846ee25730d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:21:50 GMT" + "Thu, 10 May 2018 18:45:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/3cc43983-ec18-4391-8120-286b6865bb99?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2NjNDM5ODMtZWMxOC00MzkxLTgxMjAtMjg2YjY4NjViYjk5P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4275,8 +4828,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "294143cc-c8f9-4f5c-af8d-e6f4e7d5318a" + "e8ad88e6-6776-4223-b062-43c777d594c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4289,40 +4845,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "14929" ], "x-ms-correlation-request-id": [ - "8dfdd6e4-3199-4728-b9fa-39a39ed47ff4" + "999d80ee-02a0-428d-9309-8573622be917" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042221Z:8dfdd6e4-3199-4728-b9fa-39a39ed47ff4" + "WESTUS2:20180510T184524Z:999d80ee-02a0-428d-9309-8573622be917" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:22:21 GMT" + "Thu, 10 May 2018 18:45:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/localNetworkGateways/onesdk138?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazEzOD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "343dfbc8-4f38-42f4-8212-5f2308b33a44" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/localNetworkGateways/onesdk138' under resource group 'onesdk1844' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "162" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4333,17 +4889,11 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "00da4bda-dd20-401a-adf1-4ace77df02e6" - ], - "x-ms-correlation-request-id": [ - "00da4bda-dd20-401a-adf1-4ace77df02e6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160310T042222Z:00da4bda-dd20-401a-adf1-4ace77df02e6" + "9c7b3cf0-e2d4-49f9-a831-dcd92fdd217b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4351,26 +4901,45 @@ "Cache-Control": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "e35f3c0b-fa9c-40e8-a181-f3d1eed4f433" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T184534Z:e35f3c0b-fa9c-40e8-a181-f3d1eed4f433" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Thu, 10 Mar 2016 04:22:21 GMT" + "Thu, 10 May 2018 18:45:33 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/localNetworkGateways/onesdk138?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazEzOD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk138\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/localNetworkGateways/onesdk138\",\r\n \"etag\": \"W/\\\"62ca7166-c311-47aa-bcb1-d02f3429cb81\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6c28563a-a49f-4367-9c26-623d55fe174c\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"192.168.1.1\",\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "698" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4381,8 +4950,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "8d566f8a-1192-4995-8268-57610f32d54e" + "2d1c3233-d065-42ea-84c2-e59ae98b890c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4390,48 +4962,45 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"62ca7166-c311-47aa-bcb1-d02f3429cb81\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14898" + "14927" ], "x-ms-correlation-request-id": [ - "467c14bd-2a5d-4b7f-8459-0d43f7a77a01" + "dc78bc1c-7107-4627-894a-03b19b509bb8" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042254Z:467c14bd-2a5d-4b7f-8459-0d43f7a77a01" + "WESTUS2:20180510T184544Z:dc78bc1c-7107-4627-894a-03b19b509bb8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:22:54 GMT" + "Thu, 10 May 2018 18:45:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/localNetworkGateways/onesdk138?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazEzOD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "87bb63f1-df78-4b6c-bafe-d61d393e05f3" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk138\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/localNetworkGateways/onesdk138\",\r\n \"etag\": \"W/\\\"62ca7166-c311-47aa-bcb1-d02f3429cb81\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6c28563a-a49f-4367-9c26-623d55fe174c\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"192.168.1.1\",\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "698" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4442,57 +5011,57 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "6e296ae1-e76b-4a40-bb49-d5db8896f0a3" + "f1e9257b-2daf-4ad2-b9ae-14fc51d7cdd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"62ca7166-c311-47aa-bcb1-d02f3429cb81\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" - ], "x-ms-correlation-request-id": [ - "727cc539-7aa4-4935-85df-8f1a79c00e8b" + "8bc78141-948f-4fd6-a67f-e41b35704d91" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042254Z:727cc539-7aa4-4935-85df-8f1a79c00e8b" + "WESTUS2:20180510T184554Z:8bc78141-948f-4fd6-a67f-e41b35704d91" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:22:54 GMT" + "Thu, 10 May 2018 18:45:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/localNetworkGateways/onesdk138?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazEzOD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f48d24dd-4719-4c86-9760-b12d1a1f3cea" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk138\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/localNetworkGateways/onesdk138\",\r\n \"etag\": \"W/\\\"62ca7166-c311-47aa-bcb1-d02f3429cb81\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6c28563a-a49f-4367-9c26-623d55fe174c\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"192.168.1.1\",\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "698" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4503,8 +5072,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "4c4fe9cf-ac17-49c5-84bf-0d04ec752981" + "587bcfff-758f-4d49-bdcf-4be63c4da57c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4512,54 +5084,45 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"62ca7166-c311-47aa-bcb1-d02f3429cb81\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" + "14925" ], "x-ms-correlation-request-id": [ - "b876564f-27e7-46f0-a49f-3a457b7190cc" + "ec18eb6a-1618-4e45-8c68-f86c37965163" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042255Z:b876564f-27e7-46f0-a49f-3a457b7190cc" + "WESTUS2:20180510T184604Z:ec18eb6a-1618-4e45-8c68-f86c37965163" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:22:54 GMT" + "Thu, 10 May 2018 18:46:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/localNetworkGateways/onesdk138?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazEzOD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"192.168.1.1\",\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "316" - ], - "x-ms-client-request-id": [ - "0e7b6993-31ea-4a8b-b595-d7585c6e5655" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk138\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/localNetworkGateways/onesdk138\",\r\n \"etag\": \"W/\\\"22124c46-9ae5-4929-ba83-df16069348c0\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6c28563a-a49f-4367-9c26-623d55fe174c\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"192.168.1.1\",\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "697" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4574,10 +5137,7 @@ "10" ], "x-ms-request-id": [ - "0bba6387-c5fc-4c5e-9d3f-b5aa74b48031" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/0bba6387-c5fc-4c5e-9d3f-b5aa74b48031?api-version=2017-09-01" + "d5338a42-e6de-41f9-9dec-e8ac0e162a7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4589,35 +5149,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" ], "x-ms-correlation-request-id": [ - "8d9533e7-87c9-4b7a-899b-d646361cace2" + "6e79c6ab-d98e-47d0-913c-3d3507218178" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042224Z:8d9533e7-87c9-4b7a-899b-d646361cace2" + "WESTUS2:20180510T184614Z:6e79c6ab-d98e-47d0-913c-3d3507218178" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:22:23 GMT" + "Thu, 10 May 2018 18:46:14 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/0bba6387-c5fc-4c5e-9d3f-b5aa74b48031?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMGJiYTYzODctYzVmYy00YzVlLTlkM2YtYjVhYTc0YjQ4MDMxP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4628,8 +5194,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "a1d81610-6f5a-4846-9798-2d5f9832d4c1" + "de18fd47-7547-40b4-bc35-779e31aef9cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4642,40 +5211,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" + "14923" ], "x-ms-correlation-request-id": [ - "6d5b5a53-4de8-458a-aa0e-cbb1498e91d3" + "fda6ed16-b5b0-4378-a854-45b565a8c57a" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042254Z:6d5b5a53-4de8-458a-aa0e-cbb1498e91d3" + "WESTUS2:20180510T184624Z:fda6ed16-b5b0-4378-a854-45b565a8c57a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:22:54 GMT" + "Thu, 10 May 2018 18:46:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/connections/onesdk9215?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazkyMTU/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "743511d0-7ed4-4a21-91d1-e1d7fffb09dc" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/connections/onesdk9215' under resource group 'onesdk1844' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "154" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4686,17 +5255,11 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "9e5718f0-93d6-4e7c-83d5-5cc30f23b38c" - ], - "x-ms-correlation-request-id": [ - "9e5718f0-93d6-4e7c-83d5-5cc30f23b38c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160310T042255Z:9e5718f0-93d6-4e7c-83d5-5cc30f23b38c" + "15573d7f-a049-47d2-8a04-1e82beafb03d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4704,26 +5267,45 @@ "Cache-Control": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "ce65eb78-0a26-463d-bd50-d412c63329ee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T184634Z:ce65eb78-0a26-463d-bd50-d412c63329ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Thu, 10 Mar 2016 04:22:54 GMT" + "Thu, 10 May 2018 18:46:34 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/connections/onesdk9215?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazkyMTU/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9215\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/connections/onesdk9215\",\r\n \"etag\": \"W/\\\"0235140b-3441-4e13-8f1e-d0464648c950\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"df3e1386-b12e-4740-bd82-b50578ce887f\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/localNetworkGateways/onesdk138\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": true,\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1022" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4734,8 +5316,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "644553f8-d5aa-4bf0-b6a2-ef1bf54d3840" + "a515bf0e-eb77-4caf-9d1f-a3616e60da9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4748,40 +5333,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14890" + "14921" ], "x-ms-correlation-request-id": [ - "72d3d61d-bbeb-4eee-9633-3e8e76d7929b" + "a2d909d9-c3cb-4be0-b23d-5010605043ba" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042530Z:72d3d61d-bbeb-4eee-9633-3e8e76d7929b" + "WESTUS2:20180510T184644Z:a2d909d9-c3cb-4be0-b23d-5010605043ba" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:25:30 GMT" + "Thu, 10 May 2018 18:46:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/connections/onesdk9215?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazkyMTU/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a254b258-0634-4532-a5fd-3626807ced38" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9215\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/connections/onesdk9215\",\r\n \"etag\": \"W/\\\"0235140b-3441-4e13-8f1e-d0464648c950\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"df3e1386-b12e-4740-bd82-b50578ce887f\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/localNetworkGateways/onesdk138\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": true,\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1022" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4792,12 +5377,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "0f68f78c-d9d0-4f33-848f-faf97dfb13e3" + "e0c6e98b-b834-4ca5-b7ef-0a326ab87b44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], "Cache-Control": [ "no-cache" ], @@ -4805,41 +5396,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14889" - ], "x-ms-correlation-request-id": [ - "e9ac9197-87d2-44e5-863c-4bfb07accd26" + "e98ed340-420a-448b-8cfa-db04bfdd6020" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042531Z:e9ac9197-87d2-44e5-863c-4bfb07accd26" + "WESTUS2:20180510T184654Z:e98ed340-420a-448b-8cfa-db04bfdd6020" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:25:31 GMT" + "Thu, 10 May 2018 18:46:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/connections/onesdk9215?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazkyMTU/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2deddef2-5573-4c83-879c-223ebae015ad" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9215\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/connections/onesdk9215\",\r\n \"etag\": \"W/\\\"0235140b-3441-4e13-8f1e-d0464648c950\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"df3e1386-b12e-4740-bd82-b50578ce887f\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/localNetworkGateways/onesdk138\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": true,\r\n \"connectionStatus\": \"NotConnected\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1022" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4850,8 +5438,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "d9aa7e6d-9ba0-4cdc-b8bd-12e1ab88bf1b" + "3d0ba9cd-2b30-4d53-b6ff-e3eee3b03734" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4864,46 +5455,101 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14888" + "14919" ], "x-ms-correlation-request-id": [ - "a2286009-ad80-4f6a-a0e0-c3dc5ec3f806" + "2726c8b3-42b0-42ba-9cec-2e3206f8ee7f" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042532Z:a2286009-ad80-4f6a-a0e0-c3dc5ec3f806" + "WESTUS2:20180510T184705Z:2726c8b3-42b0-42ba-9cec-2e3206f8ee7f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:25:32 GMT" + "Thu, 10 May 2018 18:47:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/connections/onesdk9215?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazkyMTU/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"fd221cc0-4a8f-476d-9ab8-f41adcaedcc7\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk2103\",\r\n \"etag\": \"W/\\\"fd221cc0-4a8f-476d-9ab8-f41adcaedcc7\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405/ipConfigurations/onesdk2103\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworks/onesdk5509/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/publicIPAddresses/onesdk5094\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 55000,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"c3f7353d-8d39-4b88-acaa-6206f0940618\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"62ca7166-c311-47aa-bcb1-d02f3429cb81\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/localNetworkGateways/onesdk138\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"192.168.1.1\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"6c28563a-a49f-4367-9c26-623d55fe174c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"egressBytesTransferred\": 0,\r\n \"ingressBytesTransferred\": 0,\r\n \"enableBgp\": true\r\n }\r\n}", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "2627" + "Expires": [ + "-1" ], - "x-ms-client-request-id": [ - "565f889d-61cc-4cb3-9d73-fbb5410a6340" + "Pragma": [ + "no-cache" ], - "accept-language": [ - "en-US" + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fd9d9018-e468-4b2d-80b5-5bb86cd482f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "785f54fd-5309-4dd4-8d39-c9d376c101b8" ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T184715Z:785f54fd-5309-4dd4-8d39-c9d376c101b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:47:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9215\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/connections/onesdk9215\",\r\n \"etag\": \"W/\\\"fb578c81-063e-4b37-8c4e-1dd85ad74ddf\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"df3e1386-b12e-4740-bd82-b50578ce887f\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/virtualNetworkGateways/onesdk6405\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/localNetworkGateways/onesdk138\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"3082019006092A864886F70D010703A08201813082017D0201003182014930820145020100302D3019311730150603550403130E6E72702D656E6372797074696F6E021078A0163F01050D9647F47ED7EF267DBC300D06092A864886F70D010101050004820100368E111433E898C110E219060194AB4F8B931AE7AB587A270B84E80CBABE2B9E75EA77E3F476A36CC146FA43C1A3A0C169A3B12569DB5B6F24A1B5A84C469EAA601C7D1C81941DABCBED779FB3629E2E04DFFBAE1A1A1BB425F9983AFEEB4D0152E3908F71307E54895B292DC5EF288C464A2A62195A402C4862B8376E7CB4543B33C395B1582ACD5B330BB7EA2F19032F031A15EFBDEA569C879DEFA0004A229F4C85C8FD85B3D198D34D64A5943C4DA6A4ACDA78330EB71F63F7E5F24A98D22607BE4497610836801AFE209B13375D5C064B1D0DACD2001DD9B020D4090ECC8F860A66C33CA32B918EC8856FADC3D02F63DA03F8C027CDB2F9D50B3268F5B4302B06092A864886F70D010701301406082A864886F70D03070408D84B3AD9897A93298008DBB733CC084CC164\",\r\n \"enableBgp\": true,\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1785" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4918,10 +5564,7 @@ "10" ], "x-ms-request-id": [ - "94f52309-63b0-4798-84b7-116882ffef87" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/94f52309-63b0-4798-84b7-116882ffef87?api-version=2017-09-01" + "a47a64fe-b805-419f-b566-7dfa652ef492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4933,29 +5576,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" ], "x-ms-correlation-request-id": [ - "659c50f2-de4d-4eed-b042-519b9f661f20" + "66293cb9-36f5-490b-a813-1969349b37a6" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042256Z:659c50f2-de4d-4eed-b042-519b9f661f20" + "WESTUS2:20180510T184725Z:66293cb9-36f5-490b-a813-1969349b37a6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:22:56 GMT" + "Thu, 10 May 2018 18:47:24 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/94f52309-63b0-4798-84b7-116882ffef87?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTRmNTIzMDktNjNiMC00Nzk4LTg0YjctMTE2ODgyZmZlZjg3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4972,8 +5621,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "aa2b2fc1-147c-496b-a2b0-9b0b790abe61" + "fba21ad2-8118-447c-8ca4-8e5f6ed27d96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4986,28 +5638,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14916" ], "x-ms-correlation-request-id": [ - "c38d7b58-fbe1-4737-aeec-01aac52638fd" + "57673148-71f2-482b-88c7-6baae761f1c9" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042327Z:c38d7b58-fbe1-4737-aeec-01aac52638fd" + "WESTUS2:20180510T184735Z:57673148-71f2-482b-88c7-6baae761f1c9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:23:27 GMT" + "Thu, 10 May 2018 18:47:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/94f52309-63b0-4798-84b7-116882ffef87?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTRmNTIzMDktNjNiMC00Nzk4LTg0YjctMTE2ODgyZmZlZjg3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5024,8 +5682,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "3e5a0384-0dcc-4d62-b4ad-5bf5c6a5bd9c" + "6927362c-d18d-4591-971a-e7c26b58945e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5038,28 +5699,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" + "14915" ], "x-ms-correlation-request-id": [ - "161aff7a-2e78-4720-aa6b-709df31aa915" + "a3196aa0-5d13-4f59-a29f-fb5de29009b6" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042357Z:161aff7a-2e78-4720-aa6b-709df31aa915" + "WESTUS2:20180510T184745Z:a3196aa0-5d13-4f59-a29f-fb5de29009b6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:23:56 GMT" + "Thu, 10 May 2018 18:47:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/94f52309-63b0-4798-84b7-116882ffef87?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTRmNTIzMDktNjNiMC00Nzk4LTg0YjctMTE2ODgyZmZlZjg3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5076,12 +5743,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "84473ae7-907e-4fc6-92d5-f75c82fb0bb9" + "cb03d387-008b-47b0-b767-b78c00919c2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], "Cache-Control": [ "no-cache" ], @@ -5089,29 +5762,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" - ], "x-ms-correlation-request-id": [ - "254ee7f4-cc69-450d-b48c-c0e076c33362" + "42354361-ac97-4109-af3f-2ee6772381da" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042428Z:254ee7f4-cc69-450d-b48c-c0e076c33362" + "WESTUS2:20180510T184755Z:42354361-ac97-4109-af3f-2ee6772381da" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:24:27 GMT" + "Thu, 10 May 2018 18:47:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/94f52309-63b0-4798-84b7-116882ffef87?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTRmNTIzMDktNjNiMC00Nzk4LTg0YjctMTE2ODgyZmZlZjg3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5128,8 +5804,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "41247afe-1bf2-416c-abc2-d01d273ba494" + "55b883e6-0271-4678-8a34-6765d0f78236" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5142,34 +5821,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" + "14913" ], "x-ms-correlation-request-id": [ - "1409273d-9fff-4683-aaca-aaf4973e67db" + "390ed274-30f8-43a5-9677-3fa029818b56" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042458Z:1409273d-9fff-4683-aaca-aaf4973e67db" + "WESTUS2:20180510T184805Z:390ed274-30f8-43a5-9677-3fa029818b56" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:24:58 GMT" + "Thu, 10 May 2018 18:48:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/94f52309-63b0-4798-84b7-116882ffef87?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTRmNTIzMDktNjNiMC00Nzk4LTg0YjctMTE2ODgyZmZlZjg3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5180,8 +5865,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "de8b0dc9-2866-4eb6-8608-3f83cddf4867" + "8ea7fb10-18dc-4d18-8679-8fd6bacb94e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5194,40 +5882,104 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" + "14912" ], "x-ms-correlation-request-id": [ - "8748feeb-6a0e-4436-81b0-7e7997393ad2" + "382ebec5-1beb-4921-914b-5b99b5b4dfbb" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042528Z:8748feeb-6a0e-4436-81b0-7e7997393ad2" + "WESTUS2:20180510T184815Z:382ebec5-1beb-4921-914b-5b99b5b4dfbb" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:25:28 GMT" + "Thu, 10 May 2018 18:48:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/onesdk1844/providers/Microsoft.Network/connections/onesdk9215?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL29uZXNkazE4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazkyMTU/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "039ebc10-ac40-450d-aed6-0d52fdb67d63" + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" ], - "accept-language": [ - "en-US" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "74d8a850-f2e1-422d-85d3-2850be3ea673" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-correlation-request-id": [ + "559ba1c6-0aa1-4f56-8212-c05859633973" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T184825Z:559ba1c6-0aa1-4f56-8212-c05859633973" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:48:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -5239,10 +5991,7 @@ "10" ], "x-ms-request-id": [ - "764e7740-79ea-4ced-aced-1d18e11617d4" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/764e7740-79ea-4ced-aced-1d18e11617d4?api-version=2017-09-01" + "eb743bc1-3b62-4720-b02d-7db46fc982b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5250,36 +5999,39 @@ "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operationResults/764e7740-79ea-4ced-aced-1d18e11617d4?api-version=2017-09-01" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" ], "x-ms-correlation-request-id": [ - "f1eb78c9-c495-47d9-b66d-45c85c145671" + "d943fff4-a647-4297-afa6-9ecb4904eb97" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042533Z:f1eb78c9-c495-47d9-b66d-45c85c145671" + "WESTUS2:20180510T184835Z:d943fff4-a647-4297-afa6-9ecb4904eb97" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:25:33 GMT" + "Thu, 10 May 2018 18:48:35 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/764e7740-79ea-4ced-aced-1d18e11617d4?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzY0ZTc3NDAtNzllYS00Y2VkLWFjZWQtMWQxOGUxMTYxN2Q0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5296,8 +6048,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "ef3aa7d2-a911-498c-ba1f-c029abc83195" + "4bba0fab-272b-4731-81eb-a81b0a4739e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5310,28 +6065,95 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14887" + "14909" + ], + "x-ms-correlation-request-id": [ + "1cd10f65-1856-4630-9e18-01414fdb8c08" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T184845Z:1cd10f65-1856-4630-9e18-01414fdb8c08" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:48:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6f6aaf31-2cb5-426e-8244-1b07073560ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14908" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "62578253-d106-4d29-bca6-cf3c2ffb8dd2" + "0ed4b6bc-ee64-4d4c-957e-47810f8da071" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042604Z:62578253-d106-4d29-bca6-cf3c2ffb8dd2" + "WESTUS2:20180510T184855Z:0ed4b6bc-ee64-4d4c-957e-47810f8da071" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:26:03 GMT" + "Thu, 10 May 2018 18:48:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/764e7740-79ea-4ced-aced-1d18e11617d4?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzY0ZTc3NDAtNzllYS00Y2VkLWFjZWQtMWQxOGUxMTYxN2Q0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5348,8 +6170,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "e0195852-ab70-4cbf-ba65-8fa414d0ef47" + "05a64752-9813-4b34-97d4-8c1a1ebe6d6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5362,28 +6187,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14886" + "14907" ], "x-ms-correlation-request-id": [ - "78af0a74-6a22-4081-82f2-48fa6c6df8be" + "11fe1d68-1c06-4185-bf38-56e7e62b1901" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042634Z:78af0a74-6a22-4081-82f2-48fa6c6df8be" + "WESTUS2:20180510T184906Z:11fe1d68-1c06-4185-bf38-56e7e62b1901" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:26:33 GMT" + "Thu, 10 May 2018 18:49:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/764e7740-79ea-4ced-aced-1d18e11617d4?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzY0ZTc3NDAtNzllYS00Y2VkLWFjZWQtMWQxOGUxMTYxN2Q0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5400,8 +6231,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "4990d997-6eeb-4302-82cc-14ece8c9bcee" + "041fc5fe-0ff8-4725-b8f8-f5ade75842d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5414,34 +6248,5564 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14885" + "14906" ], "x-ms-correlation-request-id": [ - "6f7e2ecf-e3d0-42f1-b496-311d258b2bc7" + "b73559dd-e237-43f3-b1d9-f88db30412c9" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042705Z:6f7e2ecf-e3d0-42f1-b496-311d258b2bc7" + "WESTUS2:20180510T184916Z:b73559dd-e237-43f3-b1d9-f88db30412c9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:27:04 GMT" + "Thu, 10 May 2018 18:49:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/764e7740-79ea-4ced-aced-1d18e11617d4?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzY0ZTc3NDAtNzllYS00Y2VkLWFjZWQtMWQxOGUxMTYxN2Q0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fd012395-d757-450c-85e1-74208ed0efb8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14905" + ], + "x-ms-correlation-request-id": [ + "67c63eee-5ec3-46ad-9172-af67dab543d5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T184926Z:67c63eee-5ec3-46ad-9172-af67dab543d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:49:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0d4c727d-c7bb-4eb1-82b3-bc8c54727e21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14904" + ], + "x-ms-correlation-request-id": [ + "c1c90b65-1d33-4d43-a465-a9171d223636" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T184936Z:c1c90b65-1d33-4d43-a465-a9171d223636" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:49:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8d6633bd-1245-4539-9b1b-e6b15a2cd69f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14903" + ], + "x-ms-correlation-request-id": [ + "64f1f557-a878-4334-825b-e964da4232f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T184946Z:64f1f557-a878-4334-825b-e964da4232f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:49:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "08c5ea7b-63f1-4033-9c4e-8d3436f11ed1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f480c1a4-7f08-40b5-8abd-0476bafb44c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T184956Z:f480c1a4-7f08-40b5-8abd-0476bafb44c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:49:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b65a24ed-2d81-4adc-b8d8-b68f1de5a7aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14901" + ], + "x-ms-correlation-request-id": [ + "f0ca8a0f-60b4-4f79-8a7f-6ffeca72dd1c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185006Z:f0ca8a0f-60b4-4f79-8a7f-6ffeca72dd1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:50:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3783afff-7bd2-486d-afb7-541bf8a0de70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14900" + ], + "x-ms-correlation-request-id": [ + "44881c96-8921-4425-83c1-506a31c3f428" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185016Z:44881c96-8921-4425-83c1-506a31c3f428" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:50:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "18096026-04fd-4fbd-a10e-36e7347ac204" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14899" + ], + "x-ms-correlation-request-id": [ + "9b9fff8c-fbae-49a2-9898-079222c66e1d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185026Z:9b9fff8c-fbae-49a2-9898-079222c66e1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:50:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "782c1a12-0165-43e0-8f48-9df03df40271" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14898" + ], + "x-ms-correlation-request-id": [ + "a2ffe47e-ff00-4be5-b2ce-fd642bc0ae9d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185036Z:a2ffe47e-ff00-4be5-b2ce-fd642bc0ae9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:50:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f8825061-7d57-4e00-a1a6-47556a7f4dec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14897" + ], + "x-ms-correlation-request-id": [ + "6278921b-e66b-4082-ad83-a9031d53e64e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185046Z:6278921b-e66b-4082-ad83-a9031d53e64e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:50:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "83de3798-8e93-4f70-95cf-1df52ec6efcb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14896" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a94f1d92-71b1-4754-969d-60ba4ffc02fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185057Z:a94f1d92-71b1-4754-969d-60ba4ffc02fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:50:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bac58fb6-cf04-40d9-854c-fa1e037475b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14895" + ], + "x-ms-correlation-request-id": [ + "2f0bf6bd-d309-41d5-a30b-f567ade83414" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185107Z:2f0bf6bd-d309-41d5-a30b-f567ade83414" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:51:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "54bb3fae-ff1c-4150-8654-1f8f89d5c372" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14894" + ], + "x-ms-correlation-request-id": [ + "41975b40-3bfb-4664-931e-4a8b4ff47ca7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185117Z:41975b40-3bfb-4664-931e-4a8b4ff47ca7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:51:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "95c5401b-b1f6-4784-8824-9bd0669b5f76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14893" + ], + "x-ms-correlation-request-id": [ + "2211562e-712b-4cea-ade5-a6ded8909860" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185127Z:2211562e-712b-4cea-ade5-a6ded8909860" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:51:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1ba185b7-445a-43d5-adfd-81825c69cba2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], + "x-ms-correlation-request-id": [ + "68081f65-4ca4-4bc8-aae6-53e673112f92" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185137Z:68081f65-4ca4-4bc8-aae6-53e673112f92" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:51:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9e05dfe9-5fa5-47f5-a340-772a16c78035" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14891" + ], + "x-ms-correlation-request-id": [ + "b8ce44fa-9f9d-4b80-af90-1cd14192ca03" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185147Z:b8ce44fa-9f9d-4b80-af90-1cd14192ca03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:51:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "01ed3e24-da33-437b-a51c-92a0cc7a3f8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "8d790282-0ade-4a93-a58f-149e1bbe044b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185157Z:8d790282-0ade-4a93-a58f-149e1bbe044b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:51:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f440ec0b-b704-4f1b-883b-bb36026a81cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" + ], + "x-ms-correlation-request-id": [ + "085494bb-2a13-4caa-9db9-7c3c0f2ceeb8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185207Z:085494bb-2a13-4caa-9db9-7c3c0f2ceeb8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:52:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4678fdb7-31d7-40ba-9b26-3fa2a485c1df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], + "x-ms-correlation-request-id": [ + "a8882e3c-0de0-4e64-91a8-198a1cd8495e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185217Z:a8882e3c-0de0-4e64-91a8-198a1cd8495e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:52:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "156e277a-81c8-4605-bdd4-6cd38636ed07" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14887" + ], + "x-ms-correlation-request-id": [ + "12f97c7b-3a04-439a-9e23-164d5a584042" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185227Z:12f97c7b-3a04-439a-9e23-164d5a584042" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:52:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e2d9f835-e21a-4644-9c5d-0b1574c2e6ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14886" + ], + "x-ms-correlation-request-id": [ + "f0b9c6ca-ba61-4c00-b83b-44b54a978c77" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185237Z:f0b9c6ca-ba61-4c00-b83b-44b54a978c77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:52:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "72c86c8f-521d-4b1a-aef2-89279b5f424d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14885" + ], + "x-ms-correlation-request-id": [ + "61b8f65f-0c84-41d8-a687-207f512bae60" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185247Z:61b8f65f-0c84-41d8-a687-207f512bae60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:52:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "25a5dbd3-69fb-4121-a114-5677410569b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14884" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ecd8a71e-ae42-4199-a923-141d11d80620" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185257Z:ecd8a71e-ae42-4199-a923-141d11d80620" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:52:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bc5db426-5882-49f1-8d48-e35f207181e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14883" + ], + "x-ms-correlation-request-id": [ + "6ab69df0-caf3-4505-ae88-09d48b36d3bb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185308Z:6ab69df0-caf3-4505-ae88-09d48b36d3bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:53:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a5ca3fa2-7b38-4ac9-b3be-2c3e60d27c0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14882" + ], + "x-ms-correlation-request-id": [ + "813b504b-8daa-4dbf-8961-0cab8be7f833" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185318Z:813b504b-8daa-4dbf-8961-0cab8be7f833" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:53:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c889ddce-5183-4e26-98bb-06877de7cd3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14881" + ], + "x-ms-correlation-request-id": [ + "4c23b002-6c74-4b16-8077-a8c74039eb56" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185328Z:4c23b002-6c74-4b16-8077-a8c74039eb56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:53:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "37fc7cf0-d372-4a52-a52c-b193803dc427" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14880" + ], + "x-ms-correlation-request-id": [ + "acab9232-a25a-4510-9156-f1911b2125df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185338Z:acab9232-a25a-4510-9156-f1911b2125df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:53:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "901d654d-6e5c-4807-bb5f-dd432c2b52c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14879" + ], + "x-ms-correlation-request-id": [ + "293194a1-0364-4340-b03e-addb77a97468" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185348Z:293194a1-0364-4340-b03e-addb77a97468" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:53:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d26ea946-357a-4f15-91fe-55d9e043262e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14878" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "7b92032b-3e02-43c4-9b31-342caac11024" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185358Z:7b92032b-3e02-43c4-9b31-342caac11024" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:53:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "51c85118-b53b-4b97-b15c-678022bec580" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14877" + ], + "x-ms-correlation-request-id": [ + "abdd24c3-d252-4d40-a529-8bc2055e3ffd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185408Z:abdd24c3-d252-4d40-a529-8bc2055e3ffd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:54:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6584ab92-68ff-4194-be83-a1c8f81b01f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14876" + ], + "x-ms-correlation-request-id": [ + "b840dec0-cbc8-404c-9be5-638477b3b500" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185418Z:b840dec0-cbc8-404c-9be5-638477b3b500" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:54:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fc79df6f-0eab-42bf-b03e-79fa73022ab6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14875" + ], + "x-ms-correlation-request-id": [ + "54f1a16d-24f5-4e9c-b8db-3a1144fd01c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185428Z:54f1a16d-24f5-4e9c-b8db-3a1144fd01c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:54:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4766d6df-4a6f-4603-b488-578993955a76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14874" + ], + "x-ms-correlation-request-id": [ + "19a1eef8-4e43-416c-9069-147fcca67a8d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185438Z:19a1eef8-4e43-416c-9069-147fcca67a8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:54:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "30860f1b-49f3-4953-89b1-4f258bad55c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14873" + ], + "x-ms-correlation-request-id": [ + "1185ece6-e036-4ff1-bd8a-78ffd60cb815" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185448Z:1185ece6-e036-4ff1-bd8a-78ffd60cb815" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:54:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fda65172-f2d0-4858-8454-7cd26b0e8074" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14872" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "0363799c-5eb5-4871-b315-2d7f40bc1ec5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185458Z:0363799c-5eb5-4871-b315-2d7f40bc1ec5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:54:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "575fdcd6-4029-43f9-9db2-51ae1e99d9cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14871" + ], + "x-ms-correlation-request-id": [ + "b07eade6-8506-4067-ab79-71e4a2a06f08" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185508Z:b07eade6-8506-4067-ab79-71e4a2a06f08" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:55:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "86d52031-feb7-499f-a23e-34eac2ba17d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14870" + ], + "x-ms-correlation-request-id": [ + "6063b2ff-ec39-4481-bb09-7e7f241246af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185519Z:6063b2ff-ec39-4481-bb09-7e7f241246af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:55:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ca75a793-535c-40d2-8a13-badbd3282f1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14869" + ], + "x-ms-correlation-request-id": [ + "d0cc344d-849e-46aa-9f68-ee0b467f8a8d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185529Z:d0cc344d-849e-46aa-9f68-ee0b467f8a8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:55:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b31289ad-43c1-4b78-8900-bc5fd32586cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14868" + ], + "x-ms-correlation-request-id": [ + "606c28e7-ce8b-40cb-95a8-291313a8f53e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185539Z:606c28e7-ce8b-40cb-95a8-291313a8f53e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:55:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c795abd9-6c0c-4d7d-87e1-44d3059f98f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14867" + ], + "x-ms-correlation-request-id": [ + "94d67d9b-db52-4103-8dd9-0662ae2fcbfb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185549Z:94d67d9b-db52-4103-8dd9-0662ae2fcbfb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:55:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "893def51-9ef6-4a8d-a39e-2eb9ff4ab318" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14866" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ae280c3d-dd7c-492c-96de-e09ef3acca77" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185559Z:ae280c3d-dd7c-492c-96de-e09ef3acca77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:55:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ea121ab7-d723-4947-a1b8-8d4feaafe4c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14865" + ], + "x-ms-correlation-request-id": [ + "8db09cfa-352a-4fde-95ab-3ed1fd9689c1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185609Z:8db09cfa-352a-4fde-95ab-3ed1fd9689c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:56:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "29ac7863-0b96-4192-85be-bc144bf2cc72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14864" + ], + "x-ms-correlation-request-id": [ + "ba3c7e66-7efc-480d-84f4-632f90527dfb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185619Z:ba3c7e66-7efc-480d-84f4-632f90527dfb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:56:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "440cf253-9801-4c35-a065-aa9906f3d215" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14863" + ], + "x-ms-correlation-request-id": [ + "305ebb49-a38d-4a6a-98be-b8223013e0bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185629Z:305ebb49-a38d-4a6a-98be-b8223013e0bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:56:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4714d011-cfb9-4a98-b5b4-9aa313d3063c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14862" + ], + "x-ms-correlation-request-id": [ + "52a14e0a-083d-4838-86ce-7fa886b6041f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185639Z:52a14e0a-083d-4838-86ce-7fa886b6041f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:56:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5d1b0df4-963a-4f0c-bd92-4d0022f58dd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14861" + ], + "x-ms-correlation-request-id": [ + "2b0d4bde-dbf3-4cdf-88c4-f2b81dca124b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185649Z:2b0d4bde-dbf3-4cdf-88c4-f2b81dca124b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:56:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "091fe17a-dfd9-4816-8305-b738316f010a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14860" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "9699b5b4-9711-4f2d-bc64-acf90fe12dde" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185659Z:9699b5b4-9711-4f2d-bc64-acf90fe12dde" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:56:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e669b330-5bc7-4276-97aa-d3416e8dcd63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14859" + ], + "x-ms-correlation-request-id": [ + "20ab0152-3f13-4f1a-8c21-6c6861b53244" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185709Z:20ab0152-3f13-4f1a-8c21-6c6861b53244" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:57:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d1aed042-f9ed-4b42-9e6f-a6dd2ff9680e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14858" + ], + "x-ms-correlation-request-id": [ + "8a5bf242-aef8-4812-a1f3-76ccabd87cc2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185719Z:8a5bf242-aef8-4812-a1f3-76ccabd87cc2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:57:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b8d97dfc-9f25-40cb-85d1-dae1b17e31d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14857" + ], + "x-ms-correlation-request-id": [ + "18c0cec9-f01a-4ce2-a07f-57119d3a34b5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185730Z:18c0cec9-f01a-4ce2-a07f-57119d3a34b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:57:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3b5eea8d-0f1a-4739-aaa0-f66303ce7452" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14856" + ], + "x-ms-correlation-request-id": [ + "549a8b35-4a2a-4478-88e3-7b7c0d4e6d72" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185740Z:549a8b35-4a2a-4478-88e3-7b7c0d4e6d72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:57:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b9acc64b-ad96-4d34-9c61-5f08b7f5ef5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14855" + ], + "x-ms-correlation-request-id": [ + "14466f14-9cb7-4b0f-810b-2e99c9522137" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185750Z:14466f14-9cb7-4b0f-810b-2e99c9522137" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:57:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cf9e295a-6147-4a3d-82d7-001c2884d26c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14854" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "1825a349-9bf6-4528-81ca-d215e99d6129" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185800Z:1825a349-9bf6-4528-81ca-d215e99d6129" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:57:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dca0e798-b1a4-426a-bcf6-36da339835be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14853" + ], + "x-ms-correlation-request-id": [ + "4cbcd216-3e6b-4c7a-b281-05f072ca3747" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185810Z:4cbcd216-3e6b-4c7a-b281-05f072ca3747" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:58:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "664f9381-d6c7-4b9c-a5e7-d259a7f99219" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14852" + ], + "x-ms-correlation-request-id": [ + "d1156a0f-ab90-4ff6-8293-db986bb33ba5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185820Z:d1156a0f-ab90-4ff6-8293-db986bb33ba5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:58:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "57eaa64b-439d-442d-b3a2-0e51b9951d57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14851" + ], + "x-ms-correlation-request-id": [ + "38cec9ec-83b0-4709-b10e-71c9eb4ca994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185830Z:38cec9ec-83b0-4709-b10e-71c9eb4ca994" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:58:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6536c1bd-6f08-4fc1-966e-7a27e4c4a492" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14850" + ], + "x-ms-correlation-request-id": [ + "3d0ca73c-1b2b-405f-8644-d4b5bc6b3785" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185840Z:3d0ca73c-1b2b-405f-8644-d4b5bc6b3785" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:58:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b29943b5-2537-4463-abb4-4e17bf7b8442" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14849" + ], + "x-ms-correlation-request-id": [ + "f8f6bf27-6219-4b2b-9934-fc9a84b6f42d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185850Z:f8f6bf27-6219-4b2b-9934-fc9a84b6f42d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:58:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "269a6e91-1ed5-4e7d-bdda-5171b0d560a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14848" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "0982fb6d-74cc-4142-a90d-f9ee80086b88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185900Z:0982fb6d-74cc-4142-a90d-f9ee80086b88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:58:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "37afed90-3bcb-4913-bdc7-2d999eab8112" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14847" + ], + "x-ms-correlation-request-id": [ + "c76cc35b-ef84-4b4e-aeaf-7e8eec7f291f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185910Z:c76cc35b-ef84-4b4e-aeaf-7e8eec7f291f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:59:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7acaeb2b-465e-4461-a57e-e5bc3f6d877c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14846" + ], + "x-ms-correlation-request-id": [ + "c7e8d75e-b71e-4b7b-baf0-f005571993c9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185920Z:c7e8d75e-b71e-4b7b-baf0-f005571993c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:59:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "10238a69-f7ae-471b-a0fd-99f0b04702b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14845" + ], + "x-ms-correlation-request-id": [ + "dc73b669-abb1-4257-b2bb-a2b8e148b9b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185930Z:dc73b669-abb1-4257-b2bb-a2b8e148b9b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:59:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bd50511f-b04c-484c-8466-5e501f114b14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14844" + ], + "x-ms-correlation-request-id": [ + "306d54ef-9a8e-4f7c-be4e-a1e0d2703a52" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185940Z:306d54ef-9a8e-4f7c-be4e-a1e0d2703a52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:59:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b82e65d7-56cc-4a24-84c2-f4876ec6f504" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14843" + ], + "x-ms-correlation-request-id": [ + "3c5b05b2-3c89-4472-8841-64998465f16c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T185951Z:3c5b05b2-3c89-4472-8841-64998465f16c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 18:59:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b07a2dca-580d-45b2-b24e-22a786ab570a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14842" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "2c2c8911-2bfb-4280-ae7c-b348a7044c2d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190001Z:2c2c8911-2bfb-4280-ae7c-b348a7044c2d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:00:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "26ca8f00-6d8a-48ea-812a-1f616111adf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14841" + ], + "x-ms-correlation-request-id": [ + "4e707fcb-36d9-45de-a1f6-7f55738e8b94" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190011Z:4e707fcb-36d9-45de-a1f6-7f55738e8b94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:00:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "018c9c60-5686-4fc3-b90e-60885b25bfe4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14840" + ], + "x-ms-correlation-request-id": [ + "1122cd03-2e01-4acf-a75b-42a7c0f896af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190021Z:1122cd03-2e01-4acf-a75b-42a7c0f896af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:00:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8c406dab-b12b-4f5e-945f-a8d6d91e7b2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14839" + ], + "x-ms-correlation-request-id": [ + "cf72fd7f-c167-4c3e-8e43-727b4b45cbe4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190031Z:cf72fd7f-c167-4c3e-8e43-727b4b45cbe4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:00:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "eaf2b111-bd92-46f0-90a9-468f76077d0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14838" + ], + "x-ms-correlation-request-id": [ + "b4c87981-7107-4de3-a6a2-f459e551c0e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190041Z:b4c87981-7107-4de3-a6a2-f459e551c0e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:00:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d40df229-cffd-4c13-bcf0-9f9ffcd7544c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14837" + ], + "x-ms-correlation-request-id": [ + "d32876b0-ebb6-47fe-98be-c70331f4b23e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190051Z:d32876b0-ebb6-47fe-98be-c70331f4b23e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:00:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "50280b05-32d8-4aae-9b92-0a6b62ad11cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14836" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "297c1f12-338d-49c0-b30a-da1509bec883" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190101Z:297c1f12-338d-49c0-b30a-da1509bec883" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:01:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d1c50c1d-1286-4f6e-ad46-0a270332a0f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14835" + ], + "x-ms-correlation-request-id": [ + "410717a6-d5ac-4c16-83bc-bca5abe4d4d8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190111Z:410717a6-d5ac-4c16-83bc-bca5abe4d4d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:01:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c0edf5d1-67f3-44eb-9253-312e255c5f28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14834" + ], + "x-ms-correlation-request-id": [ + "39771122-1a4e-452b-9c42-ebfa5bc385d8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190121Z:39771122-1a4e-452b-9c42-ebfa5bc385d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:01:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d7296ed8-527a-4190-a442-311a19aebd77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14833" + ], + "x-ms-correlation-request-id": [ + "00acb1d9-5931-4c4f-be85-83ef5ca7852f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190131Z:00acb1d9-5931-4c4f-be85-83ef5ca7852f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:01:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "62ea97ae-205d-4532-8542-9a21385f85e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14832" + ], + "x-ms-correlation-request-id": [ + "c3f94c0a-ff21-45ed-8eee-385b3f708585" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190141Z:c3f94c0a-ff21-45ed-8eee-385b3f708585" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:01:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "db715432-ddc7-44ae-b7d3-d6aaf4dd50b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14831" + ], + "x-ms-correlation-request-id": [ + "c5a0e7f6-de05-4a5d-80b7-a18cc1a68996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190152Z:c5a0e7f6-de05-4a5d-80b7-a18cc1a68996" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:01:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "636b2894-a852-422a-b2dd-85c16e21e288" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14830" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "68bc5821-de88-4fef-879f-6b7d219a417f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190202Z:68bc5821-de88-4fef-879f-6b7d219a417f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:02:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "06e28e5b-9169-4662-9510-7427ece92c58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14829" + ], + "x-ms-correlation-request-id": [ + "64d15975-6725-4bfe-9708-031c7699c646" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190212Z:64d15975-6725-4bfe-9708-031c7699c646" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:02:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "11627d6a-596c-40f9-bec3-926aa1a68c50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14828" + ], + "x-ms-correlation-request-id": [ + "aa30e66f-54b0-4048-a872-f4087de80d84" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190222Z:aa30e66f-54b0-4048-a872-f4087de80d84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:02:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "898764f5-135f-46c3-bbf1-dad0d081a0da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14827" + ], + "x-ms-correlation-request-id": [ + "8ce920d2-917f-44d4-8d81-cbca0e5e16ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190232Z:8ce920d2-917f-44d4-8d81-cbca0e5e16ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:02:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/31a5732c-836e-4ab3-98ad-1f05f2761054?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhNTczMmMtODM2ZS00YWIzLTk4YWQtMWYwNWYyNzYxMDU0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "051592ba-128e-43ec-9a38-12fa93bd51dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14826" + ], + "x-ms-correlation-request-id": [ + "db1ce8fe-e2c3-4759-bbf1-6b0c7bede708" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190242Z:db1ce8fe-e2c3-4759-bbf1-6b0c7bede708" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:02:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/localNetworkGateways/ps6765?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM2NzY1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbdce7b9-1cd4-475f-848f-88c3454680ac" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/localNetworkGateways/ps6765' under resource group 'ps9885' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "155" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6e9ed27d-7536-4e84-ac18-2083bb1c1cac" + ], + "x-ms-correlation-request-id": [ + "6e9ed27d-7536-4e84-ac18-2083bb1c1cac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190246Z:6e9ed27d-7536-4e84-ac18-2083bb1c1cac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 19:02:45 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/localNetworkGateways/ps6765?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM2NzY1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6765\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/localNetworkGateways/ps6765\",\r\n \"etag\": \"W/\\\"55a4171d-5e46-4a15-97a6-5dcfa468ffec\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a600ad17-5d18-48e8-93df-b11600150bb2\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"192.168.1.1\",\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "688" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "30b7edf6-bc0c-42cc-ac4b-ecd32215a34c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"55a4171d-5e46-4a15-97a6-5dcfa468ffec\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14820" + ], + "x-ms-correlation-request-id": [ + "7317da57-21ba-4254-a412-1940d2b06986" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190258Z:7317da57-21ba-4254-a412-1940d2b06986" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:02:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/localNetworkGateways/ps6765?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM2NzY1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84660bd1-6d1f-491d-8182-21ce572446b4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6765\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/localNetworkGateways/ps6765\",\r\n \"etag\": \"W/\\\"55a4171d-5e46-4a15-97a6-5dcfa468ffec\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a600ad17-5d18-48e8-93df-b11600150bb2\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"192.168.1.1\",\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "688" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a8c7ca82-b652-48ff-be3c-a6a561602d77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"55a4171d-5e46-4a15-97a6-5dcfa468ffec\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14819" + ], + "x-ms-correlation-request-id": [ + "67973f9e-b38e-4251-b50d-e0c68f9bcd5a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190258Z:67973f9e-b38e-4251-b50d-e0c68f9bcd5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:02:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/localNetworkGateways/ps6765?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM2NzY1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a41ccc8a-34b9-4f62-a9a3-8a976228f21d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6765\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/localNetworkGateways/ps6765\",\r\n \"etag\": \"W/\\\"55a4171d-5e46-4a15-97a6-5dcfa468ffec\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a600ad17-5d18-48e8-93df-b11600150bb2\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"192.168.1.1\",\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "688" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c28724d0-b11a-4622-b95d-cf09511beff6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"55a4171d-5e46-4a15-97a6-5dcfa468ffec\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14818" + ], + "x-ms-correlation-request-id": [ + "e648d191-81d9-4d9b-b25a-2a2a028209ac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190258Z:e648d191-81d9-4d9b-b25a-2a2a028209ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:02:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/localNetworkGateways/ps6765?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM2NzY1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"192.168.1.1\",\r\n \"peerWeight\": 5\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "316" + ], + "x-ms-client-request-id": [ + "f845af7f-fbc4-41e3-99ef-e2401e36c76d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6765\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/localNetworkGateways/ps6765\",\r\n \"etag\": \"W/\\\"93f76a24-03b3-43b7-abbb-9b3b0b11eb77\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a600ad17-5d18-48e8-93df-b11600150bb2\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"192.168.1.1\",\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "687" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "33aa2f7d-b75a-48ba-a7ae-8015e30ffae2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/33aa2f7d-b75a-48ba-a7ae-8015e30ffae2?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "e2673205-6591-4c9b-8c87-ab8e8efa661d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190247Z:e2673205-6591-4c9b-8c87-ab8e8efa661d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:02:47 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/33aa2f7d-b75a-48ba-a7ae-8015e30ffae2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNhYTJmN2QtYjc1YS00OGJhLWE3YWUtODAxNWUzMGZmYWUyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "42e88d6e-25b7-43d1-b571-637c03c21c75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14821" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "734dd43f-8222-4b72-af42-e23d09b38d8a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190258Z:734dd43f-8222-4b72-af42-e23d09b38d8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:02:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/connections/ps7833?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM3ODMzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8dac951d-07ba-4860-a175-d9c30ef0fab3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/connections/ps7833' under resource group 'ps9885' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9518e65c-29a8-4fd5-b554-b7d350784736" + ], + "x-ms-correlation-request-id": [ + "9518e65c-29a8-4fd5-b554-b7d350784736" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190258Z:9518e65c-29a8-4fd5-b554-b7d350784736" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 19:02:58 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/connections/ps7833?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM3ODMzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7833\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/connections/ps7833\",\r\n \"etag\": \"W/\\\"4bd8c785-7515-42e4-b50b-5fb60646653b\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a1d25dcd-a35d-403e-827b-b60194bd403c\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/localNetworkGateways/ps6765\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1062" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5687b74f-2d0c-4b9e-98c7-fad770acae31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14814" + ], + "x-ms-correlation-request-id": [ + "c797b1fd-3e22-4115-9166-9906890d5129" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190320Z:c797b1fd-3e22-4115-9166-9906890d5129" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:03:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/connections/ps7833?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM3ODMzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f83a0ae-6df6-4250-a140-27f5ab894379" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7833\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/connections/ps7833\",\r\n \"etag\": \"W/\\\"4bd8c785-7515-42e4-b50b-5fb60646653b\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a1d25dcd-a35d-403e-827b-b60194bd403c\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/localNetworkGateways/ps6765\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1062" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e889e324-beb2-4447-9d58-ff180b2940b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14813" + ], + "x-ms-correlation-request-id": [ + "8514db87-cbd5-4f8d-af80-cc76848b6903" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190320Z:8514db87-cbd5-4f8d-af80-cc76848b6903" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:03:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/connections/ps7833?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM3ODMzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64136e5b-0861-4ff6-ba7d-32d2c0d93f17" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7833\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/connections/ps7833\",\r\n \"etag\": \"W/\\\"4bd8c785-7515-42e4-b50b-5fb60646653b\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a1d25dcd-a35d-403e-827b-b60194bd403c\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/localNetworkGateways/ps6765\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1062" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a709f12d-d85a-4a4a-a4d3-0474cb7a23e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14812" + ], + "x-ms-correlation-request-id": [ + "1a89edf6-ccfd-4caf-82c4-eb980ee016a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190321Z:1a89edf6-ccfd-4caf-82c4-eb980ee016a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 19:03:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/connections/ps7833?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM3ODMzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworks/ps4460/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/publicIPAddresses/ps161\"\r\n }\r\n },\r\n \"name\": \"ps6903\",\r\n \"etag\": \"W/\\\"f9741b86-5384-4e0e-afd0-71e08027e065\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728/ipConfigurations/ps6903\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 55000,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"1426c179-2936-46b1-ab74-d1a2d18870a9\"\r\n },\r\n \"etag\": \"W/\\\"f9741b86-5384-4e0e-afd0-71e08027e065\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n \"localNetworkGateway2\": {\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"192.168.1.1\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"a600ad17-5d18-48e8-93df-b11600150bb2\"\r\n },\r\n \"etag\": \"W/\\\"55a4171d-5e46-4a15-97a6-5dcfa468ffec\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/localNetworkGateways/ps6765\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": []\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2566" + ], + "x-ms-client-request-id": [ + "d677c9f7-e418-438a-8107-78928f5d4579" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps7833\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/connections/ps7833\",\r\n \"etag\": \"W/\\\"3b8696bb-9989-4d94-bbeb-ef10974e2c58\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a1d25dcd-a35d-403e-827b-b60194bd403c\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/virtualNetworkGateways/ps8728\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/localNetworkGateways/ps6765\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "30" + "1025" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5452,8 +11816,14 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "d0c82f8d-2a5f-4944-bb57-9d6d23b261aa" + "125ceafe-506f-4834-bf7e-c3807c21a00e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/125ceafe-506f-4834-bf7e-c3807c21a00e?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5465,29 +11835,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14884" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "74688b6a-b8b2-4cef-aeb3-22cb5d0adffb" + "8e9a65ed-d293-4158-ac24-c627e16df3fc" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042735Z:74688b6a-b8b2-4cef-aeb3-22cb5d0adffb" + "WESTUS2:20180510T190259Z:8e9a65ed-d293-4158-ac24-c627e16df3fc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:27:34 GMT" + "Thu, 10 May 2018 19:02:59 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/764e7740-79ea-4ced-aced-1d18e11617d4?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzY0ZTc3NDAtNzllYS00Y2VkLWFjZWQtMWQxOGUxMTYxN2Q0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/125ceafe-506f-4834-bf7e-c3807c21a00e?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTI1Y2VhZmUtNTA2Zi00ODM0LWJmN2UtYzM4MDdjMjFhMDBlP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5504,8 +11880,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "1808791d-7a58-47d1-955f-52ce54ec8b21" + "979d4669-eb6d-484c-aaf1-383e1541f3f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5518,34 +11897,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14883" + "14816" ], "x-ms-correlation-request-id": [ - "224af4df-bfa8-454c-a271-8e4e592edbd8" + "bf7b49af-a3b4-4ee6-9cf0-160e4df8c5f5" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042806Z:224af4df-bfa8-454c-a271-8e4e592edbd8" + "WESTUS2:20180510T190309Z:bf7b49af-a3b4-4ee6-9cf0-160e4df8c5f5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:28:05 GMT" + "Thu, 10 May 2018 19:03:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/764e7740-79ea-4ced-aced-1d18e11617d4?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzY0ZTc3NDAtNzllYS00Y2VkLWFjZWQtMWQxOGUxMTYxN2Q0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/125ceafe-506f-4834-bf7e-c3807c21a00e?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTI1Y2VhZmUtNTA2Zi00ODM0LWJmN2UtYzM4MDdjMjFhMDBlP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "30" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5557,7 +11942,7 @@ "no-cache" ], "x-ms-request-id": [ - "b40d76b9-529e-4aaf-a663-a9f81c05ae52" + "b0ba720c-d757-4ce4-b469-efa7463149ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5570,37 +11955,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14882" + "14815" ], "x-ms-correlation-request-id": [ - "589feb45-2585-4e53-b192-73afea14fd4e" + "c2188d71-afc1-490d-8782-bcfd51b49f9c" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042836Z:589feb45-2585-4e53-b192-73afea14fd4e" + "WESTUS2:20180510T190319Z:c2188d71-afc1-490d-8782-bcfd51b49f9c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:28:36 GMT" + "Thu, 10 May 2018 19:03:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/764e7740-79ea-4ced-aced-1d18e11617d4?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzY0ZTc3NDAtNzllYS00Y2VkLWFjZWQtMWQxOGUxMTYxN2Q0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9885/providers/Microsoft.Network/connections/ps7833?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTg4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM3ODMzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a79d6018-f33d-4abd-864e-4cc551b94e41" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -5608,8 +12002,14 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "8fe8fb72-708d-4663-8683-abcea4745b0f" + "5548b93c-98e1-4c6c-ba4e-cbede9accaa9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/5548b93c-98e1-4c6c-ba4e-cbede9accaa9?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5617,33 +12017,42 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/5548b93c-98e1-4c6c-ba4e-cbede9accaa9?api-version=2018-04-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14881" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "7031d1bc-4ff1-44b0-9b70-3f2b00f8e46b" + "cec59e60-3a6f-483e-81a9-cc088186221c" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042907Z:7031d1bc-4ff1-44b0-9b70-3f2b00f8e46b" + "WESTUS2:20180510T190321Z:cec59e60-3a6f-483e-81a9-cc088186221c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:29:06 GMT" + "Thu, 10 May 2018 19:03:21 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/764e7740-79ea-4ced-aced-1d18e11617d4?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzY0ZTc3NDAtNzllYS00Y2VkLWFjZWQtMWQxOGUxMTYxN2Q0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/5548b93c-98e1-4c6c-ba4e-cbede9accaa9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU0OGI5M2MtOThlMS00YzZjLWJhNGUtY2JlZGU5YWNjYWE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5660,8 +12069,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "3c7c90b2-0f9f-4959-b193-fed02e8d5d00" + "1693ef04-ca26-4abc-ba85-e770c6ecc2bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5674,34 +12086,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14880" + "14811" ], "x-ms-correlation-request-id": [ - "b24b09a0-fe31-4766-a548-36c5735c22d3" + "5ec2ce20-34ff-4aaf-8824-ec5adb60d978" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T042937Z:b24b09a0-fe31-4766-a548-36c5735c22d3" + "WESTUS2:20180510T190332Z:5ec2ce20-34ff-4aaf-8824-ec5adb60d978" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:29:37 GMT" + "Thu, 10 May 2018 19:03:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/764e7740-79ea-4ced-aced-1d18e11617d4?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzY0ZTc3NDAtNzllYS00Y2VkLWFjZWQtMWQxOGUxMTYxN2Q0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/5548b93c-98e1-4c6c-ba4e-cbede9accaa9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU0OGI5M2MtOThlMS00YzZjLWJhNGUtY2JlZGU5YWNjYWE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "30" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5713,7 +12131,7 @@ "no-cache" ], "x-ms-request-id": [ - "c98b20de-0a0a-474f-972a-ee4b3128ff41" + "f646ed4e-840b-4f58-b8f2-f6243cbcf7a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5726,35 +12144,38 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14885" + "14810" ], "x-ms-correlation-request-id": [ - "3816bb74-8e74-40e6-b5a7-36b570806c73" + "ce15b798-9db8-48a4-84cc-246a3bbd64cd" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043008Z:3816bb74-8e74-40e6-b5a7-36b570806c73" + "WESTUS2:20180510T190342Z:ce15b798-9db8-48a4-84cc-246a3bbd64cd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:30:07 GMT" + "Thu, 10 May 2018 19:03:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/764e7740-79ea-4ced-aced-1d18e11617d4?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzY0ZTc3NDAtNzllYS00Y2VkLWFjZWQtMWQxOGUxMTYxN2Q0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/5548b93c-98e1-4c6c-ba4e-cbede9accaa9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNTU0OGI5M2MtOThlMS00YzZjLWJhNGUtY2JlZGU5YWNjYWE5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -5765,7 +12186,10 @@ "no-cache" ], "x-ms-request-id": [ - "f166c866-5c1d-4dad-b308-0b6b5cc44c6b" + "5548b93c-98e1-4c6c-ba4e-cbede9accaa9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/5548b93c-98e1-4c6c-ba4e-cbede9accaa9?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5773,42 +12197,45 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/5548b93c-98e1-4c6c-ba4e-cbede9accaa9?api-version=2018-04-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14884" + "14809" ], "x-ms-correlation-request-id": [ - "c096ebf1-b699-4012-9108-4ecfcf3c12c4" + "c88ec277-42f8-436d-9b64-32f485223652" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043038Z:c096ebf1-b699-4012-9108-4ecfcf3c12c4" + "WESTUS2:20180510T190342Z:c88ec277-42f8-436d-9b64-32f485223652" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 10 Mar 2016 04:30:37 GMT" + "Thu, 10 May 2018 19:03:42 GMT" ] }, - "StatusCode": 200 + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/764e7740-79ea-4ced-aced-1d18e11617d4?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzY0ZTc3NDAtNzllYS00Y2VkLWFjZWQtMWQxOGUxMTYxN2Q0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps9885?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzOTg4NT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -5816,51 +12243,56 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], "x-ms-request-id": [ - "621e388d-61bb-4f4e-aa13-50b62214abd1" + "8829b998-8abf-429a-8326-60380a2bfc61" + ], + "x-ms-correlation-request-id": [ + "8829b998-8abf-429a-8326-60380a2bfc61" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190343Z:8829b998-8abf-429a-8326-60380a2bfc61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14883" - ], - "x-ms-correlation-request-id": [ - "4866004f-28c1-4bc4-8fb4-1b41fa593af5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160310T043109Z:4866004f-28c1-4bc4-8fb4-1b41fa593af5" - ], "Date": [ - "Thu, 10 Mar 2016 04:31:08 GMT" + "Thu, 10 May 2018 19:03:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/eastus/operations/764e7740-79ea-4ced-aced-1d18e11617d4?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzY0ZTc3NDAtNzllYS00Y2VkLWFjZWQtMWQxOGUxMTYxN2Q0P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "29" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -5868,40 +12300,48 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], "x-ms-request-id": [ - "e5d03b34-f9d2-4c50-9968-eede465cb431" + "20116372-f7ee-4272-ad6d-ff803415c650" + ], + "x-ms-correlation-request-id": [ + "20116372-f7ee-4272-ad6d-ff803415c650" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T190343Z:20116372-f7ee-4272-ad6d-ff803415c650" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14882" - ], - "x-ms-correlation-request-id": [ - "bf25b67c-cdad-4987-a9d1-016dce6c7570" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160310T043139Z:bf25b67c-cdad-4987-a9d1-016dce6c7570" - ], "Date": [ - "Thu, 10 Mar 2016 04:31:39 GMT" + "Thu, 10 May 2018 19:03:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourcegroups/onesdk1844?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlZ3JvdXBzL29uZXNkazE4NDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -5920,41 +12360,44 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" ], "x-ms-request-id": [ - "c1e2eb59-2854-4960-949f-4087b7f1ea64" + "0b7323c3-f168-4e90-862e-55fdf86a91d9" ], "x-ms-correlation-request-id": [ - "c1e2eb59-2854-4960-949f-4087b7f1ea64" + "0b7323c3-f168-4e90-862e-55fdf86a91d9" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043140Z:c1e2eb59-2854-4960-949f-4087b7f1ea64" + "WESTUS2:20180510T190358Z:0b7323c3-f168-4e90-862e-55fdf86a91d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:31:39 GMT" + "Thu, 10 May 2018 19:03:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -5975,40 +12418,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14997" ], "x-ms-request-id": [ - "2dc1bd11-0aa8-4709-8e02-6f51bca0918e" + "43fa795c-ac3a-4045-be1f-e57087cddd98" ], "x-ms-correlation-request-id": [ - "2dc1bd11-0aa8-4709-8e02-6f51bca0918e" + "43fa795c-ac3a-4045-be1f-e57087cddd98" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043140Z:2dc1bd11-0aa8-4709-8e02-6f51bca0918e" + "WESTUS2:20180510T190413Z:43fa795c-ac3a-4045-be1f-e57087cddd98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:31:39 GMT" + "Thu, 10 May 2018 19:04:13 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6029,40 +12475,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14996" ], "x-ms-request-id": [ - "550b0e29-72d8-47fd-afb3-979cea5a8d90" + "f56ba06b-ff55-496d-934d-76d5e6d2fba3" ], "x-ms-correlation-request-id": [ - "550b0e29-72d8-47fd-afb3-979cea5a8d90" + "f56ba06b-ff55-496d-934d-76d5e6d2fba3" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043155Z:550b0e29-72d8-47fd-afb3-979cea5a8d90" + "WESTUS2:20180510T190428Z:f56ba06b-ff55-496d-934d-76d5e6d2fba3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:31:55 GMT" + "Thu, 10 May 2018 19:04:28 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6083,40 +12532,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14995" ], "x-ms-request-id": [ - "c5c562fc-d2ad-4f14-b314-b1190b149a36" + "3d7ab6d0-6f8d-4218-8c85-81af1377b20f" ], "x-ms-correlation-request-id": [ - "c5c562fc-d2ad-4f14-b314-b1190b149a36" + "3d7ab6d0-6f8d-4218-8c85-81af1377b20f" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043210Z:c5c562fc-d2ad-4f14-b314-b1190b149a36" + "WESTUS2:20180510T190444Z:3d7ab6d0-6f8d-4218-8c85-81af1377b20f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:32:09 GMT" + "Thu, 10 May 2018 19:04:43 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6137,40 +12589,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14994" ], "x-ms-request-id": [ - "bd61e442-ce35-4774-9185-7d8a205cff03" + "4bda52dc-36a4-4428-8f0d-05824eb2749e" ], "x-ms-correlation-request-id": [ - "bd61e442-ce35-4774-9185-7d8a205cff03" + "4bda52dc-36a4-4428-8f0d-05824eb2749e" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043225Z:bd61e442-ce35-4774-9185-7d8a205cff03" + "WESTUS2:20180510T190459Z:4bda52dc-36a4-4428-8f0d-05824eb2749e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:32:24 GMT" + "Thu, 10 May 2018 19:04:58 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6191,40 +12646,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14993" ], "x-ms-request-id": [ - "dc4768bd-d10b-4a86-8395-f7605c3e9761" + "2ab06e55-a77d-4c23-aba4-a1514517c186" ], "x-ms-correlation-request-id": [ - "dc4768bd-d10b-4a86-8395-f7605c3e9761" + "2ab06e55-a77d-4c23-aba4-a1514517c186" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043240Z:dc4768bd-d10b-4a86-8395-f7605c3e9761" + "WESTUS2:20180510T190514Z:2ab06e55-a77d-4c23-aba4-a1514517c186" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:32:40 GMT" + "Thu, 10 May 2018 19:05:13 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6245,40 +12703,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14992" ], "x-ms-request-id": [ - "b4055286-6f96-4596-823f-59fe6e09d49c" + "dca410a8-f378-4b85-99cf-47955e05e877" ], "x-ms-correlation-request-id": [ - "b4055286-6f96-4596-823f-59fe6e09d49c" + "dca410a8-f378-4b85-99cf-47955e05e877" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043255Z:b4055286-6f96-4596-823f-59fe6e09d49c" + "WESTUS2:20180510T190529Z:dca410a8-f378-4b85-99cf-47955e05e877" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:32:54 GMT" + "Thu, 10 May 2018 19:05:28 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6299,40 +12760,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14991" ], "x-ms-request-id": [ - "fdc994d0-6d81-4c9f-b710-d70d30ab040b" + "d7d19eda-23bb-4afa-b79c-a82d06dcf606" ], "x-ms-correlation-request-id": [ - "fdc994d0-6d81-4c9f-b710-d70d30ab040b" + "d7d19eda-23bb-4afa-b79c-a82d06dcf606" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043310Z:fdc994d0-6d81-4c9f-b710-d70d30ab040b" + "WESTUS2:20180510T190544Z:d7d19eda-23bb-4afa-b79c-a82d06dcf606" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:33:10 GMT" + "Thu, 10 May 2018 19:05:43 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6353,40 +12817,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14990" ], "x-ms-request-id": [ - "0f833890-83c3-4889-b4c4-f87cbc5a7aad" + "0384c913-063c-445d-a81f-def8550c0930" ], "x-ms-correlation-request-id": [ - "0f833890-83c3-4889-b4c4-f87cbc5a7aad" + "0384c913-063c-445d-a81f-def8550c0930" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043325Z:0f833890-83c3-4889-b4c4-f87cbc5a7aad" + "WESTUS2:20180510T190559Z:0384c913-063c-445d-a81f-def8550c0930" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:33:24 GMT" + "Thu, 10 May 2018 19:05:59 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6407,40 +12874,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14989" ], "x-ms-request-id": [ - "654aa69e-5c69-498f-851f-053c1a7b3e8f" + "b01a72eb-0a60-48f3-a269-5d9e0ec27f4c" ], "x-ms-correlation-request-id": [ - "654aa69e-5c69-498f-851f-053c1a7b3e8f" + "b01a72eb-0a60-48f3-a269-5d9e0ec27f4c" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043340Z:654aa69e-5c69-498f-851f-053c1a7b3e8f" + "WESTUS2:20180510T190614Z:b01a72eb-0a60-48f3-a269-5d9e0ec27f4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:33:40 GMT" + "Thu, 10 May 2018 19:06:14 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6461,40 +12931,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14988" ], "x-ms-request-id": [ - "7d85a041-188a-4ea0-9f04-d3daf9339410" + "edafc5d2-a4d5-45b1-b49f-eb0983785aa5" ], "x-ms-correlation-request-id": [ - "7d85a041-188a-4ea0-9f04-d3daf9339410" + "edafc5d2-a4d5-45b1-b49f-eb0983785aa5" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043355Z:7d85a041-188a-4ea0-9f04-d3daf9339410" + "WESTUS2:20180510T190630Z:edafc5d2-a4d5-45b1-b49f-eb0983785aa5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:33:55 GMT" + "Thu, 10 May 2018 19:06:30 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6515,40 +12988,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14987" ], "x-ms-request-id": [ - "9dcf7899-40f0-4682-840b-275f90997606" + "52f7944e-bb25-48ef-8363-8d97c36501fe" ], "x-ms-correlation-request-id": [ - "9dcf7899-40f0-4682-840b-275f90997606" + "52f7944e-bb25-48ef-8363-8d97c36501fe" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043410Z:9dcf7899-40f0-4682-840b-275f90997606" + "WESTUS2:20180510T190645Z:52f7944e-bb25-48ef-8363-8d97c36501fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:34:10 GMT" + "Thu, 10 May 2018 19:06:44 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6569,40 +13045,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14986" ], "x-ms-request-id": [ - "3096dbcf-333f-4aea-858b-a7ee04a1397c" + "fe7d66d5-8998-426f-a192-1b72fcb5288e" ], "x-ms-correlation-request-id": [ - "3096dbcf-333f-4aea-858b-a7ee04a1397c" + "fe7d66d5-8998-426f-a192-1b72fcb5288e" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043425Z:3096dbcf-333f-4aea-858b-a7ee04a1397c" + "WESTUS2:20180510T190700Z:fe7d66d5-8998-426f-a192-1b72fcb5288e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:34:25 GMT" + "Thu, 10 May 2018 19:06:59 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6623,40 +13102,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14985" ], "x-ms-request-id": [ - "079806df-f911-4991-b368-2f3e848a5346" + "c460c13b-2dc8-4867-8421-52e1061b085b" ], "x-ms-correlation-request-id": [ - "079806df-f911-4991-b368-2f3e848a5346" + "c460c13b-2dc8-4867-8421-52e1061b085b" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043441Z:079806df-f911-4991-b368-2f3e848a5346" + "WESTUS2:20180510T190715Z:c460c13b-2dc8-4867-8421-52e1061b085b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:34:40 GMT" + "Thu, 10 May 2018 19:07:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6677,40 +13159,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14984" ], "x-ms-request-id": [ - "822066ac-7942-447b-9db9-a89ab9befe78" + "be018bb9-a748-47a4-ac5a-9e19a3bc29b9" ], "x-ms-correlation-request-id": [ - "822066ac-7942-447b-9db9-a89ab9befe78" + "be018bb9-a748-47a4-ac5a-9e19a3bc29b9" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043456Z:822066ac-7942-447b-9db9-a89ab9befe78" + "WESTUS2:20180510T190731Z:be018bb9-a748-47a4-ac5a-9e19a3bc29b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:34:55 GMT" + "Thu, 10 May 2018 19:07:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6731,40 +13216,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14983" ], "x-ms-request-id": [ - "e2fcb41c-ee8b-4c46-9acd-c59ebd9603c3" + "4aee9082-2196-488f-ade7-8af2954852a1" ], "x-ms-correlation-request-id": [ - "e2fcb41c-ee8b-4c46-9acd-c59ebd9603c3" + "4aee9082-2196-488f-ade7-8af2954852a1" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043511Z:e2fcb41c-ee8b-4c46-9acd-c59ebd9603c3" + "WESTUS2:20180510T190747Z:4aee9082-2196-488f-ade7-8af2954852a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:35:10 GMT" + "Thu, 10 May 2018 19:07:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6785,40 +13273,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14982" ], "x-ms-request-id": [ - "8a23b993-9e5c-44da-8c90-a1d07f1ae8de" + "57c385f7-2a4d-4274-b800-44c0974ffc42" ], "x-ms-correlation-request-id": [ - "8a23b993-9e5c-44da-8c90-a1d07f1ae8de" + "57c385f7-2a4d-4274-b800-44c0974ffc42" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043526Z:8a23b993-9e5c-44da-8c90-a1d07f1ae8de" + "WESTUS2:20180510T190802Z:57c385f7-2a4d-4274-b800-44c0974ffc42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:35:25 GMT" + "Thu, 10 May 2018 19:08:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6839,40 +13330,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14981" ], "x-ms-request-id": [ - "ed0039a5-a069-4610-a38e-1800ced5851c" + "0b7b7176-c88c-4871-a98a-c51761a91d05" ], "x-ms-correlation-request-id": [ - "ed0039a5-a069-4610-a38e-1800ced5851c" + "0b7b7176-c88c-4871-a98a-c51761a91d05" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043541Z:ed0039a5-a069-4610-a38e-1800ced5851c" + "WESTUS2:20180510T190817Z:0b7b7176-c88c-4871-a98a-c51761a91d05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:35:41 GMT" + "Thu, 10 May 2018 19:08:16 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6893,40 +13387,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14980" ], "x-ms-request-id": [ - "b60d9d2b-9012-466c-8c8b-c98442370e9e" + "c0749fae-716e-4101-b312-e3a1b69330fd" ], "x-ms-correlation-request-id": [ - "b60d9d2b-9012-466c-8c8b-c98442370e9e" + "c0749fae-716e-4101-b312-e3a1b69330fd" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043556Z:b60d9d2b-9012-466c-8c8b-c98442370e9e" + "WESTUS2:20180510T190832Z:c0749fae-716e-4101-b312-e3a1b69330fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:35:55 GMT" + "Thu, 10 May 2018 19:08:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -6947,40 +13444,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14979" ], "x-ms-request-id": [ - "14759ff5-7abe-42df-83bb-a906565af5fe" + "187d30da-8503-4989-93e2-e52cc3305c6a" ], "x-ms-correlation-request-id": [ - "14759ff5-7abe-42df-83bb-a906565af5fe" + "187d30da-8503-4989-93e2-e52cc3305c6a" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043611Z:14759ff5-7abe-42df-83bb-a906565af5fe" + "WESTUS2:20180510T190847Z:187d30da-8503-4989-93e2-e52cc3305c6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:36:11 GMT" + "Thu, 10 May 2018 19:08:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7001,40 +13501,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14978" ], "x-ms-request-id": [ - "733244d5-21e2-4c2c-a610-734081d5bce6" + "fb82a514-77e2-4a47-ade3-c89511158dcc" ], "x-ms-correlation-request-id": [ - "733244d5-21e2-4c2c-a610-734081d5bce6" + "fb82a514-77e2-4a47-ade3-c89511158dcc" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043626Z:733244d5-21e2-4c2c-a610-734081d5bce6" + "WESTUS2:20180510T190909Z:fb82a514-77e2-4a47-ade3-c89511158dcc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:36:26 GMT" + "Thu, 10 May 2018 19:09:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7055,40 +13558,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14977" ], "x-ms-request-id": [ - "764a7334-92b1-450b-b29e-9faf9ed70109" + "6e53124f-d59e-43ee-a2dd-dfa95cd33d99" ], "x-ms-correlation-request-id": [ - "764a7334-92b1-450b-b29e-9faf9ed70109" + "6e53124f-d59e-43ee-a2dd-dfa95cd33d99" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043641Z:764a7334-92b1-450b-b29e-9faf9ed70109" + "WESTUS2:20180510T190924Z:6e53124f-d59e-43ee-a2dd-dfa95cd33d99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:36:41 GMT" + "Thu, 10 May 2018 19:09:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7109,40 +13615,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14976" ], "x-ms-request-id": [ - "92961256-a67d-41bc-b5d6-04774756b7ed" + "e1ee9112-805c-43ef-98a4-1d225e03001f" ], "x-ms-correlation-request-id": [ - "92961256-a67d-41bc-b5d6-04774756b7ed" + "e1ee9112-805c-43ef-98a4-1d225e03001f" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043656Z:92961256-a67d-41bc-b5d6-04774756b7ed" + "WESTUS2:20180510T190939Z:e1ee9112-805c-43ef-98a4-1d225e03001f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:36:56 GMT" + "Thu, 10 May 2018 19:09:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7163,40 +13672,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14975" ], "x-ms-request-id": [ - "c0eabe1e-fa0e-40fc-bebd-a9cc4fe96fa5" + "75030116-a6f6-454d-b4d2-b7094f28d393" ], "x-ms-correlation-request-id": [ - "c0eabe1e-fa0e-40fc-bebd-a9cc4fe96fa5" + "75030116-a6f6-454d-b4d2-b7094f28d393" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043711Z:c0eabe1e-fa0e-40fc-bebd-a9cc4fe96fa5" + "WESTUS2:20180510T190954Z:75030116-a6f6-454d-b4d2-b7094f28d393" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:37:10 GMT" + "Thu, 10 May 2018 19:09:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7217,40 +13729,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14974" ], "x-ms-request-id": [ - "4a6db0bb-6205-4c32-a5d8-212fde572cfb" + "fd113c59-24af-4fa6-bcef-69faf3b37cd7" ], "x-ms-correlation-request-id": [ - "4a6db0bb-6205-4c32-a5d8-212fde572cfb" + "fd113c59-24af-4fa6-bcef-69faf3b37cd7" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043726Z:4a6db0bb-6205-4c32-a5d8-212fde572cfb" + "WESTUS2:20180510T191009Z:fd113c59-24af-4fa6-bcef-69faf3b37cd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:37:26 GMT" + "Thu, 10 May 2018 19:10:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7271,40 +13786,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14973" ], "x-ms-request-id": [ - "540e5ded-9885-4391-b04c-c584d13a5c05" + "0efa728e-6575-4341-a7ee-e38dc55a2fdf" ], "x-ms-correlation-request-id": [ - "540e5ded-9885-4391-b04c-c584d13a5c05" + "0efa728e-6575-4341-a7ee-e38dc55a2fdf" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043741Z:540e5ded-9885-4391-b04c-c584d13a5c05" + "WESTUS2:20180510T191026Z:0efa728e-6575-4341-a7ee-e38dc55a2fdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:37:41 GMT" + "Thu, 10 May 2018 19:10:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7325,40 +13843,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14972" ], "x-ms-request-id": [ - "06bc7eb4-8651-45b4-bbe7-47f6fed4c353" + "b458d3cb-e027-4e20-b449-e9f201a1b22d" ], "x-ms-correlation-request-id": [ - "06bc7eb4-8651-45b4-bbe7-47f6fed4c353" + "b458d3cb-e027-4e20-b449-e9f201a1b22d" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043756Z:06bc7eb4-8651-45b4-bbe7-47f6fed4c353" + "WESTUS2:20180510T191041Z:b458d3cb-e027-4e20-b449-e9f201a1b22d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:37:56 GMT" + "Thu, 10 May 2018 19:10:40 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7379,40 +13900,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14971" ], "x-ms-request-id": [ - "45e8e45b-ab5d-488d-a991-8fbf107ccb84" + "31484f5f-a7f2-4554-9d16-9840d160e41e" ], "x-ms-correlation-request-id": [ - "45e8e45b-ab5d-488d-a991-8fbf107ccb84" + "31484f5f-a7f2-4554-9d16-9840d160e41e" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043811Z:45e8e45b-ab5d-488d-a991-8fbf107ccb84" + "WESTUS2:20180510T191056Z:31484f5f-a7f2-4554-9d16-9840d160e41e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:38:11 GMT" + "Thu, 10 May 2018 19:10:55 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7433,40 +13957,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14970" ], "x-ms-request-id": [ - "378b0f3b-e218-4bea-81e2-0a0e8631f408" + "39a392fd-1fb8-419b-9813-f7903bd2db3a" ], "x-ms-correlation-request-id": [ - "378b0f3b-e218-4bea-81e2-0a0e8631f408" + "39a392fd-1fb8-419b-9813-f7903bd2db3a" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043827Z:378b0f3b-e218-4bea-81e2-0a0e8631f408" + "WESTUS2:20180510T191111Z:39a392fd-1fb8-419b-9813-f7903bd2db3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:38:26 GMT" + "Thu, 10 May 2018 19:11:11 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7487,40 +14014,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14969" ], "x-ms-request-id": [ - "a0d61ede-5a02-4379-a4ea-e13a06d66661" + "536b3780-f205-458e-862d-f013cd68a082" ], "x-ms-correlation-request-id": [ - "a0d61ede-5a02-4379-a4ea-e13a06d66661" + "536b3780-f205-458e-862d-f013cd68a082" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043842Z:a0d61ede-5a02-4379-a4ea-e13a06d66661" + "WESTUS2:20180510T191127Z:536b3780-f205-458e-862d-f013cd68a082" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:38:41 GMT" + "Thu, 10 May 2018 19:11:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7541,40 +14071,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14968" ], "x-ms-request-id": [ - "a5a617d7-9c21-4ce8-a983-63d66eda4cfd" + "bdda56ed-a231-4542-b15b-3acd3fa7079e" ], "x-ms-correlation-request-id": [ - "a5a617d7-9c21-4ce8-a983-63d66eda4cfd" + "bdda56ed-a231-4542-b15b-3acd3fa7079e" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043857Z:a5a617d7-9c21-4ce8-a983-63d66eda4cfd" + "WESTUS2:20180510T191142Z:bdda56ed-a231-4542-b15b-3acd3fa7079e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:38:56 GMT" + "Thu, 10 May 2018 19:11:41 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7595,40 +14128,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14967" ], "x-ms-request-id": [ - "fda2f13c-3f15-4ee6-a19b-a133f33e31f2" + "0ff94060-6a65-4301-97ab-2c7efae37c1b" ], "x-ms-correlation-request-id": [ - "fda2f13c-3f15-4ee6-a19b-a133f33e31f2" + "0ff94060-6a65-4301-97ab-2c7efae37c1b" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043912Z:fda2f13c-3f15-4ee6-a19b-a133f33e31f2" + "WESTUS2:20180510T191158Z:0ff94060-6a65-4301-97ab-2c7efae37c1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:39:12 GMT" + "Thu, 10 May 2018 19:11:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7649,40 +14185,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14966" ], "x-ms-request-id": [ - "3c8efcf9-dcac-410b-b613-6ca1b363af66" + "fe090f61-7684-4da7-a3ad-9446489284e2" ], "x-ms-correlation-request-id": [ - "3c8efcf9-dcac-410b-b613-6ca1b363af66" + "fe090f61-7684-4da7-a3ad-9446489284e2" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043927Z:3c8efcf9-dcac-410b-b613-6ca1b363af66" + "WESTUS2:20180510T191213Z:fe090f61-7684-4da7-a3ad-9446489284e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:39:27 GMT" + "Thu, 10 May 2018 19:12:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7703,40 +14242,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14965" ], "x-ms-request-id": [ - "bdda08be-b7c0-43aa-8e13-8bbaed720e19" + "a6d2068c-8d46-4631-ac1e-4f3c7aaedb45" ], "x-ms-correlation-request-id": [ - "bdda08be-b7c0-43aa-8e13-8bbaed720e19" + "a6d2068c-8d46-4631-ac1e-4f3c7aaedb45" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043942Z:bdda08be-b7c0-43aa-8e13-8bbaed720e19" + "WESTUS2:20180510T191228Z:a6d2068c-8d46-4631-ac1e-4f3c7aaedb45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:39:41 GMT" + "Thu, 10 May 2018 19:12:28 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7757,40 +14299,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14964" ], "x-ms-request-id": [ - "471c7b0d-4357-43b6-b818-db3f29201724" + "ad6374e0-2bc4-4a9e-9f87-b597fd746250" ], "x-ms-correlation-request-id": [ - "471c7b0d-4357-43b6-b818-db3f29201724" + "ad6374e0-2bc4-4a9e-9f87-b597fd746250" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T043957Z:471c7b0d-4357-43b6-b818-db3f29201724" + "WESTUS2:20180510T191246Z:ad6374e0-2bc4-4a9e-9f87-b597fd746250" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:39:56 GMT" + "Thu, 10 May 2018 19:12:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7811,40 +14356,43 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14963" ], "x-ms-request-id": [ - "50ccac33-4d2d-4cf4-a988-aa41ba15b324" + "3b1f6e13-490e-457e-88ed-c5f37f16d893" ], "x-ms-correlation-request-id": [ - "50ccac33-4d2d-4cf4-a988-aa41ba15b324" + "3b1f6e13-490e-457e-88ed-c5f37f16d893" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T044012Z:50ccac33-4d2d-4cf4-a988-aa41ba15b324" + "WESTUS2:20180510T191301Z:3b1f6e13-490e-457e-88ed-c5f37f16d893" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:40:12 GMT" + "Thu, 10 May 2018 19:13:01 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxODQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPRFEwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE9EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2014-04-01-preview" + "2016-02-01" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" @@ -7862,25 +14410,28 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14962" ], "x-ms-request-id": [ - "a840f0f8-26ce-40d8-91e9-746f2e0f884d" + "e9e17f7b-4baa-4e50-ba3a-62b94ecd0937" ], "x-ms-correlation-request-id": [ - "a840f0f8-26ce-40d8-91e9-746f2e0f884d" + "e9e17f7b-4baa-4e50-ba3a-62b94ecd0937" ], "x-ms-routing-request-id": [ - "WESTUS:20160310T044027Z:a840f0f8-26ce-40d8-91e9-746f2e0f884d" + "WESTUS2:20180510T191317Z:e9e17f7b-4baa-4e50-ba3a-62b94ecd0937" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 10 Mar 2016 04:40:26 GMT" + "Thu, 10 May 2018 19:13:17 GMT" ] }, "StatusCode": 200 @@ -7888,17 +14439,17 @@ ], "Names": { "Test-VirtualNetworkGatewayConnectionWithBgpCRUD": [ - "onesdk1844", - "onesdk6405", - "onesdk6773", - "onesdk5509", - "onesdk138", - "onesdk9215", - "onesdk5094", - "onesdk2103" + "ps9885", + "ps8728", + "ps134", + "ps4460", + "ps6765", + "ps7833", + "ps161", + "ps6903" ] }, "Variables": { - "SubscriptionId": "f98da156-d5e6-44a1-99d8-1b6fd3f764ff" + "SubscriptionId": "b1f1deed-af60-4bab-9223-65d340462e24" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/TestVirtualNetworkExpressRouteGatewayCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/TestVirtualNetworkExpressRouteGatewayCRUD.json index 6ef2f79b1a5d..9b3e4be896bb 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/TestVirtualNetworkExpressRouteGatewayCRUD.json +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/TestVirtualNetworkExpressRouteGatewayCRUD.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourcegroups/onesdk9869?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlZ3JvdXBzL29uZXNkazk4Njk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps6319?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzNjMxOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -16,10 +16,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869\",\r\n \"name\": \"onesdk9869\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319\",\r\n \"name\": \"ps6319\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34,49 +34,52 @@ "1199" ], "x-ms-request-id": [ - "bbcc6c27-5ff0-4ffa-bc0c-36c0af8451b4" + "73535fc1-58b8-41d5-a5d8-832b54b90bd7" ], "x-ms-correlation-request-id": [ - "bbcc6c27-5ff0-4ffa-bc0c-36c0af8451b4" + "73535fc1-58b8-41d5-a5d8-832b54b90bd7" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004240Z:bbcc6c27-5ff0-4ffa-bc0c-36c0af8451b4" + "WESTUS2:20180510T221452Z:73535fc1-58b8-41d5-a5d8-832b54b90bd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 00:42:40 GMT" + "Thu, 10 May 2018 22:14:51 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs1OTQ2P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzQ5MD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0dd88ae1-0574-4a18-becd-f0346c287ad3" + "7e9ca727-ad85-4846-9589-632e2c8a00fd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/onesdk5946' under resource group 'onesdk9869' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps3490' under resource group 'ps6319' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "158" + "150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,43 +94,46 @@ "gateway" ], "x-ms-request-id": [ - "b965913f-ed80-431f-9df9-d036f7b2a209" + "b6333f64-f4f9-4ae2-9280-675758e41d54" ], "x-ms-correlation-request-id": [ - "b965913f-ed80-431f-9df9-d036f7b2a209" + "b6333f64-f4f9-4ae2-9280-675758e41d54" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004241Z:b965913f-ed80-431f-9df9-d036f7b2a209" + "WESTUS2:20180510T221453Z:b6333f64-f4f9-4ae2-9280-675758e41d54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 00:42:41 GMT" + "Thu, 10 May 2018 22:14:52 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs1OTQ2P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzQ5MD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5946\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946\",\r\n \"etag\": \"W/\\\"65d46f4f-fe3d-4810-9f88-eacde36a4966\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ea45f428-b6c5-43f2-95a7-8eeb25d62e81\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"65d46f4f-fe3d-4810-9f88-eacde36a4966\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3490\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490\",\r\n \"etag\": \"W/\\\"e056706f-2472-484c-b123-ea25e9e1eb65\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"78403848-3ad2-4043-b76a-3936383e3b80\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"e056706f-2472-484c-b123-ea25e9e1eb65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "990" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,7 +145,7 @@ "no-cache" ], "x-ms-request-id": [ - "a0c0cf8f-db49-46ce-8ed3-059e8fcdb3af" + "5af19cee-46bb-4075-b24f-6b433dbb6c6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,50 +154,53 @@ "no-cache" ], "ETag": [ - "W/\"65d46f4f-fe3d-4810-9f88-eacde36a4966\"" + "W/\"e056706f-2472-484c-b123-ea25e9e1eb65\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14996" ], "x-ms-correlation-request-id": [ - "8d441d12-7062-4c3a-ad88-d3150ed6a985" + "76de8f24-e034-4098-a914-24e8c328ac5f" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004313Z:8d441d12-7062-4c3a-ad88-d3150ed6a985" + "WESTUS2:20180510T221517Z:76de8f24-e034-4098-a914-24e8c328ac5f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:43:13 GMT" + "Thu, 10 May 2018 22:15:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs1OTQ2P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzQ5MD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa284f13-c47c-4a8b-8e3f-4898571517ef" + "e3c6b9b3-71c6-43f5-970e-161937c05a41" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5946\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946\",\r\n \"etag\": \"W/\\\"65d46f4f-fe3d-4810-9f88-eacde36a4966\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ea45f428-b6c5-43f2-95a7-8eeb25d62e81\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"65d46f4f-fe3d-4810-9f88-eacde36a4966\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3490\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490\",\r\n \"etag\": \"W/\\\"e056706f-2472-484c-b123-ea25e9e1eb65\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"78403848-3ad2-4043-b76a-3936383e3b80\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"e056706f-2472-484c-b123-ea25e9e1eb65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "990" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -203,7 +212,7 @@ "no-cache" ], "x-ms-request-id": [ - "42de9fec-e8f2-4a5b-9c53-7a1473646080" + "2f429f7a-2259-4f06-9522-9d9cf6ddb175" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -212,50 +221,53 @@ "no-cache" ], "ETag": [ - "W/\"65d46f4f-fe3d-4810-9f88-eacde36a4966\"" + "W/\"e056706f-2472-484c-b123-ea25e9e1eb65\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14995" ], "x-ms-correlation-request-id": [ - "0c04fc8d-51a5-4799-87c2-25cf39e470bc" + "60f09908-76c6-4afc-8d35-dca52735ac52" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004313Z:0c04fc8d-51a5-4799-87c2-25cf39e470bc" + "WESTUS2:20180510T221517Z:60f09908-76c6-4afc-8d35-dca52735ac52" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:43:13 GMT" + "Thu, 10 May 2018 22:15:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs1OTQ2P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzQ5MD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c6f9f74-3484-40b3-b30c-5bf3a644d358" + "8e13fd63-841b-4efd-a2ca-a3a187d2b693" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5946\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946\",\r\n \"etag\": \"W/\\\"65d46f4f-fe3d-4810-9f88-eacde36a4966\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ea45f428-b6c5-43f2-95a7-8eeb25d62e81\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"65d46f4f-fe3d-4810-9f88-eacde36a4966\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3490\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490\",\r\n \"etag\": \"W/\\\"e056706f-2472-484c-b123-ea25e9e1eb65\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"78403848-3ad2-4043-b76a-3936383e3b80\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"e056706f-2472-484c-b123-ea25e9e1eb65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "990" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -267,7 +279,7 @@ "no-cache" ], "x-ms-request-id": [ - "f56f8da3-56ee-4dc2-84b7-45903144c9fa" + "5ddb7e76-b79b-4801-abef-b01bde68943f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -276,56 +288,59 @@ "no-cache" ], "ETag": [ - "W/\"65d46f4f-fe3d-4810-9f88-eacde36a4966\"" + "W/\"e056706f-2472-484c-b123-ea25e9e1eb65\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14994" ], "x-ms-correlation-request-id": [ - "03e6b628-d3b9-43bd-8d88-dff2dcae92c6" + "51d87c23-ad3c-4fb8-8dd3-97d8ddd878fc" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004314Z:03e6b628-d3b9-43bd-8d88-dff2dcae92c6" + "WESTUS2:20180510T221517Z:51d87c23-ad3c-4fb8-8dd3-97d8ddd878fc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:43:13 GMT" + "Thu, 10 May 2018 22:15:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs1OTQ2P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzQ5MD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n },\r\n \"name\": \"onesdk5946\",\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "436" + "481" ], "x-ms-client-request-id": [ - "86c033ed-3a1c-4d3e-b8dd-fa328023304b" + "c238b88c-00a5-4dbf-b359-02dac3e3dd61" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5946\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946\",\r\n \"etag\": \"W/\\\"bb1f02c3-e05d-43b7-8da5-b6bc5c730e97\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ea45f428-b6c5-43f2-95a7-8eeb25d62e81\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"bb1f02c3-e05d-43b7-8da5-b6bc5c730e97\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3490\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490\",\r\n \"etag\": \"W/\\\"efa0aa71-ddc6-4fd7-a95d-49edaad94f86\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"78403848-3ad2-4043-b76a-3936383e3b80\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"efa0aa71-ddc6-4fd7-a95d-49edaad94f86\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "988" + "1103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -340,10 +355,10 @@ "3" ], "x-ms-request-id": [ - "a57e3d26-1c93-41a7-bdd6-7fd71037c6eb" + "49b1e8b7-868d-465a-81ff-c3c3b498416a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/a57e3d26-1c93-41a7-bdd6-7fd71037c6eb?api-version=2017-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/49b1e8b7-868d-465a-81ff-c3c3b498416a?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -359,28 +374,92 @@ "1199" ], "x-ms-correlation-request-id": [ - "4c6d286c-af23-4512-bbd6-8f7a95463cfe" + "8090618d-12f6-4cae-afef-0a7ac9e9f350" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004243Z:4c6d286c-af23-4512-bbd6-8f7a95463cfe" + "WESTUS2:20180510T221456Z:8090618d-12f6-4cae-afef-0a7ac9e9f350" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:42:42 GMT" + "Thu, 10 May 2018 22:14:55 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/a57e3d26-1c93-41a7-bdd6-7fd71037c6eb?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTU3ZTNkMjYtMWM5My00MWE3LWJkZDYtN2ZkNzEwMzdjNmViP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/49b1e8b7-868d-465a-81ff-c3c3b498416a?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDliMWU4YjctODY4ZC00NjVhLTgxZmYtYzNjM2I0OTg0MTZhP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b6966ba3-ce95-4485-be5a-9bb7a8566491" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "64fb8e22-92db-4530-bc70-c74853af9c5c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T221506Z:64fb8e22-92db-4530-bc70-c74853af9c5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:15:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/49b1e8b7-868d-465a-81ff-c3c3b498416a?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDliMWU4YjctODY4ZC00NjVhLTgxZmYtYzNjM2I0OTg0MTZhP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -398,7 +477,7 @@ "no-cache" ], "x-ms-request-id": [ - "ef4ec93b-bc6f-4530-aa10-0f20d29c0d59" + "28501bcc-6149-480f-9fc0-73d08f19f34c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -411,43 +490,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14997" ], "x-ms-correlation-request-id": [ - "e7e790c6-2963-4435-b056-c1dc501c3792" + "00120dbd-50ea-4cea-8ee8-208ecdad2377" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004313Z:e7e790c6-2963-4435-b056-c1dc501c3792" + "WESTUS2:20180510T221517Z:00120dbd-50ea-4cea-8ee8-208ecdad2377" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:43:12 GMT" + "Thu, 10 May 2018 22:15:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/publicIPAddresses/onesdk2453?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazI0NTM/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/publicIPAddresses/ps7999?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM3OTk5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4bd75649-d964-47e8-992d-2f544d864876" + "75612e96-8a1a-4f37-abc8-13ca501a2881" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/onesdk2453' under resource group 'onesdk9869' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps7999' under resource group 'ps6319' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "160" + "152" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,43 +544,46 @@ "gateway" ], "x-ms-request-id": [ - "0b6712a3-d6f9-48e4-81d0-bc406e3e77be" + "c484bad7-3bbf-4eff-8e0f-b3f374ff0bb2" ], "x-ms-correlation-request-id": [ - "0b6712a3-d6f9-48e4-81d0-bc406e3e77be" + "c484bad7-3bbf-4eff-8e0f-b3f374ff0bb2" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004314Z:0b6712a3-d6f9-48e4-81d0-bc406e3e77be" + "WESTUS2:20180510T221517Z:c484bad7-3bbf-4eff-8e0f-b3f374ff0bb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 00:43:13 GMT" + "Thu, 10 May 2018 22:15:17 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/publicIPAddresses/onesdk2453?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazI0NTM/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/publicIPAddresses/ps7999?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM3OTk5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk2453\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/publicIPAddresses/onesdk2453\",\r\n \"etag\": \"W/\\\"86f3a169-dd38-48b8-bdf1-367337571c07\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"623ca608-bc8e-4a86-a80f-b153d21efc1b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk7341\",\r\n \"fqdn\": \"onesdk7341.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps7999\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/publicIPAddresses/ps7999\",\r\n \"etag\": \"W/\\\"97bebf2c-2a88-4404-ba62-f822cc66cfd8\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b144eebc-dc6f-4aa4-b039-dd5183333077\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1288\",\r\n \"fqdn\": \"ps1288.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "670" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -510,7 +595,7 @@ "no-cache" ], "x-ms-request-id": [ - "3382f1fa-8dee-4386-87a6-331616abc555" + "3f649524-dcd0-49bc-a2fa-0190d585f271" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,53 +604,53 @@ "no-cache" ], "ETag": [ - "W/\"86f3a169-dd38-48b8-bdf1-367337571c07\"" + "W/\"97bebf2c-2a88-4404-ba62-f822cc66cfd8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14991" ], "x-ms-correlation-request-id": [ - "c57423e7-dcd2-4e17-9152-b154aba3a1c8" + "dee5ed51-33cb-439e-90de-305abe7a913b" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004345Z:c57423e7-dcd2-4e17-9152-b154aba3a1c8" + "WESTUS2:20180510T221529Z:dee5ed51-33cb-439e-90de-305abe7a913b" ], - "Date": [ - "Wed, 15 Feb 2017 00:43:44 GMT" + "X-Content-Type-Options": [ + "nosniff" ], - "Connection": [ - "close" + "Date": [ + "Thu, 10 May 2018 22:15:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/publicIPAddresses/onesdk2453?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazI0NTM/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/publicIPAddresses/ps7999?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM3OTk5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96fc0244-37ef-4601-b7ab-f9f2df5d1991" + "f63918b8-d4cf-4b96-8353-76964f99be7f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk2453\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/publicIPAddresses/onesdk2453\",\r\n \"etag\": \"W/\\\"86f3a169-dd38-48b8-bdf1-367337571c07\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"623ca608-bc8e-4a86-a80f-b153d21efc1b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk7341\",\r\n \"fqdn\": \"onesdk7341.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps7999\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/publicIPAddresses/ps7999\",\r\n \"etag\": \"W/\\\"97bebf2c-2a88-4404-ba62-f822cc66cfd8\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b144eebc-dc6f-4aa4-b039-dd5183333077\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1288\",\r\n \"fqdn\": \"ps1288.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "670" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -577,7 +662,7 @@ "no-cache" ], "x-ms-request-id": [ - "6b1f4e3c-53cf-4e42-8992-bea37cf270f1" + "a68849da-c926-4396-a4a0-eaa9591fbaad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586,7 +671,7 @@ "no-cache" ], "ETag": [ - "W/\"86f3a169-dd38-48b8-bdf1-367337571c07\"" + "W/\"97bebf2c-2a88-4404-ba62-f822cc66cfd8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -596,46 +681,49 @@ "14990" ], "x-ms-correlation-request-id": [ - "90eb4b6d-ea60-4dbd-a822-d0d5b187143f" + "f7d0067b-b97c-46e6-96f7-010680f08858" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004346Z:90eb4b6d-ea60-4dbd-a822-d0d5b187143f" + "WESTUS2:20180510T221529Z:f7d0067b-b97c-46e6-96f7-010680f08858" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:43:46 GMT" + "Thu, 10 May 2018 22:15:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/publicIPAddresses/onesdk2453?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazI0NTM/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/publicIPAddresses/ps7999?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM3OTk5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk7341\"\r\n }\r\n },\r\n \"name\": \"onesdk2453\",\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1288\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "190" + "196" ], "x-ms-client-request-id": [ - "cd5f8dfd-88df-4be7-a9c4-7339a0e1efae" + "8b05b350-79ce-42bc-97b9-24820f2501cb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk2453\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/publicIPAddresses/onesdk2453\",\r\n \"etag\": \"W/\\\"dc1caba9-c925-4779-b29a-f664a5a8b648\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"623ca608-bc8e-4a86-a80f-b153d21efc1b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk7341\",\r\n \"fqdn\": \"onesdk7341.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps7999\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/publicIPAddresses/ps7999\",\r\n \"etag\": \"W/\\\"58588380-54ab-4ceb-8d64-b31937127746\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b144eebc-dc6f-4aa4-b039-dd5183333077\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1288\",\r\n \"fqdn\": \"ps1288.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "669" + "732" ], "Content-Type": [ "application/json; charset=utf-8" @@ -650,10 +738,10 @@ "3" ], "x-ms-request-id": [ - "d6024312-32fb-46a1-8745-a4a94017daa0" + "79849d4b-5b6e-4035-b846-e0fb43ec13a7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/d6024312-32fb-46a1-8745-a4a94017daa0?api-version=2017-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/79849d4b-5b6e-4035-b846-e0fb43ec13a7?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,28 +757,31 @@ "1198" ], "x-ms-correlation-request-id": [ - "567d5bea-0718-4cdd-a5f5-51d16c5e4903" + "f63034da-339f-4318-87f3-2bd4e6c32792" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004315Z:567d5bea-0718-4cdd-a5f5-51d16c5e4903" + "WESTUS2:20180510T221519Z:f63034da-339f-4318-87f3-2bd4e6c32792" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:43:14 GMT" + "Thu, 10 May 2018 22:15:18 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/d6024312-32fb-46a1-8745-a4a94017daa0?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDYwMjQzMTItMzJmYi00NmExLTg3NDUtYTRhOTQwMTdkYWEwP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/79849d4b-5b6e-4035-b846-e0fb43ec13a7?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzk4NDlkNGItNWI2ZS00MDM1LWI4NDYtZTBmYjQzZWMxM2E3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -708,7 +799,7 @@ "no-cache" ], "x-ms-request-id": [ - "54aaab4a-13b9-40f0-8c16-f294c461a61c" + "db4438e0-bcdd-4365-80e2-55123f7923d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -721,43 +812,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14992" ], "x-ms-correlation-request-id": [ - "468e6624-f54d-4d93-9372-8455276ec931" + "c09f32ca-0eec-45b1-b9cc-7ef03f03e49a" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004345Z:468e6624-f54d-4d93-9372-8455276ec931" + "WESTUS2:20180510T221529Z:c09f32ca-0eec-45b1-b9cc-7ef03f03e49a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:43:44 GMT" + "Thu, 10 May 2018 22:15:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrMzYxMj9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczMyNTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a3bf131-2055-4b6a-b929-34933e937453" + "56f79cb7-5322-46f9-be79-98134550b6b1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/onesdk3612' under resource group 'onesdk9869' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/ps3255' under resource group 'ps6319' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -772,43 +866,46 @@ "gateway" ], "x-ms-request-id": [ - "a21b6f46-390c-40b9-8f7f-b8eb6f63a65a" + "7792ea94-9652-4d0c-b066-baf1dc1b7040" ], "x-ms-correlation-request-id": [ - "a21b6f46-390c-40b9-8f7f-b8eb6f63a65a" + "7792ea94-9652-4d0c-b066-baf1dc1b7040" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004346Z:a21b6f46-390c-40b9-8f7f-b8eb6f63a65a" + "WESTUS2:20180510T221529Z:7792ea94-9652-4d0c-b066-baf1dc1b7040" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 00:43:46 GMT" + "Thu, 10 May 2018 22:15:29 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrMzYxMj9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczMyNTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3612\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612\",\r\n \"etag\": \"W/\\\"12434662-25d5-4dde-8d4f-1cf95f7d1853\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1651a355-2e65-46f8-9e9e-840f3a085851\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk4473\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612/ipConfigurations/onesdk4473\",\r\n \"etag\": \"W/\\\"12434662-25d5-4dde-8d4f-1cf95f7d1853\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/publicIPAddresses/onesdk2453\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"UltraPerformance\",\r\n \"tier\": \"UltraPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3255\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255\",\r\n \"etag\": \"W/\\\"169233fe-ec7e-4621-b132-14c729dacb8f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eee57001-4977-4be0-aa50-6cd55abecee5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps176\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255/ipConfigurations/ps176\",\r\n \"etag\": \"W/\\\"169233fe-ec7e-4621-b132-14c729dacb8f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/publicIPAddresses/ps7999\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"UltraPerformance\",\r\n \"tier\": \"UltraPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1552" + "1506" ], "Content-Type": [ "application/json; charset=utf-8" @@ -820,7 +917,7 @@ "no-cache" ], "x-ms-request-id": [ - "b958659c-a888-4523-ae67-57f0afa6561a" + "fd2358be-f8c3-40d6-a570-bc313745b6ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -833,43 +930,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14901" ], "x-ms-correlation-request-id": [ - "8359a20c-48b9-4b4d-934d-e785e7c6a102" + "b74d5b2d-194b-4e24-932c-67940e7e8c93" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010028Z:8359a20c-48b9-4b4d-934d-e785e7c6a102" + "WESTUS2:20180510T223013Z:b74d5b2d-194b-4e24-932c-67940e7e8c93" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 01:00:27 GMT" + "Thu, 10 May 2018 22:30:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrMzYxMj9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczMyNTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3e2b5ef-6d5e-42f5-ba68-cd5f098e78c4" + "686b9d4f-3d98-4dff-aa30-6a7fc9fe16ce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3612\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612\",\r\n \"etag\": \"W/\\\"12434662-25d5-4dde-8d4f-1cf95f7d1853\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1651a355-2e65-46f8-9e9e-840f3a085851\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk4473\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612/ipConfigurations/onesdk4473\",\r\n \"etag\": \"W/\\\"12434662-25d5-4dde-8d4f-1cf95f7d1853\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/publicIPAddresses/onesdk2453\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"UltraPerformance\",\r\n \"tier\": \"UltraPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3255\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255\",\r\n \"etag\": \"W/\\\"169233fe-ec7e-4621-b132-14c729dacb8f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eee57001-4977-4be0-aa50-6cd55abecee5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps176\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255/ipConfigurations/ps176\",\r\n \"etag\": \"W/\\\"169233fe-ec7e-4621-b132-14c729dacb8f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/publicIPAddresses/ps7999\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"UltraPerformance\",\r\n \"tier\": \"UltraPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1552" + "1506" ], "Content-Type": [ "application/json; charset=utf-8" @@ -881,7 +981,7 @@ "no-cache" ], "x-ms-request-id": [ - "f14d4dd2-9eae-4420-9f8b-87a0f637a6bf" + "becdb856-f2c9-4173-8ac3-a011f1c89f41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -894,43 +994,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14900" ], "x-ms-correlation-request-id": [ - "27d5a931-2bf5-47a6-8e6d-59f2c9ae1af9" + "edd537f2-594d-405e-8658-dab7f4a12c37" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010028Z:27d5a931-2bf5-47a6-8e6d-59f2c9ae1af9" + "WESTUS2:20180510T223013Z:edd537f2-594d-405e-8658-dab7f4a12c37" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 01:00:28 GMT" + "Thu, 10 May 2018 22:30:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrMzYxMj9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczMyNTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "516987fd-d9dc-4d63-8579-55d98aca1e78" + "229d063b-c616-4a7f-b4e1-4b8b54374e12" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3612\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612\",\r\n \"etag\": \"W/\\\"12434662-25d5-4dde-8d4f-1cf95f7d1853\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1651a355-2e65-46f8-9e9e-840f3a085851\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk4473\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612/ipConfigurations/onesdk4473\",\r\n \"etag\": \"W/\\\"12434662-25d5-4dde-8d4f-1cf95f7d1853\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/publicIPAddresses/onesdk2453\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"UltraPerformance\",\r\n \"tier\": \"UltraPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3255\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255\",\r\n \"etag\": \"W/\\\"169233fe-ec7e-4621-b132-14c729dacb8f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eee57001-4977-4be0-aa50-6cd55abecee5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps176\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255/ipConfigurations/ps176\",\r\n \"etag\": \"W/\\\"169233fe-ec7e-4621-b132-14c729dacb8f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/publicIPAddresses/ps7999\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"UltraPerformance\",\r\n \"tier\": \"UltraPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1552" + "1506" ], "Content-Type": [ "application/json; charset=utf-8" @@ -942,7 +1045,7 @@ "no-cache" ], "x-ms-request-id": [ - "1277bcde-89ce-45bd-a087-6aaceef37d54" + "857400b4-6e0a-4705-af27-d7490fb851ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -955,49 +1058,52 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14899" ], "x-ms-correlation-request-id": [ - "244f7705-51ce-4bf7-925e-8e0282fe0b76" + "4c4fe86a-a845-40cf-bb22-a8dd4fc5d771" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010029Z:244f7705-51ce-4bf7-925e-8e0282fe0b76" + "WESTUS2:20180510T223013Z:4c4fe86a-a845-40cf-bb22-a8dd4fc5d771" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 01:00:28 GMT" + "Thu, 10 May 2018 22:30:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrMzYxMj9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczMyNTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/publicIPAddresses/onesdk2453\"\r\n }\r\n },\r\n \"name\": \"onesdk4473\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfiguration/onesdk4473\"\r\n }\r\n ],\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"UltraPerformance\",\r\n \"tier\": \"UltraPerformance\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"name\": \"onesdk3612\",\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/publicIPAddresses/ps7999\"\r\n }\r\n },\r\n \"name\": \"ps176\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfiguration/ps176\"\r\n }\r\n ],\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"UltraPerformance\",\r\n \"tier\": \"UltraPerformance\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1130" + "1079" ], "x-ms-client-request-id": [ - "7011ddae-8a9a-42c1-9fa1-dca15adc8bf4" + "813d8832-7f46-471b-8278-945233e1f27e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3612\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612\",\r\n \"etag\": \"W/\\\"70dd7f66-e242-4da6-bf33-6dd83c0b9f91\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1651a355-2e65-46f8-9e9e-840f3a085851\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk4473\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612/ipConfigurations/onesdk4473\",\r\n \"etag\": \"W/\\\"70dd7f66-e242-4da6-bf33-6dd83c0b9f91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/publicIPAddresses/onesdk2453\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"UltraPerformance\",\r\n \"tier\": \"UltraPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3255\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255\",\r\n \"etag\": \"W/\\\"ab60bdf1-3820-43ba-89c2-1ee931841a56\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"eee57001-4977-4be0-aa50-6cd55abecee5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps176\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255/ipConfigurations/ps176\",\r\n \"etag\": \"W/\\\"ab60bdf1-3820-43ba-89c2-1ee931841a56\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/publicIPAddresses/ps7999\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"UltraPerformance\",\r\n \"tier\": \"UltraPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1673" + "1739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1012,10 +1118,10 @@ "10" ], "x-ms-request-id": [ - "1c443aaf-ef9a-4d80-ba63-58dc1274bdf5" + "dae416e4-ce78-4c13-9419-2b05b95d64a4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1028,31 +1134,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "5542abb5-7fc1-42b9-94bb-1c5a7d536efc" + "559a3e4d-35ea-4ef4-9287-3251225377f2" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004348Z:5542abb5-7fc1-42b9-94bb-1c5a7d536efc" + "WESTUS2:20180510T221531Z:559a3e4d-35ea-4ef4-9287-3251225377f2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:43:47 GMT" + "Thu, 10 May 2018 22:15:30 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1073,7 +1182,7 @@ "10" ], "x-ms-request-id": [ - "5ce8cbe5-e631-4512-a6c0-273c92d747fb" + "c26832e0-f6fc-400f-96d7-bc7366c451d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1089,28 +1198,31 @@ "14988" ], "x-ms-correlation-request-id": [ - "6af5a9f5-6d55-462e-9db5-aa66beb6e2b4" + "6bf1d8e7-6c2c-47fd-8f58-7f1795695f92" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004418Z:6af5a9f5-6d55-462e-9db5-aa66beb6e2b4" + "WESTUS2:20180510T221541Z:6bf1d8e7-6c2c-47fd-8f58-7f1795695f92" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:44:17 GMT" + "Thu, 10 May 2018 22:15:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1131,7 +1243,7 @@ "10" ], "x-ms-request-id": [ - "178c8881-024a-43c6-8fc8-f00ca060086d" + "4c0b626c-1cbf-49d8-9ec8-358591f643e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1144,31 +1256,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14987" ], "x-ms-correlation-request-id": [ - "e687d367-7872-44ac-9c3e-c3f3440a75ad" + "f8c2873c-ae7c-49a9-b1bc-2c8bdd3edc48" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004448Z:e687d367-7872-44ac-9c3e-c3f3440a75ad" + "WESTUS2:20180510T221551Z:f8c2873c-ae7c-49a9-b1bc-2c8bdd3edc48" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:44:48 GMT" + "Thu, 10 May 2018 22:15:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1189,7 +1304,7 @@ "10" ], "x-ms-request-id": [ - "1e2f14f2-90eb-4ca1-8c4a-fd90e00fbc38" + "d684ece5-e059-489c-9e7a-0555befeb290" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1202,31 +1317,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14986" ], "x-ms-correlation-request-id": [ - "18e4c917-fa17-42de-99f4-035d735d9483" + "83822152-1eb2-4fa1-8af8-eb7101b735ac" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004518Z:18e4c917-fa17-42de-99f4-035d735d9483" + "WESTUS2:20180510T221601Z:83822152-1eb2-4fa1-8af8-eb7101b735ac" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:45:18 GMT" + "Thu, 10 May 2018 22:16:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1247,7 +1365,7 @@ "10" ], "x-ms-request-id": [ - "2275267f-c602-414e-b451-0292fbcdad82" + "25cf42ff-d50e-4162-8107-f0cd637bf2d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1259,32 +1377,96 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "102552a6-33b9-4479-9b3b-5ea56159137a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T221611Z:102552a6-33b9-4479-9b3b-5ea56159137a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:16:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2c73c72a-0f4d-4583-8db3-44b583f3fa89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14984" ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "5945c855-544b-4453-b516-bcf82d6f09e4" + "90953bc5-b917-4c3f-a863-00010c994d78" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004549Z:5945c855-544b-4453-b516-bcf82d6f09e4" + "WESTUS2:20180510T221621Z:90953bc5-b917-4c3f-a863-00010c994d78" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:45:48 GMT" + "Thu, 10 May 2018 22:16:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1305,7 +1487,7 @@ "10" ], "x-ms-request-id": [ - "45365bb5-cf9e-4297-8e31-11934180f2ab" + "ab52d12f-8b35-4c21-a652-c146f213aa2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1321,28 +1503,31 @@ "14983" ], "x-ms-correlation-request-id": [ - "6ac3f80b-9f09-4835-aafd-c3a9b3f9300e" + "d08bf05a-cf81-42b1-9321-c5a05778eb59" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004619Z:6ac3f80b-9f09-4835-aafd-c3a9b3f9300e" + "WESTUS2:20180510T221631Z:d08bf05a-cf81-42b1-9321-c5a05778eb59" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:46:18 GMT" + "Thu, 10 May 2018 22:16:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1363,7 +1548,7 @@ "10" ], "x-ms-request-id": [ - "cd450ada-8b3a-4785-920d-780e8329dfbd" + "b4f5e8ba-7928-4728-8a86-4a294564b880" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1379,28 +1564,31 @@ "14982" ], "x-ms-correlation-request-id": [ - "92d2b6b3-6f25-4980-acba-4564e8da0910" + "93c0b33e-853b-4136-a47b-922fd5f725b2" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004649Z:92d2b6b3-6f25-4980-acba-4564e8da0910" + "WESTUS2:20180510T221641Z:93c0b33e-853b-4136-a47b-922fd5f725b2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:46:48 GMT" + "Thu, 10 May 2018 22:16:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1421,7 +1609,7 @@ "10" ], "x-ms-request-id": [ - "ea5cb7a9-4efb-46d1-b0c1-ed19175740a0" + "9eabe980-71c8-445a-8da2-b06a8fbc3553" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,28 +1625,31 @@ "14981" ], "x-ms-correlation-request-id": [ - "d6e0a57e-a7c0-4b2d-8de4-5ac21e8115ca" + "f5d48740-fb4e-48a3-af61-bdb6024e5f37" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004720Z:d6e0a57e-a7c0-4b2d-8de4-5ac21e8115ca" + "WESTUS2:20180510T221652Z:f5d48740-fb4e-48a3-af61-bdb6024e5f37" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:47:20 GMT" + "Thu, 10 May 2018 22:16:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1479,7 +1670,7 @@ "10" ], "x-ms-request-id": [ - "e8c2a35a-6480-4794-b0d6-58e265959300" + "52bd2315-1726-4fc5-8cd2-4b8bc2336bdd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1495,28 +1686,31 @@ "14980" ], "x-ms-correlation-request-id": [ - "471526ca-084d-48e9-831b-d01f260262fc" + "de331393-4fa0-4bd0-a810-bafd03ef9e32" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004750Z:471526ca-084d-48e9-831b-d01f260262fc" + "WESTUS2:20180510T221702Z:de331393-4fa0-4bd0-a810-bafd03ef9e32" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:47:50 GMT" + "Thu, 10 May 2018 22:17:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1537,7 +1731,7 @@ "10" ], "x-ms-request-id": [ - "3e42af59-3814-4291-ac10-38427e776bd5" + "15009f0c-7bce-426d-a137-8385e5e654cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1553,28 +1747,31 @@ "14979" ], "x-ms-correlation-request-id": [ - "6a92d1b5-725c-40e6-9bda-eeadf9579e03" + "8f529066-54b1-4003-bf8c-14f119bf42e5" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004820Z:6a92d1b5-725c-40e6-9bda-eeadf9579e03" + "WESTUS2:20180510T221712Z:8f529066-54b1-4003-bf8c-14f119bf42e5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:48:20 GMT" + "Thu, 10 May 2018 22:17:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1595,7 +1792,7 @@ "10" ], "x-ms-request-id": [ - "fa92b01e-f015-4675-ab55-d48a1548bec4" + "acbf63ec-5c1e-4e9a-afc3-b5c1a1c1a969" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1611,28 +1808,31 @@ "14978" ], "x-ms-correlation-request-id": [ - "8d5ef881-17ae-42f9-93f2-f3849e49d0b5" + "7db845b2-ba15-465a-b637-2377cf92c3cd" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004851Z:8d5ef881-17ae-42f9-93f2-f3849e49d0b5" + "WESTUS2:20180510T221722Z:7db845b2-ba15-465a-b637-2377cf92c3cd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:48:50 GMT" + "Thu, 10 May 2018 22:17:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1653,7 +1853,7 @@ "10" ], "x-ms-request-id": [ - "6f360410-356c-4666-a4ae-f40aa24dd29c" + "f0f1c13a-393e-4c93-88c6-fd04b3569ee3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1669,28 +1869,31 @@ "14977" ], "x-ms-correlation-request-id": [ - "9c4be872-8ea9-4abf-989b-dbe9a169a589" + "a65cf6af-4fd5-4d74-bdad-251750f34c7d" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004921Z:9c4be872-8ea9-4abf-989b-dbe9a169a589" + "WESTUS2:20180510T221732Z:a65cf6af-4fd5-4d74-bdad-251750f34c7d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:49:20 GMT" + "Thu, 10 May 2018 22:17:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1711,11 +1914,14 @@ "10" ], "x-ms-request-id": [ - "2cf8d3e0-bc31-41e3-9905-81fe93f95aaa" + "dab583c4-9c2e-42d7-a308-bacab401651f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], "Cache-Control": [ "no-cache" ], @@ -1723,32 +1929,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], "x-ms-correlation-request-id": [ - "5f361736-5a21-45d1-92c3-6948732dda61" + "b0b5827b-aedb-4841-9d03-26d4f29dbc85" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T004951Z:5f361736-5a21-45d1-92c3-6948732dda61" + "WESTUS2:20180510T221742Z:b0b5827b-aedb-4841-9d03-26d4f29dbc85" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:49:51 GMT" + "Thu, 10 May 2018 22:17:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1769,7 +1975,7 @@ "10" ], "x-ms-request-id": [ - "d36879e4-abe7-4b69-b337-18921d097e67" + "66b275b2-da64-4a87-8d7b-1d940c764c71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1782,31 +1988,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14975" ], "x-ms-correlation-request-id": [ - "35ab4576-8a95-4085-9981-a3b110bd8cdf" + "48a31f5a-c3d1-4a45-92bf-34763f20c905" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005022Z:35ab4576-8a95-4085-9981-a3b110bd8cdf" + "WESTUS2:20180510T221752Z:48a31f5a-c3d1-4a45-92bf-34763f20c905" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:50:21 GMT" + "Thu, 10 May 2018 22:17:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1827,7 +2036,7 @@ "10" ], "x-ms-request-id": [ - "ae9c6589-8740-4262-96a0-77683f759523" + "a939c172-8e4f-412f-9c7a-1be3de28c55c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1840,31 +2049,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14974" ], "x-ms-correlation-request-id": [ - "a2f550cc-80db-438b-b592-834dfe6f5dcf" + "b170edbb-3440-4db1-95f9-2150e12ce51e" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005052Z:a2f550cc-80db-438b-b592-834dfe6f5dcf" + "WESTUS2:20180510T221803Z:b170edbb-3440-4db1-95f9-2150e12ce51e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:50:52 GMT" + "Thu, 10 May 2018 22:18:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1885,7 +2097,7 @@ "10" ], "x-ms-request-id": [ - "a0ec6d66-f2a6-4c0b-835d-45d3920a1bcd" + "25135a8a-0893-4dfd-9fb8-76ac4182c1f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1901,28 +2113,31 @@ "14973" ], "x-ms-correlation-request-id": [ - "f6f4486c-db96-4d85-9ee6-30655f39f90d" + "05ec1f4c-99f5-4a8d-988c-c9c832d29182" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005122Z:f6f4486c-db96-4d85-9ee6-30655f39f90d" + "WESTUS2:20180510T221813Z:05ec1f4c-99f5-4a8d-988c-c9c832d29182" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:51:22 GMT" + "Thu, 10 May 2018 22:18:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1943,7 +2158,7 @@ "10" ], "x-ms-request-id": [ - "9d8d0e10-f169-4fb7-a54c-5b47cd15d898" + "2ed96ccf-b474-483a-8df4-8797b4b75fef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1959,28 +2174,31 @@ "14972" ], "x-ms-correlation-request-id": [ - "2016e7b6-b1a5-4302-8365-e0c706390e73" + "4fbdc652-dc32-44d7-8136-b435cd7d4fe8" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005152Z:2016e7b6-b1a5-4302-8365-e0c706390e73" + "WESTUS2:20180510T221823Z:4fbdc652-dc32-44d7-8136-b435cd7d4fe8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:51:52 GMT" + "Thu, 10 May 2018 22:18:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2001,7 +2219,7 @@ "10" ], "x-ms-request-id": [ - "3d07cb45-7374-4677-b2d3-8cf3ab57de50" + "f391d2db-f3fe-4dfb-98f7-349f259c2cc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2017,28 +2235,31 @@ "14971" ], "x-ms-correlation-request-id": [ - "c68a241f-eb68-422f-b5ae-90b64c8154f0" + "f37d58d2-c78b-4a00-b669-7cdcad837fd8" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005223Z:c68a241f-eb68-422f-b5ae-90b64c8154f0" + "WESTUS2:20180510T221833Z:f37d58d2-c78b-4a00-b669-7cdcad837fd8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:52:22 GMT" + "Thu, 10 May 2018 22:18:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2059,7 +2280,7 @@ "10" ], "x-ms-request-id": [ - "d9681d3c-b06f-4aa2-881d-3b2672792089" + "5f1de085-795e-4c04-b4a5-cb17ca9a2ee1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2075,28 +2296,31 @@ "14970" ], "x-ms-correlation-request-id": [ - "773b8985-53d8-4746-a7a1-05dbf8a89973" + "f9bbf9ca-68cd-414f-b7b9-5641ffe46731" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005253Z:773b8985-53d8-4746-a7a1-05dbf8a89973" + "WESTUS2:20180510T221843Z:f9bbf9ca-68cd-414f-b7b9-5641ffe46731" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:52:53 GMT" + "Thu, 10 May 2018 22:18:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2117,7 +2341,7 @@ "10" ], "x-ms-request-id": [ - "bd940fa1-dce7-4337-b815-bd6692c1e14f" + "55e2c45e-671f-4d30-81f8-ea791740396d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2133,28 +2357,31 @@ "14969" ], "x-ms-correlation-request-id": [ - "c47a3667-cd1f-4d55-bdab-52262de476b6" + "6892c093-de27-405e-8290-0b26a7203ced" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005323Z:c47a3667-cd1f-4d55-bdab-52262de476b6" + "WESTUS2:20180510T221853Z:6892c093-de27-405e-8290-0b26a7203ced" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:53:23 GMT" + "Thu, 10 May 2018 22:18:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2175,11 +2402,14 @@ "10" ], "x-ms-request-id": [ - "b2cba2d6-799c-43de-b886-dc961bc4f349" + "70b996e9-3807-429a-bb88-1a0cfb4bb0ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], "Cache-Control": [ "no-cache" ], @@ -2187,32 +2417,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], "x-ms-correlation-request-id": [ - "0e189c9d-106e-4a38-b64d-39009b11ceb0" + "f84d810f-c5ab-4f26-97ff-85b76f7470a0" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005354Z:0e189c9d-106e-4a38-b64d-39009b11ceb0" + "WESTUS2:20180510T221903Z:f84d810f-c5ab-4f26-97ff-85b76f7470a0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:53:53 GMT" + "Thu, 10 May 2018 22:19:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2233,7 +2463,7 @@ "10" ], "x-ms-request-id": [ - "b7e3413e-fcb2-4851-a766-1b7a365aed3b" + "5be2bab9-0ad3-45a2-8912-7bffcd20d357" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2249,28 +2479,31 @@ "14967" ], "x-ms-correlation-request-id": [ - "29ca850a-415a-4b2a-9b90-7eb1fdf5f49a" + "5078d090-b11d-4756-b1a0-77265d42fe7e" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005424Z:29ca850a-415a-4b2a-9b90-7eb1fdf5f49a" + "WESTUS2:20180510T221914Z:5078d090-b11d-4756-b1a0-77265d42fe7e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:54:24 GMT" + "Thu, 10 May 2018 22:19:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2291,7 +2524,7 @@ "10" ], "x-ms-request-id": [ - "76d1401f-76e5-4f84-97fc-f07bf42b9c9f" + "09a7966e-7b98-4cdb-a1a5-2cddd7400f9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2307,28 +2540,31 @@ "14966" ], "x-ms-correlation-request-id": [ - "cded3a37-e8d9-4bc2-bad9-d43bca7acc95" + "c0ed6897-c74e-4254-bcbb-492ff8758820" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005454Z:cded3a37-e8d9-4bc2-bad9-d43bca7acc95" + "WESTUS2:20180510T221924Z:c0ed6897-c74e-4254-bcbb-492ff8758820" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:54:54 GMT" + "Thu, 10 May 2018 22:19:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2349,7 +2585,7 @@ "10" ], "x-ms-request-id": [ - "9b6fef46-1531-4ed7-bb6f-0894c5c919da" + "add3d557-a694-4b20-99f1-c46ee4a1b0aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2365,28 +2601,31 @@ "14965" ], "x-ms-correlation-request-id": [ - "b8505d8e-ce4a-4af3-b3e6-079177ca673c" + "725134fa-d9c2-4260-930e-4970e67f68ae" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005525Z:b8505d8e-ce4a-4af3-b3e6-079177ca673c" + "WESTUS2:20180510T221934Z:725134fa-d9c2-4260-930e-4970e67f68ae" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:55:24 GMT" + "Thu, 10 May 2018 22:19:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2407,7 +2646,7 @@ "10" ], "x-ms-request-id": [ - "0d121097-4480-4c59-922a-ea5fef148b2c" + "623f9272-d010-422b-9625-d8cfeafd3ac7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2423,28 +2662,31 @@ "14964" ], "x-ms-correlation-request-id": [ - "51d1440a-cec4-45d5-a92e-990be535a2d3" + "a8ce6742-ea45-4916-9007-b9dc3c20f1ab" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005555Z:51d1440a-cec4-45d5-a92e-990be535a2d3" + "WESTUS2:20180510T221944Z:a8ce6742-ea45-4916-9007-b9dc3c20f1ab" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:55:54 GMT" + "Thu, 10 May 2018 22:19:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2465,7 +2707,7 @@ "10" ], "x-ms-request-id": [ - "763882fd-be0d-4bb4-a1aa-bcbf0d34bfb3" + "6e74c8d1-1984-467f-af7c-daccb250e706" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2481,28 +2723,31 @@ "14963" ], "x-ms-correlation-request-id": [ - "b177c5f0-c9fa-4e81-a9fc-eef4df8f6395" + "d17679be-75f8-4446-a7f3-625123dca7bb" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005625Z:b177c5f0-c9fa-4e81-a9fc-eef4df8f6395" + "WESTUS2:20180510T221954Z:d17679be-75f8-4446-a7f3-625123dca7bb" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:56:25 GMT" + "Thu, 10 May 2018 22:19:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2523,7 +2768,7 @@ "10" ], "x-ms-request-id": [ - "588b4f32-05c4-484d-a2ef-20bb4797bf4d" + "9a2d10c1-721f-4258-b7be-27d90f96422d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2539,28 +2784,31 @@ "14962" ], "x-ms-correlation-request-id": [ - "8f5eedc7-8d6a-44d8-80f4-93d10c2d870b" + "7031cdc2-435f-4eaf-91c8-d53714c014b9" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005656Z:8f5eedc7-8d6a-44d8-80f4-93d10c2d870b" + "WESTUS2:20180510T222004Z:7031cdc2-435f-4eaf-91c8-d53714c014b9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:56:56 GMT" + "Thu, 10 May 2018 22:20:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2581,7 +2829,7 @@ "10" ], "x-ms-request-id": [ - "312aa5db-75d8-40af-af9b-5a7769dc235b" + "0102c647-eb92-4c2e-8ea6-cb03bd4ecb57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2594,31 +2842,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14961" ], "x-ms-correlation-request-id": [ - "5ac3c914-037e-4bd4-8835-435836dccb9d" + "58885168-2f52-494f-958a-f9d5a4af8c7a" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005726Z:5ac3c914-037e-4bd4-8835-435836dccb9d" + "WESTUS2:20180510T222014Z:58885168-2f52-494f-958a-f9d5a4af8c7a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:57:25 GMT" + "Thu, 10 May 2018 22:20:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2639,11 +2890,14 @@ "10" ], "x-ms-request-id": [ - "718226ce-81e5-4b30-97c8-19d1b485b16b" + "7bff1edc-e56f-4a98-9de0-726bb53cd534" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], "Cache-Control": [ "no-cache" ], @@ -2651,32 +2905,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" - ], "x-ms-correlation-request-id": [ - "a2fab09c-8a56-4aa6-8266-186c7daefedd" + "2d42a2d2-2f18-4c93-a088-6aed2dc4796f" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005756Z:a2fab09c-8a56-4aa6-8266-186c7daefedd" + "WESTUS2:20180510T222024Z:2d42a2d2-2f18-4c93-a088-6aed2dc4796f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:57:56 GMT" + "Thu, 10 May 2018 22:20:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2697,7 +2951,7 @@ "10" ], "x-ms-request-id": [ - "e1c65961-6453-4a49-a834-f794fa5174e8" + "a7384431-6809-488c-a56d-a85aa8e26a03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2710,31 +2964,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14959" ], "x-ms-correlation-request-id": [ - "5d48cc4c-d127-4504-99cd-f64e9d949e90" + "efffa1e0-0348-40b2-889f-d1797cd68555" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005827Z:5d48cc4c-d127-4504-99cd-f64e9d949e90" + "WESTUS2:20180510T222035Z:efffa1e0-0348-40b2-889f-d1797cd68555" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:58:27 GMT" + "Thu, 10 May 2018 22:20:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2755,7 +3012,7 @@ "10" ], "x-ms-request-id": [ - "44e4f2d9-fc19-42e8-83ce-57a6cf9a6adb" + "106661ac-75e3-434e-8a60-f5585ee7bce2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2768,31 +3025,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14958" ], "x-ms-correlation-request-id": [ - "92f2d911-dedd-4ad1-a7c0-cabc1e5df951" + "45274dc5-c158-4894-a642-1cc5d7775ab6" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005857Z:92f2d911-dedd-4ad1-a7c0-cabc1e5df951" + "WESTUS2:20180510T222045Z:45274dc5-c158-4894-a642-1cc5d7775ab6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:58:57 GMT" + "Thu, 10 May 2018 22:20:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2813,7 +3073,7 @@ "10" ], "x-ms-request-id": [ - "b563a723-d17b-4e97-8e1f-f5dd688dc724" + "fe8a3f48-46df-44d1-acf3-83d277bf1526" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2826,31 +3086,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14957" ], "x-ms-correlation-request-id": [ - "6ad0e13d-8663-4090-9480-f73dcfcc94f3" + "baf8519b-8ddd-4a1a-a742-eacdc105b95c" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005927Z:6ad0e13d-8663-4090-9480-f73dcfcc94f3" + "WESTUS2:20180510T222055Z:baf8519b-8ddd-4a1a-a742-eacdc105b95c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:59:27 GMT" + "Thu, 10 May 2018 22:20:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2871,7 +3134,7 @@ "10" ], "x-ms-request-id": [ - "d1c91e16-9f3f-4145-9d92-7d2631fbcb8c" + "c0580513-db70-4629-a841-20199a6ed652" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2884,37 +3147,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14956" ], "x-ms-correlation-request-id": [ - "90c95b1f-6263-4827-9648-8711b674506c" + "2a6db372-46ef-41ed-8b95-9f8f98e1d3b8" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T005958Z:90c95b1f-6263-4827-9648-8711b674506c" + "WESTUS2:20180510T222105Z:2a6db372-46ef-41ed-8b95-9f8f98e1d3b8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 00:59:57 GMT" + "Thu, 10 May 2018 22:21:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/1c443aaf-ef9a-4d80-ba63-58dc1274bdf5?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWM0NDNhYWYtZWY5YS00ZDgwLWJhNjMtNThkYzEyNzRiZGY1P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2925,8 +3191,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "61214356-53c9-4bed-9bd9-954bd9b1fc83" + "81f82737-7c8c-4767-8a3b-fafa82d6c9c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2942,40 +3211,37 @@ "14955" ], "x-ms-correlation-request-id": [ - "d5ffd5c0-0b0b-41e3-b33e-e73764d7275e" + "a130b11b-86a8-4a95-a53a-07e243f4b769" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010028Z:d5ffd5c0-0b0b-41e3-b33e-e73764d7275e" + "WESTUS2:20180510T222115Z:a130b11b-86a8-4a95-a53a-07e243f4b769" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 01:00:27 GMT" + "Thu, 10 May 2018 22:21:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXM/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2a883a0f-9a62-433d-827a-73999eca72cc" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk3612\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612\",\r\n \"etag\": \"W/\\\"12434662-25d5-4dde-8d4f-1cf95f7d1853\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1651a355-2e65-46f8-9e9e-840f3a085851\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk4473\",\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612/ipConfigurations/onesdk4473\",\r\n \"etag\": \"W/\\\"12434662-25d5-4dde-8d4f-1cf95f7d1853\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/publicIPAddresses/onesdk2453\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworks/onesdk5946/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"UltraPerformance\",\r\n \"tier\": \"UltraPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1864" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2986,8 +3252,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "48c3f30d-abb1-4c8e-a0fa-7b21a093220d" + "e660933f-9e5e-4a93-a2f9-c56a8a65cf9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3000,43 +3269,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14954" ], "x-ms-correlation-request-id": [ - "10afa519-4cc2-4b03-97c2-362fec8222dc" + "49d52cf5-48b9-4865-a6dd-bc918ccc176f" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010029Z:10afa519-4cc2-4b03-97c2-362fec8222dc" + "WESTUS2:20180510T222125Z:49d52cf5-48b9-4865-a6dd-bc918ccc176f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 01:00:28 GMT" + "Thu, 10 May 2018 22:21:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXM/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4a731aa2-237f-4604-b9ba-975d4b92c914" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3047,17 +3313,11 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "34e17c9f-d3a8-4509-a1ed-d97e9083acd7" - ], - "x-ms-correlation-request-id": [ - "34e17c9f-d3a8-4509-a1ed-d97e9083acd7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170215T010130Z:34e17c9f-d3a8-4509-a1ed-d97e9083acd7" + "b3064528-6e2b-4f2f-9b57-e55fc0ad5541" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3065,35 +3325,4452 @@ "Cache-Control": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "41ebded0-a6b8-43ce-a9e0-79f32a6e29a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222135Z:41ebded0-a6b8-43ce-a9e0-79f32a6e29a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Wed, 15 Feb 2017 01:01:30 GMT" + "Thu, 10 May 2018 22:21:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourceGroups/onesdk9869/providers/Microsoft.Network/virtualNetworkGateways/onesdk3612?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlR3JvdXBzL29uZXNkazk4NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrMzYxMj9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "acf19880-8997-4987-b434-77a229539967" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a90190b2-dd16-4b3e-8346-14d0f6a75258" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c5a3cd9a-a1f4-4db3-88d8-173ddfe80fc9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222145Z:c5a3cd9a-a1f4-4db3-88d8-173ddfe80fc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:21:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dac99587-2912-45be-bc49-85049a09b8d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "e84eb7fe-1f97-4c85-9528-350155e84b26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222156Z:e84eb7fe-1f97-4c85-9528-350155e84b26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:21:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d8f96e9a-c099-45e4-a2cb-022b05f94809" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "31c89552-34ac-42ff-b2d0-df4401fed4fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222206Z:31c89552-34ac-42ff-b2d0-df4401fed4fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:22:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a0408c33-bc4a-4b64-9f3a-c5499d8b06ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "2180ae9b-4761-42ae-a2e3-b40e1d1403f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222216Z:2180ae9b-4761-42ae-a2e3-b40e1d1403f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:22:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "da23aba4-309a-4c34-a9bd-c69e172c3950" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "8073ed4d-f4a2-4b84-98c7-bc2ebb2c6d16" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222226Z:8073ed4d-f4a2-4b84-98c7-bc2ebb2c6d16" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:22:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "813455c1-a470-40ab-881e-00d89cecc877" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "c917ec57-8403-46b6-b5f2-98abc4afc7eb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222236Z:c917ec57-8403-46b6-b5f2-98abc4afc7eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:22:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fe959c44-f5ce-45b9-b188-70cc0fabcc68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "beac55cc-78ec-4bcc-8bd9-a060fbdeda6d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222246Z:beac55cc-78ec-4bcc-8bd9-a060fbdeda6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:22:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "723d74c9-cc03-44a8-94ee-b9cae7978bc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "8a23e88b-9788-45c7-b033-60bf576c76fa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222256Z:8a23e88b-9788-45c7-b033-60bf576c76fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:22:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5c9c1df0-6c90-4607-b4a4-b6ef543d1944" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "6130fd08-2bed-4b8e-a0b4-04df89274a8e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222306Z:6130fd08-2bed-4b8e-a0b4-04df89274a8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:23:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8484adea-bddd-4408-b18f-803cc03c333b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "ea47347c-2eef-448c-bb5e-ce0928a35206" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222317Z:ea47347c-2eef-448c-bb5e-ce0928a35206" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:23:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7de772f2-33d9-4981-ab1e-c413330d26ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "06bcee31-0269-4d5c-9c98-7392dd5aa627" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222327Z:06bcee31-0269-4d5c-9c98-7392dd5aa627" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:23:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fe77402d-88f1-4d42-9ae0-be4dac5609d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "968ea106-88c0-4e03-a3ca-902a4fc1e917" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222337Z:968ea106-88c0-4e03-a3ca-902a4fc1e917" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:23:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8f162e48-67b9-43db-ba2a-737747d82de0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "68a58420-562d-4cad-bd7e-fbd18a13e308" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222347Z:68a58420-562d-4cad-bd7e-fbd18a13e308" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:23:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c8a57aec-685f-4591-9d2d-eba5a4d88795" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "bf40f90d-60ad-4344-84d8-b9c62daf4625" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222357Z:bf40f90d-60ad-4344-84d8-b9c62daf4625" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:23:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7f320828-536b-4819-99c8-d835bd44941e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "fe6c65ec-1f8e-4276-a9aa-8cade7f6dcac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222407Z:fe6c65ec-1f8e-4276-a9aa-8cade7f6dcac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:24:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7b41b4aa-f4a7-4a23-9ed3-8b4af7bb078c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "62f73d8b-b12d-4190-9023-d24b40e1a2f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222417Z:62f73d8b-b12d-4190-9023-d24b40e1a2f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:24:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8198935d-8a70-410e-a417-1ec8f2b73962" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "42502b70-ff73-4a6f-ac28-c210d1422898" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222428Z:42502b70-ff73-4a6f-ac28-c210d1422898" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:24:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "676a7745-8295-4998-b2d5-b6f7e65d01db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "5193efed-8e9b-46a6-b3ac-a4e27c18b237" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222438Z:5193efed-8e9b-46a6-b3ac-a4e27c18b237" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:24:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "df04a352-807e-4a86-9dc2-9b27c8dc72ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "ba5cc06c-8136-4490-88e3-b98450b553f6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222448Z:ba5cc06c-8136-4490-88e3-b98450b553f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:24:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "05c3ec44-b6db-4015-ab5f-b7428d8a49aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "9cbfe929-324e-45fd-8414-8d72334491c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222458Z:9cbfe929-324e-45fd-8414-8d72334491c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:24:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "67dbe20c-6bdb-42a8-bb4b-3003add25e20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "e3846c1f-cdf3-4319-ac06-84ddef148a6d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222508Z:e3846c1f-cdf3-4319-ac06-84ddef148a6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:25:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f446b818-459b-49c9-a8f5-ddacd2d6b1af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "3410978d-80e0-49da-9ae1-763b3fa392af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222518Z:3410978d-80e0-49da-9ae1-763b3fa392af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:25:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5940c7ac-fb60-4869-9df5-205693b2a734" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "9a9ff1d1-71f2-4b0d-81dd-fff9a274e233" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222528Z:9a9ff1d1-71f2-4b0d-81dd-fff9a274e233" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:25:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e112d4bc-86db-4b17-b005-b2674b89ff59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "ae63f9a5-dd82-4cea-ab64-d992eb310bdd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222539Z:ae63f9a5-dd82-4cea-ab64-d992eb310bdd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:25:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7804ca84-5032-401c-976a-8236c3606e76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "7514ad11-45db-4715-9e7d-4ba4e813b81b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222549Z:7514ad11-45db-4715-9e7d-4ba4e813b81b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:25:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bae75a1c-446e-463e-ad82-93e5b9ae5a64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "579d8e6a-f546-4276-9c8e-9ab3955f2aad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222559Z:579d8e6a-f546-4276-9c8e-9ab3955f2aad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:25:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b0369d66-9a33-4a49-baf9-99902d0ee2e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "6e4e833c-89ac-47f4-8fa2-35ac81c74c65" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222610Z:6e4e833c-89ac-47f4-8fa2-35ac81c74c65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:26:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c79ddb22-2caf-475d-90f0-13262261fcc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "e20e25f0-5ba0-4521-a32a-cc1a09652ce3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222620Z:e20e25f0-5ba0-4521-a32a-cc1a09652ce3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:26:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ab740844-dc4c-4246-b9d6-54eb33aae59e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "04c5cf49-a663-421f-ba45-9cdb703ed0ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222630Z:04c5cf49-a663-421f-ba45-9cdb703ed0ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:26:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2eaaa9f3-bcd1-4d53-998b-4f6f058772a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "906ae0be-dda8-4ff3-975c-72d040802ce2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222640Z:906ae0be-dda8-4ff3-975c-72d040802ce2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:26:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c391cc95-59ce-4e09-9e62-ddc73095554c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "86a21000-d3be-4626-bf61-c50b84f39864" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222650Z:86a21000-d3be-4626-bf61-c50b84f39864" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:26:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f120b859-7b8e-4abb-b9ba-362f5d21e1aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-correlation-request-id": [ + "25cf62e2-a304-4c38-8158-52737949f485" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222700Z:25cf62e2-a304-4c38-8158-52737949f485" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:26:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "73312c5d-a6ee-4fda-ad57-4c680ba3c382" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "3425b313-2973-42a3-887b-57d61ec1c4b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222710Z:3425b313-2973-42a3-887b-57d61ec1c4b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:27:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c44ac41d-b1ac-4b6e-8c00-7ce70dd79a35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "48b373ec-8761-40fa-9e2b-f53f2f55fed1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222721Z:48b373ec-8761-40fa-9e2b-f53f2f55fed1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:27:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "19df4161-cec6-4853-beff-26aa88f62cfe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "42b3d492-c47b-4dba-a030-a755e53bcfa3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222731Z:42b3d492-c47b-4dba-a030-a755e53bcfa3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:27:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ff27a9d8-689c-41ac-af5b-3c54b1358c63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-correlation-request-id": [ + "73dba15a-1cf7-4dcb-9b29-484ec52509cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222741Z:73dba15a-1cf7-4dcb-9b29-484ec52509cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:27:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d5e3df2e-8a4d-4fe3-83be-21775984b18c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-correlation-request-id": [ + "ece58813-91d6-4d03-86d8-6154f2954f97" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222751Z:ece58813-91d6-4d03-86d8-6154f2954f97" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:27:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fd0f6915-d358-4e05-bbfb-35b89ec0773d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-correlation-request-id": [ + "c7a600cc-cdd6-4ead-b14c-ca502c449244" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222801Z:c7a600cc-cdd6-4ead-b14c-ca502c449244" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:28:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8ce34b77-0cd8-4b48-a23e-431beb44eaad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-correlation-request-id": [ + "06c9009a-76d7-43fb-b392-14d94470aa0a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222811Z:06c9009a-76d7-43fb-b392-14d94470aa0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:28:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "de547e3b-fd5e-4c6a-88d2-2df842ff0610" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "792c8142-ea4b-42f9-b36a-0595c671bd71" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222821Z:792c8142-ea4b-42f9-b36a-0595c671bd71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:28:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7f1e288e-e505-4426-ad37-05bc7b08ffe0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "241e15c5-9df5-40bd-a2fa-28db18f4aea7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222831Z:241e15c5-9df5-40bd-a2fa-28db18f4aea7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:28:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3f05ea40-51d8-4952-8f81-7bc4493b5b97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-correlation-request-id": [ + "8e09fb47-93f3-4064-bfe5-fc3409c588c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222842Z:8e09fb47-93f3-4064-bfe5-fc3409c588c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:28:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e8d64be6-9e02-4b18-a079-f5fab69431af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-correlation-request-id": [ + "17f61e40-7990-4c00-94a7-0447cbad6082" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222852Z:17f61e40-7990-4c00-94a7-0447cbad6082" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:28:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a98ea0d6-4c7b-4443-8a7d-65fcc1489fb4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-correlation-request-id": [ + "d9514b5e-9439-471f-a0c7-95d14060e3c9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222902Z:d9514b5e-9439-471f-a0c7-95d14060e3c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:29:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "129b029a-a8c9-4d1f-be34-76cf15df6c02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14908" + ], + "x-ms-correlation-request-id": [ + "d35168e1-50e9-44a5-9d9b-24c90b116b26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222912Z:d35168e1-50e9-44a5-9d9b-24c90b116b26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:29:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d0837338-1dee-4918-b810-1282f46c74ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" + ], + "x-ms-correlation-request-id": [ + "d35314ff-1c47-49c8-9ebf-e4241e489710" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222922Z:d35314ff-1c47-49c8-9ebf-e4241e489710" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:29:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f6a9a558-8c85-4530-9967-7b1549376ff0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14906" + ], + "x-ms-correlation-request-id": [ + "2a12dda8-fd9a-4926-9203-0b44f9b0f5b1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222932Z:2a12dda8-fd9a-4926-9203-0b44f9b0f5b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:29:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7ea2e652-7ff5-48e7-9ad5-04b82a865f72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14905" + ], + "x-ms-correlation-request-id": [ + "ff603ece-47bc-477a-b682-52deb4f6eeb8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222942Z:ff603ece-47bc-477a-b682-52deb4f6eeb8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:29:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "94ec9517-11a1-4ee6-98f2-18d6f0fbf5a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14904" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "85d44c7b-9f29-490e-ab5f-183cb4f27e11" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T222952Z:85d44c7b-9f29-490e-ab5f-183cb4f27e11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:29:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "88dfdae5-6420-4608-b031-7198f9652c18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14903" + ], + "x-ms-correlation-request-id": [ + "d17342c9-435a-4752-a99f-9027ecb2a0e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223003Z:d17342c9-435a-4752-a99f-9027ecb2a0e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:30:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dae416e4-ce78-4c13-9419-2b05b95d64a4?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGFlNDE2ZTQtY2U3OC00YzEzLTk0MTktMmIwNWI5NWQ2NGE0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eed67fbb-1e0d-4fcf-94d9-e9bdae05cad6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], + "x-ms-correlation-request-id": [ + "58f368b7-e59e-4368-b3a8-380a78d9fb91" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223013Z:58f368b7-e59e-4368-b3a8-380a78d9fb91" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:30:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "793a4f9c-1130-4734-801d-be25409fa931" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps3255\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255\",\r\n \"etag\": \"W/\\\"169233fe-ec7e-4621-b132-14c729dacb8f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eee57001-4977-4be0-aa50-6cd55abecee5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps176\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255/ipConfigurations/ps176\",\r\n \"etag\": \"W/\\\"169233fe-ec7e-4621-b132-14c729dacb8f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/publicIPAddresses/ps7999\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworks/ps3490/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"UltraPerformance\",\r\n \"tier\": \"UltraPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"ExpressRoute\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1950" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8f84f046-efeb-4826-bca8-02a021ed94af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14898" + ], + "x-ms-correlation-request-id": [ + "edba25d5-a40c-49eb-80af-2c68af542dd7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223014Z:edba25d5-a40c-49eb-80af-2c68af542dd7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:30:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ceb0e55-2782-4793-b9d2-93946930e436" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "90e07989-07f9-4e0b-b560-35b25aa3e4ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14863" + ], + "x-ms-correlation-request-id": [ + "b49fec0e-9e9a-4ba0-a512-1007793c871b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223549Z:b49fec0e-9e9a-4ba0-a512-1007793c871b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:35:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6319/providers/Microsoft.Network/virtualNetworkGateways/ps3255?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjMxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczMyNTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fc8f398-c24d-456e-a582-0b7ab744ae03" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operationResults/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "37e56bab-68f1-41ff-b88c-b183eb855456" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223014Z:37e56bab-68f1-41ff-b88c-b183eb855456" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:30:13 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "39f2323d-62aa-46ea-92bf-51ac0c40ac4c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14897" + ], + "x-ms-correlation-request-id": [ + "74c8e525-624f-43ff-b68a-01a5a09aae94" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223025Z:74c8e525-624f-43ff-b68a-01a5a09aae94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:30:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fbcdea32-6a64-4d6c-864d-06f3466606d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14896" + ], + "x-ms-correlation-request-id": [ + "9631d90f-f9a8-436c-9983-95cb19e28173" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223035Z:9631d90f-f9a8-436c-9983-95cb19e28173" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:30:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "413e41d9-3d38-4aaf-a2e6-a8b39cc3502f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14895" + ], + "x-ms-correlation-request-id": [ + "97b533e7-f8a6-45d0-b820-0a9538e7fcb2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223045Z:97b533e7-f8a6-45d0-b820-0a9538e7fcb2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:30:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0fa5ab0a-f2f8-487f-b2c2-737e52d4b1bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14894" + ], + "x-ms-correlation-request-id": [ + "f5dc0bb5-49db-402b-82cb-a9e3344d1b9a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223055Z:f5dc0bb5-49db-402b-82cb-a9e3344d1b9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:30:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fece13c2-bde5-4491-9fff-5bf4097f2e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14893" + ], + "x-ms-correlation-request-id": [ + "d6638237-5131-4fee-b056-cb1fb4f23998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223105Z:d6638237-5131-4fee-b056-cb1fb4f23998" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:31:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "05c9a81f-6845-4fb2-b0fa-3cb31a7d6208" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d22608d0-e9a8-4dab-a151-4c0a06d5cd2b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223115Z:d22608d0-e9a8-4dab-a151-4c0a06d5cd2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:31:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "684d030f-d4a3-4fdc-ac81-21b1184fac7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14891" + ], + "x-ms-correlation-request-id": [ + "f8a8cb99-4fc5-477b-80a6-7099f20d96ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223126Z:f8a8cb99-4fc5-477b-80a6-7099f20d96ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:31:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "057a2447-fb59-4566-ae9d-b54d880127ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" + ], + "x-ms-correlation-request-id": [ + "fe29d3a3-13ce-49a8-b14a-f1caec3de16e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223136Z:fe29d3a3-13ce-49a8-b14a-f1caec3de16e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:31:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a9071b58-2b9e-43ee-ac45-8c60657b1c41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" + ], + "x-ms-correlation-request-id": [ + "9342bc2d-ba2f-4a35-af14-c007c0ba5a52" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223146Z:9342bc2d-ba2f-4a35-af14-c007c0ba5a52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:31:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cc34615f-68c4-408e-8d4f-7cbbff20bccc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], + "x-ms-correlation-request-id": [ + "c25e2968-bef0-436d-9751-2868d54835ce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223156Z:c25e2968-bef0-436d-9751-2868d54835ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:31:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "82ec0358-7401-40e4-91e9-aace74058934" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14887" + ], + "x-ms-correlation-request-id": [ + "8bd22079-d8bd-4b0d-aa81-3c0b96d9f482" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223206Z:8bd22079-d8bd-4b0d-aa81-3c0b96d9f482" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:32:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "66c8affc-83ff-4dfe-98a9-9108f9b9931e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14886" + ], + "x-ms-correlation-request-id": [ + "5e95bac0-90f4-4276-87a0-cd25559eb247" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223216Z:5e95bac0-90f4-4276-87a0-cd25559eb247" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:32:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "22384284-ae02-4515-ab5c-85f6bbe42a8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14885" + ], + "x-ms-correlation-request-id": [ + "d8712247-ddb0-4ded-b0e8-23ae7e9a7f10" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223226Z:d8712247-ddb0-4ded-b0e8-23ae7e9a7f10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:32:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3617c677-6ad3-4a52-8c15-ef3cf8a99e9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14884" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4231cc8c-351c-47a9-8c3d-fbc71826ec95" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223236Z:4231cc8c-351c-47a9-8c3d-fbc71826ec95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:32:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "00ac3fb6-acb8-4018-b430-ca5cacce4ad7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14883" + ], + "x-ms-correlation-request-id": [ + "3b9f6d16-101f-47dc-9578-d89712af77d2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223247Z:3b9f6d16-101f-47dc-9578-d89712af77d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:32:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9e6a8eef-0e2c-438f-b392-a046ce1b53c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14882" + ], + "x-ms-correlation-request-id": [ + "cf329d2c-cb2a-44d9-bd1f-035aa85babc5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223257Z:cf329d2c-cb2a-44d9-bd1f-035aa85babc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:32:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f9c35bb7-ba6b-4c30-a9fc-6288aa5a0791" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14881" + ], + "x-ms-correlation-request-id": [ + "fa99f6bc-a06b-4a7f-b5b9-89b5e6e0858d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223307Z:fa99f6bc-a06b-4a7f-b5b9-89b5e6e0858d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:33:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "51a60edc-2ff3-4a70-9531-00f839ca3cd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14880" + ], + "x-ms-correlation-request-id": [ + "1e6ddde5-1123-45f7-bc03-2fef4c277edf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223317Z:1e6ddde5-1123-45f7-bc03-2fef4c277edf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:33:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3105,10 +7782,7 @@ "10" ], "x-ms-request-id": [ - "b516db50-d439-4885-b910-db3ac6a3ca3c" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/b516db50-d439-4885-b910-db3ac6a3ca3c?api-version=2017-09-01" + "483bf7f2-db9f-4d56-8899-e679e019473a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3116,39 +7790,39 @@ "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operationResults/b516db50-d439-4885-b910-db3ac6a3ca3c?api-version=2017-09-01" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14879" ], "x-ms-correlation-request-id": [ - "dd0ed994-bf66-47ee-b033-dd89e9e7aa2f" + "5fba23dc-109a-49cb-b449-5d24cc3699cc" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010030Z:dd0ed994-bf66-47ee-b033-dd89e9e7aa2f" + "WESTUS2:20180510T223327Z:5fba23dc-109a-49cb-b449-5d24cc3699cc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 01:00:29 GMT" + "Thu, 10 May 2018 22:33:27 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/b516db50-d439-4885-b910-db3ac6a3ca3c?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjUxNmRiNTAtZDQzOS00ODg1LWI5MTAtZGIzYWM2YTNjYTNjP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3169,7 +7843,7 @@ "10" ], "x-ms-request-id": [ - "bcdc13b1-11ef-4cb1-a7a0-c05c5dbdce5c" + "9d45b1fe-a52a-4913-a497-e5dc351c8a10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3182,37 +7856,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14878" ], "x-ms-correlation-request-id": [ - "4876e4ec-a6e9-4269-8841-ffb6fd750a45" + "360ad754-f55d-4840-8cb7-7b237df8af86" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010100Z:4876e4ec-a6e9-4269-8841-ffb6fd750a45" + "WESTUS2:20180510T223337Z:360ad754-f55d-4840-8cb7-7b237df8af86" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 01:00:59 GMT" + "Thu, 10 May 2018 22:33:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/providers/Microsoft.Network/locations/eastus/operations/b516db50-d439-4885-b910-db3ac6a3ca3c?api-version=2017-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjUxNmRiNTAtZDQzOS00ODg1LWI5MTAtZGIzYWM2YTNjYTNjP2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.2.0-preview" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3223,8 +7900,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "c24ab9c5-ecf3-4950-ba05-7c79e7460430" + "2140dc1a-0a0f-48e9-88c7-822607496ae0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3237,34 +7917,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14877" ], "x-ms-correlation-request-id": [ - "9be437d4-a33d-4139-8951-0e542a4ccf02" + "b0c6b694-dd24-4b59-80e9-284e3e72badd" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010130Z:9be437d4-a33d-4139-8951-0e542a4ccf02" + "WESTUS2:20180510T223347Z:b0c6b694-dd24-4b59-80e9-284e3e72badd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 01:01:30 GMT" + "Thu, 10 May 2018 22:33:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/resourcegroups/onesdk9869?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL3Jlc291cmNlZ3JvdXBzL29uZXNkazk4Njk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3273,52 +7962,59 @@ "no-cache" ], "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "10" ], "x-ms-request-id": [ - "b9533d13-b993-4120-87b8-2a7c36ad3b94" - ], - "x-ms-correlation-request-id": [ - "b9533d13-b993-4120-87b8-2a7c36ad3b94" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170215T010132Z:b9533d13-b993-4120-87b8-2a7c36ad3b94" + "558de127-de2b-435b-91e5-69e911f58d90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14876" + ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Feb 2017 01:01:32 GMT" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "x-ms-correlation-request-id": [ + "046be012-0905-4f4d-9e15-b4f59bf033bd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223357Z:046be012-0905-4f4d-9e15-b4f59bf033bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:33:57 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3327,19 +8023,10 @@ "no-cache" ], "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "10" ], "x-ms-request-id": [ - "36e6697a-1071-48ba-8e4a-ca0c77a56b19" - ], - "x-ms-correlation-request-id": [ - "36e6697a-1071-48ba-8e4a-ca0c77a56b19" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170215T010132Z:36e6697a-1071-48ba-8e4a-ca0c77a56b19" + "8eb18855-55dc-4c13-ae6f-5b68317eab71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3347,32 +8034,48 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Feb 2017 01:01:32 GMT" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14875" + ], + "x-ms-correlation-request-id": [ + "f9c22050-a572-42bf-b504-b64f15848874" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223408Z:f9c22050-a572-42bf-b504-b64f15848874" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:34:07 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3381,19 +8084,10 @@ "no-cache" ], "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "10" ], "x-ms-request-id": [ - "7eea2a20-9626-4847-9903-d9f19e3b1ec8" - ], - "x-ms-correlation-request-id": [ - "7eea2a20-9626-4847-9903-d9f19e3b1ec8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170215T010148Z:7eea2a20-9626-4847-9903-d9f19e3b1ec8" + "06281bb8-517d-4766-89dd-677c3263e96e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3401,32 +8095,48 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Feb 2017 01:01:47 GMT" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14874" + ], + "x-ms-correlation-request-id": [ + "5490e0e7-5d47-4d4c-ba7b-162611aec659" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223418Z:5490e0e7-5d47-4d4c-ba7b-162611aec659" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:34:17 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3435,19 +8145,10 @@ "no-cache" ], "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "10" ], "x-ms-request-id": [ - "50762100-7e39-4ca4-8f3f-5bc5e7e4a41c" - ], - "x-ms-correlation-request-id": [ - "50762100-7e39-4ca4-8f3f-5bc5e7e4a41c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170215T010203Z:50762100-7e39-4ca4-8f3f-5bc5e7e4a41c" + "c0e536c2-cc5f-4993-a926-c118f27a9128" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3455,32 +8156,48 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Feb 2017 01:02:03 GMT" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14873" + ], + "x-ms-correlation-request-id": [ + "ee1ec664-e22b-4453-ad4f-c793a79bbb00" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223428Z:ee1ec664-e22b-4453-ad4f-c793a79bbb00" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:34:27 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3489,19 +8206,71 @@ "no-cache" ], "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "10" ], "x-ms-request-id": [ - "b2da38ba-acf8-4b62-a4d8-aff138edd63e" + "f4a868e4-ec71-4bed-b454-e3ad889fe202" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14872" ], "x-ms-correlation-request-id": [ - "b2da38ba-acf8-4b62-a4d8-aff138edd63e" + "b50043c2-ebf6-4872-a316-ed8a19214003" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010218Z:b2da38ba-acf8-4b62-a4d8-aff138edd63e" + "WESTUS2:20180510T223438Z:b50043c2-ebf6-4872-a316-ed8a19214003" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:34:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f0b33ec8-cb86-4bbc-be4a-19e2c32c29cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3509,86 +8278,109 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Feb 2017 01:02:18 GMT" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14871" + ], + "x-ms-correlation-request-id": [ + "abed202a-5120-4764-b929-99f1fe23b2d2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223448Z:abed202a-5120-4764-b929-99f1fe23b2d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:34:48 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ed8e6ba9-8e46-40f3-91eb-590a93e8b4ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ "no-cache" ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-request-id": [ - "6e3f2fa7-1090-4547-b4f0-a7781941122b" + "14870" ], "x-ms-correlation-request-id": [ - "6e3f2fa7-1090-4547-b4f0-a7781941122b" + "2d5db234-7e6a-4cc8-ae08-2f918d931e67" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010233Z:6e3f2fa7-1090-4547-b4f0-a7781941122b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20180510T223458Z:2d5db234-7e6a-4cc8-ae08-2f918d931e67" ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 15 Feb 2017 01:02:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "Thu, 10 May 2018 22:34:58 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3597,19 +8389,10 @@ "no-cache" ], "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "10" ], "x-ms-request-id": [ - "f6420c0c-8a58-4709-8bd8-02f1b85f2500" - ], - "x-ms-correlation-request-id": [ - "f6420c0c-8a58-4709-8bd8-02f1b85f2500" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170215T010248Z:f6420c0c-8a58-4709-8bd8-02f1b85f2500" + "52a588de-80dd-42cb-9f70-b0aee4694b67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3617,32 +8400,48 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Feb 2017 01:02:48 GMT" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14869" + ], + "x-ms-correlation-request-id": [ + "ff20084e-3b87-4635-837b-a19a4ab93c18" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223508Z:ff20084e-3b87-4635-837b-a19a4ab93c18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:35:08 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3651,52 +8450,59 @@ "no-cache" ], "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "10" ], "x-ms-request-id": [ - "8b54f544-1b94-44e8-92e2-a952282797ee" - ], - "x-ms-correlation-request-id": [ - "8b54f544-1b94-44e8-92e2-a952282797ee" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170215T010303Z:8b54f544-1b94-44e8-92e2-a952282797ee" + "52855999-7b7a-4415-b89d-f9867cd93973" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14868" + ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Feb 2017 01:03:03 GMT" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "x-ms-correlation-request-id": [ + "e326a485-bd64-49c1-9356-7d07c4ba6cc7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223518Z:e326a485-bd64-49c1-9356-7d07c4ba6cc7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:35:18 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3705,19 +8511,10 @@ "no-cache" ], "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "10" ], "x-ms-request-id": [ - "e7baae9e-b85c-481a-9a36-e4d7a442a119" - ], - "x-ms-correlation-request-id": [ - "e7baae9e-b85c-481a-9a36-e4d7a442a119" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170215T010319Z:e7baae9e-b85c-481a-9a36-e4d7a442a119" + "24a94b54-7fb2-4bbe-a2f3-c2bbb83aaccf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3725,32 +8522,48 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Feb 2017 01:03:18 GMT" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14867" + ], + "x-ms-correlation-request-id": [ + "5a483516-2a7d-48dc-9a1e-3459fe52eac8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223529Z:5a483516-2a7d-48dc-9a1e-3459fe52eac8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:35:28 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3759,19 +8572,10 @@ "no-cache" ], "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "10" ], "x-ms-request-id": [ - "559b3fb9-ec1c-4346-a506-b2e3049971d5" - ], - "x-ms-correlation-request-id": [ - "559b3fb9-ec1c-4346-a506-b2e3049971d5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170215T010334Z:559b3fb9-ec1c-4346-a506-b2e3049971d5" + "5fd95786-8489-4289-8606-bd5823dd942c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3779,32 +8583,48 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Feb 2017 01:03:33 GMT" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14866" + ], + "x-ms-correlation-request-id": [ + "0517278f-e219-47e4-9072-74aec7be4ca2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223539Z:0517278f-e219-47e4-9072-74aec7be4ca2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:35:38 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3812,20 +8632,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], "x-ms-request-id": [ - "8b9dd0d9-e78a-4616-af5c-1219c217a82e" - ], - "x-ms-correlation-request-id": [ - "8b9dd0d9-e78a-4616-af5c-1219c217a82e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170215T010349Z:8b9dd0d9-e78a-4616-af5c-1219c217a82e" + "9890f228-d315-4a0c-a7b9-99501d12c6ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3833,32 +8641,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Feb 2017 01:03:48 GMT" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14865" + ], + "x-ms-correlation-request-id": [ + "0c041255-a2ee-4f21-b61f-8331f5d47884" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223549Z:0c041255-a2ee-4f21-b61f-8331f5d47884" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:35:49 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operationResults/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvZGJlNmU4ZjUtYTAwOC00ZjhlLWIyYWYtM2FhZTAzZjBlNGI1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3866,20 +8687,11 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], "x-ms-request-id": [ - "c6ec9bfe-658b-4bad-85e6-381ef721f28f" - ], - "x-ms-correlation-request-id": [ - "c6ec9bfe-658b-4bad-85e6-381ef721f28f" + "dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5" ], - "x-ms-routing-request-id": [ - "WESTUS:20170215T010404Z:c6ec9bfe-658b-4bad-85e6-381ef721f28f" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operations/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3887,24 +8699,37 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Feb 2017 01:04:04 GMT" - ], "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/eastus/operationResults/dbe6e8f5-a008-4f8e-b2af-3aae03f0e4b5?api-version=2018-04-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14864" + ], + "x-ms-correlation-request-id": [ + "a00f09ca-4474-4dba-880f-a155f1e141f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T223549Z:a00f09ca-4474-4dba-880f-a155f1e141f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 22:35:49 GMT" ] }, - "StatusCode": 202 + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps6319?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzNjMxOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3923,36 +8748,39 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "00f85335-21f4-43e7-9fbb-8a1bc608e592" + "706068e7-32c5-4e52-9ef4-b326c3c46881" ], "x-ms-correlation-request-id": [ - "00f85335-21f4-43e7-9fbb-8a1bc608e592" + "706068e7-32c5-4e52-9ef4-b326c3c46881" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010419Z:00f85335-21f4-43e7-9fbb-8a1bc608e592" + "WESTUS2:20180510T223551Z:706068e7-32c5-4e52-9ef4-b326c3c46881" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 01:04:19 GMT" + "Thu, 10 May 2018 22:35:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek1Ua3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3978,35 +8806,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14998" ], "x-ms-request-id": [ - "b3e3c9e7-f8eb-4173-a8cd-6a9db938580a" + "ea1b5143-fad4-48cc-b909-2f496f67d45a" ], "x-ms-correlation-request-id": [ - "b3e3c9e7-f8eb-4173-a8cd-6a9db938580a" + "ea1b5143-fad4-48cc-b909-2f496f67d45a" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010434Z:b3e3c9e7-f8eb-4173-a8cd-6a9db938580a" + "WESTUS2:20180510T223552Z:ea1b5143-fad4-48cc-b909-2f496f67d45a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 01:04:34 GMT" + "Thu, 10 May 2018 22:35:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek1Ua3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4032,35 +8863,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14997" ], "x-ms-request-id": [ - "6cf5945d-f40d-4654-9994-1869db33543c" + "c69d6997-7f6d-4cc4-95a2-59479a2a6f3d" ], "x-ms-correlation-request-id": [ - "6cf5945d-f40d-4654-9994-1869db33543c" + "c69d6997-7f6d-4cc4-95a2-59479a2a6f3d" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010450Z:6cf5945d-f40d-4654-9994-1869db33543c" + "WESTUS2:20180510T223607Z:c69d6997-7f6d-4cc4-95a2-59479a2a6f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 01:04:49 GMT" + "Thu, 10 May 2018 22:36:07 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek1Ua3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4086,35 +8920,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14996" ], "x-ms-request-id": [ - "bd367058-ac15-495e-b595-2c0b437d541e" + "6d03dfaf-3431-4fd4-8c1a-253185cf67e7" ], "x-ms-correlation-request-id": [ - "bd367058-ac15-495e-b595-2c0b437d541e" + "6d03dfaf-3431-4fd4-8c1a-253185cf67e7" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010505Z:bd367058-ac15-495e-b595-2c0b437d541e" + "WESTUS2:20180510T223622Z:6d03dfaf-3431-4fd4-8c1a-253185cf67e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 01:05:04 GMT" + "Thu, 10 May 2018 22:36:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek1Ua3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4140,35 +8977,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14995" ], "x-ms-request-id": [ - "62f97d36-0dcd-40b2-97ef-4325059eea76" + "43300553-0586-4e2e-b91d-5da0ed337b38" ], "x-ms-correlation-request-id": [ - "62f97d36-0dcd-40b2-97ef-4325059eea76" + "43300553-0586-4e2e-b91d-5da0ed337b38" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010520Z:62f97d36-0dcd-40b2-97ef-4325059eea76" + "WESTUS2:20180510T223637Z:43300553-0586-4e2e-b91d-5da0ed337b38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 01:05:19 GMT" + "Thu, 10 May 2018 22:36:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek1Ua3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4194,35 +9034,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14993" ], "x-ms-request-id": [ - "3f4d346d-ae98-45d4-8a10-1b613eb53eb3" + "22bf9e17-17fa-428a-9643-cf96b18a867b" ], "x-ms-correlation-request-id": [ - "3f4d346d-ae98-45d4-8a10-1b613eb53eb3" + "22bf9e17-17fa-428a-9643-cf96b18a867b" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010535Z:3f4d346d-ae98-45d4-8a10-1b613eb53eb3" + "WESTUS2:20180510T223652Z:22bf9e17-17fa-428a-9643-cf96b18a867b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 01:05:34 GMT" + "Thu, 10 May 2018 22:36:51 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek1Ua3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4248,35 +9091,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14992" ], "x-ms-request-id": [ - "1b920ba6-bb14-4da0-bb5f-909582610831" + "22bdae4d-866a-40b3-9566-b66f7312b116" ], "x-ms-correlation-request-id": [ - "1b920ba6-bb14-4da0-bb5f-909582610831" + "22bdae4d-866a-40b3-9566-b66f7312b116" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010550Z:1b920ba6-bb14-4da0-bb5f-909582610831" + "WESTUS2:20180510T223708Z:22bdae4d-866a-40b3-9566-b66f7312b116" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 01:05:49 GMT" + "Thu, 10 May 2018 22:37:07 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/18b0dc06-a2b8-4c0f-95af-550319fa5eac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODY5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMThiMGRjMDYtYTJiOC00YzBmLTk1YWYtNTUwMzE5ZmE1ZWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPRFk1TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek1Ua3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4299,25 +9145,28 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14991" ], "x-ms-request-id": [ - "b8d06542-b9fd-4d6c-ad25-a63a2df75d40" + "cddf98b3-7f44-4770-acbe-122be8c74b18" ], "x-ms-correlation-request-id": [ - "b8d06542-b9fd-4d6c-ad25-a63a2df75d40" + "cddf98b3-7f44-4770-acbe-122be8c74b18" ], "x-ms-routing-request-id": [ - "WESTUS:20170215T010605Z:b8d06542-b9fd-4d6c-ad25-a63a2df75d40" + "WESTUS2:20180510T223723Z:cddf98b3-7f44-4770-acbe-122be8c74b18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 01:06:05 GMT" + "Thu, 10 May 2018 22:37:22 GMT" ] }, "StatusCode": 200 @@ -4325,15 +9174,15 @@ ], "Names": { "Test-VirtualNetworkExpressRouteGatewayCRUD": [ - "onesdk9869", - "onesdk3612", - "onesdk7341", - "onesdk5946", - "onesdk2453", - "onesdk4473" + "ps6319", + "ps3255", + "ps1288", + "ps3490", + "ps7999", + "ps176" ] }, "Variables": { - "SubscriptionId": "18b0dc06-a2b8-4c0f-95af-550319fa5eac" + "SubscriptionId": "b1f1deed-af60-4bab-9223-65d340462e24" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/TestVirtualNetworkGatewayP2SAndSKU.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/TestVirtualNetworkGatewayP2SAndSKU.json new file mode 100644 index 000000000000..24b04f807e01 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/TestVirtualNetworkGatewayP2SAndSKU.json @@ -0,0 +1,53874 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "24460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "46cbc846-4304-420d-8911-be65f63bb7e9" + ], + "x-ms-correlation-request-id": [ + "46cbc846-4304-420d-8911-be65f63bb7e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005238Z:46cbc846-4304-420d-8911-be65f63bb7e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 00:52:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps6796?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzNjc5Nj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796\",\r\n \"name\": \"ps6796\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "dca5f5bd-5ae4-43f7-9e42-f87dfe702763" + ], + "x-ms-correlation-request-id": [ + "dca5f5bd-5ae4-43f7-9e42-f87dfe702763" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005239Z:dca5f5bd-5ae4-43f7-9e42-f87dfe702763" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 00:52:38 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4MzY0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fcb0959-e6d8-4d7f-905a-bee8d0273946" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/localNetworkGateways/ps8364' under resource group 'ps6796' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "155" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "01bb16d9-c791-4acf-b48b-e27b93be13fa" + ], + "x-ms-correlation-request-id": [ + "01bb16d9-c791-4acf-b48b-e27b93be13fa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005239Z:01bb16d9-c791-4acf-b48b-e27b93be13fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 00:52:39 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4MzY0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"a199cb98-4c28-45a8-8e54-ba8418d8fdfe\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8553391a-f6a8-468b-afce-8b218572b83c\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.4.5\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "571" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c52651f7-f0b2-4c3f-b4af-b1966c7c10d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a199cb98-4c28-45a8-8e54-ba8418d8fdfe\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "725e3e77-b8c1-4edf-9013-23f1984f6c80" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005251Z:725e3e77-b8c1-4edf-9013-23f1984f6c80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:52:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4MzY0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0356e32e-d043-4e00-a895-206d974819e9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"a199cb98-4c28-45a8-8e54-ba8418d8fdfe\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8553391a-f6a8-468b-afce-8b218572b83c\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.4.5\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "571" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ba8fc197-0615-4829-871d-eae62ac4fdab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a199cb98-4c28-45a8-8e54-ba8418d8fdfe\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "3450db13-2858-417b-a112-57c57fffeb34" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005251Z:3450db13-2858-417b-a112-57c57fffeb34" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:52:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4MzY0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e21cc67-0099-47c1-b489-ddf095593ccc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"a199cb98-4c28-45a8-8e54-ba8418d8fdfe\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8553391a-f6a8-468b-afce-8b218572b83c\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.4.5\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "571" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "41d6c6d7-19f5-4896-92b2-748728149481" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a199cb98-4c28-45a8-8e54-ba8418d8fdfe\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "3ec46742-0d4d-4b40-8a95-342047208bce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005252Z:3ec46742-0d4d-4b40-8a95-342047208bce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:52:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4MzY0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.4.5\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "c7b71279-58d4-4d58-9715-fc98400afad0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"c0af272d-5386-4126-88d5-a144af36d502\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8553391a-f6a8-468b-afce-8b218572b83c\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.4.5\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "570" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2da50a7b-7264-4def-a28b-1e88f9e245c3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/2da50a7b-7264-4def-a28b-1e88f9e245c3?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f4d5433e-6fd4-42ae-a322-53458936e9ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005241Z:f4d5433e-6fd4-42ae-a322-53458936e9ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:52:41 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/2da50a7b-7264-4def-a28b-1e88f9e245c3?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmRhNTBhN2ItNzI2NC00ZGVmLWEyOGItMWU4OGY5ZTI0NWMzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7fe4d89d-a382-4a50-bf8f-74a2c4ec864e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "fd36fe4b-de99-4d21-a81d-a43092107a24" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005251Z:fd36fe4b-de99-4d21-a81d-a43092107a24" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:52:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjMxMz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6aaafe7e-f8f5-44ca-b743-0b6136c73d58" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps6313' under resource group 'ps6796' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5fd5e850-547a-4b62-bf8d-8fdc7433b83b" + ], + "x-ms-correlation-request-id": [ + "5fd5e850-547a-4b62-bf8d-8fdc7433b83b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005252Z:5fd5e850-547a-4b62-bf8d-8fdc7433b83b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 00:52:51 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjMxMz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6313\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313\",\r\n \"etag\": \"W/\\\"49dc5b1a-9f69-4ae6-b2f4-6b04de66e91e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0c7383f-c22c-47d0-9869-7a6b2b93d192\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"49dc5b1a-9f69-4ae6-b2f4-6b04de66e91e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ab949b2a-4566-4400-a4d8-ef26444e0fdb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"49dc5b1a-9f69-4ae6-b2f4-6b04de66e91e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "1ebd4933-18ea-4093-a79f-bd53c884ef70" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005313Z:1ebd4933-18ea-4093-a79f-bd53c884ef70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:53:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjMxMz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc5be6a9-be07-477f-be99-cec56379f2ed" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6313\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313\",\r\n \"etag\": \"W/\\\"49dc5b1a-9f69-4ae6-b2f4-6b04de66e91e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0c7383f-c22c-47d0-9869-7a6b2b93d192\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"49dc5b1a-9f69-4ae6-b2f4-6b04de66e91e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "796161f1-f72a-44c0-a323-39cd2ddf9cd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"49dc5b1a-9f69-4ae6-b2f4-6b04de66e91e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "b46cd91d-5069-4bae-a7f0-55cd2b4db393" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005313Z:b46cd91d-5069-4bae-a7f0-55cd2b4db393" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:53:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjMxMz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0e3e6db-e35e-4948-8eea-3a0f0eadab5e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6313\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313\",\r\n \"etag\": \"W/\\\"49dc5b1a-9f69-4ae6-b2f4-6b04de66e91e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0c7383f-c22c-47d0-9869-7a6b2b93d192\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"49dc5b1a-9f69-4ae6-b2f4-6b04de66e91e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6273cafa-9a45-41eb-93be-6a724855f14c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"49dc5b1a-9f69-4ae6-b2f4-6b04de66e91e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "b6207a95-adf8-4bb2-bc21-2cd0670581d8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005314Z:b6207a95-adf8-4bb2-bc21-2cd0670581d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:53:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjMxMz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "482" + ], + "x-ms-client-request-id": [ + "bb0b556c-b6fc-4e07-a294-898524d31eca" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6313\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313\",\r\n \"etag\": \"W/\\\"d4738112-98eb-46fe-a91b-84841bbceecf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e0c7383f-c22c-47d0-9869-7a6b2b93d192\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"d4738112-98eb-46fe-a91b-84841bbceecf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "38c6910f-4bcc-4afb-91bb-8c84bc2028d5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/38c6910f-4bcc-4afb-91bb-8c84bc2028d5?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "5b934ba6-8f62-4455-a23a-0818f9a3cbd9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005253Z:5b934ba6-8f62-4455-a23a-0818f9a3cbd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:52:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/38c6910f-4bcc-4afb-91bb-8c84bc2028d5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzhjNjkxMGYtNGJjYy00YWZiLTkxYmItOGM4NGJjMjAyOGQ1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "32e45c38-cae7-4844-b7d5-7a30a546ee09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "c9d4fff0-6ef9-402b-baa1-9e7bb4bd20c1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005303Z:c9d4fff0-6ef9-402b-baa1-9e7bb4bd20c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:53:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/38c6910f-4bcc-4afb-91bb-8c84bc2028d5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzhjNjkxMGYtNGJjYy00YWZiLTkxYmItOGM4NGJjMjAyOGQ1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3739ba27-144d-470d-bcf0-cc30bb321219" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "e89621ab-d4cf-4278-87be-6e16b302acbd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005313Z:e89621ab-d4cf-4278-87be-6e16b302acbd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:53:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyODEzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99b79ec1-e451-41c5-859c-2eb682ac2537" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps2813' under resource group 'ps6796' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "dc27254d-c357-47b2-a522-33a1452da4aa" + ], + "x-ms-correlation-request-id": [ + "dc27254d-c357-47b2-a522-33a1452da4aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005314Z:dc27254d-c357-47b2-a522-33a1452da4aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 00:53:13 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyODEzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps2813\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\",\r\n \"etag\": \"W/\\\"64931606-764b-4cf9-9aa7-ad5cbc1467b3\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"19d9f30f-4f34-497a-ae60-fe8ad1e3c7b0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps2727\",\r\n \"fqdn\": \"ps2727.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "733" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "52b08274-e18c-449f-827d-6147d054dbf3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"64931606-764b-4cf9-9aa7-ad5cbc1467b3\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "0a5af3a6-49eb-4646-a4e9-a53a9dc9298d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005325Z:0a5af3a6-49eb-4646-a4e9-a53a9dc9298d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:53:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyODEzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "196451c3-d651-462d-a48a-8b4067accbb0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps2813\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\",\r\n \"etag\": \"W/\\\"64931606-764b-4cf9-9aa7-ad5cbc1467b3\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"19d9f30f-4f34-497a-ae60-fe8ad1e3c7b0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps2727\",\r\n \"fqdn\": \"ps2727.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "733" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d23f54b7-bc20-4ac1-94db-decdf91441c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"64931606-764b-4cf9-9aa7-ad5cbc1467b3\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "cc2f9f69-2bf7-4dac-90dd-cef7e616bc1e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005325Z:cc2f9f69-2bf7-4dac-90dd-cef7e616bc1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:53:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyODEzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps2727\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "197" + ], + "x-ms-client-request-id": [ + "d4576cd0-8fc2-4465-888e-fc7d74315f71" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps2813\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\",\r\n \"etag\": \"W/\\\"f8d6550b-5835-401d-b9bc-d6c6d92d781d\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"19d9f30f-4f34-497a-ae60-fe8ad1e3c7b0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps2727\",\r\n \"fqdn\": \"ps2727.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "732" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "aafe7b43-123a-4201-80ca-a56667e6aec5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/aafe7b43-123a-4201-80ca-a56667e6aec5?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "b24e7352-e961-4d81-b1fc-80a3fc6a156f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005315Z:b24e7352-e961-4d81-b1fc-80a3fc6a156f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:53:14 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/aafe7b43-123a-4201-80ca-a56667e6aec5?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWFmZTdiNDMtMTIzYS00MjAxLTgwY2EtYTU2NjY3ZTZhZWM1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c6ab1d36-0d2c-4420-85e4-728f32419449" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "6d37d850-c867-4917-87a4-baf280b3733b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005325Z:6d37d850-c867-4917-87a4-baf280b3733b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:53:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b2dee2d-7f49-4de7-8f22-0d3988afb624" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/ps8364' under resource group 'ps6796' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "96eabb04-ac78-4404-bbef-3c0f49a233d6" + ], + "x-ms-correlation-request-id": [ + "96eabb04-ac78-4404-bbef-3c0f49a233d6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005325Z:96eabb04-ac78-4404-bbef-3c0f49a233d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 00:53:24 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4386" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ef89ce22-b88a-447a-9c10-12334050b865" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14864" + ], + "x-ms-correlation-request-id": [ + "e96b8e58-abe1-43dd-846c-48826e776526" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011325Z:e96b8e58-abe1-43dd-846c-48826e776526" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:13:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b51a5e92-ef25-477f-82c8-c3a0bc7b6310" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4386" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "553409e0-fa29-412e-84fe-6651d92c4126" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14863" + ], + "x-ms-correlation-request-id": [ + "09d81bb8-b2c8-42d2-b34c-67ed365011f4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011326Z:09d81bb8-b2c8-42d2-b34c-67ed365011f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:13:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b3411846-a341-439d-9d97-a7b5476da6aa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4386" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "10d06c9b-a08e-46d5-b5e9-43f25f7816a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14862" + ], + "x-ms-correlation-request-id": [ + "a6d84cca-3297-4e03-9bad-29b2fb6b2dd2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011327Z:a6d84cca-3297-4e03-9bad-29b2fb6b2dd2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:13:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f86a633-4dea-4df2-943b-320f1022968b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4386" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fc1a77c3-a2bb-4d59-a412-fa59647d84c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14861" + ], + "x-ms-correlation-request-id": [ + "d9e06eef-1065-4aec-acc7-f5979075886b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011328Z:d9e06eef-1065-4aec-acc7-f5979075886b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:13:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7630b287-6c5e-4527-8b81-78c9bed5c42d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14825" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "32b91b52-9041-46c5-9518-20dbab4b00e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011922Z:32b91b52-9041-46c5-9518-20dbab4b00e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:19:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "950fcfa0-9608-45b9-bdf1-686e60665670" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "64d7199e-07a0-494f-bb59-c979f9b90dd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14824" + ], + "x-ms-correlation-request-id": [ + "5fa0737f-5611-4d1e-864a-15ef2a6fcf54" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011923Z:5fa0737f-5611-4d1e-864a-15ef2a6fcf54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:19:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbb67a03-ed58-437c-8e13-96a8bf1a92fe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ce5d6dab-bcdb-4f76-bd90-6848621ceebf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14823" + ], + "x-ms-correlation-request-id": [ + "4741dea4-5ec3-431d-a803-cbcb6feb7cf7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011923Z:4741dea4-5ec3-431d-a803-cbcb6feb7cf7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:19:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5075c2ad-90f4-4bbd-a11e-851d453e15d1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d0c8ef31-84ae-4d6c-aaed-0e69526dc4d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14822" + ], + "x-ms-correlation-request-id": [ + "5993e899-551d-45c4-9b04-0c5665cdf840" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011924Z:5993e899-551d-45c4-9b04-0c5665cdf840" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:19:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "94c1f057-d93a-4b75-8418-96c21dae59a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14817" + ], + "x-ms-correlation-request-id": [ + "695479a0-b6f1-43a4-b02c-a20738334671" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012005Z:695479a0-b6f1-43a4-b02c-a20738334671" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:20:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f12a8b4c-433c-4bf2-8611-42f32dbbf872" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c0c0e6c9-1ae6-4bfe-848b-f4bca4d950a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14816" + ], + "x-ms-correlation-request-id": [ + "3932bbfb-9e46-424b-aea2-e557cff0734d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012006Z:3932bbfb-9e46-424b-aea2-e557cff0734d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:20:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d932df1e-5d83-48cc-bba2-16fb260de8ae" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "604b8e1a-5c78-4bda-b429-ba1cca73fcfd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14815" + ], + "x-ms-correlation-request-id": [ + "becb97e9-a5e3-4cf3-bba0-0dc001c0ebb8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012006Z:becb97e9-a5e3-4cf3-bba0-0dc001c0ebb8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:20:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae4b98dc-7ff4-42ac-a9d5-7418dd2a1e9a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "727d7e5a-8880-4c68-95ae-87708e3f2a2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14814" + ], + "x-ms-correlation-request-id": [ + "dcf7625e-c7cb-47bd-b2d0-f5be7ca9e280" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012007Z:dcf7625e-c7cb-47bd-b2d0-f5be7ca9e280" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:20:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91637901-9f35-4a88-93ec-136681d65649" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd92a1c6-9bbb-4e26-8f06-93919ea96afe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14813" + ], + "x-ms-correlation-request-id": [ + "4bf72bcb-9966-4ceb-9979-8a1217e8aad5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012008Z:4bf72bcb-9966-4ceb-9979-8a1217e8aad5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:20:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dbf84f65-31a0-4a8f-9fc4-c8283a642747" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14629" + ], + "x-ms-correlation-request-id": [ + "bcb4b450-2e67-49db-8e5e-560aa462ffc6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015054Z:bcb4b450-2e67-49db-8e5e-560aa462ffc6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:50:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b5cebe4-7f59-48fe-8db4-eecfb1120d5b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "573b1f31-079b-41fc-a16e-2306ccc64547" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14628" + ], + "x-ms-correlation-request-id": [ + "42e04bb7-a56e-4e2c-8226-fff1a63f52d7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015056Z:42e04bb7-a56e-4e2c-8226-fff1a63f52d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:50:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ed5dd63-22b5-453c-9134-aa6a1d9e1c05" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "97839ead-2afc-4027-9001-e8592b2878f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14627" + ], + "x-ms-correlation-request-id": [ + "bc095fc8-1e77-4999-b986-8e4f5807b02e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015056Z:bc095fc8-1e77-4999-b986-8e4f5807b02e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:50:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0450f29a-cfb4-4282-b1f0-600756ab3202" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "59fba755-9758-4e6b-974e-fbfd7fe043b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14626" + ], + "x-ms-correlation-request-id": [ + "650cb760-cc90-4156-9f75-778aa29817fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015058Z:650cb760-cc90-4156-9f75-778aa29817fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:50:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c53e8e3a-7f2b-4ecd-b7a4-1215f27d693f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14604" + ], + "x-ms-correlation-request-id": [ + "0afcf1c8-5b14-42db-bad7-32befe37d411" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015432Z:0afcf1c8-5b14-42db-bad7-32befe37d411" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4efdc08e-4664-46a3-b93d-fb9537e660b9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "923821ed-27b1-4fcb-b01a-89624547ead6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14603" + ], + "x-ms-correlation-request-id": [ + "9a8930e3-ddc6-4822-8ab1-d693f3505844" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015434Z:9a8930e3-ddc6-4822-8ab1-d693f3505844" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f39ecff7-ec04-463b-97b2-3299f5c066ae" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b9e3649a-dc20-480e-a251-95448600bf3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14602" + ], + "x-ms-correlation-request-id": [ + "0c4cd7e4-843f-460d-9bcb-cc77ac062939" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015435Z:0c4cd7e4-843f-460d-9bcb-cc77ac062939" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5cfc05c-5797-4570-9375-40471efa32bc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "da38bfe0-a0f5-4c64-97e4-11baadcc011b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14601" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "7646c62a-bb12-4006-aa8f-bcfc54d50f46" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015436Z:7646c62a-bb12-4006-aa8f-bcfc54d50f46" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7992cd56-119a-4683-90bc-f5549feae89a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "69461134-ed46-4758-8e01-0c516d38f4b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14600" + ], + "x-ms-correlation-request-id": [ + "0bc2838f-dc97-4fc7-89a4-695b706d1735" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015437Z:0bc2838f-dc97-4fc7-89a4-695b706d1735" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5cd57876-33bf-4679-aa47-eef339815dca" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"ce763716-910a-4b6f-9169-7f989b0881d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f6314188-c6a2-4aed-a049-1aef010f9b42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14599" + ], + "x-ms-correlation-request-id": [ + "f9f9d7ba-1e43-4a45-b5aa-c4093b4b2aba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015438Z:f9f9d7ba-1e43-4a45-b5aa-c4093b4b2aba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0732434-1d59-4ab8-b428-d0696083142e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"eecdeb96-4573-4d73-8e6d-5f4c4ef94cbe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"eecdeb96-4573-4d73-8e6d-5f4c4ef94cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"eecdeb96-4573-4d73-8e6d-5f4c4ef94cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"eecdeb96-4573-4d73-8e6d-5f4c4ef94cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4583a940-f73e-474d-9431-42dc6c52956e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14242" + ], + "x-ms-correlation-request-id": [ + "eaacb199-4fcb-4eea-9e23-527002c35d7f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015457Z:eaacb199-4fcb-4eea-9e23-527002c35d7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88ed710a-93d2-4c03-9a40-a5483bc7e937" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"eecdeb96-4573-4d73-8e6d-5f4c4ef94cbe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"eecdeb96-4573-4d73-8e6d-5f4c4ef94cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"eecdeb96-4573-4d73-8e6d-5f4c4ef94cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"eecdeb96-4573-4d73-8e6d-5f4c4ef94cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0b3a2c67-4c78-4f40-bbae-a751979bc7d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14241" + ], + "x-ms-correlation-request-id": [ + "eea8d227-8c1a-466f-a0b6-b4d5b49fd776" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015457Z:eea8d227-8c1a-466f-a0b6-b4d5b49fd776" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"740a2e30-5775-471d-a95d-3a1ae2a5ade7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"740a2e30-5775-471d-a95d-3a1ae2a5ade7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"740a2e30-5775-471d-a95d-3a1ae2a5ade7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2815" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "05609524-aa93-4b91-9c2f-3463a708c51f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14261" + ], + "x-ms-correlation-request-id": [ + "685a22a0-c3d5-4931-9e57-e8755773c311" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015538Z:685a22a0-c3d5-4931-9e57-e8755773c311" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:55:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1971e1a9-0238-4ed5-9b69-ec73477636de" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"740a2e30-5775-471d-a95d-3a1ae2a5ade7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"740a2e30-5775-471d-a95d-3a1ae2a5ade7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"740a2e30-5775-471d-a95d-3a1ae2a5ade7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2815" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5ce7917a-0aae-4b9d-bc5b-8770e0ad72a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14260" + ], + "x-ms-correlation-request-id": [ + "00346d92-e67d-4d30-ac22-e774f52bebe2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015540Z:00346d92-e67d-4d30-ac22-e774f52bebe2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:55:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0265c3a4-f863-4db7-8364-2a2ea5a1e1b4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"740a2e30-5775-471d-a95d-3a1ae2a5ade7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"740a2e30-5775-471d-a95d-3a1ae2a5ade7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"740a2e30-5775-471d-a95d-3a1ae2a5ade7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2815" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "51645735-3c9f-4fc0-ad85-47ca3fc40f4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14259" + ], + "x-ms-correlation-request-id": [ + "1cb0a5dd-e444-4996-8693-e27572361a11" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015540Z:1cb0a5dd-e444-4996-8693-e27572361a11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:55:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb3bb336-81d2-4def-a697-ee88724690a5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"740a2e30-5775-471d-a95d-3a1ae2a5ade7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"740a2e30-5775-471d-a95d-3a1ae2a5ade7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"740a2e30-5775-471d-a95d-3a1ae2a5ade7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2815" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4246e3e4-7240-4f91-a273-1add8279aece" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14258" + ], + "x-ms-correlation-request-id": [ + "6812d13b-8489-4f3c-b6ee-2c4292457fd7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015540Z:6812d13b-8489-4f3c-b6ee-2c4292457fd7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:55:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c6e92a91-73f5-4e22-b5db-f3dbc097074b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14253" + ], + "x-ms-correlation-request-id": [ + "55975aa8-75a6-4c71-b81b-a5b5f32741bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015621Z:55975aa8-75a6-4c71-b81b-a5b5f32741bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:56:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9eb8bde5-f6d9-4c32-992c-2addf35c51ac" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a0698d8d-e5d3-4523-88e7-4a46b157ebdb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14252" + ], + "x-ms-correlation-request-id": [ + "005b66e4-927b-4346-9edd-c5f607334df6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015622Z:005b66e4-927b-4346-9edd-c5f607334df6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:56:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b275697-b864-4287-8eaa-c00b417fd770" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c20e9177-ece4-4305-9ce2-dc37aab7f087" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14251" + ], + "x-ms-correlation-request-id": [ + "600068d0-2f79-4811-9fc5-794ace7538a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015623Z:600068d0-2f79-4811-9fc5-794ace7538a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:56:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41e0b731-72b0-486c-991d-14cbda601755" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3049364f-8ff8-4ec2-b40c-c4072a08b694" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14250" + ], + "x-ms-correlation-request-id": [ + "aca33d4a-b30a-4f62-bea4-405d4b1721f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015624Z:aca33d4a-b30a-4f62-bea4-405d4b1721f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:56:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7dfa83f9-fb47-4810-9c53-9a255ed0d414" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "945b5433-6eb5-4a78-a7f4-497dc55af8bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14249" + ], + "x-ms-correlation-request-id": [ + "e959f750-c759-4d31-896b-fe3b32edeff0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015625Z:e959f750-c759-4d31-896b-fe3b32edeff0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:56:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"f231fab1-9e1d-4ff2-b7a4-1d138ab254be\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"f231fab1-9e1d-4ff2-b7a4-1d138ab254be\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"f231fab1-9e1d-4ff2-b7a4-1d138ab254be\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3926" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fba6aa96-d3d7-479f-8aa5-b70abd2947fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14244" + ], + "x-ms-correlation-request-id": [ + "c477c844-3bbe-4f52-b670-99739fd004c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015707Z:c477c844-3bbe-4f52-b670-99739fd004c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:57:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90b1641c-6c7b-41af-8a26-ad258318a12d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"f231fab1-9e1d-4ff2-b7a4-1d138ab254be\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"f231fab1-9e1d-4ff2-b7a4-1d138ab254be\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"f231fab1-9e1d-4ff2-b7a4-1d138ab254be\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3926" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "398f3fe0-d5e0-4d21-8b35-939feb6c3121" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14243" + ], + "x-ms-correlation-request-id": [ + "8677925c-f8fa-462c-9e86-8f66e1b219cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015707Z:8677925c-f8fa-462c-9e86-8f66e1b219cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:57:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "673f8977-2efd-480e-bb54-67f8bb2c4c3b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"f231fab1-9e1d-4ff2-b7a4-1d138ab254be\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"f231fab1-9e1d-4ff2-b7a4-1d138ab254be\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"f231fab1-9e1d-4ff2-b7a4-1d138ab254be\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3926" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cbd2d52a-d01d-43fa-90ed-80029920a26e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14242" + ], + "x-ms-correlation-request-id": [ + "c0f8fcf6-4ec1-4fc4-afb8-f20f8cfca9e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015709Z:c0f8fcf6-4ec1-4fc4-afb8-f20f8cfca9e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:57:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba2d083f-9c7e-4815-ba33-c7b8077cc510" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"f231fab1-9e1d-4ff2-b7a4-1d138ab254be\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"f231fab1-9e1d-4ff2-b7a4-1d138ab254be\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"f231fab1-9e1d-4ff2-b7a4-1d138ab254be\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3926" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "436d34dd-ee9a-4992-9c1e-60d0451efe18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14241" + ], + "x-ms-correlation-request-id": [ + "14fc9827-f0cb-4ed0-8708-f136612538eb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015709Z:14fc9827-f0cb-4ed0-8708-f136612538eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:57:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"50e668ac-cbb6-471f-bd0f-cadf6f2baaed\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"50e668ac-cbb6-471f-bd0f-cadf6f2baaed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"50e668ac-cbb6-471f-bd0f-cadf6f2baaed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"50e668ac-cbb6-471f-bd0f-cadf6f2baaed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a3dc51aa-b7f3-4288-932f-2e627fa97d1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14236" + ], + "x-ms-correlation-request-id": [ + "3d7eda74-ee9e-471f-a356-7cd1c5316f4d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015750Z:3d7eda74-ee9e-471f-a356-7cd1c5316f4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:57:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc9db844-f2a9-4e31-94a2-68fdd4caa0d8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"50e668ac-cbb6-471f-bd0f-cadf6f2baaed\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"50e668ac-cbb6-471f-bd0f-cadf6f2baaed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"50e668ac-cbb6-471f-bd0f-cadf6f2baaed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"50e668ac-cbb6-471f-bd0f-cadf6f2baaed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d2a0e7db-c447-4347-9788-ead40a662bf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14235" + ], + "x-ms-correlation-request-id": [ + "b90afd23-7f6f-4437-a1e7-a16509eb15c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015751Z:b90afd23-7f6f-4437-a1e7-a16509eb15c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:57:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ae3c6bf-24f8-4e73-aed9-26b7829d7162" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"50e668ac-cbb6-471f-bd0f-cadf6f2baaed\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"50e668ac-cbb6-471f-bd0f-cadf6f2baaed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"50e668ac-cbb6-471f-bd0f-cadf6f2baaed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"50e668ac-cbb6-471f-bd0f-cadf6f2baaed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "93e70898-27fd-4a71-8ca2-c606306c8ff0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14234" + ], + "x-ms-correlation-request-id": [ + "cda20dc1-b5be-4d4f-922a-8cad45454f4e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015751Z:cda20dc1-b5be-4d4f-922a-8cad45454f4e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:57:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n }\r\n },\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfiguration/ps2743\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n },\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n },\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"properties\": {\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n },\r\n \"name\": \"sampleClientCert.cer\"\r\n }\r\n ],\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3039" + ], + "x-ms-client-request-id": [ + "d13443d8-127e-4b65-a057-6468a764bf07" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"f1b2ee18-6934-4c50-bc99-58d4a2eca963\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"f1b2ee18-6934-4c50-bc99-58d4a2eca963\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"f1b2ee18-6934-4c50-bc99-58d4a2eca963\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"f1b2ee18-6934-4c50-bc99-58d4a2eca963\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4091" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "493191ad-5844-47bb-ba9d-879d2411d788" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "edf0708d-fff4-48e3-8a50-e16b1b67d3c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005326Z:edf0708d-fff4-48e3-8a50-e16b1b67d3c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:53:25 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n }\r\n },\r\n \"name\": \"ps2743\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n },\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"properties\": {\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n },\r\n \"name\": \"sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\"\r\n }\r\n ],\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\"\r\n },\r\n \"etag\": \"W/\\\"b5ccd3c7-494e-475a-b064-5374f97b6ed4\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3775" + ], + "x-ms-client-request-id": [ + "039b220b-e535-43b3-932e-5d3c7ba40266" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"af0b0f26-b096-4e34-8c2c-96b1367bd520\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"af0b0f26-b096-4e34-8c2c-96b1367bd520\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"af0b0f26-b096-4e34-8c2c-96b1367bd520\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"af0b0f26-b096-4e34-8c2c-96b1367bd520\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0016a241-4746-41ee-a38c-ca0398bbb5fd" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "8c46cc12-fc89-4417-b70a-147d2f2f0dca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011328Z:8c46cc12-fc89-4417-b70a-147d2f2f0dca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:13:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n }\r\n },\r\n \"name\": \"ps2743\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n },\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n },\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"properties\": {\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n },\r\n \"name\": \"sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\"\r\n }\r\n ],\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\"\r\n },\r\n \"etag\": \"W/\\\"960d3eb8-e268-492a-b45f-08e8bf51f3fb\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3957" + ], + "x-ms-client-request-id": [ + "7e01ab1e-d898-4993-9ab4-161f0f9d3202" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"72b473eb-42ba-43a6-87cb-881e8dcf1f92\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"72b473eb-42ba-43a6-87cb-881e8dcf1f92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"72b473eb-42ba-43a6-87cb-881e8dcf1f92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"72b473eb-42ba-43a6-87cb-881e8dcf1f92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cb2e01bf-1b7c-4065-8096-ec3f33e0afc6" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/cb2e01bf-1b7c-4065-8096-ec3f33e0afc6?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "87c98994-c179-4bf2-bf35-a8f52a2ce8a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011924Z:87c98994-c179-4bf2-bf35-a8f52a2ce8a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:19:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n }\r\n },\r\n \"name\": \"ps2743\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n },\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n },\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"properties\": {\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n },\r\n \"name\": \"sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\"\r\n }\r\n ],\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\"\r\n },\r\n \"etag\": \"W/\\\"693a1b7a-8bbf-43ae-bc43-9661d0154ff5\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3957" + ], + "x-ms-client-request-id": [ + "cb90631f-1dda-46e7-b583-5a5109ae110e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"9af9d50f-00f8-4401-85e0-fc309412c78f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"9af9d50f-00f8-4401-85e0-fc309412c78f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"9af9d50f-00f8-4401-85e0-fc309412c78f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"9af9d50f-00f8-4401-85e0-fc309412c78f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "dfa569f1-1b9a-4be2-8f54-d843ebca7ee4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012008Z:dfa569f1-1b9a-4be2-8f54-d843ebca7ee4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:20:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n }\r\n },\r\n \"name\": \"ps2743\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n },\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n },\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"properties\": {\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n },\r\n \"name\": \"sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\"\r\n }\r\n ],\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\"\r\n },\r\n \"etag\": \"W/\\\"a15a659b-123f-4354-a89f-9d3ad94d635c\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3957" + ], + "x-ms-client-request-id": [ + "d000e440-403b-40c9-935f-6087220e996b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"f302ccf0-b525-40d0-9c68-ea65dcc7df69\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"f302ccf0-b525-40d0-9c68-ea65dcc7df69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"f302ccf0-b525-40d0-9c68-ea65dcc7df69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"f302ccf0-b525-40d0-9c68-ea65dcc7df69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c692154f-0660-4dbb-9e3e-7a6be5d73268" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "0e4af1fa-325d-4698-927d-69225422ded0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015058Z:0e4af1fa-325d-4698-927d-69225422ded0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:50:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n }\r\n },\r\n \"name\": \"ps2743\",\r\n \"etag\": \"W/\\\"eecdeb96-4573-4d73-8e6d-5f4c4ef94cbe\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n },\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"properties\": {\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n },\r\n \"name\": \"sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"eecdeb96-4573-4d73-8e6d-5f4c4ef94cbe\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\"\r\n }\r\n ],\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\"\r\n },\r\n \"etag\": \"W/\\\"eecdeb96-4573-4d73-8e6d-5f4c4ef94cbe\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2396" + ], + "x-ms-client-request-id": [ + "d003d560-c238-4df3-8c8e-0289e3c44f5b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"c2ab5a52-5c5f-4124-a538-f5d3d3e2de62\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"c2ab5a52-5c5f-4124-a538-f5d3d3e2de62\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"c2ab5a52-5c5f-4124-a538-f5d3d3e2de62\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2600" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8d750a32-b725-4515-b55f-62f79d9dcec9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/8d750a32-b725-4515-b55f-62f79d9dcec9?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "5078f047-12cb-4147-bf11-3a898eb381d5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015457Z:5078f047-12cb-4147-bf11-3a898eb381d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n }\r\n },\r\n \"name\": \"ps2743\",\r\n \"etag\": \"W/\\\"740a2e30-5775-471d-a95d-3a1ae2a5ade7\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n },\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n },\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"properties\": {\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n },\r\n \"name\": \"sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"740a2e30-5775-471d-a95d-3a1ae2a5ade7\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\"\r\n }\r\n ],\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\"\r\n },\r\n \"etag\": \"W/\\\"740a2e30-5775-471d-a95d-3a1ae2a5ade7\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3688" + ], + "x-ms-client-request-id": [ + "74946ab1-79bc-4b2a-90e3-cdfefeeb51ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"75bf7ff3-cf20-4bb6-86a7-9107643bf841\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"75bf7ff3-cf20-4bb6-86a7-9107643bf841\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"75bf7ff3-cf20-4bb6-86a7-9107643bf841\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"75bf7ff3-cf20-4bb6-86a7-9107643bf841\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "92bc6bfd-1b0b-4ca6-8f7f-197750aa1448" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/92bc6bfd-1b0b-4ca6-8f7f-197750aa1448?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "98e8095c-cfae-4971-8bbc-d94911b09e62" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015541Z:98e8095c-cfae-4971-8bbc-d94911b09e62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:55:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n }\r\n },\r\n \"name\": \"ps2743\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n },\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n },\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\"\r\n },\r\n \"etag\": \"W/\\\"0f9e4375-2608-490f-9c64-edd3b41a8bce\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3507" + ], + "x-ms-client-request-id": [ + "4c5fde16-219d-4234-bc7b-bf0ce31b58a6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"5629cc6b-eb18-4922-9fbc-15bcb9a30b1c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"5629cc6b-eb18-4922-9fbc-15bcb9a30b1c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"5629cc6b-eb18-4922-9fbc-15bcb9a30b1c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3711" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e1597a31-55ee-4e7b-a5c3-6f33b9b1c517" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/e1597a31-55ee-4e7b-a5c3-6f33b9b1c517?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "9df2cb4e-af30-4ff2-8be4-6f25de6d5cc9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015625Z:9df2cb4e-af30-4ff2-8be4-6f25de6d5cc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:56:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczgzNjQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n }\r\n },\r\n \"name\": \"ps2743\",\r\n \"etag\": \"W/\\\"f231fab1-9e1d-4ff2-b7a4-1d138ab254be\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n },\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n },\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"f231fab1-9e1d-4ff2-b7a4-1d138ab254be\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"properties\": {\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n },\r\n \"name\": \"sampleClientCert.cer\"\r\n }\r\n ],\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\"\r\n },\r\n \"etag\": \"W/\\\"f231fab1-9e1d-4ff2-b7a4-1d138ab254be\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3690" + ], + "x-ms-client-request-id": [ + "b1c8c9a8-91c5-43fe-bf0e-7067206c4774" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps8364\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364\",\r\n \"etag\": \"W/\\\"ca819d1b-32ab-41a6-81e7-7dc1502190e7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5c16b4a9-9b4a-496a-8dd6-f2d168ce2ea6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps2743\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/ipConfigurations/ps2743\",\r\n \"etag\": \"W/\\\"ca819d1b-32ab-41a6-81e7-7dc1502190e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/publicIPAddresses/ps2813\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworks/ps6313/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"ca819d1b-32ab-41a6-81e7-7dc1502190e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualNetworkGateways/ps8364/vpnClientRevokedCertificates/sampleClientCert.cer\",\r\n \"etag\": \"W/\\\"ca819d1b-32ab-41a6-81e7-7dc1502190e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/localNetworkGateways/ps8364\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f307c77c-c518-4396-ba37-63fbd21b5145" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f307c77c-c518-4396-ba37-63fbd21b5145?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "fbb5ae08-0e0b-40bb-b55d-dd0ae55ac26b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015709Z:fbb5ae08-0e0b-40bb-b55d-dd0ae55ac26b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:57:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ce8bbeb6-6ffd-41d8-949d-35b3eba02c66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "f4f8edf8-1d0d-4ede-9b00-2cc314eb695a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005336Z:f4f8edf8-1d0d-4ede-9b00-2cc314eb695a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:53:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "229bf088-3995-4f04-b1b0-79523a12b729" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "06d1b791-60e4-42aa-b4a8-e83a46882eca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005346Z:06d1b791-60e4-42aa-b4a8-e83a46882eca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:53:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9c27c758-2457-46aa-8e43-aece09839a3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "2cff4573-7377-4f57-a8d6-d099411204b5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005356Z:2cff4573-7377-4f57-a8d6-d099411204b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:53:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "78b960b0-383b-4a70-8cde-8d470d467af7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "69e9d7f5-29fa-4c7f-8089-33e237ba33a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005406Z:69e9d7f5-29fa-4c7f-8089-33e237ba33a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:54:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0b38b7d6-0b11-48b0-ad11-32951e65f4f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "af1fbe42-bd0c-478e-8cc1-5c2013195f8f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005416Z:af1fbe42-bd0c-478e-8cc1-5c2013195f8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:54:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2e6d91c3-0910-4ec0-8046-0f4cf55a6a6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "bcc27c0d-65ab-4b4f-92a8-440aa64ff8bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005426Z:bcc27c0d-65ab-4b4f-92a8-440aa64ff8bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:54:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "58380a62-eaae-46c9-8eab-f68edf184972" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "37eaa34a-5e58-4a21-b13d-b3793ce201a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005436Z:37eaa34a-5e58-4a21-b13d-b3793ce201a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:54:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4a4fe5b7-2a82-45d7-a6eb-d92413187497" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "a46280f1-f7b7-4411-9e18-c8659da8bfae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005446Z:a46280f1-f7b7-4411-9e18-c8659da8bfae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:54:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7cb94728-8e77-42e5-93fd-4a0235fb1768" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "f4e3754e-afa6-4503-8869-bd15949730db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005456Z:f4e3754e-afa6-4503-8869-bd15949730db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:54:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8f956183-34a8-4933-80dc-ee8f8956c45d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "fad42ba4-d5c3-4a24-97ca-837b2dfac883" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005506Z:fad42ba4-d5c3-4a24-97ca-837b2dfac883" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:55:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "192a0e66-cada-4f40-9b80-cba7511c9213" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "cb0e5ef1-50a2-4fd8-9af8-d296ea391276" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005516Z:cb0e5ef1-50a2-4fd8-9af8-d296ea391276" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:55:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a6982587-559e-4fe8-96dd-3b752fdbb4cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "ee808eaa-a7ed-4c5b-99e6-218c7f16e377" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005526Z:ee808eaa-a7ed-4c5b-99e6-218c7f16e377" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:55:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9c94eaaf-19a3-4bd3-9cf4-bec40607ec79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "e6feb6ba-b156-4008-a5f4-0d3c3a8af37a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005536Z:e6feb6ba-b156-4008-a5f4-0d3c3a8af37a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:55:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "800a6dfb-6382-427b-ba73-7a89069fd6e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "3fe9b9d4-18e4-4b3d-b79a-44d5be8a5f76" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005547Z:3fe9b9d4-18e4-4b3d-b79a-44d5be8a5f76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:55:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "77555efa-65fa-4ef8-84cf-d286f5102bee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "22810baf-913f-4fc2-a0a0-0239ece69881" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005557Z:22810baf-913f-4fc2-a0a0-0239ece69881" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:55:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cc82e5b2-1605-4871-a047-c4e8995fbdef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "1a305ac3-ae1d-4962-a6e2-5c1185632dc0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005607Z:1a305ac3-ae1d-4962-a6e2-5c1185632dc0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:56:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0f6693b3-bbe8-48f2-90ce-61610a016b02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "c797bf8a-f968-41f7-8e8f-385096de3ab1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005617Z:c797bf8a-f968-41f7-8e8f-385096de3ab1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:56:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c4b20322-be06-423e-8522-d826a277f370" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "50dac74d-1625-402f-9d6e-8057e7281aa2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005627Z:50dac74d-1625-402f-9d6e-8057e7281aa2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:56:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7dfc0495-6fb7-430e-b2ee-60703cc4394d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "07b7429a-068e-43c6-a9a0-a3ea8f188574" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005637Z:07b7429a-068e-43c6-a9a0-a3ea8f188574" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:56:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "acb34ee9-33ba-4796-b71f-7b24e61f2966" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "5761a68d-3149-4429-a782-4d7ceadcbaa5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005647Z:5761a68d-3149-4429-a782-4d7ceadcbaa5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:56:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "faedde14-c692-4664-b27f-a09c8116d722" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "1360681f-8401-4b8c-a296-86fa9c2e63e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005657Z:1360681f-8401-4b8c-a296-86fa9c2e63e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:56:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "013f983c-893b-484e-80e5-8c210d9cf8ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f6578590-b233-4230-81d4-d7a75566efa3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005707Z:f6578590-b233-4230-81d4-d7a75566efa3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:57:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "428b97b6-55ff-48b2-948d-2fed191acc0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "08632bce-9d9f-44f9-a63a-dec56dcf052e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005717Z:08632bce-9d9f-44f9-a63a-dec56dcf052e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:57:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8e2e35ed-52cb-4a6e-a931-8db8069765cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "a8dd25a1-b293-42ce-a9e4-5ec14a5c8c23" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005727Z:a8dd25a1-b293-42ce-a9e4-5ec14a5c8c23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:57:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4bf482c4-1101-47d7-9547-f1d445104bef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "83f49694-8d41-43e8-85e3-9b34e687bc39" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005737Z:83f49694-8d41-43e8-85e3-9b34e687bc39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:57:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "40e4c475-2467-4655-bf03-8cb3599b87e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "0f976b59-3e63-4e81-abc0-88c799fd48c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005748Z:0f976b59-3e63-4e81-abc0-88c799fd48c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:57:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "13d60e79-1787-40ec-ab3a-79977b6a1737" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "d0c9b276-1c37-4ffa-a498-02c6b666951e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005758Z:d0c9b276-1c37-4ffa-a498-02c6b666951e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:57:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e539de64-e918-4ac8-b2eb-4af6c2ecb970" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "5b3724cc-dda3-4cd5-b351-b56f992f9787" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005808Z:5b3724cc-dda3-4cd5-b351-b56f992f9787" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:58:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5d108c1f-d916-4074-8b85-dad7f86368a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "d26943c2-7d2d-4c07-b58c-c0853e9675a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005818Z:d26943c2-7d2d-4c07-b58c-c0853e9675a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:58:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "52978ad4-8c73-4bcf-a59c-eb5121d9351d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "1b68127b-2232-48f8-b9b4-5362b91460b4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005828Z:1b68127b-2232-48f8-b9b4-5362b91460b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:58:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9de3fdb2-4f00-4f48-a57c-f74332fd8348" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d5fe6542-8315-4cd7-9aec-83ff97e7673f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005838Z:d5fe6542-8315-4cd7-9aec-83ff97e7673f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:58:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "59f684fa-850d-4458-8a71-c7114e0a2c53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "b89c1863-ad92-4013-975a-837d1bc5a593" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005848Z:b89c1863-ad92-4013-975a-837d1bc5a593" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:58:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "60793c82-392a-499f-8739-09f5b4e837d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "0a1b0156-6aef-4690-ba33-a8b96af0e8e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005858Z:0a1b0156-6aef-4690-ba33-a8b96af0e8e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:58:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "33be87f7-42fe-414f-8997-139f78ff27e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "dc27fa19-ee4d-4f1b-9652-fe1c1b43d7cd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005908Z:dc27fa19-ee4d-4f1b-9652-fe1c1b43d7cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:59:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5631a0f9-6708-4840-bc5e-31751bed8d56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "b873c897-0971-4571-8ac2-eaffc6a8c4f2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005918Z:b873c897-0971-4571-8ac2-eaffc6a8c4f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:59:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "41d0e058-31e8-40d9-a11b-52b10275a394" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "128201a6-50dd-468a-9d06-33414a623156" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005928Z:128201a6-50dd-468a-9d06-33414a623156" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:59:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c0e11d39-4999-417e-ba3b-55e008042316" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "7845e640-44d6-41e0-b286-26fab4e1f734" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005938Z:7845e640-44d6-41e0-b286-26fab4e1f734" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:59:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2c7519d9-8457-46f6-80fa-588814f4c8ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "243babe4-9987-4317-9abe-7da357ada837" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005948Z:243babe4-9987-4317-9abe-7da357ada837" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:59:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b9a1a5df-90f4-4caa-b87f-c8ac7cd0cba4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "1bc8c0d4-53b4-464b-bc9b-3c35e5228785" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T005959Z:1bc8c0d4-53b4-464b-bc9b-3c35e5228785" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:59:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9384b38c-cca3-4a2b-8e33-8790e88323b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "873fd412-0774-4845-a940-48c3d66cd5df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010009Z:873fd412-0774-4845-a940-48c3d66cd5df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:00:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e0bdd019-297e-4ff0-94ce-20dc49fc46aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "460a39e6-0d54-4711-bcb5-9de7bba8f2dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010019Z:460a39e6-0d54-4711-bcb5-9de7bba8f2dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:00:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c7e9d2a5-5cf9-4354-bfaa-85f719f4c2a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "ed66d396-882f-4d46-8869-85017175a97d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010029Z:ed66d396-882f-4d46-8869-85017175a97d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:00:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e00ef97e-f159-4759-bb59-a9581bfd8fdf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "41cdadd4-f3da-4806-b006-7f969f36deda" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010039Z:41cdadd4-f3da-4806-b006-7f969f36deda" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:00:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4b3700a5-96a2-422e-8177-78999fab42b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "0acb0972-0872-498a-a3b8-660913e0ccd0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010049Z:0acb0972-0872-498a-a3b8-660913e0ccd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:00:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9409e6d4-19e6-47f9-8749-49dc31407222" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "872a01b5-6656-4bd0-9355-ace24e728875" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010059Z:872a01b5-6656-4bd0-9355-ace24e728875" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:00:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4fa25aec-ee4b-45e2-810c-63ed26ff6803" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "ca308f4d-0db8-410f-a0a1-db4981875dc9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010109Z:ca308f4d-0db8-410f-a0a1-db4981875dc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:01:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "52b272c3-ade6-4df1-b5da-61b16c07bb14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "1c0602f9-eebb-44a1-b582-a89f039f4225" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010119Z:1c0602f9-eebb-44a1-b582-a89f039f4225" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:01:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6c0e5eed-5b5b-4ad1-a7cb-fce9b178a8c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "d872a780-b6c9-494e-8a7a-d248260b0d02" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010129Z:d872a780-b6c9-494e-8a7a-d248260b0d02" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:01:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d038af65-a239-4de4-a3b3-9d7ffa900014" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "2dc9e502-402d-4ec3-8649-d68ae61cc93a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010139Z:2dc9e502-402d-4ec3-8649-d68ae61cc93a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:01:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "490badcb-1d20-4231-8cb4-d4bb281d1682" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "fc3e16e5-f327-4c15-8abd-ef30d9b44cf4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010149Z:fc3e16e5-f327-4c15-8abd-ef30d9b44cf4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:01:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3e24edca-a1a6-48d8-9579-a460e7349bc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "41ac1193-8ef7-4ec7-873c-f6a8a4172987" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010200Z:41ac1193-8ef7-4ec7-873c-f6a8a4172987" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:01:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b5e147f6-b95d-4297-86be-bffa4a1cd07b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "93818b2e-5662-47e9-9662-c4f5555cb423" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010210Z:93818b2e-5662-47e9-9662-c4f5555cb423" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:02:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "07ca2317-49a7-43da-ac20-43c57d554019" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "f6bb0224-f159-4129-a732-093d3e6cb07d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010220Z:f6bb0224-f159-4129-a732-093d3e6cb07d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:02:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "587fc0d2-61a7-4760-9549-dc7b606a0945" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "aeab2a2a-7a9a-4537-aa7e-b5e7289fe2e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010230Z:aeab2a2a-7a9a-4537-aa7e-b5e7289fe2e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:02:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c60cf452-5ee9-48af-8478-ca6c233a85f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "52eb45f0-79d0-4065-b4bc-679897f46076" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010240Z:52eb45f0-79d0-4065-b4bc-679897f46076" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:02:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5edaa50c-aede-4f26-86c2-1d3c22ff4611" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "a50843b7-050b-4df2-9f02-272362d3138b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010250Z:a50843b7-050b-4df2-9f02-272362d3138b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:02:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1ef485ea-d494-4584-9e91-52c61ab468ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "680ba42a-45c3-4fb6-baa5-90d1ed29f89a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010300Z:680ba42a-45c3-4fb6-baa5-90d1ed29f89a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:02:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "598229d2-ec70-4614-ac5d-f87ada1b726f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "b067b666-3db4-44d0-8e36-b44cc8e4249b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010310Z:b067b666-3db4-44d0-8e36-b44cc8e4249b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:03:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "72cdcbc9-a38c-4ea9-b208-d2c6bd90df34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "b6196b96-fa37-46c7-b1ec-b1f0a72a4010" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010320Z:b6196b96-fa37-46c7-b1ec-b1f0a72a4010" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:03:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fa07e55a-541f-4afc-b9e7-f2910833276f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "5b77ad8b-351c-4a45-b1c6-2aa1aff24101" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010330Z:5b77ad8b-351c-4a45-b1c6-2aa1aff24101" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:03:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "22aad3b6-47e3-43a3-a97d-5e86805dde06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "55300ad8-39b0-4030-8624-c724641e181d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010340Z:55300ad8-39b0-4030-8624-c724641e181d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:03:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5895c9eb-a445-41d1-825c-1fbe71a590ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "5b41685a-165d-4aed-b953-bdaea746f782" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010350Z:5b41685a-165d-4aed-b953-bdaea746f782" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:03:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d868071b-4fb7-4a61-a005-1d981d12927c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-correlation-request-id": [ + "ae4afa6e-2f38-4788-94ad-38bd6c52df1b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010401Z:ae4afa6e-2f38-4788-94ad-38bd6c52df1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:04:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f8225c2a-2376-4101-ada7-fd09cbc2738f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "e9b9e247-e38b-48dc-990a-a2fab787cda2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010411Z:e9b9e247-e38b-48dc-990a-a2fab787cda2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:04:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ae6cac7d-957a-43c0-93ff-407b51532e16" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "2b0a30fd-dace-4c1b-8232-f2b2479c9ebe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010421Z:2b0a30fd-dace-4c1b-8232-f2b2479c9ebe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:04:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "adf10bf5-e504-494d-b14d-ead3751f1622" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "2ae1238d-e797-4200-89dd-081b50dc7cbb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010431Z:2ae1238d-e797-4200-89dd-081b50dc7cbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:04:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a7d23d3a-2909-4032-b794-3266d0e513c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "0126d560-b6ab-4844-91af-0b96add8bd57" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010441Z:0126d560-b6ab-4844-91af-0b96add8bd57" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:04:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "10d19b36-aeaa-463d-bcd2-06a5f5f5eef9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-correlation-request-id": [ + "94ab32b0-089c-4f8a-930c-908f6d010c10" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010451Z:94ab32b0-089c-4f8a-930c-908f6d010c10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:04:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "45b41021-5356-4795-a7bb-255cad0f0e56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-correlation-request-id": [ + "304a36b0-2a2c-4894-8aa2-b472495754c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010501Z:304a36b0-2a2c-4894-8aa2-b472495754c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:05:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "28d08a69-4ff1-4417-a251-1d8e02f6b8ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-correlation-request-id": [ + "c1e909d1-6f02-4459-963b-9d297530f6fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010511Z:c1e909d1-6f02-4459-963b-9d297530f6fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:05:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "088b0232-24ef-4d16-98c2-b13a5b99d0eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "c07abeee-6687-46f7-8b76-df41362c66c7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010521Z:c07abeee-6687-46f7-8b76-df41362c66c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:05:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f7430023-4e0e-4284-bfbc-b0d4fae944cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-correlation-request-id": [ + "396ba26c-eff2-4f80-9b3f-fd876018162e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010531Z:396ba26c-eff2-4f80-9b3f-fd876018162e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:05:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b3ecd7df-1a88-49e7-876e-c135a4b2c691" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-correlation-request-id": [ + "81c6ca0e-f24a-49e3-94e3-3224f270333b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010541Z:81c6ca0e-f24a-49e3-94e3-3224f270333b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:05:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9816449d-74d4-493d-98fa-ac765291a635" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-correlation-request-id": [ + "9f00838c-c9ca-4a39-ae3b-da19691fcc22" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010551Z:9f00838c-c9ca-4a39-ae3b-da19691fcc22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:05:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "08c5afd8-c77d-4b60-b4ba-3f2c33204ced" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-correlation-request-id": [ + "8149e5ef-e99f-4438-afe1-fed516d47084" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010601Z:8149e5ef-e99f-4438-afe1-fed516d47084" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:06:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ab4b3eca-945d-4931-92d4-4b2fc665fbbe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14908" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "b474c351-2c06-4c3d-bd27-5ba1ce207450" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010611Z:b474c351-2c06-4c3d-bd27-5ba1ce207450" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:06:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "93ec1487-ddd4-47f8-a323-8482ede001e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" + ], + "x-ms-correlation-request-id": [ + "12bc41a9-6505-4a34-a91f-63788b6db724" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010622Z:12bc41a9-6505-4a34-a91f-63788b6db724" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:06:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4586ce39-578b-4e5d-b971-7f4f162b37ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14906" + ], + "x-ms-correlation-request-id": [ + "4f89b870-1f9b-4ac0-ae3a-a123c07e5bb9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010632Z:4f89b870-1f9b-4ac0-ae3a-a123c07e5bb9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:06:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bedf370c-d2ff-4c59-9de8-736c41a25495" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14905" + ], + "x-ms-correlation-request-id": [ + "8f804f8f-dfc9-41e8-9e3f-964e134f0d56" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010642Z:8f804f8f-dfc9-41e8-9e3f-964e134f0d56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:06:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dadaf2e1-d68f-4ef8-a285-07c71b1b99d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14904" + ], + "x-ms-correlation-request-id": [ + "e8a42727-14b5-40b3-a13b-4f5b390f1486" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010652Z:e8a42727-14b5-40b3-a13b-4f5b390f1486" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:06:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c04c382a-95c5-49db-81b2-ded65babf0af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14903" + ], + "x-ms-correlation-request-id": [ + "f873c482-a01c-4386-9679-fee095292f79" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010702Z:f873c482-a01c-4386-9679-fee095292f79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:07:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5e0a498c-2f4b-4fc3-97e1-96bcc3f6e684" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], + "x-ms-correlation-request-id": [ + "5df114db-061b-4d23-9ec7-264da8c4c399" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010712Z:5df114db-061b-4d23-9ec7-264da8c4c399" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:07:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9006e347-331f-4919-bc0f-9981d99abfe2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14901" + ], + "x-ms-correlation-request-id": [ + "c8b2182f-6731-4814-a61e-611c7d7c1468" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010722Z:c8b2182f-6731-4814-a61e-611c7d7c1468" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:07:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3b8286a6-68e6-4ab4-95d9-68808d5946ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14900" + ], + "x-ms-correlation-request-id": [ + "47ce54da-9110-4c53-9346-6dacd1d4b78a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010732Z:47ce54da-9110-4c53-9346-6dacd1d4b78a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:07:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "08be59a5-8e41-4dd0-9a42-00502adc0a2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14899" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "0ad0666f-3fd7-4c2b-a670-531762065902" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010742Z:0ad0666f-3fd7-4c2b-a670-531762065902" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:07:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "649ed288-b38c-4684-bad0-ef78026d6e28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14898" + ], + "x-ms-correlation-request-id": [ + "b176d12c-f687-451e-ad8b-3a79ed3b5a3a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010752Z:b176d12c-f687-451e-ad8b-3a79ed3b5a3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:07:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d4e50ef9-978f-41de-bf6e-57bfcaecc62a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14897" + ], + "x-ms-correlation-request-id": [ + "b8cb51c9-c7b4-436c-b712-b319a31d178d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010802Z:b8cb51c9-c7b4-436c-b712-b319a31d178d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:08:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a141c197-985e-41fb-a57f-0ffe4f419a3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14896" + ], + "x-ms-correlation-request-id": [ + "9118dac0-c861-41fe-b071-a921d3ac16e4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010812Z:9118dac0-c861-41fe-b071-a921d3ac16e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:08:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "da6c2a99-9f7f-4b73-ab72-7bb0a984c47a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14895" + ], + "x-ms-correlation-request-id": [ + "3ba2d4a1-5126-4c70-af01-63bd414acd75" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010822Z:3ba2d4a1-5126-4c70-af01-63bd414acd75" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:08:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "396d4424-b543-4015-b3d5-67c2559118d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14894" + ], + "x-ms-correlation-request-id": [ + "7e14b07f-f8cb-4aac-a7bc-02d560a5c12f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010832Z:7e14b07f-f8cb-4aac-a7bc-02d560a5c12f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:08:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "688fa33e-52b9-4b04-8972-50aace5e5a0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14893" + ], + "x-ms-correlation-request-id": [ + "2a11e4c2-03f3-46eb-980a-7885688d7f2a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010842Z:2a11e4c2-03f3-46eb-980a-7885688d7f2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:08:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "112a8455-f415-4008-84e3-1887e7ded263" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], + "x-ms-correlation-request-id": [ + "e44f4c81-0116-46ec-8f0b-0a46752ab448" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010853Z:e44f4c81-0116-46ec-8f0b-0a46752ab448" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:08:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "321057e8-02f8-41e5-8585-4be8a49db513" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14891" + ], + "x-ms-correlation-request-id": [ + "77c35dce-a8aa-4d07-8181-920d139b0fbf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010903Z:77c35dce-a8aa-4d07-8181-920d139b0fbf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:09:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f3db6a82-25ec-4106-b378-f206eca212f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "56f2cd92-d62e-416c-97d4-0b1a1824747b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010913Z:56f2cd92-d62e-416c-97d4-0b1a1824747b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:09:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7f485ea8-523d-48d8-b42d-2ed8d6e3b1a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" + ], + "x-ms-correlation-request-id": [ + "5f83e79e-9b50-43df-a9b6-5a7526a4bd0d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010923Z:5f83e79e-9b50-43df-a9b6-5a7526a4bd0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:09:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9a123080-0bbc-4997-888d-86ae46a3ae4c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], + "x-ms-correlation-request-id": [ + "ec825ee0-f77c-4db1-8ff0-119ea3c5419d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010933Z:ec825ee0-f77c-4db1-8ff0-119ea3c5419d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:09:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bcdf8216-0211-4410-bb2b-68d664179045" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14887" + ], + "x-ms-correlation-request-id": [ + "7b0713a5-48bf-4d7a-98ad-e039f9a764fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010943Z:7b0713a5-48bf-4d7a-98ad-e039f9a764fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:09:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a6d0d060-0605-4f00-a353-6b65e8941508" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14886" + ], + "x-ms-correlation-request-id": [ + "71e854dc-ed92-411a-bcc9-7d88f3ae5ae9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T010953Z:71e854dc-ed92-411a-bcc9-7d88f3ae5ae9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:09:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3740944e-8592-47b9-b003-118c8ab0ff6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14885" + ], + "x-ms-correlation-request-id": [ + "7c603252-4d32-425a-ae4f-f795dc4a7ea1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011003Z:7c603252-4d32-425a-ae4f-f795dc4a7ea1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:10:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "de6ef526-52bc-4ab1-8f95-f147b577f4d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14884" + ], + "x-ms-correlation-request-id": [ + "c8dc8c97-cdd7-43e5-b0d5-e0372e1b10e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011013Z:c8dc8c97-cdd7-43e5-b0d5-e0372e1b10e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:10:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e88d40db-1824-4d68-a060-f4dde78d6fa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14883" + ], + "x-ms-correlation-request-id": [ + "58103306-c5a5-49fb-a82f-3526312c08f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011023Z:58103306-c5a5-49fb-a82f-3526312c08f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:10:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "38675236-1765-498d-8bb3-3c9f347e40ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14882" + ], + "x-ms-correlation-request-id": [ + "cb9f4028-354c-4991-81dd-47306b4db962" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011033Z:cb9f4028-354c-4991-81dd-47306b4db962" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:10:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "84297b13-05d1-4a39-a169-aea0d7a076a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14881" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "bb5febbc-8797-4ffb-a42a-3f2ac1d59bd6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011043Z:bb5febbc-8797-4ffb-a42a-3f2ac1d59bd6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:10:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cef6ed20-bbfe-4ed2-9699-c2ba7b5d01c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14880" + ], + "x-ms-correlation-request-id": [ + "7e8e4429-97e8-479f-9fe9-f0a6420d44d9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011053Z:7e8e4429-97e8-479f-9fe9-f0a6420d44d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:10:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "51c6aaae-72ea-492c-8459-113baf281ec1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14879" + ], + "x-ms-correlation-request-id": [ + "91310607-dac5-4347-8108-e3fbd7661a26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011103Z:91310607-dac5-4347-8108-e3fbd7661a26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:11:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c5806c8b-06ee-4743-bca2-2004d361269b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14878" + ], + "x-ms-correlation-request-id": [ + "d283deb3-1cad-4f83-a80d-5fc27932cb5d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011113Z:d283deb3-1cad-4f83-a80d-5fc27932cb5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:11:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fb8366eb-8b54-4b5a-83a7-fa0afce472b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14877" + ], + "x-ms-correlation-request-id": [ + "a395d1f3-aaab-4487-829d-ab8c63424879" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011124Z:a395d1f3-aaab-4487-829d-ab8c63424879" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:11:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9fbfd8fd-0214-4ed4-9137-0effec1bd8f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14876" + ], + "x-ms-correlation-request-id": [ + "04614572-5e3e-4794-b717-11d4e09bda07" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011134Z:04614572-5e3e-4794-b717-11d4e09bda07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:11:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3da72d43-0072-40ce-ad51-33817652d18b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14875" + ], + "x-ms-correlation-request-id": [ + "66ac5ca6-cb3f-4fb0-927d-d2e4d01bbfb9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011144Z:66ac5ca6-cb3f-4fb0-927d-d2e4d01bbfb9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:11:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c8392f9c-94c8-4222-bc99-5008f844f1c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14874" + ], + "x-ms-correlation-request-id": [ + "7ec69e72-f756-4b34-964c-82eb6357a215" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011154Z:7ec69e72-f756-4b34-964c-82eb6357a215" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:11:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a84822a0-109a-4335-882f-bb734452c641" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14873" + ], + "x-ms-correlation-request-id": [ + "493dfd3f-ad26-4ce3-8940-591791def7e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011204Z:493dfd3f-ad26-4ce3-8940-591791def7e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:12:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fb68c371-6b9e-4e47-a2bb-8c389d5dfa4c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14872" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "860ac989-b4a5-4c33-a3db-9b96fee9ee69" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011214Z:860ac989-b4a5-4c33-a3db-9b96fee9ee69" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:12:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9e8dadd6-bb47-44a2-a751-ad6bd99f2b5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14871" + ], + "x-ms-correlation-request-id": [ + "44423ec6-1d16-4121-87b3-6bba8c183f1f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011224Z:44423ec6-1d16-4121-87b3-6bba8c183f1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:12:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b74aa0f3-90f8-4c64-923f-4902b82ef968" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14870" + ], + "x-ms-correlation-request-id": [ + "42223cb9-bdb6-496e-8539-25014fe45b51" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011234Z:42223cb9-bdb6-496e-8539-25014fe45b51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:12:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3b5457a8-181b-45b3-95b8-cbdf12bb0639" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14869" + ], + "x-ms-correlation-request-id": [ + "6f962101-2c7c-4e64-9ec2-56acfcf19625" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011244Z:6f962101-2c7c-4e64-9ec2-56acfcf19625" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:12:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1d7aab09-2a40-41f2-a9e8-9d181d45edcb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14868" + ], + "x-ms-correlation-request-id": [ + "7996dcd1-b07c-4883-8df7-7fcf83736823" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011254Z:7996dcd1-b07c-4883-8df7-7fcf83736823" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:12:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5eeeb54d-d677-4014-a609-07755a119158" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14867" + ], + "x-ms-correlation-request-id": [ + "0b0965ab-c867-443d-b50a-54435615790e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011304Z:0b0965ab-c867-443d-b50a-54435615790e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:13:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8859e344-94aa-45ce-9cc0-8d2fe01f1cc2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14866" + ], + "x-ms-correlation-request-id": [ + "f0998f71-ea0c-424a-afbd-535702fa0d8d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011314Z:f0998f71-ea0c-424a-afbd-535702fa0d8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/493191ad-5844-47bb-ba9d-879d2411d788?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDkzMTkxYWQtNTg0NC00N2JiLWJhOWQtODc5ZDI0MTFkNzg4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e6ba4139-a269-4605-8fe1-479c74f0d7d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14865" + ], + "x-ms-correlation-request-id": [ + "1187c2f8-45cc-4025-a1aa-e7450d8e6660" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011324Z:1187c2f8-45cc-4025-a1aa-e7450d8e6660" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:13:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8af7da75-0379-420d-898e-e7e3e346a051" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14860" + ], + "x-ms-correlation-request-id": [ + "5308e066-7a04-4c8d-adeb-90132dc55a9f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011338Z:5308e066-7a04-4c8d-adeb-90132dc55a9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:13:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "75670a1b-c120-45dd-8d36-03595ec1c5a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14859" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c0487aed-0cce-426c-9ecf-1e9b640f36ae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011348Z:c0487aed-0cce-426c-9ecf-1e9b640f36ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:13:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5c8ce2dd-9661-43c8-a9a0-389af3ba7b1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14858" + ], + "x-ms-correlation-request-id": [ + "067a1c5b-8a3a-4b97-9222-a01bc45a0196" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011359Z:067a1c5b-8a3a-4b97-9222-a01bc45a0196" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:13:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f700411c-9156-432a-8900-6e97a52d346c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14857" + ], + "x-ms-correlation-request-id": [ + "dff93e4b-cfe7-4684-96a6-0285690eaaae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011409Z:dff93e4b-cfe7-4684-96a6-0285690eaaae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:14:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9bfa3eef-cb47-4e11-9ab0-db4f8efd806b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14856" + ], + "x-ms-correlation-request-id": [ + "f34ea3a8-6f9e-433b-b71f-2fee1c5af06d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011419Z:f34ea3a8-6f9e-433b-b71f-2fee1c5af06d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:14:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5ef89966-c2ae-4344-a88a-ba4be676d63c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14855" + ], + "x-ms-correlation-request-id": [ + "c5b0e682-8eb7-426d-9e29-f3a8682e98e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011429Z:c5b0e682-8eb7-426d-9e29-f3a8682e98e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:14:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d884d57d-c8f6-49a4-999f-487f6429d753" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14854" + ], + "x-ms-correlation-request-id": [ + "81728f1d-5422-4e99-9df3-112f5842fe93" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011439Z:81728f1d-5422-4e99-9df3-112f5842fe93" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:14:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3229b36d-d08b-473b-94c8-32e764d4503b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14853" + ], + "x-ms-correlation-request-id": [ + "076a80ea-6288-452f-bbf7-1c84d18fbf62" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011449Z:076a80ea-6288-452f-bbf7-1c84d18fbf62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:14:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "133821e0-de1e-43e7-8c49-58f52fc68813" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14852" + ], + "x-ms-correlation-request-id": [ + "230d78e3-f5b7-41f6-b45e-8aad27052520" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011459Z:230d78e3-f5b7-41f6-b45e-8aad27052520" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:14:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fa10276e-7d3f-46f1-8028-0f3801680043" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14851" + ], + "x-ms-correlation-request-id": [ + "48e3eeda-d0ae-4a88-9566-11e33b306b9a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011509Z:48e3eeda-d0ae-4a88-9566-11e33b306b9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:15:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e6712190-d80a-4291-ac07-ea590b2cb66d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14850" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "3745ed00-80fb-412b-a300-8ad754e37f66" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011519Z:3745ed00-80fb-412b-a300-8ad754e37f66" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:15:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2614fe17-328d-43b6-8d20-c9275a02f531" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14849" + ], + "x-ms-correlation-request-id": [ + "32ed9450-f4ce-4d11-8148-b61e714a459a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011529Z:32ed9450-f4ce-4d11-8148-b61e714a459a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:15:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "20459c94-aee7-4e60-846c-5febb5f6aa0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14848" + ], + "x-ms-correlation-request-id": [ + "21e0c1f2-e8fc-4b68-b819-ba3441fe44bb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011540Z:21e0c1f2-e8fc-4b68-b819-ba3441fe44bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:15:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c1469ab6-9004-4856-810e-89062b0be7c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14847" + ], + "x-ms-correlation-request-id": [ + "58f18e24-6e01-4810-bec9-f9a2a89bccfc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011550Z:58f18e24-6e01-4810-bec9-f9a2a89bccfc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:15:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0f3f0702-7c75-4861-9a7b-a6e141f9a007" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14846" + ], + "x-ms-correlation-request-id": [ + "aafec876-3ffa-4dcf-a98a-6c0e12b64dd7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011600Z:aafec876-3ffa-4dcf-a98a-6c0e12b64dd7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:15:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1b1e31c3-d8f2-4765-90d7-189fb74ca9e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14845" + ], + "x-ms-correlation-request-id": [ + "a3dba2b9-53ca-44d6-81ab-145ddd8e3d61" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011610Z:a3dba2b9-53ca-44d6-81ab-145ddd8e3d61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:16:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a8733460-7720-4de5-b8ad-7a79499fc8d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14844" + ], + "x-ms-correlation-request-id": [ + "995c4e8d-4fe3-4ee2-ab72-9bbeea5db75e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011620Z:995c4e8d-4fe3-4ee2-ab72-9bbeea5db75e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:16:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4924e045-7371-4fde-a16c-3c502d262272" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14843" + ], + "x-ms-correlation-request-id": [ + "1f38d11f-5d71-4c47-8a7d-e35b28e14922" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011630Z:1f38d11f-5d71-4c47-8a7d-e35b28e14922" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:16:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5731297e-84df-4022-8094-b2dcdad370ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14842" + ], + "x-ms-correlation-request-id": [ + "93b73527-2d13-4e3d-8301-beb291c690bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011640Z:93b73527-2d13-4e3d-8301-beb291c690bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:16:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7b845fca-37f3-45f5-a0de-38179b008032" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14841" + ], + "x-ms-correlation-request-id": [ + "000b641d-d85a-4a84-b682-a3957d62ccba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011650Z:000b641d-d85a-4a84-b682-a3957d62ccba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:16:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "92855c8e-7e17-4c3f-a71a-abdb57b36018" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14840" + ], + "x-ms-correlation-request-id": [ + "a7543037-f593-462c-a7f4-8a1bdd00e140" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011700Z:a7543037-f593-462c-a7f4-8a1bdd00e140" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:16:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "31cb1266-e78f-4e10-8936-f8d2c1f0a756" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14839" + ], + "x-ms-correlation-request-id": [ + "7fdf28ae-6662-44dd-b5c2-2a15625d9898" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011710Z:7fdf28ae-6662-44dd-b5c2-2a15625d9898" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:17:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d08a047d-0960-4463-aa98-be65ee3330d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14838" + ], + "x-ms-correlation-request-id": [ + "0933ead6-4c12-41d1-8cee-9f9c245be9f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011720Z:0933ead6-4c12-41d1-8cee-9f9c245be9f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:17:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f2df1e89-e19c-49c6-a10e-1ab5dfd60698" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14837" + ], + "x-ms-correlation-request-id": [ + "39aabe4d-d5c1-463e-b912-fce2aeca10f4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011730Z:39aabe4d-d5c1-463e-b912-fce2aeca10f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:17:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cda9dcbb-a8b1-4207-9b2b-cc1370a3ebba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14836" + ], + "x-ms-correlation-request-id": [ + "a0265949-36ff-45a0-9833-ac03a3a68d96" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011740Z:a0265949-36ff-45a0-9833-ac03a3a68d96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:17:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "63d63738-fd80-4dc2-a17d-8b6a7c89af2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14835" + ], + "x-ms-correlation-request-id": [ + "fafc3ebf-2988-4e13-b0d3-f9a3c1c06de5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011750Z:fafc3ebf-2988-4e13-b0d3-f9a3c1c06de5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:17:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "375afb2d-b242-44b4-9a99-aaf2a2c10c48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14834" + ], + "x-ms-correlation-request-id": [ + "f750cac6-c38b-4050-a2f7-ee3fa6890429" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011800Z:f750cac6-c38b-4050-a2f7-ee3fa6890429" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:18:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d70930c7-9050-45e0-9965-e26b51a8ceab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14833" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f4b4b95a-cab4-4ec4-b768-a81f988199af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011811Z:f4b4b95a-cab4-4ec4-b768-a81f988199af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:18:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f03e1352-653c-4e1c-b80a-b61cac9bc81d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14832" + ], + "x-ms-correlation-request-id": [ + "e4f33598-060b-41be-b542-8f3448d8c3ae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011821Z:e4f33598-060b-41be-b542-8f3448d8c3ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:18:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "216e9377-787f-4d75-845c-04a5c5b1502f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14831" + ], + "x-ms-correlation-request-id": [ + "81b54fac-34e1-4377-83a2-7f99f8fd160e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011831Z:81b54fac-34e1-4377-83a2-7f99f8fd160e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:18:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1a0ccf92-9348-4786-afca-4fad1bbde374" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14830" + ], + "x-ms-correlation-request-id": [ + "8619be53-1cc8-444a-ae8b-683a6a738f81" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011841Z:8619be53-1cc8-444a-ae8b-683a6a738f81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:18:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9fb8006a-d19a-4e0d-ae18-7dd45887d922" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14829" + ], + "x-ms-correlation-request-id": [ + "9e890d34-0621-4d47-9d8b-f89fa3e44111" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011851Z:9e890d34-0621-4d47-9d8b-f89fa3e44111" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:18:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "33877933-f613-451a-9a06-4badd88e3141" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14828" + ], + "x-ms-correlation-request-id": [ + "c66ac24e-2f6a-4210-a7c4-6620643b4cba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011901Z:c66ac24e-2f6a-4210-a7c4-6620643b4cba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:19:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "19412294-b34d-4149-9c0c-cd4a1d8eff99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14827" + ], + "x-ms-correlation-request-id": [ + "c348534d-3cf2-4549-baf9-a9a90632ba6a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011911Z:c348534d-3cf2-4549-baf9-a9a90632ba6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:19:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/0016a241-4746-41ee-a38c-ca0398bbb5fd?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDAxNmEyNDEtNDc0Ni00MWVlLWEzOGMtY2EwMzk4YmJiNWZkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c0e4e9ca-4a27-40c3-87f6-be6eed06909e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14826" + ], + "x-ms-correlation-request-id": [ + "57c71d69-8fe4-4354-8dc5-167c19b00f06" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011921Z:57c71d69-8fe4-4354-8dc5-167c19b00f06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:19:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/cb2e01bf-1b7c-4065-8096-ec3f33e0afc6?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvY2IyZTAxYmYtMWI3Yy00MDY1LTgwOTYtZWMzZjMzZTBhZmM2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c7bee2c0-658a-49cc-9ed1-9fb18d83a131" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14821" + ], + "x-ms-correlation-request-id": [ + "17249378-afda-4399-9db4-a1cbea56f3a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011935Z:17249378-afda-4399-9db4-a1cbea56f3a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:19:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/cb2e01bf-1b7c-4065-8096-ec3f33e0afc6?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvY2IyZTAxYmYtMWI3Yy00MDY1LTgwOTYtZWMzZjMzZTBhZmM2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1b35c613-f30f-42b5-81a6-770b1785ca6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14820" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d655cb4c-48a4-46ed-a7df-779585358353" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011945Z:d655cb4c-48a4-46ed-a7df-779585358353" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:19:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/cb2e01bf-1b7c-4065-8096-ec3f33e0afc6?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvY2IyZTAxYmYtMWI3Yy00MDY1LTgwOTYtZWMzZjMzZTBhZmM2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c9057385-2d46-42f6-8d40-717590e063cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14819" + ], + "x-ms-correlation-request-id": [ + "fe50de83-2b10-4b53-bd3d-3107315a38d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T011955Z:fe50de83-2b10-4b53-bd3d-3107315a38d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:19:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/cb2e01bf-1b7c-4065-8096-ec3f33e0afc6?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvY2IyZTAxYmYtMWI3Yy00MDY1LTgwOTYtZWMzZjMzZTBhZmM2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c297c09f-ce60-4c38-8a0c-c38130c955eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14818" + ], + "x-ms-correlation-request-id": [ + "0c77f055-a6c5-4f32-96e2-77db808e1d86" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012005Z:0c77f055-a6c5-4f32-96e2-77db808e1d86" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:20:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1c1569be-1888-48c4-bab9-f283a396ebe2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14812" + ], + "x-ms-correlation-request-id": [ + "9892efd2-b825-4378-92b8-ffe0306b86e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012018Z:9892efd2-b825-4378-92b8-ffe0306b86e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:20:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d69a9d13-9cd6-4c57-9daa-7240f0ff6b4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14811" + ], + "x-ms-correlation-request-id": [ + "da643b70-4104-4e67-a9cb-cdc620426240" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012028Z:da643b70-4104-4e67-a9cb-cdc620426240" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:20:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "aacce095-9dbc-4f46-9133-43e48d450d27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14810" + ], + "x-ms-correlation-request-id": [ + "cbf6a104-11cb-4e7c-b571-401124f061b5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012038Z:cbf6a104-11cb-4e7c-b571-401124f061b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:20:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "25a9a8b2-8a15-4f55-a88c-f63791f1570f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14809" + ], + "x-ms-correlation-request-id": [ + "b8284d97-6955-4028-8a59-63024c531c7b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012049Z:b8284d97-6955-4028-8a59-63024c531c7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:20:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "37e6d925-a77d-4a48-ae43-6170c2d703c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14808" + ], + "x-ms-correlation-request-id": [ + "275a78ec-462f-4fec-a5dd-c01dcfa3e2ce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012059Z:275a78ec-462f-4fec-a5dd-c01dcfa3e2ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:20:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c3de3044-f1cf-492a-918e-d494120ae221" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14807" + ], + "x-ms-correlation-request-id": [ + "b6d8cbea-cbab-46f3-969c-a3c7e3b4badb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012109Z:b6d8cbea-cbab-46f3-969c-a3c7e3b4badb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:21:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6702cf06-a444-4ad4-9f3a-43f70ba25240" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14806" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d5152298-7465-458d-960d-91e87646a0ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012119Z:d5152298-7465-458d-960d-91e87646a0ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:21:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0bb63dd6-6428-4475-b1b9-6d39c14348e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14805" + ], + "x-ms-correlation-request-id": [ + "8a711b2f-4023-4fbf-a212-e384e8c10985" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012129Z:8a711b2f-4023-4fbf-a212-e384e8c10985" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:21:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d954031f-ff98-407c-a815-474fbb9a5007" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14804" + ], + "x-ms-correlation-request-id": [ + "7398915a-b3a4-428e-823a-d79c2c8d21eb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012139Z:7398915a-b3a4-428e-823a-d79c2c8d21eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:21:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e8b5b2c3-29b2-413a-adc6-25b63d38c172" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14803" + ], + "x-ms-correlation-request-id": [ + "00cf0530-ce0e-4f08-bf93-5a974b2491ae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012149Z:00cf0530-ce0e-4f08-bf93-5a974b2491ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:21:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "aae206ed-2620-40b2-a564-97c5dd9ea59d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14802" + ], + "x-ms-correlation-request-id": [ + "f9a1a6e5-db37-4c99-808c-62c882c16916" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012159Z:f9a1a6e5-db37-4c99-808c-62c882c16916" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:21:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e0bd5358-8ec0-4c18-ac11-c854bfa426fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14801" + ], + "x-ms-correlation-request-id": [ + "9c257ed3-52f7-4a98-9e02-6def1bf23c55" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012209Z:9c257ed3-52f7-4a98-9e02-6def1bf23c55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:22:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fcef4f6f-509d-4c39-b22a-ea7f5ff6fb62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14800" + ], + "x-ms-correlation-request-id": [ + "0c6a0cf0-f049-447d-8dec-1c4db3838f00" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012219Z:0c6a0cf0-f049-447d-8dec-1c4db3838f00" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:22:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e1ff921f-7ab5-4946-8379-28110c0c8368" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14799" + ], + "x-ms-correlation-request-id": [ + "36f8e1dc-6ad4-4986-a143-bda8e24f84d6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012229Z:36f8e1dc-6ad4-4986-a143-bda8e24f84d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:22:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e9eb4ce2-bd38-468b-83c0-62ba6f6577e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14798" + ], + "x-ms-correlation-request-id": [ + "9b03fb09-e08b-4ea5-aece-525bc1d448aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012239Z:9b03fb09-e08b-4ea5-aece-525bc1d448aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:22:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "83d83939-b8ec-44c3-984e-7c0ac4840ebd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14797" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4a071857-41f6-4c41-b039-10bd6853780f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012249Z:4a071857-41f6-4c41-b039-10bd6853780f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:22:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "aa521cef-430b-42f3-a6fc-411122062397" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14796" + ], + "x-ms-correlation-request-id": [ + "9b3935c1-5092-45a0-b553-4a28ac01b60d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012300Z:9b3935c1-5092-45a0-b553-4a28ac01b60d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:22:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1ae84336-07ab-4cca-bdf3-dd9f4817ca3f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14795" + ], + "x-ms-correlation-request-id": [ + "2d152159-9814-4e09-b798-cdb41010e0a0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012310Z:2d152159-9814-4e09-b798-cdb41010e0a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:23:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1b6d9eb5-e972-4c06-b47f-ade849d36809" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14794" + ], + "x-ms-correlation-request-id": [ + "b5952e2b-64c3-43b7-8712-324a19c0d93a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012320Z:b5952e2b-64c3-43b7-8712-324a19c0d93a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:23:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "42452024-b7a7-41f2-8d0a-25bd809be1db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14793" + ], + "x-ms-correlation-request-id": [ + "d9008143-fc84-4677-82d1-47e3bfb1ff58" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012330Z:d9008143-fc84-4677-82d1-47e3bfb1ff58" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:23:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9135e974-01f7-4a7e-a7b3-dee2cf88c678" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14792" + ], + "x-ms-correlation-request-id": [ + "31ff1c09-df66-4fe5-9d17-26bf5ff5cf28" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012340Z:31ff1c09-df66-4fe5-9d17-26bf5ff5cf28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:23:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7e0c880d-257d-4cd9-9a38-281ce1d4ee1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14791" + ], + "x-ms-correlation-request-id": [ + "dbdaeb18-15d8-4b93-99ce-f571870c6f35" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012350Z:dbdaeb18-15d8-4b93-99ce-f571870c6f35" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:23:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a0270eb2-2859-4f2e-8451-1b8536e08961" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14790" + ], + "x-ms-correlation-request-id": [ + "813447fe-d2d4-40d6-b558-30a1cd797637" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012400Z:813447fe-d2d4-40d6-b558-30a1cd797637" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:23:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4c634c2a-0744-475a-9ccb-70a070af43d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14789" + ], + "x-ms-correlation-request-id": [ + "ba36ccd9-5959-472e-8a7d-b50fb37b5184" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012410Z:ba36ccd9-5959-472e-8a7d-b50fb37b5184" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:24:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4d6a396f-df81-4cab-937e-eb2bae467909" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14788" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "2e8acec7-8b04-459e-872c-9e0191ea0639" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012420Z:2e8acec7-8b04-459e-872c-9e0191ea0639" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:24:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c84667df-e8ef-4000-b7eb-2f16974637fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14787" + ], + "x-ms-correlation-request-id": [ + "96f9d0e8-a74e-4baa-8dea-e7a1e6d2b45c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012430Z:96f9d0e8-a74e-4baa-8dea-e7a1e6d2b45c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:24:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e8fb3a27-34fd-48d6-9606-75966f6e8e27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14786" + ], + "x-ms-correlation-request-id": [ + "41d874e1-8dfa-4d97-84b0-35c4cbca0bdd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012440Z:41d874e1-8dfa-4d97-84b0-35c4cbca0bdd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:24:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7a47913f-12a9-4957-9851-e297d3cec6f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14785" + ], + "x-ms-correlation-request-id": [ + "337fc7f0-2226-43de-a5be-23f68179ca5d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012450Z:337fc7f0-2226-43de-a5be-23f68179ca5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:24:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4f256dd4-ff84-4c20-8b49-e6ff99df7a8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14784" + ], + "x-ms-correlation-request-id": [ + "27471e42-094b-4450-9d30-297482fa4f49" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012500Z:27471e42-094b-4450-9d30-297482fa4f49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:25:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "02435c5f-1a6a-4984-8570-6eb25cfac8a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14783" + ], + "x-ms-correlation-request-id": [ + "e67e0699-a21e-4b49-be93-2d6d49c0e618" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012510Z:e67e0699-a21e-4b49-be93-2d6d49c0e618" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:25:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "527d68c8-99cd-4be8-86aa-6efcab838dcd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14782" + ], + "x-ms-correlation-request-id": [ + "63d6a368-9008-4899-b1c5-71053f5eb987" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012520Z:63d6a368-9008-4899-b1c5-71053f5eb987" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:25:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "18b65e7d-2451-4b3f-a1ee-12265ab94368" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14781" + ], + "x-ms-correlation-request-id": [ + "3ecb9945-8db8-4e5f-b39e-0cdcabc1113d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012530Z:3ecb9945-8db8-4e5f-b39e-0cdcabc1113d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:25:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9f3846ac-30ff-413a-a538-28d28edce57a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14780" + ], + "x-ms-correlation-request-id": [ + "633f23ef-f281-46c1-8c17-619e28f36892" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012541Z:633f23ef-f281-46c1-8c17-619e28f36892" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:25:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3ed5f8cc-345b-4229-8f49-ac94c1596697" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14779" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d6497371-d828-44c9-996b-c857c09a2dfa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012551Z:d6497371-d828-44c9-996b-c857c09a2dfa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:25:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9079ccdb-6987-4ffb-ae71-4933a74a6e2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14778" + ], + "x-ms-correlation-request-id": [ + "458c28b9-3f95-43a3-8921-f83f5a01e1b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012601Z:458c28b9-3f95-43a3-8921-f83f5a01e1b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:26:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "43c00694-a11c-491b-a957-5c8211b1f8b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14777" + ], + "x-ms-correlation-request-id": [ + "a59585e1-46e3-4d6f-8e0b-934c6997436e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012611Z:a59585e1-46e3-4d6f-8e0b-934c6997436e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:26:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c6855891-eae7-4c25-9d7f-6f2f03b91f30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14776" + ], + "x-ms-correlation-request-id": [ + "895fe684-53b6-4aab-8214-48e2adf7b595" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012621Z:895fe684-53b6-4aab-8214-48e2adf7b595" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:26:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8b8e8aad-21d5-4c90-8fb3-68612c1b3d71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14775" + ], + "x-ms-correlation-request-id": [ + "49647531-d300-4e07-add6-9786e963a1a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012631Z:49647531-d300-4e07-add6-9786e963a1a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:26:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c52af786-7151-4629-93e1-2fa26f6082b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14774" + ], + "x-ms-correlation-request-id": [ + "36a43b43-2bea-4fe6-9d8d-a14a1ba94684" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012641Z:36a43b43-2bea-4fe6-9d8d-a14a1ba94684" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:26:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "680b78db-410b-4194-b5b4-667ba5e9c63c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14773" + ], + "x-ms-correlation-request-id": [ + "9607c198-9b02-442f-8643-87d03e0eb7d8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012651Z:9607c198-9b02-442f-8643-87d03e0eb7d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:26:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "30861c64-e0df-4722-a252-a4dac5be1921" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14772" + ], + "x-ms-correlation-request-id": [ + "20ca100c-efb3-4615-933e-57ebb75f2fa2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012701Z:20ca100c-efb3-4615-933e-57ebb75f2fa2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:27:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6f3bddf5-a9bc-46f9-b878-b554d0c00713" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14771" + ], + "x-ms-correlation-request-id": [ + "cac8520a-dc1c-4de1-8154-a4d384d70408" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012711Z:cac8520a-dc1c-4de1-8154-a4d384d70408" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:27:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ae8f19af-ec02-4d84-bb33-6455f7a6d7a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14770" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "9a31b0d8-bac8-47b0-92ad-bab65c7303d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012721Z:9a31b0d8-bac8-47b0-92ad-bab65c7303d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:27:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e2abcf44-2438-444f-a7a8-d90e5246b577" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14769" + ], + "x-ms-correlation-request-id": [ + "b5261f04-f3a3-467b-9d38-b9b21c911890" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012731Z:b5261f04-f3a3-467b-9d38-b9b21c911890" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:27:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2ece7a50-3d24-4580-a7a1-fdb0e993c7e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14768" + ], + "x-ms-correlation-request-id": [ + "486afd00-8443-4bf2-ab2d-fe9322a602b5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012742Z:486afd00-8443-4bf2-ab2d-fe9322a602b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:27:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dd5877c8-95cd-4a32-8789-bb84bf79efb8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14767" + ], + "x-ms-correlation-request-id": [ + "1e761ddf-3aaf-43ca-a96a-e7dd78775de3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012752Z:1e761ddf-3aaf-43ca-a96a-e7dd78775de3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:27:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c521bf1e-926a-4dab-926b-e6d3668c6721" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14766" + ], + "x-ms-correlation-request-id": [ + "09192672-5712-458e-8516-44b8ae026e7a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012802Z:09192672-5712-458e-8516-44b8ae026e7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:28:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f338e9e4-1723-4f79-a49c-8bd92d8320b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14765" + ], + "x-ms-correlation-request-id": [ + "af63a2cf-d428-4c75-98ee-7a76423f8734" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012812Z:af63a2cf-d428-4c75-98ee-7a76423f8734" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:28:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5bb47af1-a206-4b14-b394-793fa17940b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14764" + ], + "x-ms-correlation-request-id": [ + "bc7c6768-aec9-49b8-9b3d-1f2d898165c6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012822Z:bc7c6768-aec9-49b8-9b3d-1f2d898165c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:28:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "21ec1866-d6ae-4c00-9946-e78905c7148d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14763" + ], + "x-ms-correlation-request-id": [ + "14bd0143-54f0-45d0-8233-488e23a7f408" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012832Z:14bd0143-54f0-45d0-8233-488e23a7f408" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:28:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d5a371b5-4c2f-4fd9-ad6a-007cfe128998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14762" + ], + "x-ms-correlation-request-id": [ + "2caeddaf-e84c-46cd-94d5-6431e96481fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012842Z:2caeddaf-e84c-46cd-94d5-6431e96481fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:28:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1f712fb2-0e38-4a54-a32e-14d82ed75fca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14761" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4dd19e4d-c07e-4294-829c-fe2229c930ce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012852Z:4dd19e4d-c07e-4294-829c-fe2229c930ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:28:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e74af7a8-a8ef-4f56-a949-ed005f8356d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14760" + ], + "x-ms-correlation-request-id": [ + "d9247f5e-f6c3-465d-9226-85ff39e91238" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012902Z:d9247f5e-f6c3-465d-9226-85ff39e91238" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:29:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "503a81a6-99f5-418f-b49e-5c3b25dbe5a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14759" + ], + "x-ms-correlation-request-id": [ + "68871058-2c98-4948-a772-92c20b52cbd0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012912Z:68871058-2c98-4948-a772-92c20b52cbd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:29:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "db132ff4-a7e3-40b7-9ca9-2b33b3cabfe4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14758" + ], + "x-ms-correlation-request-id": [ + "7880840d-2b80-416c-a738-67af25013bef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012922Z:7880840d-2b80-416c-a738-67af25013bef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:29:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "849244b2-6285-4698-9d4a-b6caf786e369" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14757" + ], + "x-ms-correlation-request-id": [ + "edd44ebe-5857-46fd-8f2d-c98dbc4d9f00" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012932Z:edd44ebe-5857-46fd-8f2d-c98dbc4d9f00" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:29:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "faea4f9d-c043-413a-9295-2a17f07a101a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14756" + ], + "x-ms-correlation-request-id": [ + "e6829230-84da-43de-8dd1-573e6af72950" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012942Z:e6829230-84da-43de-8dd1-573e6af72950" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:29:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "670f8f1b-866f-4810-8bc1-ef21564e6a28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14755" + ], + "x-ms-correlation-request-id": [ + "69475325-737f-4fa5-a37f-68bc03827fd3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T012952Z:69475325-737f-4fa5-a37f-68bc03827fd3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:29:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7bbe0c8b-3466-4e8b-9594-c099452ef262" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14754" + ], + "x-ms-correlation-request-id": [ + "b4da16ff-acac-44e8-9f98-80677778d5ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013002Z:b4da16ff-acac-44e8-9f98-80677778d5ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:30:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fcf9da7a-c9df-4da1-be14-14406842a597" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14753" + ], + "x-ms-correlation-request-id": [ + "50917127-0cdc-4561-b57f-c7148400dff8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013012Z:50917127-0cdc-4561-b57f-c7148400dff8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:30:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "74b879ab-a53e-49b9-b4da-0c7c85b8a422" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14752" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "161985a3-f116-4392-80aa-541220ad082f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013023Z:161985a3-f116-4392-80aa-541220ad082f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:30:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f9d176ee-6bda-459f-96fe-0d1ab02695ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14751" + ], + "x-ms-correlation-request-id": [ + "da636bad-0208-47a4-b0e5-fb155b0c8621" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013033Z:da636bad-0208-47a4-b0e5-fb155b0c8621" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:30:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b437aec3-214f-4af9-8049-88f8a7e7739c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14750" + ], + "x-ms-correlation-request-id": [ + "56619e32-8630-4a7d-839b-6cffa241a1c2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013043Z:56619e32-8630-4a7d-839b-6cffa241a1c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:30:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5bd5ab46-ddd0-4833-a353-c09cc48e474a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14749" + ], + "x-ms-correlation-request-id": [ + "ef3ec327-9a5a-4a2b-9c92-f1c5b1871c68" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013053Z:ef3ec327-9a5a-4a2b-9c92-f1c5b1871c68" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:30:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "19f2d9bb-0eaa-458b-aa5b-b19c6b7f7db2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14748" + ], + "x-ms-correlation-request-id": [ + "7156df8d-5260-42c4-973e-ee0a66147c2c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013103Z:7156df8d-5260-42c4-973e-ee0a66147c2c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:31:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "32d75128-3eab-4b4a-af33-1b59f6f0adc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14747" + ], + "x-ms-correlation-request-id": [ + "caf2bb00-e613-4b56-b97e-3476914b21ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013113Z:caf2bb00-e613-4b56-b97e-3476914b21ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:31:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a95d2d65-7b4f-4504-921f-efa69f2d8278" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14746" + ], + "x-ms-correlation-request-id": [ + "98676548-76eb-4237-a3dd-f7bd452ea079" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013123Z:98676548-76eb-4237-a3dd-f7bd452ea079" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:31:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6ae03af3-009f-4c88-a3e2-85e0cb4b718d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14745" + ], + "x-ms-correlation-request-id": [ + "e9616759-6a9a-4303-9848-0bfd86b419dc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013133Z:e9616759-6a9a-4303-9848-0bfd86b419dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:31:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "35ba17b8-6f87-4388-8570-2f628d74a48a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14744" + ], + "x-ms-correlation-request-id": [ + "e40f75b2-a665-4615-a54f-c8c97eca2a9e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013143Z:e40f75b2-a665-4615-a54f-c8c97eca2a9e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:31:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "01ddb3ab-7848-4dc1-8231-24245eb215ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14743" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "925fc4b5-8e89-4ec7-8d8e-6132a14c84fd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013153Z:925fc4b5-8e89-4ec7-8d8e-6132a14c84fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:31:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f3dbac79-461a-4971-8186-d5747c5991ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14742" + ], + "x-ms-correlation-request-id": [ + "1a10acdf-170e-40c4-8cd3-8618d8e4215a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013203Z:1a10acdf-170e-40c4-8cd3-8618d8e4215a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:32:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f48c87e0-bce5-4937-b6ef-15f01506e420" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14741" + ], + "x-ms-correlation-request-id": [ + "35dfd483-856b-4f0a-96bb-a0805b607e0c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013213Z:35dfd483-856b-4f0a-96bb-a0805b607e0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:32:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "95f3f712-4e26-4c91-9e0d-94b428d9b7e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14740" + ], + "x-ms-correlation-request-id": [ + "940067ec-0cb8-4fc2-853c-f6488aff9cc7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013223Z:940067ec-0cb8-4fc2-853c-f6488aff9cc7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:32:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "78b76a6a-94dd-4940-850c-311f3677d1c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14739" + ], + "x-ms-correlation-request-id": [ + "97b3e24e-0cfe-4721-9dde-732f813d27ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013233Z:97b3e24e-0cfe-4721-9dde-732f813d27ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:32:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7adf07ab-cf48-4170-9ac9-b93239e110aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14738" + ], + "x-ms-correlation-request-id": [ + "51065dc9-2bb2-49c9-9980-baca890123f8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013244Z:51065dc9-2bb2-49c9-9980-baca890123f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:32:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dbef699d-b78a-4ff0-ad74-fa2d008e9fae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14737" + ], + "x-ms-correlation-request-id": [ + "968b716c-ae12-47c7-81ad-3f665066db46" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013254Z:968b716c-ae12-47c7-81ad-3f665066db46" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:32:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4236542d-ca9c-4c26-bfe3-ccd4999d47c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14736" + ], + "x-ms-correlation-request-id": [ + "dc457780-d088-43db-b9a5-ce19515f5fe9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013304Z:dc457780-d088-43db-b9a5-ce19515f5fe9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:33:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bbe28ca6-e6d8-419a-adde-2691de047b9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14735" + ], + "x-ms-correlation-request-id": [ + "86aaab6b-228a-40c4-a380-670a2251cbfc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013314Z:86aaab6b-228a-40c4-a380-670a2251cbfc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:33:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1f9386b2-62e7-42b9-90ac-32c7fcb81f4c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14734" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a0537611-c7f4-49f4-9663-bd22ef300192" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013324Z:a0537611-c7f4-49f4-9663-bd22ef300192" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:33:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8da08299-a08c-482c-bc5f-7e0db2730f96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14733" + ], + "x-ms-correlation-request-id": [ + "13c09f9d-225d-4a35-af0a-ddfa18ec1bec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013334Z:13c09f9d-225d-4a35-af0a-ddfa18ec1bec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:33:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c9c457ac-f9ec-4dd1-ad18-70d80d4986a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14732" + ], + "x-ms-correlation-request-id": [ + "e8885596-bcf1-46d8-b755-7dba8cd5d50c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013344Z:e8885596-bcf1-46d8-b755-7dba8cd5d50c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:33:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ab5b68f1-8611-46a6-b43d-38c14021c451" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14731" + ], + "x-ms-correlation-request-id": [ + "87ef3ddf-9a30-4c2c-8130-3bb34827cb08" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013354Z:87ef3ddf-9a30-4c2c-8130-3bb34827cb08" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:33:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8911188c-c8fa-4215-82c4-432ec18caea4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14730" + ], + "x-ms-correlation-request-id": [ + "06b3beba-ef89-4aa1-905f-7bd9b3d3c91c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013404Z:06b3beba-ef89-4aa1-905f-7bd9b3d3c91c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:34:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "baf22065-815f-479d-aeaf-508a8769db43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14729" + ], + "x-ms-correlation-request-id": [ + "62292581-e932-40cf-a138-3a2b8bcc99e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013414Z:62292581-e932-40cf-a138-3a2b8bcc99e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:34:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "64a8a814-cb49-4f40-b19a-4e1b6d7451cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14728" + ], + "x-ms-correlation-request-id": [ + "90f1bce1-c1c3-4fb6-b174-50a65bc414ab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013424Z:90f1bce1-c1c3-4fb6-b174-50a65bc414ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:34:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "44b7b2e9-cb00-4147-b6d9-d3e3438dae2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14727" + ], + "x-ms-correlation-request-id": [ + "f665a99e-bb73-4501-9996-f89009330ca4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013434Z:f665a99e-bb73-4501-9996-f89009330ca4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:34:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2abd4f1c-1b62-4655-981b-56d3719cb532" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14726" + ], + "x-ms-correlation-request-id": [ + "967ad2f5-6f6e-4497-9807-73130ea2cc88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013444Z:967ad2f5-6f6e-4497-9807-73130ea2cc88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:34:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3af5ff14-f31e-498d-bd4b-97f537dc218e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14725" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "eb31f9b9-71ae-4590-b3c5-6c72dc259d75" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013454Z:eb31f9b9-71ae-4590-b3c5-6c72dc259d75" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:34:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b91373e6-d69d-40fa-bb79-2982f2358a1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14724" + ], + "x-ms-correlation-request-id": [ + "023d5ab5-40b3-4343-bbb0-d5f02a758792" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013504Z:023d5ab5-40b3-4343-bbb0-d5f02a758792" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:35:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c0812c00-f528-4e84-bc4f-7bee2bb3d531" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14723" + ], + "x-ms-correlation-request-id": [ + "580d1325-5bce-42d0-b564-6cbb0f7a7bed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013515Z:580d1325-5bce-42d0-b564-6cbb0f7a7bed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:35:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e2e40442-b7b5-408c-a896-a78e2e02f3bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14722" + ], + "x-ms-correlation-request-id": [ + "550ccf8e-1be0-4d9a-bdc2-1a7b444dd7f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013525Z:550ccf8e-1be0-4d9a-bdc2-1a7b444dd7f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:35:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d0ad6c10-3e7f-47e0-97cb-66eb41cefc5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14721" + ], + "x-ms-correlation-request-id": [ + "52fd73f9-e4f4-4fa7-8fb3-07e46dd3cd53" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013535Z:52fd73f9-e4f4-4fa7-8fb3-07e46dd3cd53" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:35:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "18e294a8-2f50-4a85-ad68-0a929d6c6f70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14720" + ], + "x-ms-correlation-request-id": [ + "2ae384bb-c8a3-4775-9090-8360c2acfd10" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013545Z:2ae384bb-c8a3-4775-9090-8360c2acfd10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:35:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3061b708-82ab-4c6f-8676-5fb4fa124998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14719" + ], + "x-ms-correlation-request-id": [ + "f9d9c4e0-8963-41d5-981d-bcbf09aae0bb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013555Z:f9d9c4e0-8963-41d5-981d-bcbf09aae0bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:35:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "525738fe-d4a0-4c74-943f-f979049ed3ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14718" + ], + "x-ms-correlation-request-id": [ + "032dace3-7bb1-4a54-a54c-07c55ee3f0df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013605Z:032dace3-7bb1-4a54-a54c-07c55ee3f0df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:36:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7212a082-6240-4731-89f3-b46a3aec3d4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14717" + ], + "x-ms-correlation-request-id": [ + "6c70f96e-0304-498d-9a21-a0af54ef3bc8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013615Z:6c70f96e-0304-498d-9a21-a0af54ef3bc8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:36:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d38bff31-84b7-4b4d-b4ed-3512a49e0d30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14716" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "3054b7be-fc45-436f-a6db-8fd688579b62" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013625Z:3054b7be-fc45-436f-a6db-8fd688579b62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:36:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9de45d87-1557-4492-a81c-6eaf9f77c4d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14715" + ], + "x-ms-correlation-request-id": [ + "7e9bb415-99dc-4007-88f9-1758cf28b93e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013635Z:7e9bb415-99dc-4007-88f9-1758cf28b93e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:36:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4eca1bce-ccfb-4716-b309-1bcfaaf82274" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14714" + ], + "x-ms-correlation-request-id": [ + "d07d8749-be43-4e8c-9da7-30c86153ca90" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013645Z:d07d8749-be43-4e8c-9da7-30c86153ca90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:36:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e3626595-f2f6-4280-aa8d-7cb779c4d9d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14713" + ], + "x-ms-correlation-request-id": [ + "c99e50ec-9cbc-42c5-b172-2159a5eef236" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013655Z:c99e50ec-9cbc-42c5-b172-2159a5eef236" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:36:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ef4cf823-ccb5-46a6-89b5-67fae46db9f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14712" + ], + "x-ms-correlation-request-id": [ + "ee98b2f8-c643-4cc3-a95f-63b5374430f3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013705Z:ee98b2f8-c643-4cc3-a95f-63b5374430f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:37:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "084f0f7c-b4b8-4f07-877e-8e92a7e5adf4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14711" + ], + "x-ms-correlation-request-id": [ + "7745218e-c294-4ff2-84e6-f90cea42f5af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013715Z:7745218e-c294-4ff2-84e6-f90cea42f5af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:37:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "46fadb8e-cf4b-4751-8843-92e14a4cff50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14710" + ], + "x-ms-correlation-request-id": [ + "d386cec9-594e-4ddd-b2c3-0873192e0209" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013725Z:d386cec9-594e-4ddd-b2c3-0873192e0209" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:37:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "784b81a5-5a9e-4f32-9698-8adb5ee42c39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14709" + ], + "x-ms-correlation-request-id": [ + "47901e91-4f26-4438-bd51-8ab2ffe562cd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013735Z:47901e91-4f26-4438-bd51-8ab2ffe562cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:37:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dc8bd5ff-2eab-4002-a512-603aac276d24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14708" + ], + "x-ms-correlation-request-id": [ + "72a9ba2f-38a5-4182-96c8-baa6cafb41a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013746Z:72a9ba2f-38a5-4182-96c8-baa6cafb41a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:37:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6ae65212-599e-4be1-a3a0-84ea550e3f6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14707" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "54bf69bb-ac74-4f54-b8ed-c455d6bc50df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013757Z:54bf69bb-ac74-4f54-b8ed-c455d6bc50df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:37:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8251f10a-bda9-47ed-be50-0e3c4c395f1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14706" + ], + "x-ms-correlation-request-id": [ + "10b83d91-335f-4837-b52c-4ddae36c2828" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013807Z:10b83d91-335f-4837-b52c-4ddae36c2828" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:38:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "25ea2f6e-d16b-460e-b62f-e377acf88151" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14705" + ], + "x-ms-correlation-request-id": [ + "6fde020b-59f8-4416-a374-4c2a745d20c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013817Z:6fde020b-59f8-4416-a374-4c2a745d20c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:38:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "840e3291-b227-4ce7-8007-4000596c98bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14704" + ], + "x-ms-correlation-request-id": [ + "bd4d96ec-9e75-4a4f-a2d2-17f28702e0e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013827Z:bd4d96ec-9e75-4a4f-a2d2-17f28702e0e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:38:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cb3fa6a9-d0d2-4d61-8c1d-56a1498c5bd3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14703" + ], + "x-ms-correlation-request-id": [ + "d03e3821-7a63-4f1b-8671-45043f68ec58" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013837Z:d03e3821-7a63-4f1b-8671-45043f68ec58" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:38:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e66e875a-c6fc-4fcf-a0b4-9177112cb762" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14702" + ], + "x-ms-correlation-request-id": [ + "c00ac048-c0db-46c2-b220-7144c51e6474" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013847Z:c00ac048-c0db-46c2-b220-7144c51e6474" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:38:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "10ab9a1e-6b57-4e34-b3f3-55f44fc9248c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14701" + ], + "x-ms-correlation-request-id": [ + "409bcd19-dab4-4194-bded-931c3810dcaf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013857Z:409bcd19-dab4-4194-bded-931c3810dcaf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:38:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ac84ef25-bdf9-43b3-b4f8-4d38044260fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14700" + ], + "x-ms-correlation-request-id": [ + "83d66a87-f08f-459d-bc17-e34377f6375b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013907Z:83d66a87-f08f-459d-bc17-e34377f6375b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:39:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ded38744-5c80-47d7-b41b-be9222afa7cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14699" + ], + "x-ms-correlation-request-id": [ + "bdf0581c-80e4-46b2-81e7-8ea91d610803" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013917Z:bdf0581c-80e4-46b2-81e7-8ea91d610803" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:39:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "99d69d37-93fb-4423-a810-6c3434e1d1f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14698" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "42e16865-7c80-4300-b915-c632b0757c23" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013927Z:42e16865-7c80-4300-b915-c632b0757c23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:39:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3f4e911b-65bf-47b1-9da8-8179f6dc93ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14697" + ], + "x-ms-correlation-request-id": [ + "c817b5e3-c9ef-4a3d-b26f-acbc734114d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013938Z:c817b5e3-c9ef-4a3d-b26f-acbc734114d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:39:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "577836d3-a4cb-405d-b4f2-1ca5a657f328" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14696" + ], + "x-ms-correlation-request-id": [ + "df7502e4-1809-4908-8c65-a3699975288e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013948Z:df7502e4-1809-4908-8c65-a3699975288e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:39:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "428ab5b6-e4c8-4d6c-bba8-558da684084a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14695" + ], + "x-ms-correlation-request-id": [ + "86189c3e-4ee1-4969-8b75-f9bcc8b68215" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T013958Z:86189c3e-4ee1-4969-8b75-f9bcc8b68215" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:39:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bf552348-f3f6-4905-b579-3201982d5781" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14694" + ], + "x-ms-correlation-request-id": [ + "739d8b23-8b0b-4dd9-9c71-c1b714041ee5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014008Z:739d8b23-8b0b-4dd9-9c71-c1b714041ee5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:40:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "712f9575-3361-4069-b3be-cec37a81ecb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14693" + ], + "x-ms-correlation-request-id": [ + "98997d7c-e897-4ba4-9c71-bcc617fa8a6c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014018Z:98997d7c-e897-4ba4-9c71-bcc617fa8a6c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:40:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "30f09289-b7dd-4b8b-855b-faec76216bec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14692" + ], + "x-ms-correlation-request-id": [ + "818e00a1-cc81-4c6c-8f90-706c60528487" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014028Z:818e00a1-cc81-4c6c-8f90-706c60528487" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:40:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "967bee07-28c6-4289-8d4f-6b5e91f9cf68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14691" + ], + "x-ms-correlation-request-id": [ + "ead455e1-5505-4ba6-82f0-9314d19b90f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014038Z:ead455e1-5505-4ba6-82f0-9314d19b90f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:40:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7abc69f6-4836-45b6-a12b-317975f0c5d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14690" + ], + "x-ms-correlation-request-id": [ + "4056581d-a0a1-44d4-8a66-59d2e666cc0d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014048Z:4056581d-a0a1-44d4-8a66-59d2e666cc0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:40:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8f85fabf-ed4c-4a3e-a5d8-03a18192069c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14689" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "eaffe2e3-da14-45f3-b509-bb7af736ff3b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014058Z:eaffe2e3-da14-45f3-b509-bb7af736ff3b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:40:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c756c734-0c2c-47a5-b52e-e3eed87311b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14688" + ], + "x-ms-correlation-request-id": [ + "125b9f2d-0458-4331-b367-535ff81a24b9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014108Z:125b9f2d-0458-4331-b367-535ff81a24b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:41:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "67807570-1319-44e7-98e2-0def2da2f213" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14687" + ], + "x-ms-correlation-request-id": [ + "ab557374-5387-4f2c-870d-2f76aa04d3fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014118Z:ab557374-5387-4f2c-870d-2f76aa04d3fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:41:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b243c6e2-933b-4540-82a5-429097437684" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14686" + ], + "x-ms-correlation-request-id": [ + "9e156864-af37-4e87-8be3-e74fe1111b81" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014128Z:9e156864-af37-4e87-8be3-e74fe1111b81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:41:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a0e9beea-dc70-447e-b06d-7120e064ccec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14685" + ], + "x-ms-correlation-request-id": [ + "5cb1d12c-e968-4788-be8c-eff931febbe7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014139Z:5cb1d12c-e968-4788-be8c-eff931febbe7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:41:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7819598a-bfe9-49c4-b45c-dfe12374c802" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14684" + ], + "x-ms-correlation-request-id": [ + "2addd829-952e-4a80-94d5-e2ea4578ed8a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014149Z:2addd829-952e-4a80-94d5-e2ea4578ed8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:41:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ea8b917e-a6af-4605-b2ab-4ab8658ebc92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14683" + ], + "x-ms-correlation-request-id": [ + "ed78a440-29e2-44f2-a21c-6d13d32fa3fa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014159Z:ed78a440-29e2-44f2-a21c-6d13d32fa3fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:41:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4f4ea29a-ff7d-4920-9d47-4074576fe9ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14682" + ], + "x-ms-correlation-request-id": [ + "1f660da8-7269-4d46-a045-9940fab51055" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014209Z:1f660da8-7269-4d46-a045-9940fab51055" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:42:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b800d6b3-9d79-47ba-a4f5-de1375891f2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14681" + ], + "x-ms-correlation-request-id": [ + "9da62223-6005-4d06-a221-11ecc2674f4e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014219Z:9da62223-6005-4d06-a221-11ecc2674f4e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:42:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "356166af-4b6b-49f8-8e79-bcdb45adfff5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14680" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "33879355-b153-464f-a9be-fb219e3a0461" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014229Z:33879355-b153-464f-a9be-fb219e3a0461" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:42:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0e469f4c-6c42-40aa-970e-1059d3b720dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14679" + ], + "x-ms-correlation-request-id": [ + "2b30927c-22a7-40a5-baa4-528a95b2aaf4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014239Z:2b30927c-22a7-40a5-baa4-528a95b2aaf4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:42:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "069bf5f5-e82d-43ce-942d-1572ded50302" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14678" + ], + "x-ms-correlation-request-id": [ + "9b4aef9a-a2c1-4c94-98e9-e1b62f51c23e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014249Z:9b4aef9a-a2c1-4c94-98e9-e1b62f51c23e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:42:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e5ffb156-bc02-4e15-9ff1-0713f0a0481d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14677" + ], + "x-ms-correlation-request-id": [ + "184957fb-013a-4ec2-a184-5d96f5ab8211" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014259Z:184957fb-013a-4ec2-a184-5d96f5ab8211" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:42:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "27883704-0f80-4424-858b-fcd878e5da22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14676" + ], + "x-ms-correlation-request-id": [ + "46e8f014-4e7d-46bf-82bc-cbb05c09b652" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014309Z:46e8f014-4e7d-46bf-82bc-cbb05c09b652" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:43:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "37c02bd1-7305-4915-8ba3-c93368cccf8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14675" + ], + "x-ms-correlation-request-id": [ + "d6d37347-eb55-48f8-8df4-d3270b3584df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014319Z:d6d37347-eb55-48f8-8df4-d3270b3584df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:43:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4bc31885-d5d7-4600-955b-f3bdccaae58b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14674" + ], + "x-ms-correlation-request-id": [ + "43b03aa3-4136-4493-9a05-c6fbcafa13b5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014329Z:43b03aa3-4136-4493-9a05-c6fbcafa13b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:43:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f57482d4-ed30-425f-a824-765be20095af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14673" + ], + "x-ms-correlation-request-id": [ + "0e96cb36-16b1-4be2-9afe-1999565b7c77" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014339Z:0e96cb36-16b1-4be2-9afe-1999565b7c77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:43:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cf71d27f-796d-4cc4-b102-f6b017bd9452" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14672" + ], + "x-ms-correlation-request-id": [ + "b3348bd4-31c5-42f2-a5c8-eec22425d407" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014349Z:b3348bd4-31c5-42f2-a5c8-eec22425d407" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:43:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fd6b133c-b28b-4492-9ccc-b37f7b9211cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14671" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f48f52b4-cec3-4f4d-9da7-deb65033389e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014400Z:f48f52b4-cec3-4f4d-9da7-deb65033389e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:43:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "263e64dc-2142-499d-93e6-321806764eec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14670" + ], + "x-ms-correlation-request-id": [ + "66eacbc0-d44a-4162-a259-42566240c25c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014410Z:66eacbc0-d44a-4162-a259-42566240c25c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:44:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f5f7d86f-5be1-4c94-82be-ea2208f3d24f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14669" + ], + "x-ms-correlation-request-id": [ + "1de2ea96-2893-4c52-b43e-774e7f261609" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014420Z:1de2ea96-2893-4c52-b43e-774e7f261609" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:44:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0bd5bab9-3965-4c4c-b826-eb62563d5118" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14668" + ], + "x-ms-correlation-request-id": [ + "a45a4b87-0310-4d61-8150-83aba67d3187" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014430Z:a45a4b87-0310-4d61-8150-83aba67d3187" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:44:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "12e9c1a7-b149-43cc-a3f1-83e6b18e401f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14667" + ], + "x-ms-correlation-request-id": [ + "f2adbaff-a169-421c-bb96-91c351be22c9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014440Z:f2adbaff-a169-421c-bb96-91c351be22c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:44:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c54901a3-536c-4bff-8966-1369fd70acfb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14666" + ], + "x-ms-correlation-request-id": [ + "44693418-3020-41d8-a17e-93a311777af6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014450Z:44693418-3020-41d8-a17e-93a311777af6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:44:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "61811a63-efd8-427c-a04e-0daf26f606d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14665" + ], + "x-ms-correlation-request-id": [ + "da97c784-665e-45f9-aa95-694aaee4781d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014500Z:da97c784-665e-45f9-aa95-694aaee4781d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:44:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fb058fa2-f5c9-415c-99cf-52bb246db86f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14664" + ], + "x-ms-correlation-request-id": [ + "169fe571-c8e2-49ff-afde-8c366ba3ae8f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014510Z:169fe571-c8e2-49ff-afde-8c366ba3ae8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:45:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "77c7f551-b28d-44eb-8c3b-7b03a6b79a62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14663" + ], + "x-ms-correlation-request-id": [ + "aaa6cf22-38d3-402c-b145-8a1adb1b7ba9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014520Z:aaa6cf22-38d3-402c-b145-8a1adb1b7ba9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:45:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "435f02bf-227e-4e90-8a7e-a8693573c83c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14662" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "3fbd04da-9e0a-48de-a91b-567f75b83f3d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014530Z:3fbd04da-9e0a-48de-a91b-567f75b83f3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:45:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6e86c345-3678-46a8-9d70-928681ac67ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14661" + ], + "x-ms-correlation-request-id": [ + "98877c25-2315-4532-84ce-b3862e0be4ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014541Z:98877c25-2315-4532-84ce-b3862e0be4ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:45:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6e1f3882-3fc1-4e78-9afb-fa6fb6befeb8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14660" + ], + "x-ms-correlation-request-id": [ + "a3923bbe-5c94-4d05-b7a8-7873994d8436" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014551Z:a3923bbe-5c94-4d05-b7a8-7873994d8436" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:45:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bd8a8a5a-69b9-416e-916a-b17372fc186e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14659" + ], + "x-ms-correlation-request-id": [ + "d927f6f4-1062-46a0-9758-d4c509523111" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014601Z:d927f6f4-1062-46a0-9758-d4c509523111" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:46:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5e34c623-9ea0-4218-bb1d-0abd760f5357" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14658" + ], + "x-ms-correlation-request-id": [ + "2fcad393-4320-4357-bd71-cc25ed3800a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014611Z:2fcad393-4320-4357-bd71-cc25ed3800a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:46:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4f3cd1a3-61cf-4f84-a3e3-ad3967910868" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14657" + ], + "x-ms-correlation-request-id": [ + "9682b998-fb3a-4ee7-9739-190bc13870e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014621Z:9682b998-fb3a-4ee7-9739-190bc13870e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:46:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1e091c51-a3d4-4ac8-945d-22d3f94903c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14656" + ], + "x-ms-correlation-request-id": [ + "8b3373bb-18f1-4898-bc80-4debd4622df1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014631Z:8b3373bb-18f1-4898-bc80-4debd4622df1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:46:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ade17607-18e4-4eff-aebd-e6b149fc2e68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14655" + ], + "x-ms-correlation-request-id": [ + "cc58ae0d-201d-453d-b9a6-a8916725a642" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014641Z:cc58ae0d-201d-453d-b9a6-a8916725a642" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:46:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "25667060-fed0-4a53-80ff-bd76be6a6d33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14654" + ], + "x-ms-correlation-request-id": [ + "e566b3c1-5776-4d07-9120-f2fdef424640" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014651Z:e566b3c1-5776-4d07-9120-f2fdef424640" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:46:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9145023f-51e8-45a8-a804-040e2c0e89a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14653" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a24e1fc9-39fb-476b-b14f-3f717bcb9726" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014701Z:a24e1fc9-39fb-476b-b14f-3f717bcb9726" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:47:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bfca480c-4801-447d-b799-63721fd5eee0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14652" + ], + "x-ms-correlation-request-id": [ + "7940588c-8323-4b4d-b78b-805fb877aecd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014711Z:7940588c-8323-4b4d-b78b-805fb877aecd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:47:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e3fb1fb6-c1ba-4759-8ca5-42c69e55c84e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14651" + ], + "x-ms-correlation-request-id": [ + "81a0160c-4dd7-46aa-bae1-a2d9101b46bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014722Z:81a0160c-4dd7-46aa-bae1-a2d9101b46bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:47:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dcfcb63e-9096-464f-91b1-8e65ab81e508" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14650" + ], + "x-ms-correlation-request-id": [ + "7bf1dd1d-5591-44dc-a098-903e13269495" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014732Z:7bf1dd1d-5591-44dc-a098-903e13269495" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:47:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7b630de5-7b9b-4aa9-ae43-a6d29ddc3fe6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14649" + ], + "x-ms-correlation-request-id": [ + "f482849d-c9a7-4e19-bf26-a969331cfbcb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014742Z:f482849d-c9a7-4e19-bf26-a969331cfbcb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:47:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dc325b0b-5259-474f-ae0a-12c28021f157" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14648" + ], + "x-ms-correlation-request-id": [ + "3b58c161-98ef-46b8-b5fe-ec06987db911" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014752Z:3b58c161-98ef-46b8-b5fe-ec06987db911" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:47:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "aad4a27a-28d2-4b2b-9a5a-73ad8acbd8f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14647" + ], + "x-ms-correlation-request-id": [ + "21e847d3-a825-4ee1-981a-8a0128217805" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014802Z:21e847d3-a825-4ee1-981a-8a0128217805" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:48:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "09997ad9-fa05-41c9-b7ad-21754ef59780" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14646" + ], + "x-ms-correlation-request-id": [ + "e402daa4-ef60-42fc-b3b8-5b36357d783a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014812Z:e402daa4-ef60-42fc-b3b8-5b36357d783a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:48:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e158615e-8fd6-42e7-959d-14a141fca22f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14645" + ], + "x-ms-correlation-request-id": [ + "1fa4f517-7375-4c4a-ac20-3c897571e63c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014822Z:1fa4f517-7375-4c4a-ac20-3c897571e63c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:48:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "423b87df-c88b-455b-87a6-5e1b0a4044af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14644" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "dbe58ea7-a0b3-4ce1-933f-5f43c5d8a9cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014832Z:dbe58ea7-a0b3-4ce1-933f-5f43c5d8a9cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:48:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6fe885b2-4094-4cb1-930f-f02180e6fbd0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14643" + ], + "x-ms-correlation-request-id": [ + "2b76b770-9c72-4ff9-8727-c599f2d3d11a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014842Z:2b76b770-9c72-4ff9-8727-c599f2d3d11a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:48:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1ccb8089-043a-48ce-9a15-565f054765ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14642" + ], + "x-ms-correlation-request-id": [ + "a9337341-6e91-43c7-a3df-dbb7abcc9703" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014852Z:a9337341-6e91-43c7-a3df-dbb7abcc9703" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:48:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2f212401-9698-4de6-8f9e-61404f41b502" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14641" + ], + "x-ms-correlation-request-id": [ + "0ff19873-3ce2-498b-87eb-f4b0b404ef60" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014902Z:0ff19873-3ce2-498b-87eb-f4b0b404ef60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:49:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "93d57eb0-60eb-406f-bbf7-bf54eb95fb90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14640" + ], + "x-ms-correlation-request-id": [ + "7b72b8c3-f061-4265-859a-93ca012e967d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014912Z:7b72b8c3-f061-4265-859a-93ca012e967d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:49:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6df002a4-b6d1-4be6-8732-a1879e1a476d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14639" + ], + "x-ms-correlation-request-id": [ + "f5279854-f17a-419b-b3bb-7c0a18be82d1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014923Z:f5279854-f17a-419b-b3bb-7c0a18be82d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:49:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7e08b24a-059f-4ac7-ac6e-36d505fc9f07" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14638" + ], + "x-ms-correlation-request-id": [ + "9205bcfa-699f-4d93-806a-8f7cab2d2cd1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014933Z:9205bcfa-699f-4d93-806a-8f7cab2d2cd1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:49:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "47231295-83dc-4460-ae0d-b27870dca53d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14637" + ], + "x-ms-correlation-request-id": [ + "17d7854b-c4b7-49ec-ac4c-c1ca70e321d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014943Z:17d7854b-c4b7-49ec-ac4c-c1ca70e321d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:49:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "163f03d7-91a5-477c-a572-33b006b953d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14636" + ], + "x-ms-correlation-request-id": [ + "453aae01-1adf-41e8-9ea5-6e7d4e1135dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T014953Z:453aae01-1adf-41e8-9ea5-6e7d4e1135dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:49:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dc1e1fe9-bb30-4baf-8b9f-ab55e20ef8ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14635" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "2b49dc31-4109-43bf-ae0c-16e02aeb68c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015003Z:2b49dc31-4109-43bf-ae0c-16e02aeb68c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:50:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "05f598af-cdda-46a9-a45e-b081601292f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14634" + ], + "x-ms-correlation-request-id": [ + "21dbd9d3-0bb7-4d84-9c95-0c744dd2aca2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015013Z:21dbd9d3-0bb7-4d84-9c95-0c744dd2aca2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:50:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7ac8df4f-62b8-4e04-a16d-b8280e877a86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14633" + ], + "x-ms-correlation-request-id": [ + "ad8b61ce-3623-4f6d-a2ee-a7a07dc2d8de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015023Z:ad8b61ce-3623-4f6d-a2ee-a7a07dc2d8de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:50:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e67c12b3-db11-49e0-ba63-2b673cafa62b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14632" + ], + "x-ms-correlation-request-id": [ + "4332fe31-93d7-4b92-9e5e-b820cdf85940" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015033Z:4332fe31-93d7-4b92-9e5e-b820cdf85940" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:50:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4a559a17-b63d-4239-9d55-be4377b7f74d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14631" + ], + "x-ms-correlation-request-id": [ + "0323e552-b945-4c7e-9d62-3a21cbb2f22d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015043Z:0323e552-b945-4c7e-9d62-3a21cbb2f22d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:50:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/7ce2e81d-1850-4a8c-a1b1-cf0469f7c31f?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlMmU4MWQtMTg1MC00YThjLWExYjEtY2YwNDY5ZjdjMzFmP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e207ee52-f30b-431b-a2f0-d375fddde9c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14630" + ], + "x-ms-correlation-request-id": [ + "ba869e57-bad1-4b98-bfff-cff6c6a781df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015053Z:ba869e57-bad1-4b98-bfff-cff6c6a781df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:50:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "62ca95fa-9d21-4096-ba17-f185faa99949" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14625" + ], + "x-ms-correlation-request-id": [ + "f3e7e969-42b1-447c-b894-884481c53128" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015108Z:f3e7e969-42b1-447c-b894-884481c53128" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:51:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2321dee7-0bd1-4ab9-9829-73532ce98b18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14624" + ], + "x-ms-correlation-request-id": [ + "6585aebb-d1af-42d2-a9d5-1443fc12d2cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015118Z:6585aebb-d1af-42d2-a9d5-1443fc12d2cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:51:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "84db5bb9-b309-427c-84d1-d5fddb475af8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14623" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a429b5c9-5b4a-408c-a649-e73d4a54f628" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015128Z:a429b5c9-5b4a-408c-a649-e73d4a54f628" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:51:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "820cea53-9f29-437d-9fbc-cc656793b5ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14622" + ], + "x-ms-correlation-request-id": [ + "68aec00d-849b-4bd9-a418-a42e4b8474da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015139Z:68aec00d-849b-4bd9-a418-a42e4b8474da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:51:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7dc2e005-988c-4af0-8f89-b71a3eb1916a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14621" + ], + "x-ms-correlation-request-id": [ + "028b6c39-20c0-4ea8-a0b5-d9d909a14387" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015149Z:028b6c39-20c0-4ea8-a0b5-d9d909a14387" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:51:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a46e1c27-4d0b-409f-b2af-17c0b1f95288" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14620" + ], + "x-ms-correlation-request-id": [ + "03f2ba85-adb2-4824-82a0-ed6848ec092d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015159Z:03f2ba85-adb2-4824-82a0-ed6848ec092d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:51:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c0710fa2-83dd-4ea8-b5de-fdd13bc6fd5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14619" + ], + "x-ms-correlation-request-id": [ + "35b7e94c-cbe2-4532-8bd8-807dc347dfd8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015209Z:35b7e94c-cbe2-4532-8bd8-807dc347dfd8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:52:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7d599c7a-45fb-4bf2-b51e-66cdbbe05786" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14618" + ], + "x-ms-correlation-request-id": [ + "25d55215-bfb6-4116-9215-59e5139af772" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015219Z:25d55215-bfb6-4116-9215-59e5139af772" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:52:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4c6738b0-29f3-4f30-8612-4ffcf58db795" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14617" + ], + "x-ms-correlation-request-id": [ + "442723b0-52d7-4236-9504-ae3761e1db56" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015229Z:442723b0-52d7-4236-9504-ae3761e1db56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:52:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7292791a-81fb-4146-825d-acf28c49413c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14616" + ], + "x-ms-correlation-request-id": [ + "5e15e51a-cafb-4571-8abb-39357cbebe27" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015239Z:5e15e51a-cafb-4571-8abb-39357cbebe27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:52:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d40bc5e5-4e82-44ca-96ae-ecfc027f5e77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14615" + ], + "x-ms-correlation-request-id": [ + "3ab2c6d2-8739-4ded-9812-e031094ac620" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015249Z:3ab2c6d2-8739-4ded-9812-e031094ac620" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:52:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "88cec7a1-67db-426d-9885-3aa858f16cd5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14614" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "207d8611-f7f2-48b2-9a6b-ffe656d2c28d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015259Z:207d8611-f7f2-48b2-9a6b-ffe656d2c28d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:52:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "af14c128-343d-490c-923e-af787c11e97f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14613" + ], + "x-ms-correlation-request-id": [ + "26623edb-3dd7-49f1-a874-215dff09dbfd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015309Z:26623edb-3dd7-49f1-a874-215dff09dbfd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:53:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "be109de3-0159-4626-a96a-8afc6ec5e135" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14612" + ], + "x-ms-correlation-request-id": [ + "eaee2312-d40f-402c-a94f-df1502a1ce9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015319Z:eaee2312-d40f-402c-a94f-df1502a1ce9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:53:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "312914cc-3934-413f-8676-7d04fc7df3c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14611" + ], + "x-ms-correlation-request-id": [ + "06287409-7f2e-40f3-a21e-f49782a6d011" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015329Z:06287409-7f2e-40f3-a21e-f49782a6d011" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:53:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "92081513-d01d-4013-9295-24db4d011099" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14610" + ], + "x-ms-correlation-request-id": [ + "fe896918-9564-4e2b-a443-4713b0b0a8a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015339Z:fe896918-9564-4e2b-a443-4713b0b0a8a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:53:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f27a31ba-2000-44af-9231-862e745208ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14609" + ], + "x-ms-correlation-request-id": [ + "e730b51a-95df-4574-8f97-adb89766dfa5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015350Z:e730b51a-95df-4574-8f97-adb89766dfa5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:53:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f2310c27-f2a8-4d35-ad86-055acf677340" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14608" + ], + "x-ms-correlation-request-id": [ + "2c171468-f68b-4197-a201-70352c6ecaef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015400Z:2c171468-f68b-4197-a201-70352c6ecaef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:53:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1ddab5f4-bc1d-4cf9-9bae-38855af274c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14607" + ], + "x-ms-correlation-request-id": [ + "0edca95c-f72c-4409-b10d-ddaf6f4ec351" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015410Z:0edca95c-f72c-4409-b10d-ddaf6f4ec351" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d6fc17f3-6580-4b13-854c-78aa846ee768" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14606" + ], + "x-ms-correlation-request-id": [ + "640040b6-0cc9-4542-a978-670f18d17948" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015420Z:640040b6-0cc9-4542-a978-670f18d17948" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/c692154f-0660-4dbb-9e3e-7a6be5d73268?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzY5MjE1NGYtMDY2MC00ZGJiLTllM2UtN2E2YmU1ZDczMjY4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "55cbd572-23a0-4d1b-917a-e99c7fd739a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14605" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d62c1ff7-e11a-4d48-9c0f-f3b0c7fdccd5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015430Z:d62c1ff7-e11a-4d48-9c0f-f3b0c7fdccd5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6796/providers/Microsoft.Network/virtualnetworkgateways/ps8364/generatevpnclientpackage?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjc5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtnYXRld2F5cy9wczgzNjQvZ2VuZXJhdGV2cG5jbGllbnRwYWNrYWdlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"processorArchitecture\": \"Amd64\",\r\n \"clientRootCertificates\": []\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "73" + ], + "x-ms-client-request-id": [ + "db6a7b22-5ff5-4b24-812e-14d3807d7420" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "ddb34d29-32a0-4e2d-a6b8-1822b80197c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015438Z:ddb34d29-32a0-4e2d-a6b8-1822b80197c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:38 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14598" + ], + "x-ms-correlation-request-id": [ + "1e0cfe35-1eec-4266-acee-283c302dfcfe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015438Z:1e0cfe35-1eec-4266-acee-283c302dfcfe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:38 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14597" + ], + "x-ms-correlation-request-id": [ + "b8d675ca-87f6-42b6-8654-ebc9cc39e3ac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015438Z:b8d675ca-87f6-42b6-8654-ebc9cc39e3ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:38 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14596" + ], + "x-ms-correlation-request-id": [ + "ddd90d02-c66f-4c3e-9d46-9dbc79daa71a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015438Z:ddd90d02-c66f-4c3e-9d46-9dbc79daa71a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:38 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14595" + ], + "x-ms-correlation-request-id": [ + "f622ad5d-d9a2-4bf7-b0ad-a66138fd8c05" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015438Z:f622ad5d-d9a2-4bf7-b0ad-a66138fd8c05" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:38 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14594" + ], + "x-ms-correlation-request-id": [ + "0516b96e-75ab-487c-bc6d-8020f4715212" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:0516b96e-75ab-487c-bc6d-8020f4715212" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:38 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14593" + ], + "x-ms-correlation-request-id": [ + "9ee8177c-b8de-4113-a142-9a22688925d2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:9ee8177c-b8de-4113-a142-9a22688925d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:38 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14592" + ], + "x-ms-correlation-request-id": [ + "d03cd32c-f2c5-4566-a20d-dd6d554a84e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:d03cd32c-f2c5-4566-a20d-dd6d554a84e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:38 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14591" + ], + "x-ms-correlation-request-id": [ + "3f83b978-2712-4eaa-b4fc-4568dc6d0220" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:3f83b978-2712-4eaa-b4fc-4568dc6d0220" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:38 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14590" + ], + "x-ms-correlation-request-id": [ + "87411821-c01e-45bf-b0d4-856e55bb44be" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:87411821-c01e-45bf-b0d4-856e55bb44be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:38 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14589" + ], + "x-ms-correlation-request-id": [ + "dd4d3e14-fb4f-4ed6-b3e3-45ca73aa8e27" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:dd4d3e14-fb4f-4ed6-b3e3-45ca73aa8e27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14588" + ], + "x-ms-correlation-request-id": [ + "ff1ff14c-7ce0-49e4-9c78-e0c1f6773a81" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:ff1ff14c-7ce0-49e4-9c78-e0c1f6773a81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14587" + ], + "x-ms-correlation-request-id": [ + "83411f36-9ae2-4f5b-9c2c-8e5a1dc3cb70" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:83411f36-9ae2-4f5b-9c2c-8e5a1dc3cb70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14586" + ], + "x-ms-correlation-request-id": [ + "87eae8d3-0a27-42b4-92e5-368c5e4f9b3e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:87eae8d3-0a27-42b4-92e5-368c5e4f9b3e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14585" + ], + "x-ms-correlation-request-id": [ + "8530c4b7-5c9c-4aa5-8e7c-f24d14534908" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:8530c4b7-5c9c-4aa5-8e7c-f24d14534908" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14584" + ], + "x-ms-correlation-request-id": [ + "c69126d8-b73e-4e2e-9143-92fe0ee4c625" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:c69126d8-b73e-4e2e-9143-92fe0ee4c625" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14583" + ], + "x-ms-correlation-request-id": [ + "390992c6-52c8-481d-998d-faa7b4d5876f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:390992c6-52c8-481d-998d-faa7b4d5876f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14582" + ], + "x-ms-correlation-request-id": [ + "f1057705-71a3-401e-95de-cb7ba667ee21" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:f1057705-71a3-401e-95de-cb7ba667ee21" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14581" + ], + "x-ms-correlation-request-id": [ + "99e9be3c-edae-404f-b5b7-18dae3cbe512" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:99e9be3c-edae-404f-b5b7-18dae3cbe512" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14580" + ], + "x-ms-correlation-request-id": [ + "efa794f0-bc87-48a6-b0ce-54906c512825" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:efa794f0-bc87-48a6-b0ce-54906c512825" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14579" + ], + "x-ms-correlation-request-id": [ + "a9761223-6bb5-4bce-abf8-6c673f79e88c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:a9761223-6bb5-4bce-abf8-6c673f79e88c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14578" + ], + "x-ms-correlation-request-id": [ + "b5208792-4925-4c2e-bd88-4df712ba5113" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:b5208792-4925-4c2e-bd88-4df712ba5113" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14577" + ], + "x-ms-correlation-request-id": [ + "beca0d61-858c-4318-84f9-8a65b1835dc4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:beca0d61-858c-4318-84f9-8a65b1835dc4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14576" + ], + "x-ms-correlation-request-id": [ + "3e5bbc73-9759-437d-9e0d-145db33b7508" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015439Z:3e5bbc73-9759-437d-9e0d-145db33b7508" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14575" + ], + "x-ms-correlation-request-id": [ + "07f92365-2f26-4215-a5a3-6eaf96ebb993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:07f92365-2f26-4215-a5a3-6eaf96ebb993" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14574" + ], + "x-ms-correlation-request-id": [ + "41b2dca5-6b80-47c1-8225-b0c314db6541" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:41b2dca5-6b80-47c1-8225-b0c314db6541" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14573" + ], + "x-ms-correlation-request-id": [ + "9d6f1402-de8b-44df-93b2-12959cef70de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:9d6f1402-de8b-44df-93b2-12959cef70de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14572" + ], + "x-ms-correlation-request-id": [ + "f3e23bdb-cf81-40c0-a9cc-eeb455f27ab9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:f3e23bdb-cf81-40c0-a9cc-eeb455f27ab9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14571" + ], + "x-ms-correlation-request-id": [ + "b49b25c8-9a6a-47bd-8804-64468132240c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:b49b25c8-9a6a-47bd-8804-64468132240c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14570" + ], + "x-ms-correlation-request-id": [ + "b20db8c2-25a2-42b8-bc17-5028dbf70eb4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:b20db8c2-25a2-42b8-bc17-5028dbf70eb4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14569" + ], + "x-ms-correlation-request-id": [ + "18b6ab7e-57a2-4a53-b901-d57191471a2c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:18b6ab7e-57a2-4a53-b901-d57191471a2c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14568" + ], + "x-ms-correlation-request-id": [ + "ad063b58-c722-4133-90cf-36dd99297c5a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:ad063b58-c722-4133-90cf-36dd99297c5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14567" + ], + "x-ms-correlation-request-id": [ + "4246aba3-4ed9-4a85-b4a3-99f1b671bd68" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:4246aba3-4ed9-4a85-b4a3-99f1b671bd68" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14566" + ], + "x-ms-correlation-request-id": [ + "a7ac1835-2995-4a1c-a838-20aa67aa507c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:a7ac1835-2995-4a1c-a838-20aa67aa507c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14565" + ], + "x-ms-correlation-request-id": [ + "8d40dba1-1e58-4ae1-a691-95b45f152855" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:8d40dba1-1e58-4ae1-a691-95b45f152855" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14564" + ], + "x-ms-correlation-request-id": [ + "fd26acff-10ac-4e7e-babf-d356fd95f7e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:fd26acff-10ac-4e7e-babf-d356fd95f7e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14563" + ], + "x-ms-correlation-request-id": [ + "f77c307c-e9f2-4927-8243-e2ac8e8165e5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:f77c307c-e9f2-4927-8243-e2ac8e8165e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14562" + ], + "x-ms-correlation-request-id": [ + "5d76dd75-5a7c-4aa4-bdd7-929518390ccc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:5d76dd75-5a7c-4aa4-bdd7-929518390ccc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14561" + ], + "x-ms-correlation-request-id": [ + "a5b0915b-fa11-4533-ae4b-495ccad25566" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:a5b0915b-fa11-4533-ae4b-495ccad25566" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14560" + ], + "x-ms-correlation-request-id": [ + "bbfd0293-1810-46e5-8f61-3ed02303e265" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:bbfd0293-1810-46e5-8f61-3ed02303e265" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14559" + ], + "x-ms-correlation-request-id": [ + "c8192884-5536-4d2a-9436-3d1088191940" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:c8192884-5536-4d2a-9436-3d1088191940" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14558" + ], + "x-ms-correlation-request-id": [ + "871f1bdc-5dd2-464c-8d64-eedd8045b5f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:871f1bdc-5dd2-464c-8d64-eedd8045b5f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14557" + ], + "x-ms-correlation-request-id": [ + "30a25b0f-f1d9-4388-9c23-835e79805d31" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:30a25b0f-f1d9-4388-9c23-835e79805d31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14556" + ], + "x-ms-correlation-request-id": [ + "68226dda-9733-4678-8962-e2dc54213f06" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:68226dda-9733-4678-8962-e2dc54213f06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14555" + ], + "x-ms-correlation-request-id": [ + "3b0232b7-4bd5-40a5-bd83-0c789dd9c679" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015440Z:3b0232b7-4bd5-40a5-bd83-0c789dd9c679" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14554" + ], + "x-ms-correlation-request-id": [ + "5956023d-a6a9-49a1-8113-9f2be5d72b1b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:5956023d-a6a9-49a1-8113-9f2be5d72b1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14553" + ], + "x-ms-correlation-request-id": [ + "fdc55db2-9f4c-4e81-99a3-916759b2bb5b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:fdc55db2-9f4c-4e81-99a3-916759b2bb5b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14552" + ], + "x-ms-correlation-request-id": [ + "8cd0520e-abd4-46fa-ab49-650d4f07ad3a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:8cd0520e-abd4-46fa-ab49-650d4f07ad3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14551" + ], + "x-ms-correlation-request-id": [ + "ed3fccb5-a5e3-413d-90fc-d174027ec575" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:ed3fccb5-a5e3-413d-90fc-d174027ec575" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14550" + ], + "x-ms-correlation-request-id": [ + "aa231b6a-9111-4bc5-a5e3-cfd4796ec8cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:aa231b6a-9111-4bc5-a5e3-cfd4796ec8cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14549" + ], + "x-ms-correlation-request-id": [ + "a067d52c-e38b-45f6-b26a-fc52944d6559" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:a067d52c-e38b-45f6-b26a-fc52944d6559" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14548" + ], + "x-ms-correlation-request-id": [ + "734b6d4e-ef2d-4d10-a706-34ab0147aeb1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:734b6d4e-ef2d-4d10-a706-34ab0147aeb1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14547" + ], + "x-ms-correlation-request-id": [ + "13fb1f9c-26d6-43ef-a2e1-e4053ead4fdf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:13fb1f9c-26d6-43ef-a2e1-e4053ead4fdf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14546" + ], + "x-ms-correlation-request-id": [ + "fe07434d-52eb-4982-bc1f-dcc4dc1d98b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:fe07434d-52eb-4982-bc1f-dcc4dc1d98b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14545" + ], + "x-ms-correlation-request-id": [ + "28e7cba6-afea-4c90-a689-87643933903d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:28e7cba6-afea-4c90-a689-87643933903d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14544" + ], + "x-ms-correlation-request-id": [ + "7805cdf7-7c7c-4c3d-9feb-81f334d657e6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:7805cdf7-7c7c-4c3d-9feb-81f334d657e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14543" + ], + "x-ms-correlation-request-id": [ + "fe98f74c-5a12-4b72-909a-191b1bab4e00" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:fe98f74c-5a12-4b72-909a-191b1bab4e00" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14542" + ], + "x-ms-correlation-request-id": [ + "5c895c2c-653c-4522-822b-0ba76530d1a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:5c895c2c-653c-4522-822b-0ba76530d1a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14541" + ], + "x-ms-correlation-request-id": [ + "a0107045-b0b4-4dcf-b646-24e65c8fc977" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:a0107045-b0b4-4dcf-b646-24e65c8fc977" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14540" + ], + "x-ms-correlation-request-id": [ + "a54d1a30-b839-4ef6-b703-01877c14c813" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:a54d1a30-b839-4ef6-b703-01877c14c813" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14539" + ], + "x-ms-correlation-request-id": [ + "3c3a94dc-6662-49e5-8028-b158165eaa8e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:3c3a94dc-6662-49e5-8028-b158165eaa8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14538" + ], + "x-ms-correlation-request-id": [ + "0273b4a0-6406-4a88-b6b5-76db0584275e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:0273b4a0-6406-4a88-b6b5-76db0584275e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14537" + ], + "x-ms-correlation-request-id": [ + "fc359394-6723-4ec9-810f-a704e26259f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:fc359394-6723-4ec9-810f-a704e26259f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14536" + ], + "x-ms-correlation-request-id": [ + "3543198c-9236-4f4e-8bcf-dfab4fa97d7b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:3543198c-9236-4f4e-8bcf-dfab4fa97d7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14535" + ], + "x-ms-correlation-request-id": [ + "d51325dc-61e8-465e-bc86-889d4396a960" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015441Z:d51325dc-61e8-465e-bc86-889d4396a960" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14534" + ], + "x-ms-correlation-request-id": [ + "081ce3f9-dd70-4509-be87-4e876970904d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:081ce3f9-dd70-4509-be87-4e876970904d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14533" + ], + "x-ms-correlation-request-id": [ + "92601d91-a343-4315-965d-d3818f97af0b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:92601d91-a343-4315-965d-d3818f97af0b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14532" + ], + "x-ms-correlation-request-id": [ + "cf6c3351-341b-4983-97ad-35b65cbad8ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:cf6c3351-341b-4983-97ad-35b65cbad8ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14531" + ], + "x-ms-correlation-request-id": [ + "6705037d-1919-4470-a00f-563cf713d519" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:6705037d-1919-4470-a00f-563cf713d519" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14530" + ], + "x-ms-correlation-request-id": [ + "632e4310-bb7c-4cb5-9e20-72a4705fce0a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:632e4310-bb7c-4cb5-9e20-72a4705fce0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14529" + ], + "x-ms-correlation-request-id": [ + "af9f33da-7e6c-4561-9909-c69c2821177a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:af9f33da-7e6c-4561-9909-c69c2821177a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14528" + ], + "x-ms-correlation-request-id": [ + "8e0cfe6e-ee25-4fdd-8b87-ffd5714d420b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:8e0cfe6e-ee25-4fdd-8b87-ffd5714d420b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14527" + ], + "x-ms-correlation-request-id": [ + "39a0164a-febb-40f6-9e5c-a15be9ecd610" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:39a0164a-febb-40f6-9e5c-a15be9ecd610" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14526" + ], + "x-ms-correlation-request-id": [ + "c47bb119-4172-447c-b99a-3577097d1f9a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:c47bb119-4172-447c-b99a-3577097d1f9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14525" + ], + "x-ms-correlation-request-id": [ + "06017f68-e5f7-4f90-a9f1-31fbbf99dba4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:06017f68-e5f7-4f90-a9f1-31fbbf99dba4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14524" + ], + "x-ms-correlation-request-id": [ + "3cdfd717-5358-4753-9126-3a94e8cc6b48" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:3cdfd717-5358-4753-9126-3a94e8cc6b48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14523" + ], + "x-ms-correlation-request-id": [ + "7076c64c-92ef-4c0b-b2c4-51dfee9d60a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:7076c64c-92ef-4c0b-b2c4-51dfee9d60a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14522" + ], + "x-ms-correlation-request-id": [ + "c0262999-8005-4f94-b5aa-07e0e7243f67" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:c0262999-8005-4f94-b5aa-07e0e7243f67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14521" + ], + "x-ms-correlation-request-id": [ + "269cbe41-17d4-4d68-84bc-7d2734405391" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:269cbe41-17d4-4d68-84bc-7d2734405391" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14520" + ], + "x-ms-correlation-request-id": [ + "ff33c8f0-ead3-41a6-a72a-9c86e705f746" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:ff33c8f0-ead3-41a6-a72a-9c86e705f746" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14519" + ], + "x-ms-correlation-request-id": [ + "e4147ded-ef50-466c-b400-b657985ff02e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:e4147ded-ef50-466c-b400-b657985ff02e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14518" + ], + "x-ms-correlation-request-id": [ + "6bff265a-f661-4ad3-8b61-15c1f035a93a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:6bff265a-f661-4ad3-8b61-15c1f035a93a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14517" + ], + "x-ms-correlation-request-id": [ + "10bbdd3d-00ea-4fdc-9477-0eeef96bc6df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:10bbdd3d-00ea-4fdc-9477-0eeef96bc6df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14516" + ], + "x-ms-correlation-request-id": [ + "450bdc35-7f4f-426d-a0b9-cc2645483e9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:450bdc35-7f4f-426d-a0b9-cc2645483e9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14515" + ], + "x-ms-correlation-request-id": [ + "145ff128-e798-45c4-ac83-18bf087338ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015442Z:145ff128-e798-45c4-ac83-18bf087338ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14514" + ], + "x-ms-correlation-request-id": [ + "98db7e39-8e27-45e2-ab4d-5e617db8aeaa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:98db7e39-8e27-45e2-ab4d-5e617db8aeaa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14513" + ], + "x-ms-correlation-request-id": [ + "376d7e0c-42dc-45ff-9b9d-498888a0e62f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:376d7e0c-42dc-45ff-9b9d-498888a0e62f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14512" + ], + "x-ms-correlation-request-id": [ + "85d2bf10-cafd-4773-b6fb-b039f065f829" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:85d2bf10-cafd-4773-b6fb-b039f065f829" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14511" + ], + "x-ms-correlation-request-id": [ + "b28e0454-6d6c-42f6-9180-78c6fbe1a1dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:b28e0454-6d6c-42f6-9180-78c6fbe1a1dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14510" + ], + "x-ms-correlation-request-id": [ + "e8508721-158a-4217-9811-7055d9596f1d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:e8508721-158a-4217-9811-7055d9596f1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14509" + ], + "x-ms-correlation-request-id": [ + "421a8297-9a94-4dbe-ab4f-855b1b49b117" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:421a8297-9a94-4dbe-ab4f-855b1b49b117" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14508" + ], + "x-ms-correlation-request-id": [ + "9f368b9e-3e53-43ad-ac3d-bb7cb8f9f7fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:9f368b9e-3e53-43ad-ac3d-bb7cb8f9f7fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14507" + ], + "x-ms-correlation-request-id": [ + "d8042a91-a49f-45e3-92e0-e5b51b27a540" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:d8042a91-a49f-45e3-92e0-e5b51b27a540" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14506" + ], + "x-ms-correlation-request-id": [ + "8894a82e-8ac9-422d-bff4-7fa673bd7f14" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:8894a82e-8ac9-422d-bff4-7fa673bd7f14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14505" + ], + "x-ms-correlation-request-id": [ + "e9f70b41-52f4-4829-be5c-bd4800fac577" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:e9f70b41-52f4-4829-be5c-bd4800fac577" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14504" + ], + "x-ms-correlation-request-id": [ + "5f7a5b49-ebc3-41aa-b6dd-fb3cbafd5517" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:5f7a5b49-ebc3-41aa-b6dd-fb3cbafd5517" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14503" + ], + "x-ms-correlation-request-id": [ + "f20d2217-4c9f-4e5b-ae1d-2237a04eeb7b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:f20d2217-4c9f-4e5b-ae1d-2237a04eeb7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14502" + ], + "x-ms-correlation-request-id": [ + "39568eca-bc71-4a15-8c0c-63c088d582da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:39568eca-bc71-4a15-8c0c-63c088d582da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14501" + ], + "x-ms-correlation-request-id": [ + "baf9892b-5339-4875-afad-8f99211830c7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:baf9892b-5339-4875-afad-8f99211830c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14500" + ], + "x-ms-correlation-request-id": [ + "02de13b3-e234-48c9-9824-7afb4d2c0430" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:02de13b3-e234-48c9-9824-7afb4d2c0430" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14499" + ], + "x-ms-correlation-request-id": [ + "1e8e1e74-fdfa-4586-aec5-74e8c569ebc0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:1e8e1e74-fdfa-4586-aec5-74e8c569ebc0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14498" + ], + "x-ms-correlation-request-id": [ + "300a9349-a1db-41db-8cc5-67f9a8802bc0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:300a9349-a1db-41db-8cc5-67f9a8802bc0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14497" + ], + "x-ms-correlation-request-id": [ + "467647a9-ebc9-4d55-a015-780e90884bbc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:467647a9-ebc9-4d55-a015-780e90884bbc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14496" + ], + "x-ms-correlation-request-id": [ + "fe84165d-f150-4614-9f6d-f5c7bf822186" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015443Z:fe84165d-f150-4614-9f6d-f5c7bf822186" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14495" + ], + "x-ms-correlation-request-id": [ + "109b4b45-4972-4b2d-bcd9-f04f3851cf13" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:109b4b45-4972-4b2d-bcd9-f04f3851cf13" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14494" + ], + "x-ms-correlation-request-id": [ + "17c96999-fbdb-41be-af0a-3b175a65d84a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:17c96999-fbdb-41be-af0a-3b175a65d84a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14493" + ], + "x-ms-correlation-request-id": [ + "a4854efc-75ff-4453-9b64-cce4a7b3d295" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:a4854efc-75ff-4453-9b64-cce4a7b3d295" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14492" + ], + "x-ms-correlation-request-id": [ + "4a3b0d70-e8ee-489e-82c8-e0516104f702" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:4a3b0d70-e8ee-489e-82c8-e0516104f702" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14491" + ], + "x-ms-correlation-request-id": [ + "600a2539-3038-4fdc-ac5b-e07b3df21823" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:600a2539-3038-4fdc-ac5b-e07b3df21823" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14490" + ], + "x-ms-correlation-request-id": [ + "e0bd39e4-f53f-4e40-b582-e9d6b398fb2a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:e0bd39e4-f53f-4e40-b582-e9d6b398fb2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14489" + ], + "x-ms-correlation-request-id": [ + "5492939f-2133-4e76-87dc-599a920f347f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:5492939f-2133-4e76-87dc-599a920f347f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14488" + ], + "x-ms-correlation-request-id": [ + "34dc042c-ffd5-4000-9ffe-436840161bed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:34dc042c-ffd5-4000-9ffe-436840161bed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14487" + ], + "x-ms-correlation-request-id": [ + "1fe324ea-c54f-4160-9608-46c01e7c7931" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:1fe324ea-c54f-4160-9608-46c01e7c7931" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14486" + ], + "x-ms-correlation-request-id": [ + "a13354bd-e8fe-49b1-89be-6bf950168151" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:a13354bd-e8fe-49b1-89be-6bf950168151" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14485" + ], + "x-ms-correlation-request-id": [ + "e64b2a6e-b1bc-4292-a36c-7d5ad8b769d1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:e64b2a6e-b1bc-4292-a36c-7d5ad8b769d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14484" + ], + "x-ms-correlation-request-id": [ + "3e73c22c-6e96-4d18-ad2b-f9478f9652a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:3e73c22c-6e96-4d18-ad2b-f9478f9652a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14483" + ], + "x-ms-correlation-request-id": [ + "cf84d58d-9539-401f-a8c5-6979b266daa5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:cf84d58d-9539-401f-a8c5-6979b266daa5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14482" + ], + "x-ms-correlation-request-id": [ + "0a57b674-a861-455c-af7c-b41aa0c86c0f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:0a57b674-a861-455c-af7c-b41aa0c86c0f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14481" + ], + "x-ms-correlation-request-id": [ + "6506da15-69c2-492e-8a9e-0be008153768" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:6506da15-69c2-492e-8a9e-0be008153768" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14480" + ], + "x-ms-correlation-request-id": [ + "1dcaac53-e83f-49ab-a969-a3601a98df73" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:1dcaac53-e83f-49ab-a969-a3601a98df73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14479" + ], + "x-ms-correlation-request-id": [ + "25b81737-be06-4656-ae61-015073a7e9f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:25b81737-be06-4656-ae61-015073a7e9f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14478" + ], + "x-ms-correlation-request-id": [ + "793a9bb9-e21b-4ced-9857-e3e1474a00e5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:793a9bb9-e21b-4ced-9857-e3e1474a00e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14477" + ], + "x-ms-correlation-request-id": [ + "75d3c705-8876-46a7-9851-d7e5e059be0b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:75d3c705-8876-46a7-9851-d7e5e059be0b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14476" + ], + "x-ms-correlation-request-id": [ + "284b0ddc-1388-4270-8ccc-43dcc2c8959f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015444Z:284b0ddc-1388-4270-8ccc-43dcc2c8959f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14475" + ], + "x-ms-correlation-request-id": [ + "7cdb8761-0c7b-4c4b-aaad-a6118ec7ccfa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:7cdb8761-0c7b-4c4b-aaad-a6118ec7ccfa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14474" + ], + "x-ms-correlation-request-id": [ + "d8548850-178c-4224-b57a-8fa6a818c7a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:d8548850-178c-4224-b57a-8fa6a818c7a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14473" + ], + "x-ms-correlation-request-id": [ + "012388b7-d742-441f-aca6-272d32bc63b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:012388b7-d742-441f-aca6-272d32bc63b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14472" + ], + "x-ms-correlation-request-id": [ + "c250d539-7d20-4f37-96a8-b95022abaa71" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:c250d539-7d20-4f37-96a8-b95022abaa71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14471" + ], + "x-ms-correlation-request-id": [ + "08104278-c926-48cb-8c68-b4eefd99fb86" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:08104278-c926-48cb-8c68-b4eefd99fb86" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14470" + ], + "x-ms-correlation-request-id": [ + "b368d63c-cdaa-41ef-a034-393dd1d2c3dc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:b368d63c-cdaa-41ef-a034-393dd1d2c3dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14469" + ], + "x-ms-correlation-request-id": [ + "a3fe608f-81f3-44a0-b42c-c866543164f3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:a3fe608f-81f3-44a0-b42c-c866543164f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14468" + ], + "x-ms-correlation-request-id": [ + "94f50dd2-b13d-4666-b533-bdc02bb46209" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:94f50dd2-b13d-4666-b533-bdc02bb46209" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14467" + ], + "x-ms-correlation-request-id": [ + "b5c56f94-55dd-4736-a5d3-1c73b2b0b6dc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:b5c56f94-55dd-4736-a5d3-1c73b2b0b6dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14466" + ], + "x-ms-correlation-request-id": [ + "ddb89978-1f60-4194-8039-5abf1781fe5e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:ddb89978-1f60-4194-8039-5abf1781fe5e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14465" + ], + "x-ms-correlation-request-id": [ + "f3daea84-1d0c-49f0-89ce-194d4d866e95" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:f3daea84-1d0c-49f0-89ce-194d4d866e95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14464" + ], + "x-ms-correlation-request-id": [ + "2c5125fa-fe90-40a1-a936-74711ac93ceb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:2c5125fa-fe90-40a1-a936-74711ac93ceb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14463" + ], + "x-ms-correlation-request-id": [ + "60252b89-5940-4eb3-a92c-477431324fef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:60252b89-5940-4eb3-a92c-477431324fef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14462" + ], + "x-ms-correlation-request-id": [ + "74d77d6e-07f6-438c-ad2f-a3595dc74814" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:74d77d6e-07f6-438c-ad2f-a3595dc74814" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14461" + ], + "x-ms-correlation-request-id": [ + "fbacaee8-2a06-4458-9e8e-62309f6e9fcc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:fbacaee8-2a06-4458-9e8e-62309f6e9fcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14460" + ], + "x-ms-correlation-request-id": [ + "fc04a01e-41a2-4426-a39d-2c149ab40765" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:fc04a01e-41a2-4426-a39d-2c149ab40765" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14459" + ], + "x-ms-correlation-request-id": [ + "08557958-8762-43cf-a162-380a3ea51cf2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:08557958-8762-43cf-a162-380a3ea51cf2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14458" + ], + "x-ms-correlation-request-id": [ + "9011a1b3-a8d9-4f36-a494-9d348af9ae3a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:9011a1b3-a8d9-4f36-a494-9d348af9ae3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14457" + ], + "x-ms-correlation-request-id": [ + "d8a2a4b7-56c5-4578-9513-7aae4a4df509" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:d8a2a4b7-56c5-4578-9513-7aae4a4df509" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14456" + ], + "x-ms-correlation-request-id": [ + "37254789-7007-4c24-8755-b86b86b3d560" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:37254789-7007-4c24-8755-b86b86b3d560" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14455" + ], + "x-ms-correlation-request-id": [ + "ca755423-16eb-41d3-b3ae-328707f6ff62" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015445Z:ca755423-16eb-41d3-b3ae-328707f6ff62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14454" + ], + "x-ms-correlation-request-id": [ + "ac1b9079-b6f0-4d91-b89a-457a952b3206" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:ac1b9079-b6f0-4d91-b89a-457a952b3206" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14453" + ], + "x-ms-correlation-request-id": [ + "b60b12d7-d6ef-4858-b33f-e1d40ec7a2f2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:b60b12d7-d6ef-4858-b33f-e1d40ec7a2f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14452" + ], + "x-ms-correlation-request-id": [ + "07012c8e-8b38-4e4c-ab96-2fe64710a778" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:07012c8e-8b38-4e4c-ab96-2fe64710a778" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14451" + ], + "x-ms-correlation-request-id": [ + "701c914d-d173-4681-9b2b-a21e34b825d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:701c914d-d173-4681-9b2b-a21e34b825d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14450" + ], + "x-ms-correlation-request-id": [ + "ba0de648-5db9-42ab-bf8d-8bcb78d32560" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:ba0de648-5db9-42ab-bf8d-8bcb78d32560" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14449" + ], + "x-ms-correlation-request-id": [ + "9ef189fc-66bf-4c48-abde-f3fea08cfc18" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:9ef189fc-66bf-4c48-abde-f3fea08cfc18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14448" + ], + "x-ms-correlation-request-id": [ + "f5dcb37d-6f79-4b2b-baca-5f9e0450ec7d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:f5dcb37d-6f79-4b2b-baca-5f9e0450ec7d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14447" + ], + "x-ms-correlation-request-id": [ + "bae1ebff-ad7f-409a-9496-ebfc83c10109" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:bae1ebff-ad7f-409a-9496-ebfc83c10109" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:45 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14446" + ], + "x-ms-correlation-request-id": [ + "b72f1a0b-895d-4f0a-8d55-909fc0105628" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:b72f1a0b-895d-4f0a-8d55-909fc0105628" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14445" + ], + "x-ms-correlation-request-id": [ + "1379677c-0206-485d-bebf-49fbd9aa21e5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:1379677c-0206-485d-bebf-49fbd9aa21e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14444" + ], + "x-ms-correlation-request-id": [ + "6c2b049a-b23f-4307-ad77-04c5c86e7e16" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:6c2b049a-b23f-4307-ad77-04c5c86e7e16" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14443" + ], + "x-ms-correlation-request-id": [ + "8ebc4807-73b9-411c-a53d-b6175119e164" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:8ebc4807-73b9-411c-a53d-b6175119e164" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14442" + ], + "x-ms-correlation-request-id": [ + "580df163-578d-424f-b56e-a75736de9829" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:580df163-578d-424f-b56e-a75736de9829" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14441" + ], + "x-ms-correlation-request-id": [ + "ae77465c-2114-4eb1-a0d7-081852d57dfd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:ae77465c-2114-4eb1-a0d7-081852d57dfd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14440" + ], + "x-ms-correlation-request-id": [ + "e32d45ca-5345-4396-b386-96ac9695e1ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:e32d45ca-5345-4396-b386-96ac9695e1ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14439" + ], + "x-ms-correlation-request-id": [ + "ccf0322d-20d3-4e43-9753-d37a67f20920" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:ccf0322d-20d3-4e43-9753-d37a67f20920" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14438" + ], + "x-ms-correlation-request-id": [ + "f75d9b98-4593-4995-ad3b-5046c325a921" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:f75d9b98-4593-4995-ad3b-5046c325a921" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14437" + ], + "x-ms-correlation-request-id": [ + "a37ddaeb-9681-45b3-9a1e-ac3697bcb283" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:a37ddaeb-9681-45b3-9a1e-ac3697bcb283" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14436" + ], + "x-ms-correlation-request-id": [ + "8e49d56e-5743-4423-af10-7a6a48895094" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:8e49d56e-5743-4423-af10-7a6a48895094" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14435" + ], + "x-ms-correlation-request-id": [ + "ef29c016-2e0a-46e8-98b7-04cc1cb93486" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015446Z:ef29c016-2e0a-46e8-98b7-04cc1cb93486" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14434" + ], + "x-ms-correlation-request-id": [ + "eb7724d7-a16f-4de0-8693-5c524ca06435" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:eb7724d7-a16f-4de0-8693-5c524ca06435" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14433" + ], + "x-ms-correlation-request-id": [ + "4e3c361e-c8ce-431e-8e6c-2805f300cee2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:4e3c361e-c8ce-431e-8e6c-2805f300cee2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14432" + ], + "x-ms-correlation-request-id": [ + "18dec5e7-156d-46ba-9744-1fca1dacb681" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:18dec5e7-156d-46ba-9744-1fca1dacb681" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14431" + ], + "x-ms-correlation-request-id": [ + "9bbefa22-3f1b-49ce-99b9-6aaa986f4b94" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:9bbefa22-3f1b-49ce-99b9-6aaa986f4b94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14430" + ], + "x-ms-correlation-request-id": [ + "51357863-138d-41f0-8bf3-956f5ee23884" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:51357863-138d-41f0-8bf3-956f5ee23884" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14429" + ], + "x-ms-correlation-request-id": [ + "05071a4a-413b-4097-a6b1-ca13ff887475" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:05071a4a-413b-4097-a6b1-ca13ff887475" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14428" + ], + "x-ms-correlation-request-id": [ + "69a23969-b141-40be-82d3-5e3bc2d7e087" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:69a23969-b141-40be-82d3-5e3bc2d7e087" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14427" + ], + "x-ms-correlation-request-id": [ + "7f32494b-a122-4a75-bd3f-476b20035179" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:7f32494b-a122-4a75-bd3f-476b20035179" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14426" + ], + "x-ms-correlation-request-id": [ + "d440d732-4985-4b1e-8e44-0f78193b6458" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:d440d732-4985-4b1e-8e44-0f78193b6458" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:46 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14425" + ], + "x-ms-correlation-request-id": [ + "34974a1b-0352-4e03-b701-28585e4bd6a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:34974a1b-0352-4e03-b701-28585e4bd6a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14424" + ], + "x-ms-correlation-request-id": [ + "b343bdf3-f904-4a6f-b9d9-c1453b5d6f47" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:b343bdf3-f904-4a6f-b9d9-c1453b5d6f47" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14423" + ], + "x-ms-correlation-request-id": [ + "814bf2e8-4a9e-40c1-a6b8-3b3a15b1abff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:814bf2e8-4a9e-40c1-a6b8-3b3a15b1abff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14422" + ], + "x-ms-correlation-request-id": [ + "887bc99b-b21c-4154-bed1-2f03c2af1f6e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:887bc99b-b21c-4154-bed1-2f03c2af1f6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14421" + ], + "x-ms-correlation-request-id": [ + "b12cde57-f9be-48a0-8f6f-a58e134b6e4f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:b12cde57-f9be-48a0-8f6f-a58e134b6e4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14420" + ], + "x-ms-correlation-request-id": [ + "ef46249b-3527-43f7-bdf9-8ad84ba10dc1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:ef46249b-3527-43f7-bdf9-8ad84ba10dc1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14419" + ], + "x-ms-correlation-request-id": [ + "e3135367-8551-4173-a3b8-cb27f538df2d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:e3135367-8551-4173-a3b8-cb27f538df2d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14418" + ], + "x-ms-correlation-request-id": [ + "9e3545f3-8aaf-4214-b14f-2b004b0d2858" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:9e3545f3-8aaf-4214-b14f-2b004b0d2858" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14417" + ], + "x-ms-correlation-request-id": [ + "a53ebc2d-4bf1-4103-959d-2ff43729421b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:a53ebc2d-4bf1-4103-959d-2ff43729421b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14416" + ], + "x-ms-correlation-request-id": [ + "0732cfd0-446b-40c7-99ea-5191c4896fb0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:0732cfd0-446b-40c7-99ea-5191c4896fb0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14415" + ], + "x-ms-correlation-request-id": [ + "47f027d7-c98b-48b9-8872-e81f552dc3d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:47f027d7-c98b-48b9-8872-e81f552dc3d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14414" + ], + "x-ms-correlation-request-id": [ + "e92df4ff-2a99-40f4-8886-82c12f42a36d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015447Z:e92df4ff-2a99-40f4-8886-82c12f42a36d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14413" + ], + "x-ms-correlation-request-id": [ + "8dac7a0b-71bf-4c16-8c81-2a7594ddf5c6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:8dac7a0b-71bf-4c16-8c81-2a7594ddf5c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14412" + ], + "x-ms-correlation-request-id": [ + "aaa9db61-18d5-427a-8f29-dbb1e0e7a6e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:aaa9db61-18d5-427a-8f29-dbb1e0e7a6e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14411" + ], + "x-ms-correlation-request-id": [ + "13f7cfad-a943-4426-bd14-c4438647cba9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:13f7cfad-a943-4426-bd14-c4438647cba9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14410" + ], + "x-ms-correlation-request-id": [ + "5c19be03-cee5-449c-9010-74a5da529072" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:5c19be03-cee5-449c-9010-74a5da529072" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14409" + ], + "x-ms-correlation-request-id": [ + "d41d1ab6-f286-4813-9754-1a291613a974" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:d41d1ab6-f286-4813-9754-1a291613a974" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14408" + ], + "x-ms-correlation-request-id": [ + "c9b62474-d3a8-469f-9c72-1e6b1a13589d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:c9b62474-d3a8-469f-9c72-1e6b1a13589d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14407" + ], + "x-ms-correlation-request-id": [ + "cd7eeca1-f82c-46ca-bc14-85e222ae3efa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:cd7eeca1-f82c-46ca-bc14-85e222ae3efa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:47 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14406" + ], + "x-ms-correlation-request-id": [ + "cf1fb7f9-4227-40f2-ab73-5a53a8beeb61" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:cf1fb7f9-4227-40f2-ab73-5a53a8beeb61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14405" + ], + "x-ms-correlation-request-id": [ + "36d3a088-7f31-418e-bd89-2a5b2052b676" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:36d3a088-7f31-418e-bd89-2a5b2052b676" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14404" + ], + "x-ms-correlation-request-id": [ + "f3dc8890-fc82-4318-9cbd-7d2ed48cba2f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:f3dc8890-fc82-4318-9cbd-7d2ed48cba2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14403" + ], + "x-ms-correlation-request-id": [ + "884bb415-e604-4fe8-b9b0-8a3030faa7c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:884bb415-e604-4fe8-b9b0-8a3030faa7c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14402" + ], + "x-ms-correlation-request-id": [ + "03b4cbff-21dc-448b-8e6f-c2d43e4213e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:03b4cbff-21dc-448b-8e6f-c2d43e4213e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14401" + ], + "x-ms-correlation-request-id": [ + "f58a516d-66d9-42eb-bad7-fe0d3779fe06" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:f58a516d-66d9-42eb-bad7-fe0d3779fe06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14400" + ], + "x-ms-correlation-request-id": [ + "8fd0fc20-c36e-4611-817b-4f1a611d5b65" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:8fd0fc20-c36e-4611-817b-4f1a611d5b65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14399" + ], + "x-ms-correlation-request-id": [ + "2dd0051a-709b-401a-a5f0-a9a7103782cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:2dd0051a-709b-401a-a5f0-a9a7103782cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14398" + ], + "x-ms-correlation-request-id": [ + "17ab9838-5d4c-46e6-a1da-5bc70af4c113" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:17ab9838-5d4c-46e6-a1da-5bc70af4c113" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14397" + ], + "x-ms-correlation-request-id": [ + "00f8e120-805a-4a8f-b60b-958ef12abf3f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:00f8e120-805a-4a8f-b60b-958ef12abf3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14396" + ], + "x-ms-correlation-request-id": [ + "24c77135-eaef-4d0f-9c10-4827be30df16" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:24c77135-eaef-4d0f-9c10-4827be30df16" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14395" + ], + "x-ms-correlation-request-id": [ + "60a5f919-2172-48e1-8c00-1cf5e543ad03" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:60a5f919-2172-48e1-8c00-1cf5e543ad03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14394" + ], + "x-ms-correlation-request-id": [ + "df58d587-5bc2-43ba-93cd-861d0370151d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015448Z:df58d587-5bc2-43ba-93cd-861d0370151d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14393" + ], + "x-ms-correlation-request-id": [ + "89e7dd7b-79a9-4568-a9c1-cd06efd24273" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:89e7dd7b-79a9-4568-a9c1-cd06efd24273" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14392" + ], + "x-ms-correlation-request-id": [ + "b24dcda5-99be-4683-ad4f-8ffb6e2824da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:b24dcda5-99be-4683-ad4f-8ffb6e2824da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14391" + ], + "x-ms-correlation-request-id": [ + "414de917-d503-4ea0-bf5a-35c35d3a11c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:414de917-d503-4ea0-bf5a-35c35d3a11c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14390" + ], + "x-ms-correlation-request-id": [ + "d032e024-1a09-4148-8511-97edf3b85a12" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:d032e024-1a09-4148-8511-97edf3b85a12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14389" + ], + "x-ms-correlation-request-id": [ + "fa0e07de-45fc-4d0e-b858-73d326191a12" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:fa0e07de-45fc-4d0e-b858-73d326191a12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14388" + ], + "x-ms-correlation-request-id": [ + "f9485ff1-9a07-42eb-a72f-56eed1a39194" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:f9485ff1-9a07-42eb-a72f-56eed1a39194" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14387" + ], + "x-ms-correlation-request-id": [ + "75325632-c885-470a-b10c-57884efae130" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:75325632-c885-470a-b10c-57884efae130" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14386" + ], + "x-ms-correlation-request-id": [ + "a05e9f2a-01c8-45aa-a786-89ed7dce4cb5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:a05e9f2a-01c8-45aa-a786-89ed7dce4cb5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14385" + ], + "x-ms-correlation-request-id": [ + "7fbb147d-7931-4f7b-9dcd-e42910bc40f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:7fbb147d-7931-4f7b-9dcd-e42910bc40f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14384" + ], + "x-ms-correlation-request-id": [ + "58f2f348-8d79-4dd1-86fe-cd25044b91dc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:58f2f348-8d79-4dd1-86fe-cd25044b91dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14383" + ], + "x-ms-correlation-request-id": [ + "b1f8eac1-9d0b-4ca7-b027-b108e2dbba90" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:b1f8eac1-9d0b-4ca7-b027-b108e2dbba90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14382" + ], + "x-ms-correlation-request-id": [ + "2d66651a-7a93-4372-a68b-b136efcd4e51" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:2d66651a-7a93-4372-a68b-b136efcd4e51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14381" + ], + "x-ms-correlation-request-id": [ + "278c7969-7a5a-48e9-941f-e3cdb92166f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:278c7969-7a5a-48e9-941f-e3cdb92166f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14380" + ], + "x-ms-correlation-request-id": [ + "921df861-2a3a-4526-bf1a-10e744800cd8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:921df861-2a3a-4526-bf1a-10e744800cd8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14379" + ], + "x-ms-correlation-request-id": [ + "82944faa-5786-4e16-ad20-3047a34c519f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:82944faa-5786-4e16-ad20-3047a34c519f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14378" + ], + "x-ms-correlation-request-id": [ + "dcfd5432-2b10-4142-9675-71a9ef71a6b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:dcfd5432-2b10-4142-9675-71a9ef71a6b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14377" + ], + "x-ms-correlation-request-id": [ + "db99ef2e-a652-48f4-a36a-5f628a62cb80" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:db99ef2e-a652-48f4-a36a-5f628a62cb80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14376" + ], + "x-ms-correlation-request-id": [ + "3ac339db-54af-41f1-b84e-aa66bd50ab26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:3ac339db-54af-41f1-b84e-aa66bd50ab26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14375" + ], + "x-ms-correlation-request-id": [ + "b207149b-d428-413e-b458-656b09440481" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:b207149b-d428-413e-b458-656b09440481" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14374" + ], + "x-ms-correlation-request-id": [ + "de824555-0e0d-440f-a220-62e84ce9965f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015449Z:de824555-0e0d-440f-a220-62e84ce9965f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14373" + ], + "x-ms-correlation-request-id": [ + "7fff6cf5-99b2-4e9a-b73c-4cdb8bae0d60" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:7fff6cf5-99b2-4e9a-b73c-4cdb8bae0d60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14372" + ], + "x-ms-correlation-request-id": [ + "942e74f4-0d0e-49f5-8ba3-0530321b5e71" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:942e74f4-0d0e-49f5-8ba3-0530321b5e71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14371" + ], + "x-ms-correlation-request-id": [ + "52e334df-2a6f-4c57-aafc-259921aff3c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:52e334df-2a6f-4c57-aafc-259921aff3c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14370" + ], + "x-ms-correlation-request-id": [ + "c070eab4-a591-40cf-81e0-b523c1340fb3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:c070eab4-a591-40cf-81e0-b523c1340fb3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14369" + ], + "x-ms-correlation-request-id": [ + "0a27ff6c-9b22-448c-a6dc-9db0ccc070f4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:0a27ff6c-9b22-448c-a6dc-9db0ccc070f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14368" + ], + "x-ms-correlation-request-id": [ + "a9112fea-d5c6-4b39-bec0-cc2507c66651" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:a9112fea-d5c6-4b39-bec0-cc2507c66651" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14367" + ], + "x-ms-correlation-request-id": [ + "6d3d9c22-97df-4084-a71b-d417114742d8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:6d3d9c22-97df-4084-a71b-d417114742d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14366" + ], + "x-ms-correlation-request-id": [ + "f70e8b9d-b454-4d94-bed1-2ccb6bfd4a09" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:f70e8b9d-b454-4d94-bed1-2ccb6bfd4a09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14365" + ], + "x-ms-correlation-request-id": [ + "914beab9-7f61-4394-95cf-c48217bbe0ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:914beab9-7f61-4394-95cf-c48217bbe0ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14364" + ], + "x-ms-correlation-request-id": [ + "9ae5ed7d-6f2f-4cac-8cb2-92afacb7ce1e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:9ae5ed7d-6f2f-4cac-8cb2-92afacb7ce1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14363" + ], + "x-ms-correlation-request-id": [ + "76dc1892-8a88-4724-9309-fe17081ba775" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:76dc1892-8a88-4724-9309-fe17081ba775" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14362" + ], + "x-ms-correlation-request-id": [ + "463051ad-6635-418c-ad7f-8306b4c3a4f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:463051ad-6635-418c-ad7f-8306b4c3a4f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14361" + ], + "x-ms-correlation-request-id": [ + "a3d45487-fc93-496d-997f-433e2bd9ae05" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:a3d45487-fc93-496d-997f-433e2bd9ae05" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14360" + ], + "x-ms-correlation-request-id": [ + "be0306a0-7277-41f5-a615-bfa20190970c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:be0306a0-7277-41f5-a615-bfa20190970c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14359" + ], + "x-ms-correlation-request-id": [ + "e264683f-f732-47f3-ab61-8345d86fec39" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:e264683f-f732-47f3-ab61-8345d86fec39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14358" + ], + "x-ms-correlation-request-id": [ + "4e109e69-f427-4eb1-b1b3-e7d660c82edf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:4e109e69-f427-4eb1-b1b3-e7d660c82edf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14357" + ], + "x-ms-correlation-request-id": [ + "f9f93cd7-a9d6-4a8e-9861-b37e53953507" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:f9f93cd7-a9d6-4a8e-9861-b37e53953507" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14356" + ], + "x-ms-correlation-request-id": [ + "0d49c9a9-7604-4cc1-b93b-d19a76fa9ab3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:0d49c9a9-7604-4cc1-b93b-d19a76fa9ab3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14355" + ], + "x-ms-correlation-request-id": [ + "cb9fce97-bfc1-48b3-b884-9fd4f3053d3a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:cb9fce97-bfc1-48b3-b884-9fd4f3053d3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14354" + ], + "x-ms-correlation-request-id": [ + "58755bbf-47ef-4077-a5ec-63c6a07ebec1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:58755bbf-47ef-4077-a5ec-63c6a07ebec1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14353" + ], + "x-ms-correlation-request-id": [ + "2d8a30a6-337f-443b-816b-5654aa4c9575" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015450Z:2d8a30a6-337f-443b-816b-5654aa4c9575" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14352" + ], + "x-ms-correlation-request-id": [ + "ddefb682-f37e-4110-a615-dae4303dca55" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:ddefb682-f37e-4110-a615-dae4303dca55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14351" + ], + "x-ms-correlation-request-id": [ + "945241ab-796b-44a2-bf26-e159dd7dbbb5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:945241ab-796b-44a2-bf26-e159dd7dbbb5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14350" + ], + "x-ms-correlation-request-id": [ + "f1b2f956-df97-4213-9497-4a8b9adc9cdf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:f1b2f956-df97-4213-9497-4a8b9adc9cdf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14349" + ], + "x-ms-correlation-request-id": [ + "ceda5568-2cd8-425a-b456-6d3ca5f33c49" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:ceda5568-2cd8-425a-b456-6d3ca5f33c49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14348" + ], + "x-ms-correlation-request-id": [ + "a7843249-f197-4102-ac9e-cb03dd149f4b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:a7843249-f197-4102-ac9e-cb03dd149f4b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14347" + ], + "x-ms-correlation-request-id": [ + "90f1a472-b4da-4f4f-b089-db03ffd03e77" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:90f1a472-b4da-4f4f-b089-db03ffd03e77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14346" + ], + "x-ms-correlation-request-id": [ + "fefe780b-9cce-4bd0-a970-5331ad1a35a7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:fefe780b-9cce-4bd0-a970-5331ad1a35a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14345" + ], + "x-ms-correlation-request-id": [ + "9b339bc8-7ec0-4639-9859-c0a5016645fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:9b339bc8-7ec0-4639-9859-c0a5016645fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14344" + ], + "x-ms-correlation-request-id": [ + "6a39368c-ab62-429d-9344-3530ec58a35a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:6a39368c-ab62-429d-9344-3530ec58a35a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14343" + ], + "x-ms-correlation-request-id": [ + "f13d31ab-4fd0-41c0-ac78-07e0e4ddfe38" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:f13d31ab-4fd0-41c0-ac78-07e0e4ddfe38" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14342" + ], + "x-ms-correlation-request-id": [ + "2dd5a2ed-9b73-42c2-a589-36f16fccfe4d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:2dd5a2ed-9b73-42c2-a589-36f16fccfe4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14341" + ], + "x-ms-correlation-request-id": [ + "585e5742-e449-48fb-a71e-6a416854b4d2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:585e5742-e449-48fb-a71e-6a416854b4d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14340" + ], + "x-ms-correlation-request-id": [ + "6ca3df63-b689-4c61-ab79-4e19fcfc80ca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:6ca3df63-b689-4c61-ab79-4e19fcfc80ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14339" + ], + "x-ms-correlation-request-id": [ + "c0d3c1a8-9908-41b4-b961-3ffa6fc5332f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:c0d3c1a8-9908-41b4-b961-3ffa6fc5332f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14338" + ], + "x-ms-correlation-request-id": [ + "a31d02a0-10e1-45af-81d9-7721d580987c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:a31d02a0-10e1-45af-81d9-7721d580987c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14337" + ], + "x-ms-correlation-request-id": [ + "eb835c47-b579-48b4-93fc-047dc05e6ccb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:eb835c47-b579-48b4-93fc-047dc05e6ccb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14336" + ], + "x-ms-correlation-request-id": [ + "b123d78a-38af-491f-8761-6f8e282a82b1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:b123d78a-38af-491f-8761-6f8e282a82b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14335" + ], + "x-ms-correlation-request-id": [ + "d790b17c-de01-47ab-83ab-8d7b7c87880f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015451Z:d790b17c-de01-47ab-83ab-8d7b7c87880f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14334" + ], + "x-ms-correlation-request-id": [ + "bc4e8c21-3da1-4a3c-8b1e-7098ef4b6564" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:bc4e8c21-3da1-4a3c-8b1e-7098ef4b6564" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14333" + ], + "x-ms-correlation-request-id": [ + "d9222419-94b8-467e-b489-2a62b0e333e1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:d9222419-94b8-467e-b489-2a62b0e333e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14332" + ], + "x-ms-correlation-request-id": [ + "1f4638c0-65fa-4669-be3c-7bdd2dfef60f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:1f4638c0-65fa-4669-be3c-7bdd2dfef60f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14331" + ], + "x-ms-correlation-request-id": [ + "f13bc3c4-b5bf-466a-8de2-1bb331954c19" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:f13bc3c4-b5bf-466a-8de2-1bb331954c19" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14330" + ], + "x-ms-correlation-request-id": [ + "201c8918-7f0a-4c25-8a41-89bf8d46fc76" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:201c8918-7f0a-4c25-8a41-89bf8d46fc76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14329" + ], + "x-ms-correlation-request-id": [ + "17a084da-cf57-44f3-9b08-def775ed4e9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:17a084da-cf57-44f3-9b08-def775ed4e9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14328" + ], + "x-ms-correlation-request-id": [ + "157df3ff-2575-4507-9a5f-afae23dbb304" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:157df3ff-2575-4507-9a5f-afae23dbb304" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14327" + ], + "x-ms-correlation-request-id": [ + "e49f3a8b-6957-43f6-adb3-9bc33f2ada2b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:e49f3a8b-6957-43f6-adb3-9bc33f2ada2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14326" + ], + "x-ms-correlation-request-id": [ + "8fbbb22c-12a0-44a0-9d8d-f99e0bd62b31" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:8fbbb22c-12a0-44a0-9d8d-f99e0bd62b31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14325" + ], + "x-ms-correlation-request-id": [ + "c071feb6-c502-4d2b-9e0b-77814b4cc27f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:c071feb6-c502-4d2b-9e0b-77814b4cc27f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14324" + ], + "x-ms-correlation-request-id": [ + "a5d83eb8-49f0-447b-b275-0f0083a78391" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:a5d83eb8-49f0-447b-b275-0f0083a78391" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14323" + ], + "x-ms-correlation-request-id": [ + "78106125-f020-4a6c-bf47-ba19221b8324" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:78106125-f020-4a6c-bf47-ba19221b8324" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14322" + ], + "x-ms-correlation-request-id": [ + "7871a641-6b8d-4405-b8a9-b059cc347b1f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:7871a641-6b8d-4405-b8a9-b059cc347b1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14321" + ], + "x-ms-correlation-request-id": [ + "357fe4f2-b322-4cdd-9060-2c92fed5e9fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:357fe4f2-b322-4cdd-9060-2c92fed5e9fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14320" + ], + "x-ms-correlation-request-id": [ + "2dbbd345-2c07-4846-b534-fd6626ced367" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:2dbbd345-2c07-4846-b534-fd6626ced367" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14319" + ], + "x-ms-correlation-request-id": [ + "4ed67ba3-4e7c-4c80-a104-54a0157d3638" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:4ed67ba3-4e7c-4c80-a104-54a0157d3638" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14318" + ], + "x-ms-correlation-request-id": [ + "702ec54e-565a-4620-97f1-978a493d35a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:702ec54e-565a-4620-97f1-978a493d35a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14317" + ], + "x-ms-correlation-request-id": [ + "8e1559a0-85d4-4be7-81d2-c33c87e3f066" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:8e1559a0-85d4-4be7-81d2-c33c87e3f066" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14316" + ], + "x-ms-correlation-request-id": [ + "1f473634-b61b-4624-b511-cd01ebf254d6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:1f473634-b61b-4624-b511-cd01ebf254d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14315" + ], + "x-ms-correlation-request-id": [ + "ad355080-b535-47dc-91fd-e5622eea12cb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015452Z:ad355080-b535-47dc-91fd-e5622eea12cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14314" + ], + "x-ms-correlation-request-id": [ + "a4dfadf6-f0e0-4cb2-9df1-15a0b676ddb2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:a4dfadf6-f0e0-4cb2-9df1-15a0b676ddb2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14313" + ], + "x-ms-correlation-request-id": [ + "d921cb33-739c-46cf-97f9-292809e91e0c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:d921cb33-739c-46cf-97f9-292809e91e0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14312" + ], + "x-ms-correlation-request-id": [ + "7f2c2ec8-ee0b-4da2-ac62-234728ed3901" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:7f2c2ec8-ee0b-4da2-ac62-234728ed3901" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14311" + ], + "x-ms-correlation-request-id": [ + "88e393d7-18ef-42e8-a922-213a0251423c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:88e393d7-18ef-42e8-a922-213a0251423c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14310" + ], + "x-ms-correlation-request-id": [ + "c73b8b80-19d0-4609-acfb-7f496f77bec3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:c73b8b80-19d0-4609-acfb-7f496f77bec3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14309" + ], + "x-ms-correlation-request-id": [ + "83350c41-59c8-4a59-a9ad-c21678ece9e6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:83350c41-59c8-4a59-a9ad-c21678ece9e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14308" + ], + "x-ms-correlation-request-id": [ + "40794845-209f-4c94-b507-ac76f7c32274" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:40794845-209f-4c94-b507-ac76f7c32274" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14307" + ], + "x-ms-correlation-request-id": [ + "3099a11d-633e-4447-93c8-6933491d4736" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:3099a11d-633e-4447-93c8-6933491d4736" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14306" + ], + "x-ms-correlation-request-id": [ + "e3884753-7a40-4d1e-8795-8bab1f0d52f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:e3884753-7a40-4d1e-8795-8bab1f0d52f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:52 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14305" + ], + "x-ms-correlation-request-id": [ + "4001640f-07c1-40d4-bee1-77fd19c41222" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:4001640f-07c1-40d4-bee1-77fd19c41222" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14304" + ], + "x-ms-correlation-request-id": [ + "a3262773-c843-4dd3-9b07-83a9c1cfa74d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:a3262773-c843-4dd3-9b07-83a9c1cfa74d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14303" + ], + "x-ms-correlation-request-id": [ + "27b8260e-6b72-4598-bb24-bda7ceb2de32" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:27b8260e-6b72-4598-bb24-bda7ceb2de32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14302" + ], + "x-ms-correlation-request-id": [ + "ab85f2ed-5e23-4de8-b188-d9d46aa9a851" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:ab85f2ed-5e23-4de8-b188-d9d46aa9a851" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14301" + ], + "x-ms-correlation-request-id": [ + "e70c5e76-380c-4615-9c2c-08d0ab55cfb3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:e70c5e76-380c-4615-9c2c-08d0ab55cfb3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14300" + ], + "x-ms-correlation-request-id": [ + "a0cc361b-7167-4ee2-a5de-f990831fcf0a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:a0cc361b-7167-4ee2-a5de-f990831fcf0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14299" + ], + "x-ms-correlation-request-id": [ + "38c143d3-4fd5-49d0-94de-dfa8d4ea5db7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:38c143d3-4fd5-49d0-94de-dfa8d4ea5db7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14298" + ], + "x-ms-correlation-request-id": [ + "e14ef25c-af25-4fd3-84f1-4b8cffc2261f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:e14ef25c-af25-4fd3-84f1-4b8cffc2261f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14297" + ], + "x-ms-correlation-request-id": [ + "7f600abb-92c9-4b71-bef3-a70ffa86f7e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:7f600abb-92c9-4b71-bef3-a70ffa86f7e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14296" + ], + "x-ms-correlation-request-id": [ + "899bec57-d8cf-4a99-b189-7a04fe66086b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:899bec57-d8cf-4a99-b189-7a04fe66086b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14295" + ], + "x-ms-correlation-request-id": [ + "e0bd0e22-8fa9-4572-87cb-bffdb1908c3c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:e0bd0e22-8fa9-4572-87cb-bffdb1908c3c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14294" + ], + "x-ms-correlation-request-id": [ + "ed8c8cf2-b363-4868-a138-de5688f21210" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015453Z:ed8c8cf2-b363-4868-a138-de5688f21210" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14293" + ], + "x-ms-correlation-request-id": [ + "f69aafe5-6573-4bf9-9a15-265bda0734e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:f69aafe5-6573-4bf9-9a15-265bda0734e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14292" + ], + "x-ms-correlation-request-id": [ + "ae5a5581-8dd7-4a8b-8c21-357233602570" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:ae5a5581-8dd7-4a8b-8c21-357233602570" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14291" + ], + "x-ms-correlation-request-id": [ + "56b75ba3-343b-4c61-801e-001346ae8c6f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:56b75ba3-343b-4c61-801e-001346ae8c6f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14290" + ], + "x-ms-correlation-request-id": [ + "b3f7c896-bc9b-494d-a242-0578e8d5da86" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:b3f7c896-bc9b-494d-a242-0578e8d5da86" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14289" + ], + "x-ms-correlation-request-id": [ + "a3e489c8-9cbd-46b8-a7a1-57a9d7bc1e25" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:a3e489c8-9cbd-46b8-a7a1-57a9d7bc1e25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14288" + ], + "x-ms-correlation-request-id": [ + "bdad04d2-379c-40ad-a11e-a9ce14cc8e4f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:bdad04d2-379c-40ad-a11e-a9ce14cc8e4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14287" + ], + "x-ms-correlation-request-id": [ + "21a0276f-360f-43d8-97e7-27709a753123" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:21a0276f-360f-43d8-97e7-27709a753123" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14286" + ], + "x-ms-correlation-request-id": [ + "30f5c064-f24f-413f-9a98-390f743720f5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:30f5c064-f24f-413f-9a98-390f743720f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14285" + ], + "x-ms-correlation-request-id": [ + "d9dae026-d6ba-4b26-b29f-517a46eb84a0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:d9dae026-d6ba-4b26-b29f-517a46eb84a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14284" + ], + "x-ms-correlation-request-id": [ + "6eb9c2c7-3081-487b-bc35-fda3129d1fcd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:6eb9c2c7-3081-487b-bc35-fda3129d1fcd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14283" + ], + "x-ms-correlation-request-id": [ + "7a613d6b-d421-46ac-bb78-12f9c553ac16" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:7a613d6b-d421-46ac-bb78-12f9c553ac16" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14282" + ], + "x-ms-correlation-request-id": [ + "90fa9280-fded-4c5e-a23f-a0342ff7d12d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:90fa9280-fded-4c5e-a23f-a0342ff7d12d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14281" + ], + "x-ms-correlation-request-id": [ + "2ac41694-48dc-43b5-ad21-0ec9a0ff747a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:2ac41694-48dc-43b5-ad21-0ec9a0ff747a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14280" + ], + "x-ms-correlation-request-id": [ + "c82f92eb-8a5b-4231-8c25-6a10ff434693" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:c82f92eb-8a5b-4231-8c25-6a10ff434693" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14279" + ], + "x-ms-correlation-request-id": [ + "4cb80b19-bb03-4071-bca1-80d9ce721d11" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:4cb80b19-bb03-4071-bca1-80d9ce721d11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14278" + ], + "x-ms-correlation-request-id": [ + "43db7856-264d-48ee-845e-3b3843d579cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:43db7856-264d-48ee-845e-3b3843d579cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14277" + ], + "x-ms-correlation-request-id": [ + "ca1efe87-0995-4721-bc5a-fed0361e5309" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:ca1efe87-0995-4721-bc5a-fed0361e5309" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14276" + ], + "x-ms-correlation-request-id": [ + "76d199b6-8c15-4f06-9b16-2e95849ba16a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:76d199b6-8c15-4f06-9b16-2e95849ba16a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14275" + ], + "x-ms-correlation-request-id": [ + "9e7188d5-4a65-4e18-a416-2854197e76b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015454Z:9e7188d5-4a65-4e18-a416-2854197e76b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14274" + ], + "x-ms-correlation-request-id": [ + "6d791fd5-445e-4c3e-ba9c-f3e4615667c1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:6d791fd5-445e-4c3e-ba9c-f3e4615667c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14273" + ], + "x-ms-correlation-request-id": [ + "57966e80-a1fc-4ed8-830c-d65e70f8001f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:57966e80-a1fc-4ed8-830c-d65e70f8001f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14272" + ], + "x-ms-correlation-request-id": [ + "d1404868-bdec-4628-9d88-9ee5ec395bbb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:d1404868-bdec-4628-9d88-9ee5ec395bbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14271" + ], + "x-ms-correlation-request-id": [ + "46d6e825-e041-487e-886c-f9fbb00578e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:46d6e825-e041-487e-886c-f9fbb00578e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14270" + ], + "x-ms-correlation-request-id": [ + "de154b87-2c55-4254-b87e-b2ccfa80d6a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:de154b87-2c55-4254-b87e-b2ccfa80d6a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14269" + ], + "x-ms-correlation-request-id": [ + "513ef44f-c017-4f64-bde3-4a76abeb80c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:513ef44f-c017-4f64-bde3-4a76abeb80c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14268" + ], + "x-ms-correlation-request-id": [ + "38a1210a-70c8-470e-bc0e-d8b6f8667630" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:38a1210a-70c8-470e-bc0e-d8b6f8667630" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14267" + ], + "x-ms-correlation-request-id": [ + "82ac46b0-fe1d-4ff3-90cf-838b1db0af07" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:82ac46b0-fe1d-4ff3-90cf-838b1db0af07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14266" + ], + "x-ms-correlation-request-id": [ + "d01cc449-96ad-4017-bec7-48b39d958c31" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:d01cc449-96ad-4017-bec7-48b39d958c31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14265" + ], + "x-ms-correlation-request-id": [ + "42faa175-5d85-47fe-b54c-f211128d6ebe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:42faa175-5d85-47fe-b54c-f211128d6ebe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14264" + ], + "x-ms-correlation-request-id": [ + "b8a6d494-b8b3-4e08-8ec8-5b7e5a5ce428" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:b8a6d494-b8b3-4e08-8ec8-5b7e5a5ce428" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14263" + ], + "x-ms-correlation-request-id": [ + "8067d69c-c40a-4a0a-9060-87a634e71ded" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:8067d69c-c40a-4a0a-9060-87a634e71ded" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14262" + ], + "x-ms-correlation-request-id": [ + "79039553-343e-4d95-8d42-616a88693e63" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:79039553-343e-4d95-8d42-616a88693e63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14261" + ], + "x-ms-correlation-request-id": [ + "080958ec-ce4c-47ef-8874-347d7138b71f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:080958ec-ce4c-47ef-8874-347d7138b71f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14260" + ], + "x-ms-correlation-request-id": [ + "7c1f3c70-def0-4c44-aea8-edf85e7d6a2e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:7c1f3c70-def0-4c44-aea8-edf85e7d6a2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14259" + ], + "x-ms-correlation-request-id": [ + "dea2ac6f-dfd0-4415-9b08-087830758646" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:dea2ac6f-dfd0-4415-9b08-087830758646" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14258" + ], + "x-ms-correlation-request-id": [ + "58208653-e59d-42e3-b1c6-6be5f4641d51" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:58208653-e59d-42e3-b1c6-6be5f4641d51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14257" + ], + "x-ms-correlation-request-id": [ + "7335c95c-9609-46bd-8b1c-b4c95c2b58a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:7335c95c-9609-46bd-8b1c-b4c95c2b58a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14256" + ], + "x-ms-correlation-request-id": [ + "494d8024-a7af-45fb-8162-3d95cbbf8287" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015455Z:494d8024-a7af-45fb-8162-3d95cbbf8287" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14255" + ], + "x-ms-correlation-request-id": [ + "885c08c9-ea94-4251-a8f1-84f68c499cba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015456Z:885c08c9-ea94-4251-a8f1-84f68c499cba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14254" + ], + "x-ms-correlation-request-id": [ + "0797f156-567f-4b32-b85e-43a8b4e33f79" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015456Z:0797f156-567f-4b32-b85e-43a8b4e33f79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14253" + ], + "x-ms-correlation-request-id": [ + "0d889ca4-3730-47e8-8a14-6cc9f418a4f8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015456Z:0d889ca4-3730-47e8-8a14-6cc9f418a4f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14252" + ], + "x-ms-correlation-request-id": [ + "16bfc9db-4b6e-4b9f-8bdc-930e3de925b2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015456Z:16bfc9db-4b6e-4b9f-8bdc-930e3de925b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14251" + ], + "x-ms-correlation-request-id": [ + "efd6b67d-f001-4e8e-a0d3-1de678776e20" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015456Z:efd6b67d-f001-4e8e-a0d3-1de678776e20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14250" + ], + "x-ms-correlation-request-id": [ + "83ee1758-f852-4ddb-b3b3-202284fe43be" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015456Z:83ee1758-f852-4ddb-b3b3-202284fe43be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14249" + ], + "x-ms-correlation-request-id": [ + "1236defd-413a-41a7-8c97-769af8f796bb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015456Z:1236defd-413a-41a7-8c97-769af8f796bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14248" + ], + "x-ms-correlation-request-id": [ + "5c112b3e-9afd-4ba2-b4c9-7f966dfd925c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015456Z:5c112b3e-9afd-4ba2-b4c9-7f966dfd925c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14247" + ], + "x-ms-correlation-request-id": [ + "586165bb-e23d-48d5-9227-69588c3b6e61" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015456Z:586165bb-e23d-48d5-9227-69588c3b6e61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14246" + ], + "x-ms-correlation-request-id": [ + "d996033e-1dd2-461e-b992-4dec2d822a74" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015456Z:d996033e-1dd2-461e-b992-4dec2d822a74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:56 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14245" + ], + "x-ms-correlation-request-id": [ + "d1cf40ac-d8af-4b39-8b9e-e06f739e9f33" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015456Z:d1cf40ac-d8af-4b39-8b9e-e06f739e9f33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:56 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14244" + ], + "x-ms-correlation-request-id": [ + "bc731390-3b86-4fae-9101-5fba7c3cb562" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015456Z:bc731390-3b86-4fae-9101-5fba7c3cb562" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:56 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiYzJhZjItZmY2MC00OTE5LWJhMTQtZjVjYTdjNTY4ZjE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "\"https://by0nfvetwgwmprod.blob.core.windows.net/cmakexe/d6cadeb1-9c7f-46d3-bd77-ecf2ffe3cc5b/amd64/d6cadeb1-9c7f-46d3-bd77-ecf2ffe3cc5b.exe?sv=2015-04-05&sr=b&sig=U0DRzyCHlc00XNzvatzA%2BW7MNewQo9DKcLjGygTyldA%3D&st=2018-05-10T01%3A49%3A49Z&se=2018-05-10T02%3A49%3A49Z&sp=r&fileExtension=.exe\"", + "ResponseHeaders": { + "Content-Length": [ + "292" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "03bc2af2-ff60-4919-ba14-f5ca7c568f16" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/03bc2af2-ff60-4919-ba14-f5ca7c568f16?api-version=2016-12-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14243" + ], + "x-ms-correlation-request-id": [ + "21772830-d2f1-4bb8-9627-88f461020d62" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015456Z:21772830-d2f1-4bb8-9627-88f461020d62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:54:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/8d750a32-b725-4515-b55f-62f79d9dcec9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ3NTBhMzItYjcyNS00NTE1LWI1NWYtNjJmNzlkOWRjZWM5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f4e817e6-3c61-4b90-8a66-e1f59e7e8e78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14265" + ], + "x-ms-correlation-request-id": [ + "4d58f51d-2690-4d73-b41f-9c032d67f15b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015507Z:4d58f51d-2690-4d73-b41f-9c032d67f15b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:55:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/8d750a32-b725-4515-b55f-62f79d9dcec9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ3NTBhMzItYjcyNS00NTE1LWI1NWYtNjJmNzlkOWRjZWM5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8bd4c4b9-27fc-4c63-9c29-7181ba822900" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14264" + ], + "x-ms-correlation-request-id": [ + "435f491a-452a-4d50-a736-8779b699a949" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015517Z:435f491a-452a-4d50-a736-8779b699a949" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:55:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/8d750a32-b725-4515-b55f-62f79d9dcec9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ3NTBhMzItYjcyNS00NTE1LWI1NWYtNjJmNzlkOWRjZWM5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0918ae3e-6fb5-41e4-9595-031ca3d743db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14263" + ], + "x-ms-correlation-request-id": [ + "f89b05f2-f677-4e74-b68f-73417b5a2c85" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015528Z:f89b05f2-f677-4e74-b68f-73417b5a2c85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:55:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/8d750a32-b725-4515-b55f-62f79d9dcec9?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ3NTBhMzItYjcyNS00NTE1LWI1NWYtNjJmNzlkOWRjZWM5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a3e87958-7f1c-4ddb-b834-4f3686dc7c60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14262" + ], + "x-ms-correlation-request-id": [ + "c128cb62-0432-4852-bbba-627bd69af858" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015538Z:c128cb62-0432-4852-bbba-627bd69af858" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:55:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/92bc6bfd-1b0b-4ca6-8f7f-197750aa1448?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTJiYzZiZmQtMWIwYi00Y2E2LThmN2YtMTk3NzUwYWExNDQ4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "73f3cff8-58f5-4c95-874b-a715224dff65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14257" + ], + "x-ms-correlation-request-id": [ + "117de849-0798-4536-857e-340282c2dbf7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015551Z:117de849-0798-4536-857e-340282c2dbf7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:55:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/92bc6bfd-1b0b-4ca6-8f7f-197750aa1448?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTJiYzZiZmQtMWIwYi00Y2E2LThmN2YtMTk3NzUwYWExNDQ4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8f82ce24-5b99-495f-8e6f-3077e20a6ae1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14256" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ddf9b5d6-7d41-4f96-9c81-d7616b1720ff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015601Z:ddf9b5d6-7d41-4f96-9c81-d7616b1720ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:56:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/92bc6bfd-1b0b-4ca6-8f7f-197750aa1448?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTJiYzZiZmQtMWIwYi00Y2E2LThmN2YtMTk3NzUwYWExNDQ4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c59e01a0-61ad-4bf7-b739-86a9b2f64090" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14255" + ], + "x-ms-correlation-request-id": [ + "ed4f5ac8-9378-43e5-860d-be1edfaea635" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015611Z:ed4f5ac8-9378-43e5-860d-be1edfaea635" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:56:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/92bc6bfd-1b0b-4ca6-8f7f-197750aa1448?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTJiYzZiZmQtMWIwYi00Y2E2LThmN2YtMTk3NzUwYWExNDQ4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "06eadf92-7b04-47b4-9179-34691201ec3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14254" + ], + "x-ms-correlation-request-id": [ + "4a2e6cdc-470f-4468-832f-739d6ee7fe3a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015621Z:4a2e6cdc-470f-4468-832f-739d6ee7fe3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:56:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/e1597a31-55ee-4e7b-a5c3-6f33b9b1c517?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE1OTdhMzEtNTVlZS00ZTdiLWE1YzMtNmYzM2I5YjFjNTE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "86d2e526-683b-4b6e-a1c9-c25c7cbf665c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14248" + ], + "x-ms-correlation-request-id": [ + "86f46fba-eae7-43d0-a376-bd86589dd42d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015635Z:86f46fba-eae7-43d0-a376-bd86589dd42d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:56:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/e1597a31-55ee-4e7b-a5c3-6f33b9b1c517?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE1OTdhMzEtNTVlZS00ZTdiLWE1YzMtNmYzM2I5YjFjNTE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "04c5928e-633a-4c1b-8c39-3549ffebfb5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14247" + ], + "x-ms-correlation-request-id": [ + "5b75c08a-6fc6-47c3-84d3-8358a701ed34" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015646Z:5b75c08a-6fc6-47c3-84d3-8358a701ed34" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:56:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/e1597a31-55ee-4e7b-a5c3-6f33b9b1c517?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE1OTdhMzEtNTVlZS00ZTdiLWE1YzMtNmYzM2I5YjFjNTE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6612e2a0-2d46-4981-a9b8-a905c51f360d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14246" + ], + "x-ms-correlation-request-id": [ + "a2a8c337-6984-4215-840d-3687b3b9afab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015656Z:a2a8c337-6984-4215-840d-3687b3b9afab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:56:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/e1597a31-55ee-4e7b-a5c3-6f33b9b1c517?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE1OTdhMzEtNTVlZS00ZTdiLWE1YzMtNmYzM2I5YjFjNTE3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aaa822b6-7eea-4edc-a169-d954f9ae2b95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14245" + ], + "x-ms-correlation-request-id": [ + "f30f8a37-1f2b-4524-b6c2-5eb7e609f23b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015706Z:f30f8a37-1f2b-4524-b6c2-5eb7e609f23b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:57:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f307c77c-c518-4396-ba37-63fbd21b5145?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjMwN2M3N2MtYzUxOC00Mzk2LWJhMzctNjNmYmQyMWI1MTQ1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b8cfb435-8227-45e7-99ac-20e20f25b751" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14240" + ], + "x-ms-correlation-request-id": [ + "5ea96608-6fe3-458f-839c-13b863a361a0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015719Z:5ea96608-6fe3-458f-839c-13b863a361a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:57:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f307c77c-c518-4396-ba37-63fbd21b5145?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjMwN2M3N2MtYzUxOC00Mzk2LWJhMzctNjNmYmQyMWI1MTQ1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "23c56073-ee81-4f2e-b470-f54fe62a36d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14239" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "9cbb4add-fcb2-4f35-84b2-9739b780bd26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015729Z:9cbb4add-fcb2-4f35-84b2-9739b780bd26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:57:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f307c77c-c518-4396-ba37-63fbd21b5145?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjMwN2M3N2MtYzUxOC00Mzk2LWJhMzctNjNmYmQyMWI1MTQ1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "13c746a8-fc6e-430d-8d70-b5991cac4578" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14238" + ], + "x-ms-correlation-request-id": [ + "325f0bae-b593-48b2-b11b-9b01a4bfab31" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015740Z:325f0bae-b593-48b2-b11b-9b01a4bfab31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:57:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f307c77c-c518-4396-ba37-63fbd21b5145?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjMwN2M3N2MtYzUxOC00Mzk2LWJhMzctNjNmYmQyMWI1MTQ1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a2c898eb-981f-45ce-9b6a-2176489fa874" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14237" + ], + "x-ms-correlation-request-id": [ + "feaa7a02-0ddc-47ab-b4f4-eaf9edc8da64" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015750Z:feaa7a02-0ddc-47ab-b4f4-eaf9edc8da64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 01:57:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps6796?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzNjc5Nj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "1be0c7a4-57c8-4394-8580-893dd4443db6" + ], + "x-ms-correlation-request-id": [ + "1be0c7a4-57c8-4394-8580-893dd4443db6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015754Z:1be0c7a4-57c8-4394-8580-893dd4443db6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 01:57:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "4fd5eb68-8794-4f24-9df8-d077f889a93a" + ], + "x-ms-correlation-request-id": [ + "4fd5eb68-8794-4f24-9df8-d077f889a93a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015754Z:4fd5eb68-8794-4f24-9df8-d077f889a93a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 01:57:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "06148ba4-803c-4220-83ff-deb9453ac0c2" + ], + "x-ms-correlation-request-id": [ + "06148ba4-803c-4220-83ff-deb9453ac0c2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015813Z:06148ba4-803c-4220-83ff-deb9453ac0c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 01:58:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "af34580e-5d49-4028-928e-4e2f7d27078e" + ], + "x-ms-correlation-request-id": [ + "af34580e-5d49-4028-928e-4e2f7d27078e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015830Z:af34580e-5d49-4028-928e-4e2f7d27078e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 01:58:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "17dcd4c2-8e63-4f1b-9f89-83436a985c6f" + ], + "x-ms-correlation-request-id": [ + "17dcd4c2-8e63-4f1b-9f89-83436a985c6f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015845Z:17dcd4c2-8e63-4f1b-9f89-83436a985c6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 01:58:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "4f47ad43-b93b-4390-89c2-2d1cc362a7d8" + ], + "x-ms-correlation-request-id": [ + "4f47ad43-b93b-4390-89c2-2d1cc362a7d8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015900Z:4f47ad43-b93b-4390-89c2-2d1cc362a7d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 01:59:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "4b3f9e61-8084-4033-900b-a851cbbdc3a9" + ], + "x-ms-correlation-request-id": [ + "4b3f9e61-8084-4033-900b-a851cbbdc3a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015915Z:4b3f9e61-8084-4033-900b-a851cbbdc3a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 01:59:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "0a17849b-2ca8-45c7-aaad-61e85d2888bb" + ], + "x-ms-correlation-request-id": [ + "0a17849b-2ca8-45c7-aaad-61e85d2888bb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015930Z:0a17849b-2ca8-45c7-aaad-61e85d2888bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 01:59:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "ef9c5720-9aa5-4229-a857-1bdfe9690d88" + ], + "x-ms-correlation-request-id": [ + "ef9c5720-9aa5-4229-a857-1bdfe9690d88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T015945Z:ef9c5720-9aa5-4229-a857-1bdfe9690d88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 01:59:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "c4a7ff36-5b6a-41c8-a5e2-ada2fa5397cc" + ], + "x-ms-correlation-request-id": [ + "c4a7ff36-5b6a-41c8-a5e2-ada2fa5397cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020001Z:c4a7ff36-5b6a-41c8-a5e2-ada2fa5397cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:00:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "92e9c8b4-eaf8-4466-aec6-075b525062e1" + ], + "x-ms-correlation-request-id": [ + "92e9c8b4-eaf8-4466-aec6-075b525062e1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020016Z:92e9c8b4-eaf8-4466-aec6-075b525062e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:00:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "de738bd6-f614-469a-9483-91c41ec75cea" + ], + "x-ms-correlation-request-id": [ + "de738bd6-f614-469a-9483-91c41ec75cea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020031Z:de738bd6-f614-469a-9483-91c41ec75cea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:00:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "6aa23e0e-84a0-4f50-89d9-880709a38233" + ], + "x-ms-correlation-request-id": [ + "6aa23e0e-84a0-4f50-89d9-880709a38233" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020046Z:6aa23e0e-84a0-4f50-89d9-880709a38233" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:00:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "828197a2-5175-4b34-a741-ef84eea52e17" + ], + "x-ms-correlation-request-id": [ + "828197a2-5175-4b34-a741-ef84eea52e17" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020101Z:828197a2-5175-4b34-a741-ef84eea52e17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:01:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "3c2f5eef-861f-449c-9dcb-e72fef215e6b" + ], + "x-ms-correlation-request-id": [ + "3c2f5eef-861f-449c-9dcb-e72fef215e6b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020116Z:3c2f5eef-861f-449c-9dcb-e72fef215e6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:01:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "ea960298-bf3d-4220-acea-5ea0bb400b74" + ], + "x-ms-correlation-request-id": [ + "ea960298-bf3d-4220-acea-5ea0bb400b74" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020131Z:ea960298-bf3d-4220-acea-5ea0bb400b74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:01:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "71ebf429-e6b8-42f7-a09a-3207b0a9ae5c" + ], + "x-ms-correlation-request-id": [ + "71ebf429-e6b8-42f7-a09a-3207b0a9ae5c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020146Z:71ebf429-e6b8-42f7-a09a-3207b0a9ae5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:01:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "2b8b556a-5c98-4368-8df7-9d1a17e12b7e" + ], + "x-ms-correlation-request-id": [ + "2b8b556a-5c98-4368-8df7-9d1a17e12b7e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020201Z:2b8b556a-5c98-4368-8df7-9d1a17e12b7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:02:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "fc001541-953d-46ef-a893-eb64b5483882" + ], + "x-ms-correlation-request-id": [ + "fc001541-953d-46ef-a893-eb64b5483882" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020217Z:fc001541-953d-46ef-a893-eb64b5483882" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:02:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "9edaf87b-9479-4f95-89ed-0243a0391a33" + ], + "x-ms-correlation-request-id": [ + "9edaf87b-9479-4f95-89ed-0243a0391a33" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020232Z:9edaf87b-9479-4f95-89ed-0243a0391a33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:02:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "4325f686-62a0-4bf7-8a6d-4c3cc536c5d6" + ], + "x-ms-correlation-request-id": [ + "4325f686-62a0-4bf7-8a6d-4c3cc536c5d6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020247Z:4325f686-62a0-4bf7-8a6d-4c3cc536c5d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:02:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "0f6ef440-5b6e-4672-b6cf-36c8b696f0ec" + ], + "x-ms-correlation-request-id": [ + "0f6ef440-5b6e-4672-b6cf-36c8b696f0ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020302Z:0f6ef440-5b6e-4672-b6cf-36c8b696f0ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:03:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "e38af485-0bcc-47ef-abe4-61e05fd58bf1" + ], + "x-ms-correlation-request-id": [ + "e38af485-0bcc-47ef-abe4-61e05fd58bf1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020317Z:e38af485-0bcc-47ef-abe4-61e05fd58bf1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:03:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "7eb856d9-7278-4d82-87ca-a731549d7d02" + ], + "x-ms-correlation-request-id": [ + "7eb856d9-7278-4d82-87ca-a731549d7d02" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020332Z:7eb856d9-7278-4d82-87ca-a731549d7d02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:03:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "bde70371-4c5b-45d0-9c31-f9843ffca2ea" + ], + "x-ms-correlation-request-id": [ + "bde70371-4c5b-45d0-9c31-f9843ffca2ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020347Z:bde70371-4c5b-45d0-9c31-f9843ffca2ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:03:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "9475f30f-9558-4c89-b440-4e6fdc103155" + ], + "x-ms-correlation-request-id": [ + "9475f30f-9558-4c89-b440-4e6fdc103155" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020402Z:9475f30f-9558-4c89-b440-4e6fdc103155" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:04:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-request-id": [ + "74a34705-13ef-4f22-847c-d37f70939fbb" + ], + "x-ms-correlation-request-id": [ + "74a34705-13ef-4f22-847c-d37f70939fbb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020418Z:74a34705-13ef-4f22-847c-d37f70939fbb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:04:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "9c6bcd4b-6968-4906-85ec-c1e472dfa138" + ], + "x-ms-correlation-request-id": [ + "9c6bcd4b-6968-4906-85ec-c1e472dfa138" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020433Z:9c6bcd4b-6968-4906-85ec-c1e472dfa138" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:04:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-request-id": [ + "16d5251b-bfb6-419d-b38d-1eff33944730" + ], + "x-ms-correlation-request-id": [ + "16d5251b-bfb6-419d-b38d-1eff33944730" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020448Z:16d5251b-bfb6-419d-b38d-1eff33944730" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:04:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-request-id": [ + "443cc696-73ee-4c72-b5ea-bcbd408b6fce" + ], + "x-ms-correlation-request-id": [ + "443cc696-73ee-4c72-b5ea-bcbd408b6fce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020503Z:443cc696-73ee-4c72-b5ea-bcbd408b6fce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:05:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-request-id": [ + "195036f1-83a9-44ef-a1b0-bf8bd75b2591" + ], + "x-ms-correlation-request-id": [ + "195036f1-83a9-44ef-a1b0-bf8bd75b2591" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020518Z:195036f1-83a9-44ef-a1b0-bf8bd75b2591" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:05:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-request-id": [ + "54d6bd40-9bed-4227-98f9-439906448f20" + ], + "x-ms-correlation-request-id": [ + "54d6bd40-9bed-4227-98f9-439906448f20" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020533Z:54d6bd40-9bed-4227-98f9-439906448f20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:05:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-request-id": [ + "bebbb956-fe58-4ead-a1b6-7ab55a4ba4de" + ], + "x-ms-correlation-request-id": [ + "bebbb956-fe58-4ead-a1b6-7ab55a4ba4de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020548Z:bebbb956-fe58-4ead-a1b6-7ab55a4ba4de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:05:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-request-id": [ + "39c0e256-9925-46a9-b1c2-f8384dd1a1bb" + ], + "x-ms-correlation-request-id": [ + "39c0e256-9925-46a9-b1c2-f8384dd1a1bb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020603Z:39c0e256-9925-46a9-b1c2-f8384dd1a1bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:06:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-request-id": [ + "e158378f-4e04-44c2-a077-96c74a64652f" + ], + "x-ms-correlation-request-id": [ + "e158378f-4e04-44c2-a077-96c74a64652f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020618Z:e158378f-4e04-44c2-a077-96c74a64652f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:06:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-request-id": [ + "24a9ab07-5a95-485a-8f91-f8886ca27129" + ], + "x-ms-correlation-request-id": [ + "24a9ab07-5a95-485a-8f91-f8886ca27129" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020633Z:24a9ab07-5a95-485a-8f91-f8886ca27129" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:06:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-request-id": [ + "f43ef904-d456-46f1-ab3b-c310e6b81846" + ], + "x-ms-correlation-request-id": [ + "f43ef904-d456-46f1-ab3b-c310e6b81846" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020648Z:f43ef904-d456-46f1-ab3b-c310e6b81846" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:06:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-request-id": [ + "e4f70b1f-9c1a-4d0e-b6a0-47585ed90170" + ], + "x-ms-correlation-request-id": [ + "e4f70b1f-9c1a-4d0e-b6a0-47585ed90170" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020703Z:e4f70b1f-9c1a-4d0e-b6a0-47585ed90170" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:07:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-request-id": [ + "7d08cea0-3fbf-436b-b4d7-8a7a59c82e2c" + ], + "x-ms-correlation-request-id": [ + "7d08cea0-3fbf-436b-b4d7-8a7a59c82e2c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020718Z:7d08cea0-3fbf-436b-b4d7-8a7a59c82e2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:07:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-request-id": [ + "3ee4cfe3-ca54-4143-92be-9666a022509c" + ], + "x-ms-correlation-request-id": [ + "3ee4cfe3-ca54-4143-92be-9666a022509c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T020734Z:3ee4cfe3-ca54-4143-92be-9666a022509c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 10 May 2018 02:07:33 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-VirtualNetworkGatewayP2SAndSKU": [ + "ps6796", + "ps8364", + "ps2727", + "ps6313", + "ps2813", + "ps2743" + ] + }, + "Variables": { + "SubscriptionId": "b1f1deed-af60-4bab-9223-65d340462e24" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/TestVirtualNetworkGatewayP2SVpnProfile.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/TestVirtualNetworkGatewayP2SVpnProfile.json index f1e08d24864d..4592ae656384 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/TestVirtualNetworkGatewayP2SVpnProfile.json +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/TestVirtualNetworkGatewayP2SVpnProfile.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "14911" + "24460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,46 +28,49 @@ "14999" ], "x-ms-request-id": [ - "b5e81f20-3818-4358-861c-657d99516047" + "95ecfd05-732a-43b1-b5e5-8a4cc0e42d32" ], "x-ms-correlation-request-id": [ - "b5e81f20-3818-4358-861c-657d99516047" + "95ecfd05-732a-43b1-b5e5-8a4cc0e42d32" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215048Z:b5e81f20-3818-4358-861c-657d99516047" + "WESTUS2:20180510T001355Z:95ecfd05-732a-43b1-b5e5-8a4cc0e42d32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 21:50:47 GMT" + "Thu, 10 May 2018 00:13:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourcegroups/onesdk3166?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlZ3JvdXBzL29uZXNkazMxNjY/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps7893?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzNzg5Mz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "29" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166\",\r\n \"name\": \"onesdk3166\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893\",\r\n \"name\": \"ps7893\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "181" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,49 +85,52 @@ "1199" ], "x-ms-request-id": [ - "8ce65db3-1bf0-4081-a289-5acf1c4a96a4" + "c2f08ff3-45e6-4504-a8aa-952c1cbc18ee" ], "x-ms-correlation-request-id": [ - "8ce65db3-1bf0-4081-a289-5acf1c4a96a4" + "c2f08ff3-45e6-4504-a8aa-952c1cbc18ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215049Z:8ce65db3-1bf0-4081-a289-5acf1c4a96a4" + "WESTUS2:20180510T001356Z:c2f08ff3-45e6-4504-a8aa-952c1cbc18ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 21:50:48 GMT" + "Thu, 10 May 2018 00:13:55 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs2NjI3P2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTkzNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81b1e851-169a-4dc2-aff5-431b58b0c4dd" + "05d711bc-3c59-4fab-a397-1a241c3d2939" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/onesdk6627' under resource group 'onesdk3166' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps5935' under resource group 'ps7893' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "158" + "150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,43 +145,46 @@ "gateway" ], "x-ms-request-id": [ - "20dde584-d388-4048-a823-f9beb296a490" + "dc71aab6-9449-47a9-8f99-2eb2e21eae3f" ], "x-ms-correlation-request-id": [ - "20dde584-d388-4048-a823-f9beb296a490" + "dc71aab6-9449-47a9-8f99-2eb2e21eae3f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215052Z:20dde584-d388-4048-a823-f9beb296a490" + "WESTUS2:20180510T001356Z:dc71aab6-9449-47a9-8f99-2eb2e21eae3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 21:50:52 GMT" + "Thu, 10 May 2018 00:13:56 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs2NjI3P2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTkzNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6627\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627\",\r\n \"etag\": \"W/\\\"e370caa6-331b-4bb4-99b1-08b8a0a58162\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"134cff71-d91d-42fe-9297-360c0a777554\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"e370caa6-331b-4bb4-99b1-08b8a0a58162\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5935\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935\",\r\n \"etag\": \"W/\\\"b637edda-c774-4d16-9a1a-cc34a400416b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fde54d39-fad6-4dd9-8d6d-6346f973cbbb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"b637edda-c774-4d16-9a1a-cc34a400416b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1025" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -187,7 +196,7 @@ "no-cache" ], "x-ms-request-id": [ - "20d1e8b5-4835-4f2d-8f44-03afe88a9a3d" + "bfd7bb82-0af7-4244-b5ac-f158ba276984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,50 +205,53 @@ "no-cache" ], "ETag": [ - "W/\"e370caa6-331b-4bb4-99b1-08b8a0a58162\"" + "W/\"b637edda-c774-4d16-9a1a-cc34a400416b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14996" ], "x-ms-correlation-request-id": [ - "443ebd87-fff4-40ca-a70c-deededb55a4c" + "f78844cc-02a7-491b-9d6e-c41b5c0eeca1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215054Z:443ebd87-fff4-40ca-a70c-deededb55a4c" + "WESTUS2:20180510T001418Z:f78844cc-02a7-491b-9d6e-c41b5c0eeca1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:50:54 GMT" + "Thu, 10 May 2018 00:14:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs2NjI3P2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTkzNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8bb9a3d9-4e9d-4a49-8e77-bb4ce57b4af5" + "ab9b11b1-a9cb-4f25-ad5a-7d76370cc9ed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6627\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627\",\r\n \"etag\": \"W/\\\"e370caa6-331b-4bb4-99b1-08b8a0a58162\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"134cff71-d91d-42fe-9297-360c0a777554\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"e370caa6-331b-4bb4-99b1-08b8a0a58162\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5935\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935\",\r\n \"etag\": \"W/\\\"b637edda-c774-4d16-9a1a-cc34a400416b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fde54d39-fad6-4dd9-8d6d-6346f973cbbb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"b637edda-c774-4d16-9a1a-cc34a400416b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1025" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -251,7 +263,7 @@ "no-cache" ], "x-ms-request-id": [ - "4b5881bd-e41e-4aa9-81a1-ce0712613dd8" + "ec30384a-58f2-466b-80da-9e233b81a47b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -260,50 +272,53 @@ "no-cache" ], "ETag": [ - "W/\"e370caa6-331b-4bb4-99b1-08b8a0a58162\"" + "W/\"b637edda-c774-4d16-9a1a-cc34a400416b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14995" ], "x-ms-correlation-request-id": [ - "9bacd2ac-2e55-442d-b3c2-0c7cae5f56c5" + "20ef218c-5c80-400e-8d3a-018be70817bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215055Z:9bacd2ac-2e55-442d-b3c2-0c7cae5f56c5" + "WESTUS2:20180510T001418Z:20ef218c-5c80-400e-8d3a-018be70817bb" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:50:54 GMT" + "Thu, 10 May 2018 00:14:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs2NjI3P2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTkzNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "219aeed4-3658-45de-b1b6-af0ce8249817" + "e40e26c7-cebd-435c-a70b-e8238abb39d5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6627\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627\",\r\n \"etag\": \"W/\\\"e370caa6-331b-4bb4-99b1-08b8a0a58162\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"134cff71-d91d-42fe-9297-360c0a777554\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"e370caa6-331b-4bb4-99b1-08b8a0a58162\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5935\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935\",\r\n \"etag\": \"W/\\\"b637edda-c774-4d16-9a1a-cc34a400416b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fde54d39-fad6-4dd9-8d6d-6346f973cbbb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"b637edda-c774-4d16-9a1a-cc34a400416b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1025" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,7 +330,7 @@ "no-cache" ], "x-ms-request-id": [ - "96cdb9ad-aae6-45ee-ab9c-5a48b7d76560" + "74b6cf8e-2153-42b1-ab90-426a78f6ce2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,56 +339,59 @@ "no-cache" ], "ETag": [ - "W/\"e370caa6-331b-4bb4-99b1-08b8a0a58162\"" + "W/\"b637edda-c774-4d16-9a1a-cc34a400416b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14994" ], "x-ms-correlation-request-id": [ - "292bdb30-3763-494a-8bf2-006b973191c3" + "27bd2945-22d4-4d57-a0e2-6adc2592dab9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215056Z:292bdb30-3763-494a-8bf2-006b973191c3" + "WESTUS2:20180510T001419Z:27bd2945-22d4-4d57-a0e2-6adc2592dab9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:50:56 GMT" + "Thu, 10 May 2018 00:14:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9vbmVzZGs2NjI3P2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTkzNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "412" + "482" ], "x-ms-client-request-id": [ - "ddb370b7-779f-47b3-9d7d-902490b8678c" + "15ba069b-a498-41e7-89fb-dd46ebf5d34c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6627\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627\",\r\n \"etag\": \"W/\\\"8f1c1039-91ed-48d2-86c2-c3dd3fc3502b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"134cff71-d91d-42fe-9297-360c0a777554\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"8f1c1039-91ed-48d2-86c2-c3dd3fc3502b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5935\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935\",\r\n \"etag\": \"W/\\\"aaba6646-ecaa-4add-a046-3e92c836725b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fde54d39-fad6-4dd9-8d6d-6346f973cbbb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"aaba6646-ecaa-4add-a046-3e92c836725b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1023" + "1103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -388,10 +406,10 @@ "3" ], "x-ms-request-id": [ - "238b2996-f9b6-407c-9643-934fc0c7d5cb" + "d944c6de-6787-4a73-aac7-b92f3cebec41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/238b2996-f9b6-407c-9643-934fc0c7d5cb?api-version=2017-08-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/d944c6de-6787-4a73-aac7-b92f3cebec41?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -407,28 +425,31 @@ "1199" ], "x-ms-correlation-request-id": [ - "8de3bfe3-c09f-4393-9aa8-3819d9842137" + "b719a928-52cc-4ebd-a173-b4e462121d67" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215054Z:8de3bfe3-c09f-4393-9aa8-3819d9842137" + "WESTUS2:20180510T001358Z:b719a928-52cc-4ebd-a173-b4e462121d67" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:50:54 GMT" + "Thu, 10 May 2018 00:13:58 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/238b2996-f9b6-407c-9643-934fc0c7d5cb?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjM4YjI5OTYtZjliNi00MDdjLTk2NDMtOTM0ZmMwYzdkNWNiP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/d944c6de-6787-4a73-aac7-b92f3cebec41?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDk0NGM2ZGUtNjc4Ny00YTczLWFhYzctYjkyZjNjZWJlYzQxP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -449,7 +470,7 @@ "10" ], "x-ms-request-id": [ - "7a9cdebf-725a-478f-9a12-c56bd1663ae6" + "0a0f9bca-769a-48d0-81d6-f782cf284dc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,86 +486,31 @@ "14998" ], "x-ms-correlation-request-id": [ - "18d15775-1ab0-4741-8bea-6c642a96055c" + "18cda937-9e9b-4cfa-833b-2ef223dd12aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215054Z:18d15775-1ab0-4741-8bea-6c642a96055c" + "WESTUS2:20180510T001408Z:18cda937-9e9b-4cfa-833b-2ef223dd12aa" ], - "Date": [ - "Tue, 29 Aug 2017 21:50:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/238b2996-f9b6-407c-9643-934fc0c7d5cb?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjM4YjI5OTYtZjliNi00MDdjLTk2NDMtOTM0ZmMwYzdkNWNiP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74fd6e93-eb6d-44ff-86d8-08cc5ed5e2f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "29639874-3927-4e7e-bf42-18a7ff5a091b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215054Z:29639874-3927-4e7e-bf42-18a7ff5a091b" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:50:54 GMT" + "Thu, 10 May 2018 00:14:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/238b2996-f9b6-407c-9643-934fc0c7d5cb?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjM4YjI5OTYtZjliNi00MDdjLTk2NDMtOTM0ZmMwYzdkNWNiP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/d944c6de-6787-4a73-aac7-b92f3cebec41?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDk0NGM2ZGUtNjc4Ny00YTczLWFhYzctYjkyZjNjZWJlYzQxP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -562,7 +528,7 @@ "no-cache" ], "x-ms-request-id": [ - "45874eda-0d79-4e5f-963b-724c9d6cc93d" + "5a2efdae-b94d-497b-b844-78032bf3555d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -575,43 +541,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14997" ], "x-ms-correlation-request-id": [ - "361a3050-650f-4432-98dc-a074e14c818f" + "1340c65f-77ec-41ec-8e96-ab7afd7f6850" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215054Z:361a3050-650f-4432-98dc-a074e14c818f" + "WESTUS2:20180510T001418Z:1340c65f-77ec-41ec-8e96-ab7afd7f6850" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:50:54 GMT" + "Thu, 10 May 2018 00:14:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazQxNjQ/YXBpLXZlcnNpb249MjAxNy0wOC0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3634d635-630f-49b0-943c-c303806633b0" + "819ef964-9e68-4872-a2fb-e9fb97b013e0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/onesdk4164' under resource group 'onesdk3166' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps315' under resource group 'ps7893' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "160" + "151" ], "Content-Type": [ "application/json; charset=utf-8" @@ -626,43 +595,46 @@ "gateway" ], "x-ms-request-id": [ - "5a439a7d-e264-49d8-9dab-b5dffa373ecc" + "4bcd15d7-9579-4f32-8505-a0390865fc05" ], "x-ms-correlation-request-id": [ - "5a439a7d-e264-49d8-9dab-b5dffa373ecc" + "4bcd15d7-9579-4f32-8505-a0390865fc05" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215058Z:5a439a7d-e264-49d8-9dab-b5dffa373ecc" + "WESTUS2:20180510T001419Z:4bcd15d7-9579-4f32-8505-a0390865fc05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 21:50:58 GMT" + "Thu, 10 May 2018 00:14:18 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazQxNjQ/YXBpLXZlcnNpb249MjAxNy0wOC0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4164\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164\",\r\n \"etag\": \"W/\\\"1b243f5c-f23e-47eb-8b91-2df1b3b2b5b3\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3a64e1e3-1085-4a44-a14e-bfb26207113a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk3695\",\r\n \"fqdn\": \"onesdk3695.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps315\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315\",\r\n \"etag\": \"W/\\\"e3920c3e-97ef-4a2a-a02d-7da9fe2ad85d\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9d1b7c9a-1d6d-4082-8c24-b788bf4c4d2e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1257\",\r\n \"fqdn\": \"ps1257.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "709" + "731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -674,7 +646,7 @@ "no-cache" ], "x-ms-request-id": [ - "253fe04f-ffd4-4c5f-990d-f4f0790da7f3" + "59c4c229-4a7a-4146-93fb-0dece95093b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -683,50 +655,53 @@ "no-cache" ], "ETag": [ - "W/\"1b243f5c-f23e-47eb-8b91-2df1b3b2b5b3\"" + "W/\"e3920c3e-97ef-4a2a-a02d-7da9fe2ad85d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14991" ], "x-ms-correlation-request-id": [ - "967a06a3-b918-4d62-98f4-7bbe7e1ce36c" + "e3d5f2f9-655f-40e6-8e05-e0260482552b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215100Z:967a06a3-b918-4d62-98f4-7bbe7e1ce36c" + "WESTUS2:20180510T001431Z:e3d5f2f9-655f-40e6-8e05-e0260482552b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:00 GMT" + "Thu, 10 May 2018 00:14:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazQxNjQ/YXBpLXZlcnNpb249MjAxNy0wOC0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba448301-4ed7-479d-a8a4-65b400e37b31" + "1c2033ca-939b-43e9-9a1d-7936fe2c1365" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4164\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164\",\r\n \"etag\": \"W/\\\"1b243f5c-f23e-47eb-8b91-2df1b3b2b5b3\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3a64e1e3-1085-4a44-a14e-bfb26207113a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk3695\",\r\n \"fqdn\": \"onesdk3695.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps315\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315\",\r\n \"etag\": \"W/\\\"e3920c3e-97ef-4a2a-a02d-7da9fe2ad85d\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9d1b7c9a-1d6d-4082-8c24-b788bf4c4d2e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1257\",\r\n \"fqdn\": \"ps1257.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "709" + "731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -738,7 +713,7 @@ "no-cache" ], "x-ms-request-id": [ - "a7773d48-4156-426e-ba88-82778c985753" + "0206a581-363f-4e27-a14b-fc057dccf7c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -747,56 +722,59 @@ "no-cache" ], "ETag": [ - "W/\"1b243f5c-f23e-47eb-8b91-2df1b3b2b5b3\"" + "W/\"e3920c3e-97ef-4a2a-a02d-7da9fe2ad85d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14990" ], "x-ms-correlation-request-id": [ - "c809f9a9-24f4-4518-bbdf-e5fd77b42f3c" + "27f64ab1-2654-4133-85e8-d2785fa922d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215100Z:c809f9a9-24f4-4518-bbdf-e5fd77b42f3c" + "WESTUS2:20180510T001431Z:27f64ab1-2654-4133-85e8-d2785fa922d1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:00 GMT" + "Thu, 10 May 2018 00:14:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazQxNjQ/YXBpLXZlcnNpb249MjAxNy0wOC0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMzMTU/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk3695\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1257\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "166" + "197" ], "x-ms-client-request-id": [ - "11d6fd9d-13ba-44d4-bea9-7ad94a81e863" + "56b844cf-d361-478e-938e-e791f23e8110" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4164\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164\",\r\n \"etag\": \"W/\\\"365a7181-4340-44e5-b1ff-6d466b48fa5e\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3a64e1e3-1085-4a44-a14e-bfb26207113a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk3695\",\r\n \"fqdn\": \"onesdk3695.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps315\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315\",\r\n \"etag\": \"W/\\\"b7582a51-bfa3-48d9-9872-39daa970f848\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9d1b7c9a-1d6d-4082-8c24-b788bf4c4d2e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1257\",\r\n \"fqdn\": \"ps1257.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "708" + "730" ], "Content-Type": [ "application/json; charset=utf-8" @@ -811,10 +789,10 @@ "3" ], "x-ms-request-id": [ - "4499aab6-1f3a-45fb-a5c8-b4956503181a" + "a6042590-f2f2-47c9-9270-c14bbc855807" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/4499aab6-1f3a-45fb-a5c8-b4956503181a?api-version=2017-08-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/a6042590-f2f2-47c9-9270-c14bbc855807?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -830,28 +808,31 @@ "1198" ], "x-ms-correlation-request-id": [ - "3b80677a-f5a3-40ee-b0c0-5ef2d7ffd279" + "04ac69de-8fc5-4fb0-9270-fd27f7f2a55e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215100Z:3b80677a-f5a3-40ee-b0c0-5ef2d7ffd279" + "WESTUS2:20180510T001421Z:04ac69de-8fc5-4fb0-9270-fd27f7f2a55e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:50:59 GMT" + "Thu, 10 May 2018 00:14:20 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/4499aab6-1f3a-45fb-a5c8-b4956503181a?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ5OWFhYjYtMWYzYS00NWZiLWE1YzgtYjQ5NTY1MDMxODFhP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/a6042590-f2f2-47c9-9270-c14bbc855807?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTYwNDI1OTAtZjJmMi00N2M5LTkyNzAtYzE0YmJjODU1ODA3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -869,7 +850,7 @@ "no-cache" ], "x-ms-request-id": [ - "282b5952-4bfa-44d9-a5f7-90527f09ca5e" + "cb39ff89-acfd-4624-9da0-907250329c60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -882,43 +863,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14992" ], "x-ms-correlation-request-id": [ - "c5472b87-aba6-4ced-a844-b00158233000" + "715c7a2a-5e7c-434e-be0a-5e93d9264538" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215100Z:c5472b87-aba6-4ced-a844-b00158233000" + "WESTUS2:20180510T001431Z:715c7a2a-5e7c-434e-be0a-5e93d9264538" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:00 GMT" + "Thu, 10 May 2018 00:14:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrOTYzNT9hcGktdmVyc2lvbj0yMDE3LTA4LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczU5OTk/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2adaea3-33dc-4990-baec-52a56ac2fed7" + "b8e138da-d778-4e93-a7a1-22097313611f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/onesdk9635' under resource group 'onesdk3166' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/ps5999' under resource group 'ps7893' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -933,43 +917,46 @@ "gateway" ], "x-ms-request-id": [ - "34e21c93-8311-48ff-a05f-31d38f6abb58" + "e81bbf08-8a7e-4e35-9db4-ad24b06a7eeb" ], "x-ms-correlation-request-id": [ - "34e21c93-8311-48ff-a05f-31d38f6abb58" + "e81bbf08-8a7e-4e35-9db4-ad24b06a7eeb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215102Z:34e21c93-8311-48ff-a05f-31d38f6abb58" + "WESTUS2:20180510T001431Z:e81bbf08-8a7e-4e35-9db4-ad24b06a7eeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 21:51:02 GMT" + "Thu, 10 May 2018 00:14:30 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrOTYzNT9hcGktdmVyc2lvbj0yMDE3LTA4LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczU5OTk/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9635\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635\",\r\n \"etag\": \"W/\\\"24dee214-bfa5-4623-8e40-d3ab2a5ac77c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0e0583d2-6a0a-4c13-bf17-a5632a96bc9d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk3674\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635/ipConfigurations/onesdk3674\",\r\n \"etag\": \"W/\\\"24dee214-bfa5-4623-8e40-d3ab2a5ac77c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5999\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999\",\r\n \"etag\": \"W/\\\"b79dfbf9-2ad9-4c44-b934-485fe3b6cd72\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0d05359-abeb-43c7-a2fb-014e87c9f8be\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps3306\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999/ipConfigurations/ps3306\",\r\n \"etag\": \"W/\\\"b79dfbf9-2ad9-4c44-b934-485fe3b6cd72\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1639" + "1594" ], "Content-Type": [ "application/json; charset=utf-8" @@ -981,11 +968,14 @@ "no-cache" ], "x-ms-request-id": [ - "615cd7f2-7cf2-407e-9682-7c67859a1484" + "dd304ad7-72bc-4c8d-b3b3-ce68fcebcae5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14869" + ], "Cache-Control": [ "no-cache" ], @@ -993,44 +983,44 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6442" - ], "x-ms-correlation-request-id": [ - "713aa7b2-0c44-452b-86f8-adaaf2691d40" + "501c736f-ecb7-482d-a3c9-7d4cf2a1f40a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221517Z:713aa7b2-0c44-452b-86f8-adaaf2691d40" + "WESTUS2:20180510T003430Z:501c736f-ecb7-482d-a3c9-7d4cf2a1f40a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:15:16 GMT" + "Thu, 10 May 2018 00:34:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrOTYzNT9hcGktdmVyc2lvbj0yMDE3LTA4LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczU5OTk/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1204ce0-5af1-4f59-8075-626b9b91c3ae" + "87997c8a-244d-4a7d-aa96-3222de46bb52" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9635\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635\",\r\n \"etag\": \"W/\\\"24dee214-bfa5-4623-8e40-d3ab2a5ac77c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0e0583d2-6a0a-4c13-bf17-a5632a96bc9d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk3674\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635/ipConfigurations/onesdk3674\",\r\n \"etag\": \"W/\\\"24dee214-bfa5-4623-8e40-d3ab2a5ac77c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5999\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999\",\r\n \"etag\": \"W/\\\"b79dfbf9-2ad9-4c44-b934-485fe3b6cd72\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0d05359-abeb-43c7-a2fb-014e87c9f8be\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps3306\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999/ipConfigurations/ps3306\",\r\n \"etag\": \"W/\\\"b79dfbf9-2ad9-4c44-b934-485fe3b6cd72\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1639" + "1594" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1042,7 +1032,7 @@ "no-cache" ], "x-ms-request-id": [ - "dba66bfb-a909-475c-ade4-cbc7f3559f88" + "3353d47f-2060-4666-9bd3-c5ff32a65c3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,43 +1045,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "6441" + "14868" ], "x-ms-correlation-request-id": [ - "4e121487-1c80-4722-b23e-71fffe5caaa3" + "6c27d2cc-78f3-4e97-b7c3-b4f99f901b23" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221517Z:4e121487-1c80-4722-b23e-71fffe5caaa3" + "WESTUS2:20180510T003430Z:6c27d2cc-78f3-4e97-b7c3-b4f99f901b23" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:15:16 GMT" + "Thu, 10 May 2018 00:34:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrOTYzNT9hcGktdmVyc2lvbj0yMDE3LTA4LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczU5OTk/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e271561-66d5-466c-bfc5-f753966917db" + "80456d93-12a4-4866-a8db-80c0e17f148c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9635\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635\",\r\n \"etag\": \"W/\\\"24dee214-bfa5-4623-8e40-d3ab2a5ac77c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0e0583d2-6a0a-4c13-bf17-a5632a96bc9d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk3674\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635/ipConfigurations/onesdk3674\",\r\n \"etag\": \"W/\\\"24dee214-bfa5-4623-8e40-d3ab2a5ac77c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5999\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999\",\r\n \"etag\": \"W/\\\"b79dfbf9-2ad9-4c44-b934-485fe3b6cd72\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0d05359-abeb-43c7-a2fb-014e87c9f8be\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps3306\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999/ipConfigurations/ps3306\",\r\n \"etag\": \"W/\\\"b79dfbf9-2ad9-4c44-b934-485fe3b6cd72\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1639" + "1594" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1103,7 +1096,7 @@ "no-cache" ], "x-ms-request-id": [ - "e1e01980-d7a8-4411-9d7a-1fbdde3c7475" + "73164aa4-7676-4522-a352-d2a4127889ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1116,43 +1109,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "6440" + "14867" ], "x-ms-correlation-request-id": [ - "25b25501-fc40-46e6-82e8-1b04f4867262" + "a66308dd-eae9-4b8b-b6a5-6918211f08c9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221518Z:25b25501-fc40-46e6-82e8-1b04f4867262" + "WESTUS2:20180510T003430Z:a66308dd-eae9-4b8b-b6a5-6918211f08c9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:15:17 GMT" + "Thu, 10 May 2018 00:34:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrOTYzNT9hcGktdmVyc2lvbj0yMDE3LTA4LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczU5OTk/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f29fd934-46c8-444a-94a5-dcbf62b08d49" + "31e7d0dd-a498-4593-b94e-2088adabce42" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9635\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635\",\r\n \"etag\": \"W/\\\"24dee214-bfa5-4623-8e40-d3ab2a5ac77c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0e0583d2-6a0a-4c13-bf17-a5632a96bc9d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk3674\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635/ipConfigurations/onesdk3674\",\r\n \"etag\": \"W/\\\"24dee214-bfa5-4623-8e40-d3ab2a5ac77c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5999\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999\",\r\n \"etag\": \"W/\\\"b79dfbf9-2ad9-4c44-b934-485fe3b6cd72\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0d05359-abeb-43c7-a2fb-014e87c9f8be\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps3306\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999/ipConfigurations/ps3306\",\r\n \"etag\": \"W/\\\"b79dfbf9-2ad9-4c44-b934-485fe3b6cd72\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1639" + "1594" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1164,7 +1160,7 @@ "no-cache" ], "x-ms-request-id": [ - "c240b196-863d-4e31-a0e3-b25a2b4b0e51" + "3ed75f67-8ad7-465e-8c8e-43bc0a5cf3eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1177,37 +1173,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "6439" + "14866" ], "x-ms-correlation-request-id": [ - "36cf2557-2f86-42d4-8d5c-56cf1525e0b0" + "602baffb-4cad-473d-9309-573349c7152c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221520Z:36cf2557-2f86-42d4-8d5c-56cf1525e0b0" + "WESTUS2:20180510T003430Z:602baffb-4cad-473d-9309-573349c7152c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:15:19 GMT" + "Thu, 10 May 2018 00:34:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrOTYzNT9hcGktdmVyc2lvbj0yMDE3LTA4LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczU5OTk/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9635\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635\",\r\n \"etag\": \"W/\\\"04bc1d8f-758a-4029-8448-c94772cf52aa\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0e0583d2-6a0a-4c13-bf17-a5632a96bc9d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk3674\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635/ipConfigurations/onesdk3674\",\r\n \"etag\": \"W/\\\"04bc1d8f-758a-4029-8448-c94772cf52aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5999\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999\",\r\n \"etag\": \"W/\\\"6620c097-8434-4db1-b38b-9f969ce7b3fe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0d05359-abeb-43c7-a2fb-014e87c9f8be\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps3306\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999/ipConfigurations/ps3306\",\r\n \"etag\": \"W/\\\"6620c097-8434-4db1-b38b-9f969ce7b3fe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2226" + "2260" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1219,7 +1218,7 @@ "no-cache" ], "x-ms-request-id": [ - "b790c621-0787-41a6-a337-628d272f5a4a" + "cfd632b3-7d58-489c-9a4f-dde17bf2ba92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1232,43 +1231,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4879" + "14858" ], "x-ms-correlation-request-id": [ - "6ae5d605-bffa-4599-a532-239825ef833d" + "732d3f81-defb-4f19-a465-f5aec80da657" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221948Z:6ae5d605-bffa-4599-a532-239825ef833d" + "WESTUS2:20180510T003542Z:732d3f81-defb-4f19-a465-f5aec80da657" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:47 GMT" + "Thu, 10 May 2018 00:35:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrOTYzNT9hcGktdmVyc2lvbj0yMDE3LTA4LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczU5OTk/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c89c131-af67-4753-a74b-0124067cb676" + "9e2f461d-a463-423d-afa2-64b1be777b81" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9635\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635\",\r\n \"etag\": \"W/\\\"04bc1d8f-758a-4029-8448-c94772cf52aa\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0e0583d2-6a0a-4c13-bf17-a5632a96bc9d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk3674\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635/ipConfigurations/onesdk3674\",\r\n \"etag\": \"W/\\\"04bc1d8f-758a-4029-8448-c94772cf52aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5999\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999\",\r\n \"etag\": \"W/\\\"6620c097-8434-4db1-b38b-9f969ce7b3fe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0d05359-abeb-43c7-a2fb-014e87c9f8be\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps3306\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999/ipConfigurations/ps3306\",\r\n \"etag\": \"W/\\\"6620c097-8434-4db1-b38b-9f969ce7b3fe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2226" + "2260" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1280,7 +1282,7 @@ "no-cache" ], "x-ms-request-id": [ - "673b5a68-b179-4f94-8e52-e79d297f07e1" + "cd66e81d-ee4a-40b1-868c-6585ccc1ae8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1293,43 +1295,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4878" + "14857" ], "x-ms-correlation-request-id": [ - "4e17a005-2803-462f-999a-7004fb729087" + "dcd8a4a6-2a28-4c2f-91f4-ffa4bdf4b080" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221948Z:4e17a005-2803-462f-999a-7004fb729087" + "WESTUS2:20180510T003542Z:dcd8a4a6-2a28-4c2f-91f4-ffa4bdf4b080" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:48 GMT" + "Thu, 10 May 2018 00:35:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrOTYzNT9hcGktdmVyc2lvbj0yMDE3LTA4LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczU5OTk/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bde071fe-976b-49eb-927a-e363b8d2079c" + "dc1ec2ce-5524-4bb7-a24f-588b3d035d51" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9635\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635\",\r\n \"etag\": \"W/\\\"04bc1d8f-758a-4029-8448-c94772cf52aa\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0e0583d2-6a0a-4c13-bf17-a5632a96bc9d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk3674\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635/ipConfigurations/onesdk3674\",\r\n \"etag\": \"W/\\\"04bc1d8f-758a-4029-8448-c94772cf52aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5999\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999\",\r\n \"etag\": \"W/\\\"6620c097-8434-4db1-b38b-9f969ce7b3fe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0d05359-abeb-43c7-a2fb-014e87c9f8be\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps3306\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999/ipConfigurations/ps3306\",\r\n \"etag\": \"W/\\\"6620c097-8434-4db1-b38b-9f969ce7b3fe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2226" + "2260" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1341,7 +1346,7 @@ "no-cache" ], "x-ms-request-id": [ - "3e7bc589-0390-408b-9654-cb0e7a5bde47" + "f8bd132c-4fca-417a-8346-e0ffe65d0afd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1354,49 +1359,52 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4877" + "14856" ], "x-ms-correlation-request-id": [ - "29ba9b6d-c416-44a6-8387-d0318ddea7c1" + "cb2b3e42-b7b1-4fe5-9887-30b985455b2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221950Z:29ba9b6d-c416-44a6-8387-d0318ddea7c1" + "WESTUS2:20180510T003543Z:cb2b3e42-b7b1-4fe5-9887-30b985455b2d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:49 GMT" + "Thu, 10 May 2018 00:35:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrOTYzNT9hcGktdmVyc2lvbj0yMDE3LTA4LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczU5OTk/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164\"\r\n }\r\n },\r\n \"name\": \"onesdk3674\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfiguration/onesdk3674\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315\"\r\n }\r\n },\r\n \"name\": \"ps3306\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfiguration/ps3306\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1077" + "1052" ], "x-ms-client-request-id": [ - "59f415c4-5901-41c4-a417-9b4081e64035" + "da594a9a-2497-4e91-99f4-9078d407f039" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9635\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635\",\r\n \"etag\": \"W/\\\"a790805d-ee68-4b39-99f4-dec7cd65ff44\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0e0583d2-6a0a-4c13-bf17-a5632a96bc9d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk3674\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635/ipConfigurations/onesdk3674\",\r\n \"etag\": \"W/\\\"a790805d-ee68-4b39-99f4-dec7cd65ff44\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5999\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999\",\r\n \"etag\": \"W/\\\"3313406d-5523-4449-bd31-cdc5ed17a4e6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a0d05359-abeb-43c7-a2fb-014e87c9f8be\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps3306\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999/ipConfigurations/ps3306\",\r\n \"etag\": \"W/\\\"3313406d-5523-4449-bd31-cdc5ed17a4e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1677" + "1711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1411,10 +1419,10 @@ "10" ], "x-ms-request-id": [ - "9e982f7b-9617-4e12-b3e8-9840334ae48f" + "75e8e200-45e1-4ec3-a71d-6a0206797995" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1430,46 +1438,49 @@ "1197" ], "x-ms-correlation-request-id": [ - "d51e2a2c-0ecb-48b8-8b64-8128bb567d14" + "20baebdf-64f0-4c82-aa52-1c71dd0f6db6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215103Z:d51e2a2c-0ecb-48b8-8b64-8128bb567d14" + "WESTUS2:20180510T001432Z:20baebdf-64f0-4c82-aa52-1c71dd0f6db6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:03 GMT" + "Thu, 10 May 2018 00:14:31 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrOTYzNT9hcGktdmVyc2lvbj0yMDE3LTA4LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczU5OTk/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164\"\r\n }\r\n },\r\n \"name\": \"onesdk3674\",\r\n \"etag\": \"W/\\\"24dee214-bfa5-4623-8e40-d3ab2a5ac77c\\\"\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635/ipConfigurations/onesdk3674\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"0e0583d2-6a0a-4c13-bf17-a5632a96bc9d\"\r\n },\r\n \"etag\": \"W/\\\"24dee214-bfa5-4623-8e40-d3ab2a5ac77c\\\"\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315\"\r\n }\r\n },\r\n \"name\": \"ps3306\",\r\n \"etag\": \"W/\\\"b79dfbf9-2ad9-4c44-b934-485fe3b6cd72\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999/ipConfigurations/ps3306\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientProtocols\": [],\r\n \"vpnClientIpsecPolicies\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"a0d05359-abeb-43c7-a2fb-014e87c9f8be\"\r\n },\r\n \"etag\": \"W/\\\"b79dfbf9-2ad9-4c44-b934-485fe3b6cd72\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1817" + "1846" ], "x-ms-client-request-id": [ - "7695064e-b43c-4a93-baa6-959ed9395f69" + "921e065e-c285-476f-a02e-4cabf9bf3f1d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9635\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635\",\r\n \"etag\": \"W/\\\"ba98b58e-20dc-43fd-a4c9-b0dee2e9b74b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0e0583d2-6a0a-4c13-bf17-a5632a96bc9d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk3674\",\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworkGateways/onesdk9635/ipConfigurations/onesdk3674\",\r\n \"etag\": \"W/\\\"ba98b58e-20dc-43fd-a4c9-b0dee2e9b74b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/publicIPAddresses/onesdk4164\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualNetworks/onesdk6627/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5999\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999\",\r\n \"etag\": \"W/\\\"9339348d-2df0-4a4b-a273-c71b4a091366\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a0d05359-abeb-43c7-a2fb-014e87c9f8be\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps3306\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworkGateways/ps5999/ipConfigurations/ps3306\",\r\n \"etag\": \"W/\\\"9339348d-2df0-4a4b-a273-c71b4a091366\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/publicIPAddresses/ps315\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualNetworks/ps5935/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\": \"TestRadiusServer\",\r\n \"radiusServerSecret\": \"TestRadiusServerPassword\",\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2012" + "2046" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1484,10 +1495,10 @@ "10" ], "x-ms-request-id": [ - "d9341925-2f16-47af-be0f-3aec5e367d9b" + "440997e3-de25-473b-a38d-b25b40bab62d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/440997e3-de25-473b-a38d-b25b40bab62d?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1503,28 +1514,31 @@ "1196" ], "x-ms-correlation-request-id": [ - "da79d7c3-21a9-461e-9950-f3dcab0576df" + "78d2c126-e7ac-461e-abbe-98671b68ba0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221520Z:da79d7c3-21a9-461e-9950-f3dcab0576df" + "WESTUS2:20180510T003431Z:78d2c126-e7ac-461e-abbe-98671b68ba0c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:15:19 GMT" + "Thu, 10 May 2018 00:34:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1545,7 +1559,7 @@ "10" ], "x-ms-request-id": [ - "a0f5c5dd-6266-4399-a5b3-1d5ccd8a2a1a" + "f9b9f90d-b2ff-4aa7-bb0e-5049eee2b75d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1558,31 +1572,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14988" ], "x-ms-correlation-request-id": [ - "69299b2a-5b77-4f0b-bbd8-cda4d2a31a56" + "1d2d15f6-8544-4cfd-ab6d-9e70c8eda7bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215104Z:69299b2a-5b77-4f0b-bbd8-cda4d2a31a56" + "WESTUS2:20180510T001442Z:1d2d15f6-8544-4cfd-ab6d-9e70c8eda7bc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:03 GMT" + "Thu, 10 May 2018 00:14:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1603,68 +1620,13 @@ "10" ], "x-ms-request-id": [ - "c7b47e32-4695-4b79-801c-4fd2b1a68f7c" + "951e550a-cd8f-4667-ae81-702aa030cf3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-correlation-request-id": [ - "d366e62a-854a-4718-b8bd-704971f51781" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215104Z:d366e62a-854a-4718-b8bd-704971f51781" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90043d4c-0f5e-412c-a928-1fe235f9d624" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "14987" ], "Cache-Control": [ "no-cache" @@ -1673,32 +1635,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], "x-ms-correlation-request-id": [ - "c609974e-5957-4f30-ba37-cdfb0f975a7a" + "3b83f998-d23b-4bd4-afa9-a758fe445d51" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215104Z:c609974e-5957-4f30-ba37-cdfb0f975a7a" + "WESTUS2:20180510T001452Z:3b83f998-d23b-4bd4-afa9-a758fe445d51" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:04 GMT" + "Thu, 10 May 2018 00:14:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1719,7 +1681,7 @@ "10" ], "x-ms-request-id": [ - "47af4d0c-e827-4eff-a5fe-e1ed543c9f60" + "cb214f58-dc86-46ef-b2b5-e1862378d56f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1732,31 +1694,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14986" ], "x-ms-correlation-request-id": [ - "2b9841e9-a4b7-4074-bd89-e3a420067884" + "fa040168-0278-4941-9eb9-e7afc64bd324" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215104Z:2b9841e9-a4b7-4074-bd89-e3a420067884" + "WESTUS2:20180510T001502Z:fa040168-0278-4941-9eb9-e7afc64bd324" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:04 GMT" + "Thu, 10 May 2018 00:15:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1777,7 +1742,7 @@ "10" ], "x-ms-request-id": [ - "e1851c5d-9f47-45a0-bdb8-bc6e9c245533" + "ca2e8c22-cbd6-47e8-b4df-54e92a6e7241" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1790,31 +1755,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14985" ], "x-ms-correlation-request-id": [ - "72aa552d-f94b-474b-93a7-ecb2b7b9903d" + "a14acbc9-5003-42bf-97c4-8f67dfff61a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215104Z:72aa552d-f94b-474b-93a7-ecb2b7b9903d" + "WESTUS2:20180510T001512Z:a14acbc9-5003-42bf-97c4-8f67dfff61a7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:04 GMT" + "Thu, 10 May 2018 00:15:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1835,7 +1803,7 @@ "10" ], "x-ms-request-id": [ - "f411cd9d-3a81-48d7-8169-161d64a8cc18" + "06e63425-3f75-4a2f-81a5-f4ff2c591c40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1848,31 +1816,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14984" ], "x-ms-correlation-request-id": [ - "fdd87f8b-e384-4055-abb8-196003f86b7a" + "41bffcd0-3c7d-47c2-9151-7b8f56f77fa9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215105Z:fdd87f8b-e384-4055-abb8-196003f86b7a" + "WESTUS2:20180510T001522Z:41bffcd0-3c7d-47c2-9151-7b8f56f77fa9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:04 GMT" + "Thu, 10 May 2018 00:15:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1893,7 +1864,7 @@ "10" ], "x-ms-request-id": [ - "7a37de5d-aec5-4394-8177-8c42abe858cf" + "22c3e90c-6ae2-483b-a8b5-960d8a047ee7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1906,31 +1877,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14983" ], "x-ms-correlation-request-id": [ - "394dcad5-c99a-47f7-bf64-5bae45d4a583" + "9661e956-644a-4a82-9f94-0045c6eafb15" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215105Z:394dcad5-c99a-47f7-bf64-5bae45d4a583" + "WESTUS2:20180510T001532Z:9661e956-644a-4a82-9f94-0045c6eafb15" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:05 GMT" + "Thu, 10 May 2018 00:15:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1951,68 +1925,13 @@ "10" ], "x-ms-request-id": [ - "454580ce-5d5b-4e0c-b7ce-1a8adf4f9e80" + "97004bb8-9d74-4d07-a3f8-1a6b64d3e015" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" - ], - "x-ms-correlation-request-id": [ - "eb58401b-52f7-4c04-8d9f-fed6c93b7cf8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215105Z:eb58401b-52f7-4c04-8d9f-fed6c93b7cf8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71fa20f6-6683-472e-80a0-5c05b39d329a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "14982" ], "Cache-Control": [ "no-cache" @@ -2021,32 +1940,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" - ], "x-ms-correlation-request-id": [ - "337da20e-efbe-4926-8507-44c818eaa815" + "3d4f0cba-c608-4992-ab81-2f5ead1a933c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215105Z:337da20e-efbe-4926-8507-44c818eaa815" + "WESTUS2:20180510T001542Z:3d4f0cba-c608-4992-ab81-2f5ead1a933c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:05 GMT" + "Thu, 10 May 2018 00:15:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2067,7 +1986,7 @@ "10" ], "x-ms-request-id": [ - "b3f3aedf-2b89-45d1-8704-f3860118166c" + "20554ceb-2d3d-418c-bd07-3c3c963f4415" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2080,31 +1999,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14981" ], "x-ms-correlation-request-id": [ - "6a8efc06-8e10-44e9-86d1-908560f4e671" + "6d5ea19b-b9df-4fa7-a5b5-5ca8b3c3cade" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215105Z:6a8efc06-8e10-44e9-86d1-908560f4e671" + "WESTUS2:20180510T001552Z:6d5ea19b-b9df-4fa7-a5b5-5ca8b3c3cade" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:05 GMT" + "Thu, 10 May 2018 00:15:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2125,7 +2047,7 @@ "10" ], "x-ms-request-id": [ - "a10a39e9-a06e-40d7-9bda-a13232ccfba5" + "6563eed7-d608-4952-938f-e26ff60cbff0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2138,31 +2060,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14980" ], "x-ms-correlation-request-id": [ - "531938de-aada-4164-9162-766d2774e69f" + "a0899f24-7fe2-4aa5-b726-16575044387f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215106Z:531938de-aada-4164-9162-766d2774e69f" + "WESTUS2:20180510T001602Z:a0899f24-7fe2-4aa5-b726-16575044387f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:05 GMT" + "Thu, 10 May 2018 00:16:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2183,7 +2108,7 @@ "10" ], "x-ms-request-id": [ - "bc57ed5f-8e1e-43d4-b1cb-fd5f4aa7351d" + "cf001c93-8b86-4151-b4b3-f48c5cfa846d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2196,31 +2121,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14979" ], "x-ms-correlation-request-id": [ - "2f27e4d4-64de-4916-b541-88c24ad35ceb" + "f7482ee3-9f69-494a-a094-85a2d30bfc9b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215106Z:2f27e4d4-64de-4916-b541-88c24ad35ceb" + "WESTUS2:20180510T001612Z:f7482ee3-9f69-494a-a094-85a2d30bfc9b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:06 GMT" + "Thu, 10 May 2018 00:16:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2241,7 +2169,7 @@ "10" ], "x-ms-request-id": [ - "bf1684d8-be62-4380-ba3d-c7430d6925c4" + "c91288ca-cfc4-43f4-ad58-d3b4a92b1328" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2254,31 +2182,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14978" ], "x-ms-correlation-request-id": [ - "9ed8b461-023f-4005-96b1-b063a9245ec4" + "b1019837-2e19-4f1c-9167-22e25e8ee6c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215106Z:9ed8b461-023f-4005-96b1-b063a9245ec4" + "WESTUS2:20180510T001622Z:b1019837-2e19-4f1c-9167-22e25e8ee6c3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:06 GMT" + "Thu, 10 May 2018 00:16:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2299,11 +2230,14 @@ "10" ], "x-ms-request-id": [ - "eb20287a-278e-4712-abc9-294ac9bd9d08" + "95bfdf55-68e6-4db9-b224-328f99e96352" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], "Cache-Control": [ "no-cache" ], @@ -2311,32 +2245,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" - ], "x-ms-correlation-request-id": [ - "1b5dffcb-46da-44e5-97ce-3aab4272c0f5" + "eef40cdd-2919-445b-a5d2-aa67eb5e319e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215106Z:1b5dffcb-46da-44e5-97ce-3aab4272c0f5" + "WESTUS2:20180510T001632Z:eef40cdd-2919-445b-a5d2-aa67eb5e319e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:06 GMT" + "Thu, 10 May 2018 00:16:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2357,7 +2291,7 @@ "10" ], "x-ms-request-id": [ - "ebcfb1b2-f743-432d-8416-2d85dadde23a" + "0ae0094d-aee0-4aa9-b8b3-c4678c08315e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2370,31 +2304,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14976" ], "x-ms-correlation-request-id": [ - "0baf107a-e1d6-4925-aa6e-27c5e0b5e921" + "ae235cca-aaac-4be5-9af8-65d778ebb8f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215106Z:0baf107a-e1d6-4925-aa6e-27c5e0b5e921" + "WESTUS2:20180510T001643Z:ae235cca-aaac-4be5-9af8-65d778ebb8f2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:06 GMT" + "Thu, 10 May 2018 00:16:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2415,7 +2352,7 @@ "10" ], "x-ms-request-id": [ - "28a4d43b-38d4-473f-a980-8f2e81a9ad3e" + "e3db6280-f8d3-41c5-9742-f68ae608b71e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2428,31 +2365,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14975" ], "x-ms-correlation-request-id": [ - "57b14147-973d-4428-86c1-3c1476938a08" + "c5ebf414-431e-437a-acf9-165285ac8337" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215106Z:57b14147-973d-4428-86c1-3c1476938a08" + "WESTUS2:20180510T001653Z:c5ebf414-431e-437a-acf9-165285ac8337" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:06 GMT" + "Thu, 10 May 2018 00:16:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2473,7 +2413,7 @@ "10" ], "x-ms-request-id": [ - "3dcc9800-8d8a-4570-b5a8-e468f6beb260" + "75caedf3-6968-4e1e-8137-d50bc563d098" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2486,31 +2426,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14974" ], "x-ms-correlation-request-id": [ - "ebaae3b9-2f58-4f2e-a5bd-78e18aee1aab" + "ecd465a5-a212-43dd-ae1b-784bfc2d4a16" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215107Z:ebaae3b9-2f58-4f2e-a5bd-78e18aee1aab" + "WESTUS2:20180510T001703Z:ecd465a5-a212-43dd-ae1b-784bfc2d4a16" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:06 GMT" + "Thu, 10 May 2018 00:17:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2531,7 +2474,7 @@ "10" ], "x-ms-request-id": [ - "cfd8c0a0-0fd9-4efb-a602-64c99e5c5543" + "2af566dd-3b71-4fe4-a325-a3d020a790d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2544,31 +2487,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14973" ], "x-ms-correlation-request-id": [ - "a2305d8e-3a0b-4cd8-b1c5-e756ffd1441a" + "e858ad95-896b-4b3f-86a4-432a7b0cc966" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215107Z:a2305d8e-3a0b-4cd8-b1c5-e756ffd1441a" + "WESTUS2:20180510T001713Z:e858ad95-896b-4b3f-86a4-432a7b0cc966" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:07 GMT" + "Thu, 10 May 2018 00:17:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2589,11 +2535,14 @@ "10" ], "x-ms-request-id": [ - "7469126a-de6c-484d-912f-c526ef42eb19" + "6a914f2c-fcdb-467c-b4b7-bd1578051ce7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], "Cache-Control": [ "no-cache" ], @@ -2601,32 +2550,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" - ], "x-ms-correlation-request-id": [ - "0c61d36f-fde9-4589-826a-7bd527b1e653" + "362730c1-9741-4b75-941a-9050f227dc47" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215107Z:0c61d36f-fde9-4589-826a-7bd527b1e653" + "WESTUS2:20180510T001723Z:362730c1-9741-4b75-941a-9050f227dc47" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:07 GMT" + "Thu, 10 May 2018 00:17:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2647,7 +2596,7 @@ "10" ], "x-ms-request-id": [ - "dcba529e-956e-4a26-a3ea-92c8871e7bc0" + "098ad634-d33d-4083-9626-410847a44a55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2660,31 +2609,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14971" ], "x-ms-correlation-request-id": [ - "b12c18a3-5fb5-4a96-9899-54bfbd0e5655" + "51ac4f59-3132-4642-8e0e-bdbff0769bdb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215107Z:b12c18a3-5fb5-4a96-9899-54bfbd0e5655" + "WESTUS2:20180510T001733Z:51ac4f59-3132-4642-8e0e-bdbff0769bdb" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:07 GMT" + "Thu, 10 May 2018 00:17:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2705,7 +2657,7 @@ "10" ], "x-ms-request-id": [ - "40a4f782-ed18-43e3-bcec-6e97193c7e16" + "2f60a62c-ad5a-451e-98cb-323c46293e44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2718,31 +2670,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14970" ], "x-ms-correlation-request-id": [ - "89105e3e-31b0-420e-8378-57d0687c117f" + "178f7a46-233c-4ce8-8379-c7963f612159" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215107Z:89105e3e-31b0-420e-8378-57d0687c117f" + "WESTUS2:20180510T001743Z:178f7a46-233c-4ce8-8379-c7963f612159" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:07 GMT" + "Thu, 10 May 2018 00:17:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2763,7 +2718,7 @@ "10" ], "x-ms-request-id": [ - "3db20668-51ba-4dcc-b012-df1135ac0477" + "86957701-db09-415a-bb50-2e8ec45a6c6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2776,31 +2731,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14969" ], "x-ms-correlation-request-id": [ - "5860466e-8670-45ee-8b6e-05f99e80a68f" + "bcc76913-18ce-4f7f-8c7d-43e26217f44a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215107Z:5860466e-8670-45ee-8b6e-05f99e80a68f" + "WESTUS2:20180510T001753Z:bcc76913-18ce-4f7f-8c7d-43e26217f44a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:07 GMT" + "Thu, 10 May 2018 00:17:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2821,7 +2779,7 @@ "10" ], "x-ms-request-id": [ - "a7a3d7d3-23ba-48cb-b409-3f5564430166" + "1e4b4117-3d39-4cad-8b40-a37dd2a719e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2834,31 +2792,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14968" ], "x-ms-correlation-request-id": [ - "88949ddb-4003-493f-9ab2-576503283110" + "c72f057f-ed43-44a9-92fe-a7bc75243741" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215108Z:88949ddb-4003-493f-9ab2-576503283110" + "WESTUS2:20180510T001803Z:c72f057f-ed43-44a9-92fe-a7bc75243741" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:07 GMT" + "Thu, 10 May 2018 00:18:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2879,68 +2840,13 @@ "10" ], "x-ms-request-id": [ - "7e2de545-9577-4349-a4ce-87b138ffd191" + "4962dc54-010f-419d-b634-c86fc99456b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-correlation-request-id": [ - "0b2684ae-da71-4561-b9ac-cb48ae9b8bd7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215108Z:0b2684ae-da71-4561-b9ac-cb48ae9b8bd7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ddf312b-ee28-418d-9c08-8e719d0d17ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "14967" ], "Cache-Control": [ "no-cache" @@ -2949,32 +2855,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" - ], "x-ms-correlation-request-id": [ - "8917c4e3-6181-4bd3-b323-cc6ce9bb2741" + "d3a070fe-d422-40fe-9c3d-7ffaa27a4587" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215108Z:8917c4e3-6181-4bd3-b323-cc6ce9bb2741" + "WESTUS2:20180510T001813Z:d3a070fe-d422-40fe-9c3d-7ffaa27a4587" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:08 GMT" + "Thu, 10 May 2018 00:18:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2995,7 +2901,7 @@ "10" ], "x-ms-request-id": [ - "4b209fd0-8d07-4dd0-827e-f30a93b9670f" + "8a3f546e-0b36-4b17-a9c9-1f9f8f35264e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3008,31 +2914,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14966" ], "x-ms-correlation-request-id": [ - "8460b2cd-a2f5-4829-aa51-adf2069aa173" + "cdb3dbf7-4f5a-48f1-b13b-eb7f0fb95005" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215108Z:8460b2cd-a2f5-4829-aa51-adf2069aa173" + "WESTUS2:20180510T001823Z:cdb3dbf7-4f5a-48f1-b13b-eb7f0fb95005" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:08 GMT" + "Thu, 10 May 2018 00:18:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3053,7 +2962,7 @@ "10" ], "x-ms-request-id": [ - "cf06cfcd-0488-42c0-ab4f-dcbe6e6bf988" + "96464906-47c9-4a8b-8a95-c85b1d358732" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3066,31 +2975,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14965" ], "x-ms-correlation-request-id": [ - "87166e13-8bac-42f0-9bc3-f655dde7cf25" + "0d4ba39e-cbea-4437-8dce-f07b7da5b96f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215109Z:87166e13-8bac-42f0-9bc3-f655dde7cf25" + "WESTUS2:20180510T001833Z:0d4ba39e-cbea-4437-8dce-f07b7da5b96f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:08 GMT" + "Thu, 10 May 2018 00:18:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3111,7 +3023,7 @@ "10" ], "x-ms-request-id": [ - "035b8cef-6bd9-4120-90b0-61faa7c6342b" + "428b332d-084c-4c31-95a6-3481f18545bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3124,31 +3036,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14964" ], "x-ms-correlation-request-id": [ - "7107f49d-df47-4995-b355-9be6a0de4c5b" + "7e92e615-0aac-48fd-af1c-7d6acfe3b3c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215109Z:7107f49d-df47-4995-b355-9be6a0de4c5b" + "WESTUS2:20180510T001843Z:7e92e615-0aac-48fd-af1c-7d6acfe3b3c3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:09 GMT" + "Thu, 10 May 2018 00:18:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3169,7 +3084,7 @@ "10" ], "x-ms-request-id": [ - "a571ded5-59e5-4f8c-85e0-84b31e48722e" + "adfca492-6587-476a-acef-53e6dd091b19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3182,31 +3097,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14963" ], "x-ms-correlation-request-id": [ - "4cc50155-81ac-4355-8870-392139d36b35" + "099ca030-1a1a-4bff-a334-0a50dd2ffe4b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215109Z:4cc50155-81ac-4355-8870-392139d36b35" + "WESTUS2:20180510T001853Z:099ca030-1a1a-4bff-a334-0a50dd2ffe4b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:09 GMT" + "Thu, 10 May 2018 00:18:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3227,11 +3145,14 @@ "10" ], "x-ms-request-id": [ - "41bea4da-4067-47e1-adba-4fdc6bd89463" + "3d7a524b-46a6-4e7c-a395-e4cd27c57c53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], "Cache-Control": [ "no-cache" ], @@ -3239,32 +3160,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" - ], "x-ms-correlation-request-id": [ - "0312b785-655a-4aad-8084-719c10e08f5a" + "781dc7a4-5632-413f-a348-1f8e87692d1b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215109Z:0312b785-655a-4aad-8084-719c10e08f5a" + "WESTUS2:20180510T001903Z:781dc7a4-5632-413f-a348-1f8e87692d1b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:09 GMT" + "Thu, 10 May 2018 00:19:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3285,7 +3206,7 @@ "10" ], "x-ms-request-id": [ - "f852123b-1b60-4e31-be44-0963dfacc608" + "73b3500e-a5f9-40e0-97be-0ea977e47f3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3298,31 +3219,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14961" ], "x-ms-correlation-request-id": [ - "7bf0f6d4-e413-4e98-aa86-68a820ed989b" + "18d8b5d4-c4c8-439b-890f-5ec9885890a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215109Z:7bf0f6d4-e413-4e98-aa86-68a820ed989b" + "WESTUS2:20180510T001914Z:18d8b5d4-c4c8-439b-890f-5ec9885890a1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:09 GMT" + "Thu, 10 May 2018 00:19:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3343,7 +3267,7 @@ "10" ], "x-ms-request-id": [ - "6c7c3d4d-08d0-46f5-b896-51bae132345c" + "b389b31d-358e-4e56-a593-3e1ead851579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3356,31 +3280,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14960" ], "x-ms-correlation-request-id": [ - "a21aa502-18ff-4866-a68a-ee8756656aa5" + "e60c1da3-1205-47af-90c9-4046db695110" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215110Z:a21aa502-18ff-4866-a68a-ee8756656aa5" + "WESTUS2:20180510T001924Z:e60c1da3-1205-47af-90c9-4046db695110" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:09 GMT" + "Thu, 10 May 2018 00:19:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3401,7 +3328,7 @@ "10" ], "x-ms-request-id": [ - "0a03a399-0718-4c80-89e5-1f08b0821191" + "f08d3ebe-a176-435f-bac5-0d6dac00b439" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3414,31 +3341,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14959" ], "x-ms-correlation-request-id": [ - "32acc7d6-21cd-4530-bd56-da118874c2a8" + "4f796f17-519d-4fd9-9b5e-43a453aed41b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215110Z:32acc7d6-21cd-4530-bd56-da118874c2a8" + "WESTUS2:20180510T001934Z:4f796f17-519d-4fd9-9b5e-43a453aed41b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:09 GMT" + "Thu, 10 May 2018 00:19:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3459,7 +3389,7 @@ "10" ], "x-ms-request-id": [ - "1fd6becf-2b88-4c88-98a4-10c21200e519" + "6ccdc828-27d8-4dc8-a2cc-81c9e006e2fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3472,31 +3402,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14958" ], "x-ms-correlation-request-id": [ - "b25782c0-d4f0-46f8-a0de-0299082fd47e" + "359f34d1-60c9-43a0-b3be-b8911e131d3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215110Z:b25782c0-d4f0-46f8-a0de-0299082fd47e" + "WESTUS2:20180510T001944Z:359f34d1-60c9-43a0-b3be-b8911e131d3a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:10 GMT" + "Thu, 10 May 2018 00:19:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3517,11 +3450,14 @@ "10" ], "x-ms-request-id": [ - "71bd1856-7a82-4944-86fa-bc04bf3f88f2" + "a0239170-01f9-4a3f-b8c9-2264c32b0fb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], "Cache-Control": [ "no-cache" ], @@ -3529,32 +3465,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" - ], "x-ms-correlation-request-id": [ - "55d0bc4f-7abd-409a-b75a-bec2a3a8a63a" + "0d9e848a-8228-4661-a626-6d767004a23f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215110Z:55d0bc4f-7abd-409a-b75a-bec2a3a8a63a" + "WESTUS2:20180510T001954Z:0d9e848a-8228-4661-a626-6d767004a23f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:10 GMT" + "Thu, 10 May 2018 00:19:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3575,7 +3511,7 @@ "10" ], "x-ms-request-id": [ - "7a8f7c78-b5fd-42f5-8ddc-5ef24b363009" + "2f82d6d8-a847-45fe-bd87-e48f1c6bd22d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3588,31 +3524,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14956" ], "x-ms-correlation-request-id": [ - "d7c8a057-65fe-4c3b-9737-d7cdf33c7226" + "69aa7921-a7da-4cc6-bf7a-c65490c9b4aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215110Z:d7c8a057-65fe-4c3b-9737-d7cdf33c7226" + "WESTUS2:20180510T002004Z:69aa7921-a7da-4cc6-bf7a-c65490c9b4aa" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:10 GMT" + "Thu, 10 May 2018 00:20:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3633,7 +3572,7 @@ "10" ], "x-ms-request-id": [ - "5768d8b3-fef8-4527-9027-840e9837f0a1" + "40614a55-67ca-4521-bab5-c616fe9e3e45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3646,31 +3585,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14955" ], "x-ms-correlation-request-id": [ - "86156482-94db-4b50-9a5e-8854fe42a09d" + "250bf9fa-71c5-45b7-a878-5b54024d4cd0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215110Z:86156482-94db-4b50-9a5e-8854fe42a09d" + "WESTUS2:20180510T002014Z:250bf9fa-71c5-45b7-a878-5b54024d4cd0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:10 GMT" + "Thu, 10 May 2018 00:20:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3691,7 +3633,7 @@ "10" ], "x-ms-request-id": [ - "afb26e29-54d1-4236-bc9d-056d5c7583fd" + "0f703629-d14e-4b68-be82-0dbc7273dea1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3704,31 +3646,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14954" ], "x-ms-correlation-request-id": [ - "35dec49f-6fe3-4d1a-aaf4-635f29ac2e48" + "b7a33029-e62d-476f-ba8e-686d1bf2ea86" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215111Z:35dec49f-6fe3-4d1a-aaf4-635f29ac2e48" + "WESTUS2:20180510T002024Z:b7a33029-e62d-476f-ba8e-686d1bf2ea86" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:10 GMT" + "Thu, 10 May 2018 00:20:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3749,7 +3694,7 @@ "10" ], "x-ms-request-id": [ - "f33675c9-6c68-421d-aa3b-a519d7df1118" + "1f81e31f-860a-4213-ad56-70358df4ed49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3762,31 +3707,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14953" ], "x-ms-correlation-request-id": [ - "8e66a03a-803f-43c8-bbbb-9187fb4bcba2" + "f8f5cd07-93d2-4c3e-a616-39881092f7e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215111Z:8e66a03a-803f-43c8-bbbb-9187fb4bcba2" + "WESTUS2:20180510T002034Z:f8f5cd07-93d2-4c3e-a616-39881092f7e9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:10 GMT" + "Thu, 10 May 2018 00:20:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3807,11 +3755,14 @@ "10" ], "x-ms-request-id": [ - "6a5b4679-e0a5-431d-8510-ad0203754ca1" + "18f1ee75-f213-43c7-8893-46f203f791c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], "Cache-Control": [ "no-cache" ], @@ -3819,32 +3770,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" - ], "x-ms-correlation-request-id": [ - "8f381188-738d-484e-8244-eee444a99d85" + "aea0ea61-087e-46f0-8d85-8dc4b8e7fb1c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215111Z:8f381188-738d-484e-8244-eee444a99d85" + "WESTUS2:20180510T002044Z:aea0ea61-087e-46f0-8d85-8dc4b8e7fb1c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:11 GMT" + "Thu, 10 May 2018 00:20:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3865,7 +3816,7 @@ "10" ], "x-ms-request-id": [ - "d58d1a4c-ea13-4c71-b126-c633c3fcb182" + "79173757-b672-4dde-a504-7f8c152a4af9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3878,31 +3829,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14951" ], "x-ms-correlation-request-id": [ - "e5b87bd1-29f5-4cf6-aa96-8b3c2e23fdec" + "059cb746-b221-4491-bc5b-b0e162a4c53f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215111Z:e5b87bd1-29f5-4cf6-aa96-8b3c2e23fdec" + "WESTUS2:20180510T002054Z:059cb746-b221-4491-bc5b-b0e162a4c53f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:11 GMT" + "Thu, 10 May 2018 00:20:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3923,7 +3877,7 @@ "10" ], "x-ms-request-id": [ - "032a6793-c894-445f-a700-f9ae7d153067" + "d783d591-d6c2-4647-9cd1-a19d08de747b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3936,31 +3890,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14950" ], "x-ms-correlation-request-id": [ - "50475ce8-cdfd-45b0-a7e6-bff0e3fc29e1" + "f05a0907-8e61-41e9-9e49-59bc6f0dbdd8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215111Z:50475ce8-cdfd-45b0-a7e6-bff0e3fc29e1" + "WESTUS2:20180510T002104Z:f05a0907-8e61-41e9-9e49-59bc6f0dbdd8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:11 GMT" + "Thu, 10 May 2018 00:21:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3981,7 +3938,7 @@ "10" ], "x-ms-request-id": [ - "28e86030-8620-4be1-8690-90df848c209d" + "c141ebbf-d730-409d-8a8b-2afe6e7fc8d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3994,31 +3951,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14949" ], "x-ms-correlation-request-id": [ - "dda76f57-d516-4313-b1e2-b757fc53e85b" + "92ec316d-b0ef-441c-a7c8-8b214c788581" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215111Z:dda76f57-d516-4313-b1e2-b757fc53e85b" + "WESTUS2:20180510T002114Z:92ec316d-b0ef-441c-a7c8-8b214c788581" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:11 GMT" + "Thu, 10 May 2018 00:21:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4039,7 +3999,7 @@ "10" ], "x-ms-request-id": [ - "0355da6d-1fa7-4176-9da7-b0a5a7fe11c6" + "8eebaa6b-880c-49f0-a17e-cd33c8cd30fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4052,31 +4012,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14948" ], "x-ms-correlation-request-id": [ - "a534cc9b-91be-4d06-b245-fe240f488870" + "cbab8d31-e1a0-49a1-9fb1-0032cd33bfbe" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215112Z:a534cc9b-91be-4d06-b245-fe240f488870" + "WESTUS2:20180510T002124Z:cbab8d31-e1a0-49a1-9fb1-0032cd33bfbe" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:11 GMT" + "Thu, 10 May 2018 00:21:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4097,11 +4060,14 @@ "10" ], "x-ms-request-id": [ - "ca2aa49f-4a82-4c70-8704-97b0221d436b" + "90069f42-3167-44b3-aee8-ae3dc387fc8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], "Cache-Control": [ "no-cache" ], @@ -4109,32 +4075,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" - ], "x-ms-correlation-request-id": [ - "17e59a55-8575-4b71-b8f0-4182dad06ccf" + "6ded201c-3861-4654-802b-a782d45f6e67" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215112Z:17e59a55-8575-4b71-b8f0-4182dad06ccf" + "WESTUS2:20180510T002134Z:6ded201c-3861-4654-802b-a782d45f6e67" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:12 GMT" + "Thu, 10 May 2018 00:21:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4155,7 +4121,7 @@ "10" ], "x-ms-request-id": [ - "319bc343-8a96-4cf1-8865-d90b41f3bd4f" + "eb196634-b857-4f57-920d-9ef68c544a79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4168,31 +4134,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14946" ], "x-ms-correlation-request-id": [ - "d2ef2ecd-d42d-4a24-a8bf-4fc68dcdf9bd" + "c9d36a2f-f45d-4b90-97a1-f70122688efb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215112Z:d2ef2ecd-d42d-4a24-a8bf-4fc68dcdf9bd" + "WESTUS2:20180510T002144Z:c9d36a2f-f45d-4b90-97a1-f70122688efb" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:12 GMT" + "Thu, 10 May 2018 00:21:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4213,7 +4182,7 @@ "10" ], "x-ms-request-id": [ - "5a18237e-51f1-4d7a-bb7f-8a79ced7c943" + "70505d01-605b-4e6d-9506-29f6add140d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4226,31 +4195,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14945" ], "x-ms-correlation-request-id": [ - "b161b2a9-9dec-430c-aaf9-19271fe63209" + "4c3da4b4-61d5-4b81-9c73-1fbd4d91db6e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215112Z:b161b2a9-9dec-430c-aaf9-19271fe63209" + "WESTUS2:20180510T002154Z:4c3da4b4-61d5-4b81-9c73-1fbd4d91db6e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:12 GMT" + "Thu, 10 May 2018 00:21:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4271,7 +4243,7 @@ "10" ], "x-ms-request-id": [ - "2ddc0c55-9a04-46a1-8a21-9f40e46fc029" + "5c03ec6e-b667-4ca0-b0c2-03a70ea43070" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4284,31 +4256,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14944" ], "x-ms-correlation-request-id": [ - "76367381-2f9d-4535-aa0c-f5bfac95bb47" + "8a440f9e-c644-4702-adc3-a9e0865ba68e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215112Z:76367381-2f9d-4535-aa0c-f5bfac95bb47" + "WESTUS2:20180510T002205Z:8a440f9e-c644-4702-adc3-a9e0865ba68e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:12 GMT" + "Thu, 10 May 2018 00:22:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4329,7 +4304,7 @@ "10" ], "x-ms-request-id": [ - "c3e04a8d-4377-4baf-b1f0-b78aedcd4f8b" + "b69becf0-93fd-4c78-9563-6badafd3f28f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4342,31 +4317,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14943" ], "x-ms-correlation-request-id": [ - "1d0b0659-742b-4390-8e49-0c98e2f77a3d" + "d06fd2cb-344b-473e-9bae-e70437dd9d4c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215112Z:1d0b0659-742b-4390-8e49-0c98e2f77a3d" + "WESTUS2:20180510T002215Z:d06fd2cb-344b-473e-9bae-e70437dd9d4c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:12 GMT" + "Thu, 10 May 2018 00:22:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4387,11 +4365,14 @@ "10" ], "x-ms-request-id": [ - "36c80fb3-0b51-49bc-adda-d0bb727002e1" + "83ff1431-dea0-4e2f-9efd-5014611af903" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], "Cache-Control": [ "no-cache" ], @@ -4399,32 +4380,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" - ], "x-ms-correlation-request-id": [ - "e12a8295-33ee-4d48-8be0-26f55ec95e0b" + "d8021efc-9058-4270-891c-bbe455e7accf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215113Z:e12a8295-33ee-4d48-8be0-26f55ec95e0b" + "WESTUS2:20180510T002225Z:d8021efc-9058-4270-891c-bbe455e7accf" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:12 GMT" + "Thu, 10 May 2018 00:22:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4445,7 +4426,7 @@ "10" ], "x-ms-request-id": [ - "3c056d92-0849-405e-b0ca-40185ec28cb8" + "a4d0222b-de47-42bf-a83d-629b109f48d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4458,31 +4439,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14941" ], "x-ms-correlation-request-id": [ - "bd6c12e9-3ae4-4cb2-807b-30f732c147fa" + "84fc5bc2-e293-48a9-b066-acc17cbefc0e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215113Z:bd6c12e9-3ae4-4cb2-807b-30f732c147fa" + "WESTUS2:20180510T002235Z:84fc5bc2-e293-48a9-b066-acc17cbefc0e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:13 GMT" + "Thu, 10 May 2018 00:22:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4503,7 +4487,7 @@ "10" ], "x-ms-request-id": [ - "2093ec14-1d90-4428-97bc-a8c6c1ed8da9" + "ad2e8cae-1cfe-4262-bbc2-6a6e668aa76f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4516,31 +4500,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14940" ], "x-ms-correlation-request-id": [ - "75d25c84-1926-4ca0-9866-47f873f88637" + "e39b2d2b-8cc0-4c3a-97e2-75ae29289b01" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215113Z:75d25c84-1926-4ca0-9866-47f873f88637" + "WESTUS2:20180510T002245Z:e39b2d2b-8cc0-4c3a-97e2-75ae29289b01" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:13 GMT" + "Thu, 10 May 2018 00:22:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4561,7 +4548,7 @@ "10" ], "x-ms-request-id": [ - "2b5e129e-e9d5-4bdd-8ac2-2f311e105266" + "2598ca1c-fda1-4dc3-9974-7a61fb14eb58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4574,31 +4561,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14939" ], "x-ms-correlation-request-id": [ - "7a3ca0e7-18c1-4e7d-8bae-b5b83df46f51" + "375a80f9-d0b9-4dd5-a454-771818f2f348" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215113Z:7a3ca0e7-18c1-4e7d-8bae-b5b83df46f51" + "WESTUS2:20180510T002255Z:375a80f9-d0b9-4dd5-a454-771818f2f348" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:13 GMT" + "Thu, 10 May 2018 00:22:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4619,7 +4609,7 @@ "10" ], "x-ms-request-id": [ - "19ee1c19-156a-4512-a80d-2e8dc07dd138" + "8cdde7e2-6f28-43d9-906f-dea17cb2f38e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4632,31 +4622,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14938" ], "x-ms-correlation-request-id": [ - "8471ea44-762d-431e-ad53-dd9cf131a999" + "53c068e9-2135-4c5b-80ec-dc987864a904" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215113Z:8471ea44-762d-431e-ad53-dd9cf131a999" + "WESTUS2:20180510T002305Z:53c068e9-2135-4c5b-80ec-dc987864a904" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:13 GMT" + "Thu, 10 May 2018 00:23:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4677,11 +4670,14 @@ "10" ], "x-ms-request-id": [ - "28bf765d-f224-4c86-930c-7e9f701ce1c7" + "1513dfbd-8e5c-4782-a586-f26ce202c6f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], "Cache-Control": [ "no-cache" ], @@ -4689,32 +4685,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" - ], "x-ms-correlation-request-id": [ - "233994ba-4dae-4a9a-80b3-d9c0f80275d6" + "94f602b5-0428-4678-afe3-9f4dd7f792da" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215113Z:233994ba-4dae-4a9a-80b3-d9c0f80275d6" + "WESTUS2:20180510T002315Z:94f602b5-0428-4678-afe3-9f4dd7f792da" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:13 GMT" + "Thu, 10 May 2018 00:23:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4735,7 +4731,7 @@ "10" ], "x-ms-request-id": [ - "a6ffd118-d7f6-4cac-8472-961141c8d6eb" + "e7b306f6-b028-49aa-8f37-2b1973a3f602" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4748,31 +4744,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14936" ], "x-ms-correlation-request-id": [ - "8ace4750-07f9-405e-b02a-8fc8a840c096" + "07daa1d9-b735-459c-aff0-387ec71c567a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215114Z:8ace4750-07f9-405e-b02a-8fc8a840c096" + "WESTUS2:20180510T002325Z:07daa1d9-b735-459c-aff0-387ec71c567a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:13 GMT" + "Thu, 10 May 2018 00:23:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4793,7 +4792,7 @@ "10" ], "x-ms-request-id": [ - "4bb67641-7d79-490d-9426-700408077793" + "09840069-2fe7-4b06-bc80-a85983eada83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4806,31 +4805,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14935" ], "x-ms-correlation-request-id": [ - "6213d005-f454-4b05-95c2-99329812102e" + "f5ef1d21-e2d3-4476-b407-2556d6b57719" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215114Z:6213d005-f454-4b05-95c2-99329812102e" + "WESTUS2:20180510T002335Z:f5ef1d21-e2d3-4476-b407-2556d6b57719" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:13 GMT" + "Thu, 10 May 2018 00:23:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4851,7 +4853,7 @@ "10" ], "x-ms-request-id": [ - "866ff81c-58f4-4469-a0c5-7312350d7cfb" + "4d72c991-cf59-417e-b378-1c8cd032816e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4864,31 +4866,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14934" ], "x-ms-correlation-request-id": [ - "45b7e230-be15-4d86-b11f-0d0eb60077c9" + "b1bb0a91-a7d2-4e08-8f06-b5a162800558" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215114Z:45b7e230-be15-4d86-b11f-0d0eb60077c9" + "WESTUS2:20180510T002345Z:b1bb0a91-a7d2-4e08-8f06-b5a162800558" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:14 GMT" + "Thu, 10 May 2018 00:23:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4909,7 +4914,7 @@ "10" ], "x-ms-request-id": [ - "3c36c420-9f54-41f7-bb42-c7999bb1ceb8" + "258305ea-0640-45aa-9a85-f27618c43a12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4922,31 +4927,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14933" ], "x-ms-correlation-request-id": [ - "88acf04c-2685-4a7f-9719-e365ed8df234" + "5b83d455-f904-4b1b-83d8-fc434a619ba9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215114Z:88acf04c-2685-4a7f-9719-e365ed8df234" + "WESTUS2:20180510T002355Z:5b83d455-f904-4b1b-83d8-fc434a619ba9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:14 GMT" + "Thu, 10 May 2018 00:23:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4967,11 +4975,14 @@ "10" ], "x-ms-request-id": [ - "e4ac3052-dc8e-455a-82dd-f82fc864bdb8" + "6f684627-9d7f-4c21-a7b3-f6283163c528" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], "Cache-Control": [ "no-cache" ], @@ -4979,32 +4990,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" - ], "x-ms-correlation-request-id": [ - "dc8c2356-62fa-49a7-a2bd-dfaf6e3ee73d" + "8e493124-73b7-4270-8acb-9c2485476fa9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215114Z:dc8c2356-62fa-49a7-a2bd-dfaf6e3ee73d" + "WESTUS2:20180510T002405Z:8e493124-73b7-4270-8acb-9c2485476fa9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:14 GMT" + "Thu, 10 May 2018 00:24:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5025,7 +5036,7 @@ "10" ], "x-ms-request-id": [ - "2a7367ba-e678-4a7b-a534-6ce959be46cb" + "91c87069-4e7c-4230-805a-4a2bd81f78b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5038,31 +5049,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14931" ], "x-ms-correlation-request-id": [ - "58ec6c7c-df3b-44e4-b7ea-1461f6ec32f4" + "a68572f4-c4a4-4420-99f0-3a060fd3ce73" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215114Z:58ec6c7c-df3b-44e4-b7ea-1461f6ec32f4" + "WESTUS2:20180510T002415Z:a68572f4-c4a4-4420-99f0-3a060fd3ce73" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:14 GMT" + "Thu, 10 May 2018 00:24:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5083,7 +5097,7 @@ "10" ], "x-ms-request-id": [ - "b5460aee-bb05-4d87-b61b-e58fbefb8acc" + "998170a5-3158-4578-8d49-38d67a6ae111" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5096,31 +5110,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14930" ], "x-ms-correlation-request-id": [ - "e7514d0b-6ce2-4b21-98f9-a0124cb4335c" + "391f52bb-4930-4bc8-bd57-769855a46fe2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215114Z:e7514d0b-6ce2-4b21-98f9-a0124cb4335c" + "WESTUS2:20180510T002425Z:391f52bb-4930-4bc8-bd57-769855a46fe2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:14 GMT" + "Thu, 10 May 2018 00:24:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5141,7 +5158,7 @@ "10" ], "x-ms-request-id": [ - "f2014e09-0ee8-4182-aba6-6056c14c9ed1" + "3bc778ad-02dc-4bb3-a9db-71358139d2a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5154,31 +5171,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14929" ], "x-ms-correlation-request-id": [ - "8b98643e-b6ab-458f-8d2c-87284789af1d" + "4c44847e-36b9-4ff4-8fa0-eff0e5510e2b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215115Z:8b98643e-b6ab-458f-8d2c-87284789af1d" + "WESTUS2:20180510T002436Z:4c44847e-36b9-4ff4-8fa0-eff0e5510e2b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:14 GMT" + "Thu, 10 May 2018 00:24:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5199,7 +5219,7 @@ "10" ], "x-ms-request-id": [ - "79022bd7-15c2-4b94-9c1a-a37a995e52a3" + "96304234-ec3b-42fb-b643-45ba99e7e30e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5212,31 +5232,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14928" ], "x-ms-correlation-request-id": [ - "7b41c958-e660-4d02-adc3-3f775b316cd5" + "ecf22f8e-dca4-4869-8d44-66b97a2e5b18" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215115Z:7b41c958-e660-4d02-adc3-3f775b316cd5" + "WESTUS2:20180510T002446Z:ecf22f8e-dca4-4869-8d44-66b97a2e5b18" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:14 GMT" + "Thu, 10 May 2018 00:24:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5257,11 +5280,14 @@ "10" ], "x-ms-request-id": [ - "ac83b124-7123-4045-b08b-a72bfa3a775a" + "37f446fc-3f38-40b0-bed8-f1256bb167ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], "Cache-Control": [ "no-cache" ], @@ -5269,32 +5295,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" - ], "x-ms-correlation-request-id": [ - "7aeceb5f-af99-4eb0-bd62-028295087e2e" + "195beba5-f803-456c-821d-85ed35593258" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215115Z:7aeceb5f-af99-4eb0-bd62-028295087e2e" + "WESTUS2:20180510T002456Z:195beba5-f803-456c-821d-85ed35593258" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:15 GMT" + "Thu, 10 May 2018 00:24:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5315,7 +5341,7 @@ "10" ], "x-ms-request-id": [ - "c2aab157-14c2-4d69-abec-3531859b73b5" + "aff6614d-a961-4607-9974-999555c6b0a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5328,31 +5354,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14926" ], "x-ms-correlation-request-id": [ - "0793d034-d98a-4d14-9f4d-e74ea77932fa" + "77aceb35-da77-47c3-b2af-e040ceae5202" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215115Z:0793d034-d98a-4d14-9f4d-e74ea77932fa" + "WESTUS2:20180510T002506Z:77aceb35-da77-47c3-b2af-e040ceae5202" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:15 GMT" + "Thu, 10 May 2018 00:25:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5373,7 +5402,7 @@ "10" ], "x-ms-request-id": [ - "e193d177-884e-4b78-82fb-ae8a915dcbad" + "64e9cd81-04a7-41bf-a738-f34e353d42d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5386,31 +5415,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14925" ], "x-ms-correlation-request-id": [ - "85cda730-e3d9-47d6-938b-934f381dbcdb" + "12b7dea3-c2a6-43d9-93bd-6a8d1e7ac81e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215115Z:85cda730-e3d9-47d6-938b-934f381dbcdb" + "WESTUS2:20180510T002516Z:12b7dea3-c2a6-43d9-93bd-6a8d1e7ac81e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:15 GMT" + "Thu, 10 May 2018 00:25:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5431,7 +5463,7 @@ "10" ], "x-ms-request-id": [ - "d88af771-f6e2-417a-8a85-2feac807b946" + "c4c760ac-6444-4754-b549-3592781ac33c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5444,31 +5476,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14924" ], "x-ms-correlation-request-id": [ - "ccad80e8-3d50-4dbc-95cc-f01f57f1e6f4" + "18a3f243-6a39-4eaa-bbff-19c53fa4947a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215115Z:ccad80e8-3d50-4dbc-95cc-f01f57f1e6f4" + "WESTUS2:20180510T002526Z:18a3f243-6a39-4eaa-bbff-19c53fa4947a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:15 GMT" + "Thu, 10 May 2018 00:25:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5489,7 +5524,7 @@ "10" ], "x-ms-request-id": [ - "11ae7002-b0cf-4906-8895-a4b6e0b92423" + "e9343585-b7de-4e8b-9104-58a70271f625" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5502,31 +5537,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14923" ], "x-ms-correlation-request-id": [ - "779d7927-58eb-4fb3-9f55-c387fc065e7a" + "740cab79-6975-41e8-8216-e3c41a8921ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215115Z:779d7927-58eb-4fb3-9f55-c387fc065e7a" + "WESTUS2:20180510T002536Z:740cab79-6975-41e8-8216-e3c41a8921ae" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:15 GMT" + "Thu, 10 May 2018 00:25:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5547,11 +5585,14 @@ "10" ], "x-ms-request-id": [ - "7964a1cd-c7e4-4183-aea7-d71849c55220" + "1fbff5c7-145d-40b9-a617-b2094d5dd8c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], "Cache-Control": [ "no-cache" ], @@ -5559,32 +5600,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" - ], "x-ms-correlation-request-id": [ - "77031432-12a2-4089-a3f6-17e8725019b7" + "5902ccdf-47c4-4dd8-96c1-2c4f5ba52c01" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215116Z:77031432-12a2-4089-a3f6-17e8725019b7" + "WESTUS2:20180510T002546Z:5902ccdf-47c4-4dd8-96c1-2c4f5ba52c01" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:15 GMT" + "Thu, 10 May 2018 00:25:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5605,7 +5646,7 @@ "10" ], "x-ms-request-id": [ - "2347fe89-3770-489a-b325-cc30cf532762" + "fd6193c8-35d5-4671-8342-59786d863e87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5618,31 +5659,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14921" ], "x-ms-correlation-request-id": [ - "f1e51900-cc2e-45cd-ba61-3efcfd027b0a" + "9fe4e013-22dd-42f5-acf1-a41201ca38e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215116Z:f1e51900-cc2e-45cd-ba61-3efcfd027b0a" + "WESTUS2:20180510T002556Z:9fe4e013-22dd-42f5-acf1-a41201ca38e5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:15 GMT" + "Thu, 10 May 2018 00:25:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5663,7 +5707,7 @@ "10" ], "x-ms-request-id": [ - "7cfa3335-8f7b-488e-a0b1-28e379888c90" + "78d819bb-82a1-4bad-838e-fa3cfc1d5203" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5676,31 +5720,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14920" ], "x-ms-correlation-request-id": [ - "ec3f0fd5-f2da-43a9-bd1b-3c59b444a92c" + "f3357043-76c6-4220-9448-1d8f888d4bf2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215116Z:ec3f0fd5-f2da-43a9-bd1b-3c59b444a92c" + "WESTUS2:20180510T002606Z:f3357043-76c6-4220-9448-1d8f888d4bf2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:16 GMT" + "Thu, 10 May 2018 00:26:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5721,7 +5768,7 @@ "10" ], "x-ms-request-id": [ - "aacdec79-7b26-4324-835e-55e320f273eb" + "30c96481-8136-4539-bc96-495a4362f52a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5734,31 +5781,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14919" ], "x-ms-correlation-request-id": [ - "a09efc86-fb34-4617-a6bc-63bb18ecc6f6" + "f12ca763-bba6-46a1-9633-18905032c54b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215116Z:a09efc86-fb34-4617-a6bc-63bb18ecc6f6" + "WESTUS2:20180510T002616Z:f12ca763-bba6-46a1-9633-18905032c54b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:16 GMT" + "Thu, 10 May 2018 00:26:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5779,7 +5829,7 @@ "10" ], "x-ms-request-id": [ - "96365401-5487-4105-8985-886f59aed63d" + "40341dac-3c69-41c2-a6a0-08cfa5a5369f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5792,31 +5842,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14918" ], "x-ms-correlation-request-id": [ - "08a56791-7b04-4c2e-a79c-45f9c3a45857" + "476e5437-5f16-40b6-8674-18913b97df94" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215116Z:08a56791-7b04-4c2e-a79c-45f9c3a45857" + "WESTUS2:20180510T002626Z:476e5437-5f16-40b6-8674-18913b97df94" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:16 GMT" + "Thu, 10 May 2018 00:26:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5837,11 +5890,14 @@ "10" ], "x-ms-request-id": [ - "e879c813-63ed-4bac-a55f-f08747bfc66a" + "a03a1182-8702-4b85-8e44-564fc11df26f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], "Cache-Control": [ "no-cache" ], @@ -5849,32 +5905,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" - ], "x-ms-correlation-request-id": [ - "f30d6f6c-20ba-4582-ad6d-4f6eaac2eab3" + "2a8ce832-3229-4d6e-ad11-334885cf86bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215116Z:f30d6f6c-20ba-4582-ad6d-4f6eaac2eab3" + "WESTUS2:20180510T002636Z:2a8ce832-3229-4d6e-ad11-334885cf86bd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:16 GMT" + "Thu, 10 May 2018 00:26:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5895,7 +5951,7 @@ "10" ], "x-ms-request-id": [ - "f775e164-537d-4bcd-b709-2a0a65d0eff7" + "286aa35e-9fc7-4e62-a5ee-d8b6486d3569" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5908,31 +5964,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14916" ], "x-ms-correlation-request-id": [ - "105ba0f6-4f69-484e-b970-0d188994d593" + "7efc791b-14cb-4509-b33e-f5d7f51fa344" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215117Z:105ba0f6-4f69-484e-b970-0d188994d593" + "WESTUS2:20180510T002646Z:7efc791b-14cb-4509-b33e-f5d7f51fa344" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:16 GMT" + "Thu, 10 May 2018 00:26:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5953,7 +6012,7 @@ "10" ], "x-ms-request-id": [ - "4febac76-e2fe-48b2-98b5-9fa049280632" + "9c0907df-f43f-40d2-a40f-70652417a8b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5966,31 +6025,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14915" ], "x-ms-correlation-request-id": [ - "05bfd0dc-93ea-48ba-825f-79164f0e7596" + "fabffeb5-2b07-42aa-a1f8-7aee5517c0e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215117Z:05bfd0dc-93ea-48ba-825f-79164f0e7596" + "WESTUS2:20180510T002657Z:fabffeb5-2b07-42aa-a1f8-7aee5517c0e5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:16 GMT" + "Thu, 10 May 2018 00:26:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6011,7 +6073,7 @@ "10" ], "x-ms-request-id": [ - "6e0844c3-9d34-4f78-91dd-19a9fba2c816" + "2202b482-a293-436d-abfb-2419b0982d33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6024,31 +6086,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14914" ], "x-ms-correlation-request-id": [ - "ad01ce4a-453e-482d-952b-2932379616e2" + "c8eca287-1381-491d-a4f2-01c83606c03d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215117Z:ad01ce4a-453e-482d-952b-2932379616e2" + "WESTUS2:20180510T002707Z:c8eca287-1381-491d-a4f2-01c83606c03d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:17 GMT" + "Thu, 10 May 2018 00:27:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6069,7 +6134,7 @@ "10" ], "x-ms-request-id": [ - "9a4587ef-d6e7-4613-b292-18b85c1b494a" + "c2c60abc-71c9-4cd9-b3ef-b85bca5654da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6082,31 +6147,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14913" ], "x-ms-correlation-request-id": [ - "0898aed3-413e-4249-9dff-c9f1964554bb" + "f4caec1a-2bbf-4a46-a128-b164662165a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215117Z:0898aed3-413e-4249-9dff-c9f1964554bb" + "WESTUS2:20180510T002717Z:f4caec1a-2bbf-4a46-a128-b164662165a6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:17 GMT" + "Thu, 10 May 2018 00:27:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6127,11 +6195,14 @@ "10" ], "x-ms-request-id": [ - "892fe717-2f92-4045-89c3-dbf1f5f0bd4b" + "2f8974e9-2a1d-44b7-b628-e8164d79feae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], "Cache-Control": [ "no-cache" ], @@ -6139,32 +6210,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" - ], "x-ms-correlation-request-id": [ - "d048517f-4324-4246-9ff7-d9b1e4d03e07" + "1ef0d651-f5c3-4473-ad90-ffeb9f2fb88c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215117Z:d048517f-4324-4246-9ff7-d9b1e4d03e07" + "WESTUS2:20180510T002727Z:1ef0d651-f5c3-4473-ad90-ffeb9f2fb88c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:17 GMT" + "Thu, 10 May 2018 00:27:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6185,7 +6256,7 @@ "10" ], "x-ms-request-id": [ - "7122d570-8f05-4299-b115-413d1d7177f9" + "c3e52fe5-fd65-42b8-ac46-a0e901d0e60d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6198,31 +6269,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14911" ], "x-ms-correlation-request-id": [ - "79bbd4bb-2953-445e-a93b-4bdf1e903c88" + "75b7cc0d-5a23-4513-bef1-f3df39b82aa2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215117Z:79bbd4bb-2953-445e-a93b-4bdf1e903c88" + "WESTUS2:20180510T002737Z:75b7cc0d-5a23-4513-bef1-f3df39b82aa2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:17 GMT" + "Thu, 10 May 2018 00:27:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6243,7 +6317,7 @@ "10" ], "x-ms-request-id": [ - "b21f7e4f-6801-4979-9823-e322f4850889" + "861a864a-8c89-416c-b7ce-373c7b6af455" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6256,31 +6330,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "14910" ], "x-ms-correlation-request-id": [ - "f811c92e-1935-4a1d-8f9c-7f79b848012c" + "7e643c7d-859a-4b6b-a37c-5bb1285a6523" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215118Z:f811c92e-1935-4a1d-8f9c-7f79b848012c" + "WESTUS2:20180510T002747Z:7e643c7d-859a-4b6b-a37c-5bb1285a6523" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:17 GMT" + "Thu, 10 May 2018 00:27:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6301,7 +6378,7 @@ "10" ], "x-ms-request-id": [ - "6a4471be-f1b9-432d-a237-42a5acc7dded" + "4d343a81-9ab3-4955-bece-d3276fb2387a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6314,31 +6391,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "14909" ], "x-ms-correlation-request-id": [ - "0d260396-d8be-48d4-89ee-fc7d85b2215b" + "21733fd2-fff9-42df-9a00-7358ccd60619" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215118Z:0d260396-d8be-48d4-89ee-fc7d85b2215b" + "WESTUS2:20180510T002757Z:21733fd2-fff9-42df-9a00-7358ccd60619" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:17 GMT" + "Thu, 10 May 2018 00:27:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6359,7 +6439,7 @@ "10" ], "x-ms-request-id": [ - "202fe5e5-890b-4dba-80c6-e1a3c6c66335" + "08f3d336-db11-42dc-a70b-ab4a4a8efbbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6372,31 +6452,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "14908" ], "x-ms-correlation-request-id": [ - "b98159bb-fccd-4e87-a825-cc4386a5d50a" + "8bade18e-59bc-43c9-9129-ec5d620f1754" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215118Z:b98159bb-fccd-4e87-a825-cc4386a5d50a" + "WESTUS2:20180510T002807Z:8bade18e-59bc-43c9-9129-ec5d620f1754" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:18 GMT" + "Thu, 10 May 2018 00:28:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6417,11 +6500,14 @@ "10" ], "x-ms-request-id": [ - "d574d287-289c-4f23-8e2a-b1c380fb6468" + "8d4c453a-d6d2-47e1-a41e-361a1014983a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" + ], "Cache-Control": [ "no-cache" ], @@ -6429,32 +6515,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" - ], "x-ms-correlation-request-id": [ - "b2e750a0-e6f7-4232-bf08-bf4f628a6cca" + "56e4b9b9-2992-49d1-b153-7aaa3d4e73f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215118Z:b2e750a0-e6f7-4232-bf08-bf4f628a6cca" + "WESTUS2:20180510T002817Z:56e4b9b9-2992-49d1-b153-7aaa3d4e73f1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:18 GMT" + "Thu, 10 May 2018 00:28:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6475,7 +6561,7 @@ "10" ], "x-ms-request-id": [ - "0f877357-dde7-4fd2-99e4-ec3c82dc80b4" + "72a0a473-57f4-4692-b9b6-040471202ccb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6488,31 +6574,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "14906" ], "x-ms-correlation-request-id": [ - "4c4f7ff1-21ae-4fab-b8a0-b5e9133cbd3e" + "2161d264-eb12-44ef-9047-6254bbf64a59" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215118Z:4c4f7ff1-21ae-4fab-b8a0-b5e9133cbd3e" + "WESTUS2:20180510T002827Z:2161d264-eb12-44ef-9047-6254bbf64a59" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:18 GMT" + "Thu, 10 May 2018 00:28:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6533,7 +6622,7 @@ "10" ], "x-ms-request-id": [ - "6fadcd3f-0392-42ee-b673-6934ce9aa0ce" + "cae87243-4a2a-42c5-994e-a0f21d9bd9a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6546,31 +6635,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" + "14905" ], "x-ms-correlation-request-id": [ - "92288d6d-8b1e-42f1-bea1-8a120f77db55" + "398db2df-c147-46a4-8ca5-298becf0aa5f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215119Z:92288d6d-8b1e-42f1-bea1-8a120f77db55" + "WESTUS2:20180510T002837Z:398db2df-c147-46a4-8ca5-298becf0aa5f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:18 GMT" + "Thu, 10 May 2018 00:28:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6591,7 +6683,7 @@ "10" ], "x-ms-request-id": [ - "2145eaf5-9c59-473a-8f60-0d3e6f43efaa" + "92c5401a-471c-495b-aa0c-32360a835108" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6604,31 +6696,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" + "14904" ], "x-ms-correlation-request-id": [ - "8ebb63a6-e6a1-4bda-b7eb-c62196cab1fb" + "746a4378-2e5e-4a90-b2b7-88603be4cc50" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215119Z:8ebb63a6-e6a1-4bda-b7eb-c62196cab1fb" + "WESTUS2:20180510T002847Z:746a4378-2e5e-4a90-b2b7-88603be4cc50" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:18 GMT" + "Thu, 10 May 2018 00:28:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6649,7 +6744,7 @@ "10" ], "x-ms-request-id": [ - "7a8774ae-e3d1-4144-90c5-8bf0329bd152" + "5d73336a-ed3c-4ca3-be13-4484bf9f0cfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6662,31 +6757,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" + "14903" ], "x-ms-correlation-request-id": [ - "ed20e1bd-3a11-4936-879f-b62e9bb55f4b" + "e709c80b-ad10-4da6-bcfc-cd0a5183af24" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215119Z:ed20e1bd-3a11-4936-879f-b62e9bb55f4b" + "WESTUS2:20180510T002857Z:e709c80b-ad10-4da6-bcfc-cd0a5183af24" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:18 GMT" + "Thu, 10 May 2018 00:28:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6707,11 +6805,14 @@ "10" ], "x-ms-request-id": [ - "d87accbd-9891-4006-ab8b-1f1645999ebc" + "1c71259a-0ed9-4ceb-b04a-c04ddcd428af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], "Cache-Control": [ "no-cache" ], @@ -6719,32 +6820,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14898" - ], "x-ms-correlation-request-id": [ - "9e770178-1688-42b3-a5ca-a74d51ccbf27" + "863b2139-7f37-4d12-a63d-ce8c560b1f0e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215119Z:9e770178-1688-42b3-a5ca-a74d51ccbf27" + "WESTUS2:20180510T002907Z:863b2139-7f37-4d12-a63d-ce8c560b1f0e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:19 GMT" + "Thu, 10 May 2018 00:29:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6765,7 +6866,7 @@ "10" ], "x-ms-request-id": [ - "2bcf403c-63c0-4136-bb8a-bad62fb9a9c4" + "24d0ef8d-731b-4850-b81f-4b9d06e8e1ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6778,31 +6879,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" + "14901" ], "x-ms-correlation-request-id": [ - "d61eb892-fb33-4d71-ad2e-c4b1643649f7" + "58948ac9-819c-439a-9731-43062ff53843" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215119Z:d61eb892-fb33-4d71-ad2e-c4b1643649f7" + "WESTUS2:20180510T002917Z:58948ac9-819c-439a-9731-43062ff53843" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:19 GMT" + "Thu, 10 May 2018 00:29:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6823,7 +6927,7 @@ "10" ], "x-ms-request-id": [ - "ad102e83-57f9-4992-ae9d-ac6d72efc212" + "3c13035a-7eb7-4bbf-9c8f-dc0c073f8aca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6836,31 +6940,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" + "14900" ], "x-ms-correlation-request-id": [ - "7f5d5b8b-941e-4bb9-bdf1-c8a08aa22486" + "03d821b4-e9de-401a-83a2-3814a2978234" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215119Z:7f5d5b8b-941e-4bb9-bdf1-c8a08aa22486" + "WESTUS2:20180510T002927Z:03d821b4-e9de-401a-83a2-3814a2978234" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:19 GMT" + "Thu, 10 May 2018 00:29:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6881,7 +6988,7 @@ "10" ], "x-ms-request-id": [ - "a0419175-e458-41d8-be2d-f14c19253c95" + "a322e5a3-a263-472d-8dc9-7dab117c5197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6894,31 +7001,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" + "14899" ], "x-ms-correlation-request-id": [ - "b598b0d9-48b9-4c98-8376-e38a6af84ba6" + "c429fe94-b10a-4e8a-a947-23f6bd902512" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215119Z:b598b0d9-48b9-4c98-8376-e38a6af84ba6" + "WESTUS2:20180510T002937Z:c429fe94-b10a-4e8a-a947-23f6bd902512" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:19 GMT" + "Thu, 10 May 2018 00:29:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6939,7 +7049,7 @@ "10" ], "x-ms-request-id": [ - "8cca733f-9adc-4686-a867-63832134cd34" + "174a1941-7489-483d-8813-8d95ac1b527c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6952,31 +7062,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14898" ], "x-ms-correlation-request-id": [ - "409a85c0-21ce-45ae-a3b0-6a02da0bbf9c" + "a0a5d49a-fac0-42b2-bbb1-f7c922f89afa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215120Z:409a85c0-21ce-45ae-a3b0-6a02da0bbf9c" + "WESTUS2:20180510T002948Z:a0a5d49a-fac0-42b2-bbb1-f7c922f89afa" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:19 GMT" + "Thu, 10 May 2018 00:29:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6997,11 +7110,14 @@ "10" ], "x-ms-request-id": [ - "b5dde081-3824-464b-95e7-0378879907a8" + "5af07776-db0a-44d8-9268-1789f050f585" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14897" + ], "Cache-Control": [ "no-cache" ], @@ -7009,32 +7125,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" - ], "x-ms-correlation-request-id": [ - "10fc7f32-a0a8-47a4-a3d1-04976dadfa79" + "91df27d3-a588-41e8-927f-0d4dd85269ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215120Z:10fc7f32-a0a8-47a4-a3d1-04976dadfa79" + "WESTUS2:20180510T002958Z:91df27d3-a588-41e8-927f-0d4dd85269ca" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:19 GMT" + "Thu, 10 May 2018 00:29:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7055,7 +7171,7 @@ "10" ], "x-ms-request-id": [ - "0fdcd220-b19b-4b62-94ca-df9bd4e9064d" + "1ad25a36-4021-4b0e-849a-d1c0f5e7ae57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7068,31 +7184,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" + "14896" ], "x-ms-correlation-request-id": [ - "825a50c2-7af0-49a4-bdc6-88d15c049a53" + "f1930028-626e-45f8-810b-23af69f29396" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215120Z:825a50c2-7af0-49a4-bdc6-88d15c049a53" + "WESTUS2:20180510T003008Z:f1930028-626e-45f8-810b-23af69f29396" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:19 GMT" + "Thu, 10 May 2018 00:30:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7113,7 +7232,7 @@ "10" ], "x-ms-request-id": [ - "7993faa7-c96f-4b99-b847-1a31b4e81145" + "54bd8a7c-98e6-4ee6-8342-e298952494d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7126,31 +7245,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" + "14895" ], "x-ms-correlation-request-id": [ - "622dc15e-6ae2-4b41-863b-b44ced941f69" + "c25c8b8f-df29-4990-bbd8-5b6fe26871de" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215120Z:622dc15e-6ae2-4b41-863b-b44ced941f69" + "WESTUS2:20180510T003018Z:c25c8b8f-df29-4990-bbd8-5b6fe26871de" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:20 GMT" + "Thu, 10 May 2018 00:30:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7171,7 +7293,7 @@ "10" ], "x-ms-request-id": [ - "76584500-69ce-4fda-9185-7c05ef36511b" + "f21615e1-46bb-41ab-bd50-14430bce530b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7184,31 +7306,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14890" + "14894" ], "x-ms-correlation-request-id": [ - "5dc7b4e5-d3e3-4704-9f89-35a818c9b9b1" + "9573c7e8-0fad-4854-9abf-39420a784f9b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215120Z:5dc7b4e5-d3e3-4704-9f89-35a818c9b9b1" + "WESTUS2:20180510T003028Z:9573c7e8-0fad-4854-9abf-39420a784f9b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:20 GMT" + "Thu, 10 May 2018 00:30:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7229,7 +7354,7 @@ "10" ], "x-ms-request-id": [ - "388ba9db-95d7-4868-ae45-cf0fa75908c1" + "adaf86e6-1707-4c4d-aa44-681c2255793a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7242,31 +7367,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14889" + "14893" ], "x-ms-correlation-request-id": [ - "f22a2640-2810-484d-8161-d915d9f09081" + "3018f401-f84c-44b0-8e72-9f816e9a59dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215120Z:f22a2640-2810-484d-8161-d915d9f09081" + "WESTUS2:20180510T003038Z:3018f401-f84c-44b0-8e72-9f816e9a59dc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:20 GMT" + "Thu, 10 May 2018 00:30:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7287,11 +7415,14 @@ "10" ], "x-ms-request-id": [ - "20ecbfc5-d719-478b-9a92-6598afe6a940" + "bbfd1d46-244c-4e72-b344-b6cbde96154a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], "Cache-Control": [ "no-cache" ], @@ -7299,32 +7430,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14888" - ], "x-ms-correlation-request-id": [ - "0ac1e95e-a9e4-49c1-a59f-1a399f6940eb" + "51744d34-f6f7-4473-9124-fecb33201f20" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215121Z:0ac1e95e-a9e4-49c1-a59f-1a399f6940eb" + "WESTUS2:20180510T003048Z:51744d34-f6f7-4473-9124-fecb33201f20" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:20 GMT" + "Thu, 10 May 2018 00:30:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7345,7 +7476,7 @@ "10" ], "x-ms-request-id": [ - "30b76da1-a98f-4c53-927c-954541361df6" + "1e91692d-8a50-42ba-8f16-14d12e3f640a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7358,31 +7489,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14887" + "14891" ], "x-ms-correlation-request-id": [ - "30603ccb-3f59-4007-9800-ee34424fcc00" + "825f067f-fa77-4523-ba07-e5fc46650233" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215121Z:30603ccb-3f59-4007-9800-ee34424fcc00" + "WESTUS2:20180510T003058Z:825f067f-fa77-4523-ba07-e5fc46650233" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:20 GMT" + "Thu, 10 May 2018 00:30:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7403,7 +7537,7 @@ "10" ], "x-ms-request-id": [ - "eb8afbff-cb81-486c-ad62-06e717fe06f2" + "85230f2d-cc00-49f0-959e-b7542857df1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7416,31 +7550,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14886" + "14890" ], "x-ms-correlation-request-id": [ - "df28ebba-e4d4-4712-9632-2f2ff1818ad5" + "adae3386-7873-4aca-a2d0-31903d3788c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215121Z:df28ebba-e4d4-4712-9632-2f2ff1818ad5" + "WESTUS2:20180510T003108Z:adae3386-7873-4aca-a2d0-31903d3788c8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:21 GMT" + "Thu, 10 May 2018 00:31:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7461,7 +7598,7 @@ "10" ], "x-ms-request-id": [ - "08e87665-f92b-4b9f-a4f1-46cb2c10be48" + "96945934-d060-45e3-af11-0472e517f668" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7474,31 +7611,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14885" + "14889" ], "x-ms-correlation-request-id": [ - "ca0b6370-9655-40a0-87cf-de2957230606" + "69bf2064-0ac3-4e17-b9b2-4d30c1ab6500" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215121Z:ca0b6370-9655-40a0-87cf-de2957230606" + "WESTUS2:20180510T003118Z:69bf2064-0ac3-4e17-b9b2-4d30c1ab6500" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:21 GMT" + "Thu, 10 May 2018 00:31:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7519,7 +7659,7 @@ "10" ], "x-ms-request-id": [ - "fd40a603-9722-428e-b5f5-80234e6f9b02" + "a71eeac0-0350-4742-82ff-6a24320d8573" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7532,31 +7672,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14884" + "14888" ], "x-ms-correlation-request-id": [ - "0ea7b7fc-d7f9-412f-aa54-66a0794b90a4" + "82897826-586b-486e-809c-611f99a6dd57" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215121Z:0ea7b7fc-d7f9-412f-aa54-66a0794b90a4" + "WESTUS2:20180510T003129Z:82897826-586b-486e-809c-611f99a6dd57" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:21 GMT" + "Thu, 10 May 2018 00:31:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7577,11 +7720,14 @@ "10" ], "x-ms-request-id": [ - "53739bae-fba9-4f80-a90b-3150f0105b88" + "36d2b2d3-946f-460e-943f-25ebc660bea4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14887" + ], "Cache-Control": [ "no-cache" ], @@ -7589,32 +7735,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14883" - ], "x-ms-correlation-request-id": [ - "fc1d2e67-3cd6-4b8d-975d-26133c9fe07b" + "67d0663e-1497-4cbb-b1b4-0a881c26c3da" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215121Z:fc1d2e67-3cd6-4b8d-975d-26133c9fe07b" + "WESTUS2:20180510T003139Z:67d0663e-1497-4cbb-b1b4-0a881c26c3da" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:21 GMT" + "Thu, 10 May 2018 00:31:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7635,7 +7781,7 @@ "10" ], "x-ms-request-id": [ - "478e0d62-6537-4876-93fe-e37bc7263f6e" + "6eabccd0-31d3-4c9b-8f92-a6fd6a291e81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7648,31 +7794,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14882" + "14886" ], "x-ms-correlation-request-id": [ - "59d310ca-baba-4342-972c-2961cc68e52b" + "2cce8ccb-75e2-4cc2-9112-cf526aeeb17b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215122Z:59d310ca-baba-4342-972c-2961cc68e52b" + "WESTUS2:20180510T003149Z:2cce8ccb-75e2-4cc2-9112-cf526aeeb17b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:21 GMT" + "Thu, 10 May 2018 00:31:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7693,7 +7842,7 @@ "10" ], "x-ms-request-id": [ - "04ba2ad5-f811-443e-b370-df9582ca7892" + "7d473619-657c-412f-b138-bf7207b3c7ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7706,31 +7855,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14881" + "14885" ], "x-ms-correlation-request-id": [ - "bf9ce93b-3638-49c2-928f-964b7861e4f5" + "aac75393-c97e-4aed-92a6-2bdb7a43616e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215122Z:bf9ce93b-3638-49c2-928f-964b7861e4f5" + "WESTUS2:20180510T003159Z:aac75393-c97e-4aed-92a6-2bdb7a43616e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:22 GMT" + "Thu, 10 May 2018 00:31:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7751,7 +7903,7 @@ "10" ], "x-ms-request-id": [ - "a2c6b122-dbbf-4c2a-a5f6-7f2917fa8efb" + "29e4c09c-113f-40f6-9b2f-34a1c2e3c816" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7764,31 +7916,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14880" + "14884" ], "x-ms-correlation-request-id": [ - "486c9fde-5feb-417c-80c7-164a4d6ca334" + "86ed3dfd-266c-4c60-89f4-9d900e2bbd90" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215122Z:486c9fde-5feb-417c-80c7-164a4d6ca334" + "WESTUS2:20180510T003209Z:86ed3dfd-266c-4c60-89f4-9d900e2bbd90" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:22 GMT" + "Thu, 10 May 2018 00:32:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7809,7 +7964,7 @@ "10" ], "x-ms-request-id": [ - "a1efc68b-1175-4328-872a-a175b52b18ae" + "8a73ab1e-cb62-4027-88ff-155b8f0a3c4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7822,31 +7977,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14879" + "14883" ], "x-ms-correlation-request-id": [ - "910eb008-7bb5-4dde-88f5-ebfd75d5c958" + "b308bb13-8077-4401-bf1c-2a617680213a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215122Z:910eb008-7bb5-4dde-88f5-ebfd75d5c958" + "WESTUS2:20180510T003219Z:b308bb13-8077-4401-bf1c-2a617680213a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:22 GMT" + "Thu, 10 May 2018 00:32:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7867,11 +8025,14 @@ "10" ], "x-ms-request-id": [ - "2e115eb9-ddd4-4ec1-9770-75b4f946cc5b" + "97cc883a-3ba5-4033-b485-78efadbc7713" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14882" + ], "Cache-Control": [ "no-cache" ], @@ -7879,32 +8040,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14878" - ], "x-ms-correlation-request-id": [ - "79021041-d2f4-4c93-bd32-ba3336e1926c" + "876056c2-5943-408d-9b58-b27013928d4b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215122Z:79021041-d2f4-4c93-bd32-ba3336e1926c" + "WESTUS2:20180510T003229Z:876056c2-5943-408d-9b58-b27013928d4b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:22 GMT" + "Thu, 10 May 2018 00:32:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7925,7 +8086,7 @@ "10" ], "x-ms-request-id": [ - "b10b59d6-cf15-4dbb-8d0a-e254cd3d4977" + "73161eb6-07b9-4904-8d96-c803bf9f5d2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7938,31 +8099,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14877" + "14881" ], "x-ms-correlation-request-id": [ - "e38f7fa2-a9df-4744-8d63-ea6a14975ef0" + "f765e943-02dd-44bc-8653-110c53259f1a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215123Z:e38f7fa2-a9df-4744-8d63-ea6a14975ef0" + "WESTUS2:20180510T003239Z:f765e943-02dd-44bc-8653-110c53259f1a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:22 GMT" + "Thu, 10 May 2018 00:32:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7983,7 +8147,7 @@ "10" ], "x-ms-request-id": [ - "b0f146ac-bcb1-433d-879b-019eebef4a26" + "11b4270c-2fdd-4ee5-b6c4-977e5af130eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7996,31 +8160,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14876" + "14880" ], "x-ms-correlation-request-id": [ - "f67d6c96-51fd-42e7-9f1b-8f7a9db344d5" + "a2f28998-2394-4948-8665-51e7dd9b534b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215123Z:f67d6c96-51fd-42e7-9f1b-8f7a9db344d5" + "WESTUS2:20180510T003249Z:a2f28998-2394-4948-8665-51e7dd9b534b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:23 GMT" + "Thu, 10 May 2018 00:32:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8041,7 +8208,7 @@ "10" ], "x-ms-request-id": [ - "a94e508c-87ef-4766-9059-58f7bebbbfbc" + "c68cb4a1-f95d-4b35-8ec7-02b0c1e790fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8054,31 +8221,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14875" + "14879" ], "x-ms-correlation-request-id": [ - "1fe9d87c-c5bb-4ea8-9e9f-7426de6bba66" + "7d1e2abd-f81c-42b0-9b35-021b4150ef48" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215123Z:1fe9d87c-c5bb-4ea8-9e9f-7426de6bba66" + "WESTUS2:20180510T003259Z:7d1e2abd-f81c-42b0-9b35-021b4150ef48" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:23 GMT" + "Thu, 10 May 2018 00:32:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8099,7 +8269,7 @@ "10" ], "x-ms-request-id": [ - "a87cdcdf-eea0-4767-b2cc-f818e9e2f6dd" + "681d62c1-fa9e-4f91-9268-5823970074cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8112,31 +8282,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14874" + "14878" ], "x-ms-correlation-request-id": [ - "2f7449f8-f93c-429b-a43e-039c16214670" + "d70c9dcd-a11a-4c5b-aec7-b4f77d733a85" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215123Z:2f7449f8-f93c-429b-a43e-039c16214670" + "WESTUS2:20180510T003309Z:d70c9dcd-a11a-4c5b-aec7-b4f77d733a85" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:23 GMT" + "Thu, 10 May 2018 00:33:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8157,11 +8330,14 @@ "10" ], "x-ms-request-id": [ - "e78949cc-6a39-4621-97ba-31e8b94e866e" + "172a7ebd-3749-4b70-ae49-a88b1ca2826e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14877" + ], "Cache-Control": [ "no-cache" ], @@ -8169,32 +8345,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14873" - ], "x-ms-correlation-request-id": [ - "6eedcf62-a534-4bd1-b974-336e7481ada8" + "2de31dd7-a4c9-4ecc-a5e2-80355d46bc59" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215123Z:6eedcf62-a534-4bd1-b974-336e7481ada8" + "WESTUS2:20180510T003319Z:2de31dd7-a4c9-4ecc-a5e2-80355d46bc59" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:23 GMT" + "Thu, 10 May 2018 00:33:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8215,7 +8391,7 @@ "10" ], "x-ms-request-id": [ - "50c743e5-f534-4c0e-8806-5a0a5dbea862" + "d1ca3489-b4bc-4ae9-8b96-e7aef72d4954" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8228,31 +8404,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14872" + "14876" ], "x-ms-correlation-request-id": [ - "25ff4134-6cfb-462d-86f1-164fa36c6126" + "f6d9829c-dba5-420f-aa92-52d1a0e9b05c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215124Z:25ff4134-6cfb-462d-86f1-164fa36c6126" + "WESTUS2:20180510T003329Z:f6d9829c-dba5-420f-aa92-52d1a0e9b05c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:23 GMT" + "Thu, 10 May 2018 00:33:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8273,7 +8452,7 @@ "10" ], "x-ms-request-id": [ - "007734e4-6bd2-4f93-8c90-44c9725bf66d" + "a37dbaf4-73e4-49f4-acb2-8d08be77a117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8286,31 +8465,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14871" + "14875" ], "x-ms-correlation-request-id": [ - "1d124673-3c9f-4dda-9954-f72cf1fc5206" + "408da366-2f88-4ce5-85df-4fbf2a9922c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215124Z:1d124673-3c9f-4dda-9954-f72cf1fc5206" + "WESTUS2:20180510T003339Z:408da366-2f88-4ce5-85df-4fbf2a9922c6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:23 GMT" + "Thu, 10 May 2018 00:33:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8331,7 +8513,7 @@ "10" ], "x-ms-request-id": [ - "dcafec97-b3e3-4c9e-a723-215cda9bc175" + "7b44b827-62e2-4b31-b099-bb8be712e0ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8344,31 +8526,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14870" + "14874" ], "x-ms-correlation-request-id": [ - "60d73fea-5f2b-49e4-b058-81ae0447e187" + "00a181c6-9599-48ed-966f-11462a0c9320" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215124Z:60d73fea-5f2b-49e4-b058-81ae0447e187" + "WESTUS2:20180510T003349Z:00a181c6-9599-48ed-966f-11462a0c9320" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:24 GMT" + "Thu, 10 May 2018 00:33:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8389,7 +8574,7 @@ "10" ], "x-ms-request-id": [ - "3c4068a1-b208-4a55-9a3a-05684750fc1a" + "b9643f56-e250-429a-bebc-772bc1922e45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8402,31 +8587,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "14873" ], "x-ms-correlation-request-id": [ - "0d9eb108-63b1-49eb-a12d-c1503b9c992a" + "0b8ca70b-084c-4e63-9727-17eae134b6f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215124Z:0d9eb108-63b1-49eb-a12d-c1503b9c992a" + "WESTUS2:20180510T003400Z:0b8ca70b-084c-4e63-9727-17eae134b6f6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:24 GMT" + "Thu, 10 May 2018 00:33:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8447,11 +8635,14 @@ "10" ], "x-ms-request-id": [ - "9f498beb-8476-467d-8a06-1529af7679ac" + "298e4a25-122b-4e05-8a0a-856064a78562" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14872" + ], "Cache-Control": [ "no-cache" ], @@ -8459,32 +8650,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14868" - ], "x-ms-correlation-request-id": [ - "cb4e1256-e7f7-45f1-aa06-d8f5e5eb4aef" + "ba5e0717-4ab1-491c-84a3-04710761e570" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215124Z:cb4e1256-e7f7-45f1-aa06-d8f5e5eb4aef" + "WESTUS2:20180510T003410Z:ba5e0717-4ab1-491c-84a3-04710761e570" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:24 GMT" + "Thu, 10 May 2018 00:34:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8505,7 +8696,7 @@ "10" ], "x-ms-request-id": [ - "238e98ed-575c-42a5-bfc9-a17475775163" + "a5007ec9-0816-4383-b436-eb69226272c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8518,37 +8709,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14867" + "14871" ], "x-ms-correlation-request-id": [ - "c20e7a3b-010a-4481-869b-795f5fbd99ff" + "20f37937-39a4-477c-8a05-243351bd1ce8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215124Z:c20e7a3b-010a-4481-869b-795f5fbd99ff" + "WESTUS2:20180510T003420Z:20f37937-39a4-477c-8a05-243351bd1ce8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:24 GMT" + "Thu, 10 May 2018 00:34:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/75e8e200-45e1-4ec3-a71d-6a0206797995?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzVlOGUyMDAtNDVlMS00ZWMzLWE3MWQtNmEwMjA2Nzk3OTk1P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "30" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8559,11 +8753,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "59751a48-bef3-4921-b937-2dac537110be" + "3acea9d2-b534-4e65-a44d-b5cd1abf1b94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8576,31 +8767,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14866" + "14870" ], "x-ms-correlation-request-id": [ - "b4cd38ab-2e0a-4081-a3a2-3e584dc2ca6f" + "f680d13c-b080-4d0c-81b2-7ae2fee9d932" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215125Z:b4cd38ab-2e0a-4081-a3a2-3e584dc2ca6f" + "WESTUS2:20180510T003430Z:f680d13c-b080-4d0c-81b2-7ae2fee9d932" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:24 GMT" + "Thu, 10 May 2018 00:34:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/440997e3-de25-473b-a38d-b25b40bab62d?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQwOTk3ZTMtZGUyNS00NzNiLWEzOGQtYjI1YjQwYmFiNjJkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8621,7 +8815,7 @@ "10" ], "x-ms-request-id": [ - "cb9e96ad-8f7d-4a76-8926-5c5063c80dc4" + "2a858c07-9614-4ca5-9a11-a7669f0b83c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8637,28 +8831,31 @@ "14865" ], "x-ms-correlation-request-id": [ - "df81ba45-e263-4186-bc39-f3c8d58aede0" + "799b762d-03b5-4de1-8b28-1ffad032722e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215125Z:df81ba45-e263-4186-bc39-f3c8d58aede0" + "WESTUS2:20180510T003441Z:799b762d-03b5-4de1-8b28-1ffad032722e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:24 GMT" + "Thu, 10 May 2018 00:34:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/440997e3-de25-473b-a38d-b25b40bab62d?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQwOTk3ZTMtZGUyNS00NzNiLWEzOGQtYjI1YjQwYmFiNjJkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8679,7 +8876,7 @@ "10" ], "x-ms-request-id": [ - "b19242bd-1980-46b4-b281-788c939ef978" + "bd0d58ba-506a-4656-a701-7b6bc06cde3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8695,28 +8892,31 @@ "14864" ], "x-ms-correlation-request-id": [ - "b1734d8e-204e-48f6-8c94-aa3cba6b6a7c" + "68f9cac7-706f-4e0a-981f-820106830932" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215125Z:b1734d8e-204e-48f6-8c94-aa3cba6b6a7c" + "WESTUS2:20180510T003451Z:68f9cac7-706f-4e0a-981f-820106830932" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:25 GMT" + "Thu, 10 May 2018 00:34:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/440997e3-de25-473b-a38d-b25b40bab62d?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQwOTk3ZTMtZGUyNS00NzNiLWEzOGQtYjI1YjQwYmFiNjJkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8737,7 +8937,7 @@ "10" ], "x-ms-request-id": [ - "1167823f-a791-4b2d-b1ee-3f8864f90bdb" + "a9d43ad2-a8a1-4169-8031-e7bbeb78512b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8753,28 +8953,31 @@ "14863" ], "x-ms-correlation-request-id": [ - "a274fcb6-40f1-460f-ba32-7158405e12b3" + "5d9b0302-f228-4a47-a9f9-0890006c1d58" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215125Z:a274fcb6-40f1-460f-ba32-7158405e12b3" + "WESTUS2:20180510T003501Z:5d9b0302-f228-4a47-a9f9-0890006c1d58" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:25 GMT" + "Thu, 10 May 2018 00:35:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/440997e3-de25-473b-a38d-b25b40bab62d?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQwOTk3ZTMtZGUyNS00NzNiLWEzOGQtYjI1YjQwYmFiNjJkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8795,11 +8998,14 @@ "10" ], "x-ms-request-id": [ - "de404de6-aa24-4226-94da-ecf68694cbbf" + "b8cbdd45-72fd-4407-ba35-e5d10774386a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14862" + ], "Cache-Control": [ "no-cache" ], @@ -8807,32 +9013,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14862" - ], "x-ms-correlation-request-id": [ - "2dfc0533-c4dc-4db0-8603-121bccc7fe38" + "be638a85-dd74-4678-abc3-3b2ce5a52659" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215125Z:2dfc0533-c4dc-4db0-8603-121bccc7fe38" + "WESTUS2:20180510T003511Z:be638a85-dd74-4678-abc3-3b2ce5a52659" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:25 GMT" + "Thu, 10 May 2018 00:35:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/440997e3-de25-473b-a38d-b25b40bab62d?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQwOTk3ZTMtZGUyNS00NzNiLWEzOGQtYjI1YjQwYmFiNjJkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8853,7 +9059,7 @@ "10" ], "x-ms-request-id": [ - "50d43ef6-bef1-4ac1-999c-005ed9514b4d" + "ba9a5b99-a936-4fd4-a9aa-ec8d80d1a25b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8869,28 +9075,31 @@ "14861" ], "x-ms-correlation-request-id": [ - "99d2b64d-82c2-4420-abb7-be95c1526864" + "86e85ac4-9329-4bb1-853b-a541df255c84" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215125Z:99d2b64d-82c2-4420-abb7-be95c1526864" + "WESTUS2:20180510T003521Z:86e85ac4-9329-4bb1-853b-a541df255c84" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:25 GMT" + "Thu, 10 May 2018 00:35:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/440997e3-de25-473b-a38d-b25b40bab62d?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQwOTk3ZTMtZGUyNS00NzNiLWEzOGQtYjI1YjQwYmFiNjJkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8911,7 +9120,7 @@ "10" ], "x-ms-request-id": [ - "7211f5f3-060a-4e81-9f50-919ed5760ffb" + "df145fe6-c91b-4e13-b3ff-658dd814d92d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8927,34 +9136,37 @@ "14860" ], "x-ms-correlation-request-id": [ - "fb9fd03c-c8f3-4a0b-9efa-27069aac4a02" + "4eecdd9b-877b-44a6-bfd0-9c1e2f8f0258" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215126Z:fb9fd03c-c8f3-4a0b-9efa-27069aac4a02" + "WESTUS2:20180510T003531Z:4eecdd9b-877b-44a6-bfd0-9c1e2f8f0258" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:25 GMT" + "Thu, 10 May 2018 00:35:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/440997e3-de25-473b-a38d-b25b40bab62d?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQwOTk3ZTMtZGUyNS00NzNiLWEzOGQtYjI1YjQwYmFiNjJkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "30" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8965,11 +9177,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "98047ce6-4aad-4c56-bfce-012b86156ed5" + "7fb8bcda-3945-4d0e-9246-c49988b2c667" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8985,92 +9194,47 @@ "14859" ], "x-ms-correlation-request-id": [ - "9a1603c5-7b5b-41e7-b0ae-ff0e2932090f" + "9fd1cbb5-2953-471c-8772-069de41cd98b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215126Z:9a1603c5-7b5b-41e7-b0ae-ff0e2932090f" + "WESTUS2:20180510T003541Z:9fd1cbb5-2953-471c-8772-069de41cd98b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:25 GMT" + "Thu, 10 May 2018 00:35:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps7893/providers/Microsoft.Network/virtualnetworkgateways/ps5999/generatevpnprofile?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNzg5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtnYXRld2F5cy9wczU5OTkvZ2VuZXJhdGV2cG5wcm9maWxlP2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestMethod": "POST", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"processorArchitecture\": \"Amd64\",\r\n \"authenticationMethod\": \"EAPTLS\",\r\n \"radiusServerAuthCertificate\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"clientRootCertificates\": []\r\n}", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db8abafc-13c9-4a82-a4b8-29e3d47da91b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14858" - ], - "x-ms-correlation-request-id": [ - "118ee552-8e8c-41c9-b3a2-d82cc81b2922" + "Content-Length": [ + "1284" ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215126Z:118ee552-8e8c-41c9-b3a2-d82cc81b2922" + "x-ms-client-request-id": [ + "1fea285a-720c-41ce-a695-116a7e199396" ], - "Date": [ - "Tue, 29 Aug 2017 21:51:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9085,7 +9249,7 @@ "10" ], "x-ms-request-id": [ - "88ddc555-fddf-41b0-9235-c86583c54ed9" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9093,100 +9257,48 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" - ], - "x-ms-correlation-request-id": [ - "a36fa25b-72bf-4bc8-9fdd-4193d1765367" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215126Z:a36fa25b-72bf-4bc8-9fdd-4193d1765367" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33ed99a3-78c7-4420-b4ea-7560e95f4333" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14856" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "2656c4be-f176-4c11-84d4-7d93d410223a" + "f7717196-0876-4d7d-8a7b-7249a4bc38d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215126Z:2656c4be-f176-4c11-84d4-7d93d410223a" + "WESTUS2:20180510T003543Z:f7717196-0876-4d7d-8a7b-7249a4bc38d5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:26 GMT" + "Thu, 10 May 2018 00:35:42 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9201,7 +9313,10 @@ "10" ], "x-ms-request-id": [ - "44cf41fe-29a7-4656-b0a9-2d614b443326" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9209,6 +9324,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -9217,34 +9335,37 @@ "14855" ], "x-ms-correlation-request-id": [ - "84000e06-2012-4c4d-a2f0-361448e26437" + "be0d1568-05f0-46d9-94be-fbc4c44e5049" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215127Z:84000e06-2012-4c4d-a2f0-361448e26437" + "WESTUS2:20180510T003543Z:be0d1568-05f0-46d9-94be-fbc4c44e5049" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:26 GMT" + "Thu, 10 May 2018 00:35:42 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9259,7 +9380,10 @@ "10" ], "x-ms-request-id": [ - "6932d722-eae8-4dce-a1dd-69176bbe8f04" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9267,6 +9391,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -9275,34 +9402,37 @@ "14854" ], "x-ms-correlation-request-id": [ - "ccf08a3a-a9f5-4a04-bd79-aeb2f6cca564" + "0aadbfd6-6cb2-4fa2-9ba0-b0744737fb50" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215127Z:ccf08a3a-a9f5-4a04-bd79-aeb2f6cca564" + "WESTUS2:20180510T003543Z:0aadbfd6-6cb2-4fa2-9ba0-b0744737fb50" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:26 GMT" + "Thu, 10 May 2018 00:35:42 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9317,7 +9447,10 @@ "10" ], "x-ms-request-id": [ - "c981d0d7-b686-4858-b358-ddd0106c1fe3" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9325,6 +9458,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -9333,34 +9469,37 @@ "14853" ], "x-ms-correlation-request-id": [ - "62bf96b0-6746-430a-9583-f5fdbb8af90e" + "de836343-df9c-4692-9388-d0c49f6c2e37" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215127Z:62bf96b0-6746-430a-9583-f5fdbb8af90e" + "WESTUS2:20180510T003543Z:de836343-df9c-4692-9388-d0c49f6c2e37" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:26 GMT" + "Thu, 10 May 2018 00:35:42 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9375,7 +9514,10 @@ "10" ], "x-ms-request-id": [ - "e348b6df-0c3c-493a-86a3-368d3ef4e93d" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9383,6 +9525,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -9391,34 +9536,37 @@ "14852" ], "x-ms-correlation-request-id": [ - "5a0bd7df-924f-40b9-8cb1-417ce374a57d" + "3e51b697-c649-4978-80af-653a968813a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215127Z:5a0bd7df-924f-40b9-8cb1-417ce374a57d" + "WESTUS2:20180510T003543Z:3e51b697-c649-4978-80af-653a968813a4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:27 GMT" + "Thu, 10 May 2018 00:35:42 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9433,7 +9581,10 @@ "10" ], "x-ms-request-id": [ - "54b4f205-a877-481c-b303-10fd3d53c802" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9441,6 +9592,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -9449,34 +9603,37 @@ "14851" ], "x-ms-correlation-request-id": [ - "12cffade-cf54-412e-b095-f455242fbb74" + "4a20b9ad-47dd-4ed1-9c9c-5b8f8c9eff04" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215127Z:12cffade-cf54-412e-b095-f455242fbb74" + "WESTUS2:20180510T003543Z:4a20b9ad-47dd-4ed1-9c9c-5b8f8c9eff04" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:27 GMT" + "Thu, 10 May 2018 00:35:42 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9491,7 +9648,10 @@ "10" ], "x-ms-request-id": [ - "2a867bfb-90a8-4d29-b2cc-4adabb4ecca5" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9499,6 +9659,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -9507,34 +9670,37 @@ "14850" ], "x-ms-correlation-request-id": [ - "4aac25b0-d01a-460e-bcfc-54a6331f64d5" + "4a88699e-748c-407d-bdc5-0333adea3483" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215127Z:4aac25b0-d01a-460e-bcfc-54a6331f64d5" + "WESTUS2:20180510T003543Z:4a88699e-748c-407d-bdc5-0333adea3483" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:27 GMT" + "Thu, 10 May 2018 00:35:42 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9549,7 +9715,10 @@ "10" ], "x-ms-request-id": [ - "b5875825-ca9c-41b5-9736-df4aeaca33c6" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9557,6 +9726,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -9565,34 +9737,37 @@ "14849" ], "x-ms-correlation-request-id": [ - "d9949782-fce5-45d2-9326-420568bc1c15" + "3d1bb443-7672-4e05-bc26-49343d86b814" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215128Z:d9949782-fce5-45d2-9326-420568bc1c15" + "WESTUS2:20180510T003543Z:3d1bb443-7672-4e05-bc26-49343d86b814" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:27 GMT" + "Thu, 10 May 2018 00:35:42 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9607,7 +9782,10 @@ "10" ], "x-ms-request-id": [ - "43a3130e-6dcf-4128-b059-0b65521e95c4" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9615,6 +9793,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -9623,34 +9804,37 @@ "14848" ], "x-ms-correlation-request-id": [ - "02e83cc8-9d7d-4488-890c-e47c716c2edf" + "3f5aeffe-0905-4a0d-9188-1e3a27fb79a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215128Z:02e83cc8-9d7d-4488-890c-e47c716c2edf" + "WESTUS2:20180510T003543Z:3f5aeffe-0905-4a0d-9188-1e3a27fb79a8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:27 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9665,7 +9849,10 @@ "10" ], "x-ms-request-id": [ - "b89a5d53-791f-4ffa-9e84-30f0238c04ea" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9673,6 +9860,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -9681,34 +9871,37 @@ "14847" ], "x-ms-correlation-request-id": [ - "f60a815b-a914-404a-819e-67e41b6c8776" + "b518656e-eb05-4d85-89ef-57477961754d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215128Z:f60a815b-a914-404a-819e-67e41b6c8776" + "WESTUS2:20180510T003543Z:b518656e-eb05-4d85-89ef-57477961754d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:28 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9723,7 +9916,10 @@ "10" ], "x-ms-request-id": [ - "31aec405-2abd-4cde-87e9-c1f5f1331ade" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9731,6 +9927,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -9739,34 +9938,37 @@ "14846" ], "x-ms-correlation-request-id": [ - "92f26745-cdc0-465e-8a03-d41ce0705b0e" + "204d0ec6-c687-484c-8405-0cc85030e21f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215128Z:92f26745-cdc0-465e-8a03-d41ce0705b0e" + "WESTUS2:20180510T003544Z:204d0ec6-c687-484c-8405-0cc85030e21f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:28 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9781,7 +9983,10 @@ "10" ], "x-ms-request-id": [ - "dcbbd5a1-d7f7-42ba-9178-a0cf0328c880" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9789,6 +9994,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -9797,34 +10005,37 @@ "14845" ], "x-ms-correlation-request-id": [ - "e56084cf-11b3-48c1-8f8e-a55a3ee87a73" + "3b2dbbec-65ad-4fa0-af70-1f68ad7b96a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215128Z:e56084cf-11b3-48c1-8f8e-a55a3ee87a73" + "WESTUS2:20180510T003544Z:3b2dbbec-65ad-4fa0-af70-1f68ad7b96a9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:28 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9839,7 +10050,10 @@ "10" ], "x-ms-request-id": [ - "21c772d8-08ec-463d-826d-5434653da265" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9847,6 +10061,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -9855,34 +10072,37 @@ "14844" ], "x-ms-correlation-request-id": [ - "1ee0d218-f740-49ce-bfec-05aa19a4b438" + "5cc80637-2339-445f-8124-46ad03b7abaf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215129Z:1ee0d218-f740-49ce-bfec-05aa19a4b438" + "WESTUS2:20180510T003544Z:5cc80637-2339-445f-8124-46ad03b7abaf" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:28 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9897,7 +10117,10 @@ "10" ], "x-ms-request-id": [ - "f767fe33-7841-466d-b38c-1d8eb9bcdf71" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9905,6 +10128,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -9913,34 +10139,37 @@ "14843" ], "x-ms-correlation-request-id": [ - "7c67bb8e-d02b-4991-af27-992afbf354a6" + "f195a866-54ec-4974-ae54-645d51065749" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215129Z:7c67bb8e-d02b-4991-af27-992afbf354a6" + "WESTUS2:20180510T003544Z:f195a866-54ec-4974-ae54-645d51065749" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:28 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9955,7 +10184,10 @@ "10" ], "x-ms-request-id": [ - "7a6e61b0-b673-415b-bcd6-a8003cda72cf" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9963,6 +10195,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -9971,34 +10206,37 @@ "14842" ], "x-ms-correlation-request-id": [ - "60fd8123-fbb6-40c9-86f9-653e838f6dea" + "39d49d42-e513-4661-843b-c8885e943681" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215129Z:60fd8123-fbb6-40c9-86f9-653e838f6dea" + "WESTUS2:20180510T003544Z:39d49d42-e513-4661-843b-c8885e943681" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:28 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10013,7 +10251,10 @@ "10" ], "x-ms-request-id": [ - "9435921f-71b0-4e5f-8317-93ee794e36fe" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10021,6 +10262,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10029,34 +10273,37 @@ "14841" ], "x-ms-correlation-request-id": [ - "aee19e32-dd59-4d0b-94f6-85cabfa88a31" + "00bd2e4e-9c04-4d19-8d0a-91d639fdf2a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215129Z:aee19e32-dd59-4d0b-94f6-85cabfa88a31" + "WESTUS2:20180510T003544Z:00bd2e4e-9c04-4d19-8d0a-91d639fdf2a5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:28 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10071,7 +10318,10 @@ "10" ], "x-ms-request-id": [ - "37bf71b2-d500-4bcc-87d1-1db4d5b083b1" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10079,6 +10329,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10087,34 +10340,37 @@ "14840" ], "x-ms-correlation-request-id": [ - "9b9046be-49c0-4744-bcce-fb18dc32dc1f" + "ab15d8ce-c86b-4760-8c69-f1e6b25e3064" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215129Z:9b9046be-49c0-4744-bcce-fb18dc32dc1f" + "WESTUS2:20180510T003544Z:ab15d8ce-c86b-4760-8c69-f1e6b25e3064" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:29 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10129,7 +10385,10 @@ "10" ], "x-ms-request-id": [ - "40ffa25a-8356-4b09-a0cc-298b4d6bdf3c" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10137,6 +10396,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10145,34 +10407,37 @@ "14839" ], "x-ms-correlation-request-id": [ - "4b13741e-177d-4795-aab5-4d22a779c2f0" + "08c84f09-4aa3-4c8d-980e-c9af31975382" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215129Z:4b13741e-177d-4795-aab5-4d22a779c2f0" + "WESTUS2:20180510T003544Z:08c84f09-4aa3-4c8d-980e-c9af31975382" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:29 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10187,7 +10452,10 @@ "10" ], "x-ms-request-id": [ - "8800fa6d-cb89-4180-8088-d62ff7ee751f" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10195,6 +10463,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10203,34 +10474,37 @@ "14838" ], "x-ms-correlation-request-id": [ - "1d41c0df-3960-4787-95ee-6c17ee5c306f" + "5c80669b-cc64-457d-a86c-d307c7f7f961" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215129Z:1d41c0df-3960-4787-95ee-6c17ee5c306f" + "WESTUS2:20180510T003544Z:5c80669b-cc64-457d-a86c-d307c7f7f961" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:29 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10245,7 +10519,10 @@ "10" ], "x-ms-request-id": [ - "b6caddb2-d7bb-42f7-9e5d-8a407d05b3bb" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10253,6 +10530,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10261,34 +10541,37 @@ "14837" ], "x-ms-correlation-request-id": [ - "4ffb0e4f-5884-45b9-86f1-17bd920ccf94" + "8e5de4bf-3d4c-410f-9ecc-6eb5c8526ac7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215130Z:4ffb0e4f-5884-45b9-86f1-17bd920ccf94" + "WESTUS2:20180510T003544Z:8e5de4bf-3d4c-410f-9ecc-6eb5c8526ac7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:29 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10303,7 +10586,10 @@ "10" ], "x-ms-request-id": [ - "e09212fa-2ea6-4af9-b288-ab7752456e98" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10311,6 +10597,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10319,34 +10608,37 @@ "14836" ], "x-ms-correlation-request-id": [ - "207201d6-1209-4534-87fc-90eaad0bddd5" + "6fefb782-e7a3-4c56-a91d-ad8d81c1ed80" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215130Z:207201d6-1209-4534-87fc-90eaad0bddd5" + "WESTUS2:20180510T003544Z:6fefb782-e7a3-4c56-a91d-ad8d81c1ed80" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:29 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10361,7 +10653,10 @@ "10" ], "x-ms-request-id": [ - "58d6312f-20cb-4c36-93d7-df21e030bb19" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10369,6 +10664,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10377,34 +10675,37 @@ "14835" ], "x-ms-correlation-request-id": [ - "44d40632-275d-4449-9658-1d9b2a098b96" + "7c70e832-53e2-499b-a773-3791c79796da" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215130Z:44d40632-275d-4449-9658-1d9b2a098b96" + "WESTUS2:20180510T003544Z:7c70e832-53e2-499b-a773-3791c79796da" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:29 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10419,7 +10720,10 @@ "10" ], "x-ms-request-id": [ - "74649001-01ec-459d-89b6-bf160d91f6f4" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10427,6 +10731,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10435,34 +10742,37 @@ "14834" ], "x-ms-correlation-request-id": [ - "84b6e919-90e7-4de5-9dd0-579f7deacfbe" + "9f0b7c38-673c-4dae-85c8-ce98188b3223" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215130Z:84b6e919-90e7-4de5-9dd0-579f7deacfbe" + "WESTUS2:20180510T003544Z:9f0b7c38-673c-4dae-85c8-ce98188b3223" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:30 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10477,7 +10787,10 @@ "10" ], "x-ms-request-id": [ - "ff9dacf0-e969-4c29-ab08-a63b6d477ff9" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10485,6 +10798,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10493,34 +10809,37 @@ "14833" ], "x-ms-correlation-request-id": [ - "368ffdb0-babb-432e-8cd3-1bca7ae9e4ac" + "3acd5376-6939-469c-a153-5c650b47f677" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215130Z:368ffdb0-babb-432e-8cd3-1bca7ae9e4ac" + "WESTUS2:20180510T003544Z:3acd5376-6939-469c-a153-5c650b47f677" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:30 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10535,7 +10854,10 @@ "10" ], "x-ms-request-id": [ - "c7cf7ec8-1372-4846-b81f-05d3355a9da7" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10543,6 +10865,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10551,34 +10876,37 @@ "14832" ], "x-ms-correlation-request-id": [ - "273f63bb-8497-4790-8932-9f41a9feb93a" + "5a8881ff-07d3-43c8-8c11-eac1abdfa933" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215131Z:273f63bb-8497-4790-8932-9f41a9feb93a" + "WESTUS2:20180510T003544Z:5a8881ff-07d3-43c8-8c11-eac1abdfa933" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:30 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10593,7 +10921,10 @@ "10" ], "x-ms-request-id": [ - "f1f57874-09ea-4959-8988-4fdfb460f0e2" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10601,6 +10932,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10609,34 +10943,37 @@ "14831" ], "x-ms-correlation-request-id": [ - "d17dd330-43d6-4474-943e-e78cd7306fa6" + "f05d3044-34d4-4ef1-81d6-4f89c44c3fb1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215131Z:d17dd330-43d6-4474-943e-e78cd7306fa6" + "WESTUS2:20180510T003544Z:f05d3044-34d4-4ef1-81d6-4f89c44c3fb1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:30 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10651,7 +10988,10 @@ "10" ], "x-ms-request-id": [ - "1e0b302d-c72f-49bd-9804-42f74e9c5a6f" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10659,6 +10999,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10667,34 +11010,37 @@ "14830" ], "x-ms-correlation-request-id": [ - "345f4290-3016-4bf6-b59b-4dedf81030e6" + "ec8e9491-4d29-4152-85b2-dec6cd508946" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215131Z:345f4290-3016-4bf6-b59b-4dedf81030e6" + "WESTUS2:20180510T003544Z:ec8e9491-4d29-4152-85b2-dec6cd508946" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:30 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10709,7 +11055,10 @@ "10" ], "x-ms-request-id": [ - "624b2526-c3c5-45ab-8510-c5a830eae96c" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10717,6 +11066,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10725,34 +11077,37 @@ "14829" ], "x-ms-correlation-request-id": [ - "686280c0-217e-4fdd-9806-a1f9c654e763" + "32cb1dda-3b32-479a-9912-7290609f6ff2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215131Z:686280c0-217e-4fdd-9806-a1f9c654e763" + "WESTUS2:20180510T003544Z:32cb1dda-3b32-479a-9912-7290609f6ff2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:31 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10767,7 +11122,10 @@ "10" ], "x-ms-request-id": [ - "e56781ca-bf97-4a46-9076-529006e88679" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10775,6 +11133,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10783,34 +11144,37 @@ "14828" ], "x-ms-correlation-request-id": [ - "8d320f83-9054-46c4-b738-9c327460c4ed" + "9f783a1e-593f-4bb6-99c0-bb840b189671" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215131Z:8d320f83-9054-46c4-b738-9c327460c4ed" + "WESTUS2:20180510T003544Z:9f783a1e-593f-4bb6-99c0-bb840b189671" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:31 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10825,7 +11189,10 @@ "10" ], "x-ms-request-id": [ - "4f023c42-250e-4c3b-abd6-3b9c8c47a239" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10833,6 +11200,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10841,34 +11211,37 @@ "14827" ], "x-ms-correlation-request-id": [ - "895aa5b0-12ab-4bfe-8719-41ab3151bc95" + "6c738cf6-8857-46f1-9bfb-264785369efa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215131Z:895aa5b0-12ab-4bfe-8719-41ab3151bc95" + "WESTUS2:20180510T003544Z:6c738cf6-8857-46f1-9bfb-264785369efa" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:31 GMT" + "Thu, 10 May 2018 00:35:43 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10883,7 +11256,10 @@ "10" ], "x-ms-request-id": [ - "bf3a19fe-ca4a-4c4e-a0a3-ad9932bd329c" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10891,6 +11267,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10899,34 +11278,37 @@ "14826" ], "x-ms-correlation-request-id": [ - "fc7fc44d-90aa-4c7b-981d-b5b654db8ad7" + "635df74e-ea48-4ef1-9553-5332235ae383" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215132Z:fc7fc44d-90aa-4c7b-981d-b5b654db8ad7" + "WESTUS2:20180510T003544Z:635df74e-ea48-4ef1-9553-5332235ae383" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:31 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10941,7 +11323,10 @@ "10" ], "x-ms-request-id": [ - "43373bfc-9ae2-48ca-af84-294dec698677" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10949,6 +11334,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -10957,34 +11345,37 @@ "14825" ], "x-ms-correlation-request-id": [ - "f7e0bf6f-36ce-4c3a-a364-d513dc271fa2" + "133ae6c5-9edb-4a00-8da1-cd4aad8ebc7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215132Z:f7e0bf6f-36ce-4c3a-a364-d513dc271fa2" + "WESTUS2:20180510T003545Z:133ae6c5-9edb-4a00-8da1-cd4aad8ebc7b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:31 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10999,7 +11390,10 @@ "10" ], "x-ms-request-id": [ - "a140d115-ea24-42f9-9508-e053f4539a37" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11007,6 +11401,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11015,34 +11412,37 @@ "14824" ], "x-ms-correlation-request-id": [ - "da31609b-f510-4a0c-8070-afd03bebed28" + "86039b46-141b-423d-bd2b-c9f66242a410" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215132Z:da31609b-f510-4a0c-8070-afd03bebed28" + "WESTUS2:20180510T003545Z:86039b46-141b-423d-bd2b-c9f66242a410" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:31 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11057,7 +11457,10 @@ "10" ], "x-ms-request-id": [ - "756ba379-8945-4b52-ad69-4a7d828a7451" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11065,6 +11468,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11073,34 +11479,37 @@ "14823" ], "x-ms-correlation-request-id": [ - "5f18f122-c20a-4075-b435-584edacf009a" + "560c067e-c2b1-4cf4-844e-9749c5e0982e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215132Z:5f18f122-c20a-4075-b435-584edacf009a" + "WESTUS2:20180510T003545Z:560c067e-c2b1-4cf4-844e-9749c5e0982e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:32 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11115,7 +11524,10 @@ "10" ], "x-ms-request-id": [ - "63b67cef-7766-4956-b8ea-7a26450447e2" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11123,6 +11535,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11131,34 +11546,37 @@ "14822" ], "x-ms-correlation-request-id": [ - "dbda1cab-3757-4747-9b01-804b481d73d6" + "9a3f0547-e5e4-459c-ab49-dba4e13a03f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215132Z:dbda1cab-3757-4747-9b01-804b481d73d6" + "WESTUS2:20180510T003545Z:9a3f0547-e5e4-459c-ab49-dba4e13a03f9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:32 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11173,7 +11591,10 @@ "10" ], "x-ms-request-id": [ - "c71a0fb8-c9ea-4537-9772-799d1357fb27" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11181,6 +11602,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11189,34 +11613,37 @@ "14821" ], "x-ms-correlation-request-id": [ - "1b59a400-bb38-457d-bac6-515900fe3cb6" + "b447f49a-acee-44d9-840c-2ba986fd65d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215133Z:1b59a400-bb38-457d-bac6-515900fe3cb6" + "WESTUS2:20180510T003545Z:b447f49a-acee-44d9-840c-2ba986fd65d6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:32 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11231,7 +11658,10 @@ "10" ], "x-ms-request-id": [ - "9c4a9866-e62a-4c45-a1b0-2f8b17c9179c" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11239,6 +11669,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11247,34 +11680,37 @@ "14820" ], "x-ms-correlation-request-id": [ - "4fc801c3-c309-4e70-b9ce-6272c08a1ab3" + "2b947797-8478-4b5e-af68-2cd4227ec33e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215133Z:4fc801c3-c309-4e70-b9ce-6272c08a1ab3" + "WESTUS2:20180510T003545Z:2b947797-8478-4b5e-af68-2cd4227ec33e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:32 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11289,7 +11725,10 @@ "10" ], "x-ms-request-id": [ - "bda1fa30-6853-4b0d-be07-597c99943423" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11297,6 +11736,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11305,34 +11747,37 @@ "14819" ], "x-ms-correlation-request-id": [ - "1e561cf8-93fb-4023-a1ae-15d74cd2e42d" + "c232b9e2-1ec7-45e4-8321-1106ef337034" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215133Z:1e561cf8-93fb-4023-a1ae-15d74cd2e42d" + "WESTUS2:20180510T003545Z:c232b9e2-1ec7-45e4-8321-1106ef337034" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:32 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11347,7 +11792,10 @@ "10" ], "x-ms-request-id": [ - "0161dc46-67ac-4c3b-994f-39e7d343b8ba" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11355,6 +11803,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11363,34 +11814,37 @@ "14818" ], "x-ms-correlation-request-id": [ - "cfe1e5e5-9d68-4770-a9ae-f5eb1767e9ab" + "e37ccb10-8033-42b1-abf5-0ec1cc65d5c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215133Z:cfe1e5e5-9d68-4770-a9ae-f5eb1767e9ab" + "WESTUS2:20180510T003545Z:e37ccb10-8033-42b1-abf5-0ec1cc65d5c5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:33 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11405,7 +11859,10 @@ "10" ], "x-ms-request-id": [ - "4d79a4b5-efd9-46e6-ab31-29764a7c9971" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11413,6 +11870,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11421,34 +11881,37 @@ "14817" ], "x-ms-correlation-request-id": [ - "e0312f7c-82ba-49f7-b88e-c8b8a91037ab" + "9a4b673d-6d0c-4f2f-a6b2-02774ea02a22" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215133Z:e0312f7c-82ba-49f7-b88e-c8b8a91037ab" + "WESTUS2:20180510T003545Z:9a4b673d-6d0c-4f2f-a6b2-02774ea02a22" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:33 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11463,7 +11926,10 @@ "10" ], "x-ms-request-id": [ - "bc094bba-746c-413d-b823-919aeee4dc9c" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11471,6 +11937,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11479,34 +11948,37 @@ "14816" ], "x-ms-correlation-request-id": [ - "9be5aaa9-a084-4d4e-b1c8-f169df41cf88" + "967c62c6-fa9a-43f2-b34b-c9d7c68d6ff3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215134Z:9be5aaa9-a084-4d4e-b1c8-f169df41cf88" + "WESTUS2:20180510T003545Z:967c62c6-fa9a-43f2-b34b-c9d7c68d6ff3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:33 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11521,7 +11993,10 @@ "10" ], "x-ms-request-id": [ - "215d4904-5f49-4e57-acdb-618c3b3111bc" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11529,6 +12004,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11537,34 +12015,37 @@ "14815" ], "x-ms-correlation-request-id": [ - "34823465-59c6-4390-8995-ca2e9bc18fed" + "ba0e73e2-aa44-4ba3-9473-e5557ad5b53b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215134Z:34823465-59c6-4390-8995-ca2e9bc18fed" + "WESTUS2:20180510T003545Z:ba0e73e2-aa44-4ba3-9473-e5557ad5b53b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:33 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11579,7 +12060,10 @@ "10" ], "x-ms-request-id": [ - "09ad6a46-2e91-431d-b918-dde61242d850" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11587,6 +12071,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11595,34 +12082,37 @@ "14814" ], "x-ms-correlation-request-id": [ - "4cabd764-96fc-49b0-9bfe-cca3ac5e1314" + "321a66c1-0c2c-4043-8c55-544f0baabe5a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215134Z:4cabd764-96fc-49b0-9bfe-cca3ac5e1314" + "WESTUS2:20180510T003545Z:321a66c1-0c2c-4043-8c55-544f0baabe5a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:34 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11637,7 +12127,10 @@ "10" ], "x-ms-request-id": [ - "671afbc3-2ef9-461b-ade1-fd5546cf79ea" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11645,6 +12138,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11653,34 +12149,37 @@ "14813" ], "x-ms-correlation-request-id": [ - "bbe0002d-3f70-428d-b9e6-f0b2a631486c" + "276c1a5d-5947-4ced-bf54-604ad2a049cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215134Z:bbe0002d-3f70-428d-b9e6-f0b2a631486c" + "WESTUS2:20180510T003545Z:276c1a5d-5947-4ced-bf54-604ad2a049cd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:34 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11695,7 +12194,10 @@ "10" ], "x-ms-request-id": [ - "0fbc0f01-3664-44dc-abb2-14403d24dc8d" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11703,6 +12205,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11711,34 +12216,37 @@ "14812" ], "x-ms-correlation-request-id": [ - "f823d99e-8d3b-4cd7-8d30-5515a6862a0f" + "6c0314a9-af4d-45f6-96bf-dc563c47c616" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215134Z:f823d99e-8d3b-4cd7-8d30-5515a6862a0f" + "WESTUS2:20180510T003545Z:6c0314a9-af4d-45f6-96bf-dc563c47c616" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:34 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11753,7 +12261,10 @@ "10" ], "x-ms-request-id": [ - "7a951691-5f47-49ff-b3ed-3d0ed377dd46" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11761,6 +12272,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11769,34 +12283,37 @@ "14811" ], "x-ms-correlation-request-id": [ - "32a721d3-125e-479f-824b-8f4a6db5480c" + "a38ded8c-a378-4981-947d-970e0a937dd1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215135Z:32a721d3-125e-479f-824b-8f4a6db5480c" + "WESTUS2:20180510T003545Z:a38ded8c-a378-4981-947d-970e0a937dd1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:34 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11811,7 +12328,10 @@ "10" ], "x-ms-request-id": [ - "7e51f272-c95c-42eb-b70a-e8c7abce9cf9" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11819,6 +12339,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11827,34 +12350,37 @@ "14810" ], "x-ms-correlation-request-id": [ - "86e4188c-299f-4a13-9d08-ce80d3162e66" + "557b51d6-5de6-40a2-b97a-bd40fb4b384f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215135Z:86e4188c-299f-4a13-9d08-ce80d3162e66" + "WESTUS2:20180510T003545Z:557b51d6-5de6-40a2-b97a-bd40fb4b384f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:34 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11869,7 +12395,10 @@ "10" ], "x-ms-request-id": [ - "57a3d749-63fd-40ec-9615-7ef3ec7c5dff" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11877,6 +12406,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11885,34 +12417,37 @@ "14809" ], "x-ms-correlation-request-id": [ - "478fc24e-7b75-4372-9e24-4accb252b022" + "6f5ec02c-16ab-481f-b35a-e404230481e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215135Z:478fc24e-7b75-4372-9e24-4accb252b022" + "WESTUS2:20180510T003545Z:6f5ec02c-16ab-481f-b35a-e404230481e3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:34 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11927,7 +12462,10 @@ "10" ], "x-ms-request-id": [ - "e75c4099-66ed-47b0-9649-2b5e257517fc" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11935,6 +12473,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -11943,34 +12484,37 @@ "14808" ], "x-ms-correlation-request-id": [ - "dca06970-9bec-40f4-bcc6-064444412957" + "0b9b4a00-5084-451b-a7b3-b2e0d06806ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215135Z:dca06970-9bec-40f4-bcc6-064444412957" + "WESTUS2:20180510T003545Z:0b9b4a00-5084-451b-a7b3-b2e0d06806ff" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:35 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11985,7 +12529,10 @@ "10" ], "x-ms-request-id": [ - "28981bf2-be00-4014-ab26-5a7d51418137" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11993,6 +12540,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12001,34 +12551,37 @@ "14807" ], "x-ms-correlation-request-id": [ - "f4694572-682c-4443-bac2-75b060292bf3" + "966e4495-d65c-4daf-9c83-7df5c875cb49" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215135Z:f4694572-682c-4443-bac2-75b060292bf3" + "WESTUS2:20180510T003545Z:966e4495-d65c-4daf-9c83-7df5c875cb49" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:35 GMT" + "Thu, 10 May 2018 00:35:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12043,7 +12596,10 @@ "10" ], "x-ms-request-id": [ - "7a2b10d0-1bd3-46b7-a73b-51f365f92f45" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12051,6 +12607,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12059,34 +12618,37 @@ "14806" ], "x-ms-correlation-request-id": [ - "e12a5e19-0f2e-4647-b703-4ca6547f0f9e" + "124539b2-ae33-42de-be4f-2cbbd4286262" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215136Z:e12a5e19-0f2e-4647-b703-4ca6547f0f9e" + "WESTUS2:20180510T003545Z:124539b2-ae33-42de-be4f-2cbbd4286262" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:35 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12101,7 +12663,10 @@ "10" ], "x-ms-request-id": [ - "695fdc2b-12a6-40dc-a87a-691ae39ce048" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12109,6 +12674,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12117,34 +12685,37 @@ "14805" ], "x-ms-correlation-request-id": [ - "f5bd4556-b2bd-4f2d-bad7-f10e5a201bcd" + "1b894616-2ced-4d41-b538-c7675bc13b00" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215136Z:f5bd4556-b2bd-4f2d-bad7-f10e5a201bcd" + "WESTUS2:20180510T003546Z:1b894616-2ced-4d41-b538-c7675bc13b00" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:35 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12159,7 +12730,10 @@ "10" ], "x-ms-request-id": [ - "3ca74bc5-ad3b-42c5-a1aa-9a1682796800" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12167,6 +12741,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12175,34 +12752,37 @@ "14804" ], "x-ms-correlation-request-id": [ - "86a6ff28-c6be-490d-a36e-7821f6b047b9" + "c6133f38-fde9-42ec-998f-a2b295744d44" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215136Z:86a6ff28-c6be-490d-a36e-7821f6b047b9" + "WESTUS2:20180510T003546Z:c6133f38-fde9-42ec-998f-a2b295744d44" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:35 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12217,7 +12797,10 @@ "10" ], "x-ms-request-id": [ - "310e58de-f60d-426c-b677-df9e50cb0874" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12225,6 +12808,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12233,34 +12819,37 @@ "14803" ], "x-ms-correlation-request-id": [ - "83088472-dd7a-4b88-bfa7-075fe7f58cf7" + "18a63c32-5a52-4c42-8f1c-b57178a50066" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215136Z:83088472-dd7a-4b88-bfa7-075fe7f58cf7" + "WESTUS2:20180510T003546Z:18a63c32-5a52-4c42-8f1c-b57178a50066" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:36 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12275,7 +12864,10 @@ "10" ], "x-ms-request-id": [ - "b2a2e707-aaee-4929-b11c-d9620fb3c78e" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12283,6 +12875,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12291,34 +12886,37 @@ "14802" ], "x-ms-correlation-request-id": [ - "3b3e94a6-4932-4464-9d88-5e2ce807e564" + "7a75e16e-7202-4c6d-aaf3-f532f0ee9c32" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215136Z:3b3e94a6-4932-4464-9d88-5e2ce807e564" + "WESTUS2:20180510T003546Z:7a75e16e-7202-4c6d-aaf3-f532f0ee9c32" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:36 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12333,7 +12931,10 @@ "10" ], "x-ms-request-id": [ - "1491346f-2bd5-4a86-bea1-0426bf61ab13" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12341,6 +12942,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12349,34 +12953,37 @@ "14801" ], "x-ms-correlation-request-id": [ - "7ced0c8b-deec-4c8a-a11c-9e8252fa0b2b" + "fc2fd73c-06d6-4d7f-9d79-9a0bba6eceee" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215136Z:7ced0c8b-deec-4c8a-a11c-9e8252fa0b2b" + "WESTUS2:20180510T003546Z:fc2fd73c-06d6-4d7f-9d79-9a0bba6eceee" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:36 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12391,7 +12998,10 @@ "10" ], "x-ms-request-id": [ - "99063e7e-1d92-4fb8-8baf-7c8114571b84" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12399,6 +13009,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12407,34 +13020,37 @@ "14800" ], "x-ms-correlation-request-id": [ - "abce9050-3393-44c9-b277-369f722f5f24" + "5a054892-4fa4-462a-8ec8-5c73d644fb02" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215137Z:abce9050-3393-44c9-b277-369f722f5f24" + "WESTUS2:20180510T003546Z:5a054892-4fa4-462a-8ec8-5c73d644fb02" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:36 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12449,7 +13065,10 @@ "10" ], "x-ms-request-id": [ - "8c6cf333-5f25-4fb3-a67e-02045b2f585a" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12457,6 +13076,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12465,34 +13087,37 @@ "14799" ], "x-ms-correlation-request-id": [ - "9e60bcb2-efd3-4aec-a990-bdd630644fc1" + "a7a11451-9476-4cc9-aadb-baea30193b81" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215137Z:9e60bcb2-efd3-4aec-a990-bdd630644fc1" + "WESTUS2:20180510T003546Z:a7a11451-9476-4cc9-aadb-baea30193b81" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:36 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12507,7 +13132,10 @@ "10" ], "x-ms-request-id": [ - "a86047a4-105f-46e2-b962-1a43ecf4c2ca" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12515,6 +13143,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12523,34 +13154,37 @@ "14798" ], "x-ms-correlation-request-id": [ - "5aa5b29a-4da4-484e-a9b6-e33b1fd7fb12" + "32602eb5-8e4c-41b8-a706-9c7a83a998dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215137Z:5aa5b29a-4da4-484e-a9b6-e33b1fd7fb12" + "WESTUS2:20180510T003546Z:32602eb5-8e4c-41b8-a706-9c7a83a998dc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:36 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12565,7 +13199,10 @@ "10" ], "x-ms-request-id": [ - "d1e1a5f0-4f49-4cdd-85c2-eae25bd66734" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12573,6 +13210,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12581,34 +13221,37 @@ "14797" ], "x-ms-correlation-request-id": [ - "3649b2cd-5b52-475f-8558-1fad11c3c826" + "54770045-d67a-4d1c-8f60-434e18551750" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215137Z:3649b2cd-5b52-475f-8558-1fad11c3c826" + "WESTUS2:20180510T003546Z:54770045-d67a-4d1c-8f60-434e18551750" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:37 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12623,7 +13266,10 @@ "10" ], "x-ms-request-id": [ - "5418d0ff-842a-46ab-9472-8fa2f164ee15" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12631,6 +13277,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12639,34 +13288,37 @@ "14796" ], "x-ms-correlation-request-id": [ - "6306bed2-0b56-4e46-8831-152a03bb5214" + "6f3d07cb-20ba-42bf-9206-3556499516a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215137Z:6306bed2-0b56-4e46-8831-152a03bb5214" + "WESTUS2:20180510T003546Z:6f3d07cb-20ba-42bf-9206-3556499516a1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:37 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12681,7 +13333,10 @@ "10" ], "x-ms-request-id": [ - "4e2e6c7f-c7b6-4f24-805b-9fb040eb8c23" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12689,6 +13344,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12697,34 +13355,37 @@ "14795" ], "x-ms-correlation-request-id": [ - "ee97cde3-484d-43aa-9846-e7f907860124" + "b9d1bbb1-9d01-48a9-96b3-149a18d77dc1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215138Z:ee97cde3-484d-43aa-9846-e7f907860124" + "WESTUS2:20180510T003546Z:b9d1bbb1-9d01-48a9-96b3-149a18d77dc1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:37 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12739,7 +13400,10 @@ "10" ], "x-ms-request-id": [ - "30c768e0-c941-43b5-bf05-2559cac8de62" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12747,6 +13411,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12755,34 +13422,37 @@ "14794" ], "x-ms-correlation-request-id": [ - "5361c1a4-09e1-4fd6-9f92-ccd50c853162" + "74b6042b-91dd-4f94-bc3c-fb674387f3ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215138Z:5361c1a4-09e1-4fd6-9f92-ccd50c853162" + "WESTUS2:20180510T003546Z:74b6042b-91dd-4f94-bc3c-fb674387f3ee" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:37 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12797,7 +13467,10 @@ "10" ], "x-ms-request-id": [ - "97d9fc56-c16f-461d-be19-695110f3f51a" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12805,6 +13478,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12813,34 +13489,37 @@ "14793" ], "x-ms-correlation-request-id": [ - "3a48eef4-c5f4-42b6-b34a-d35cbe01db0a" + "0f1b3278-695c-402f-9e56-b906cbe74d66" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215138Z:3a48eef4-c5f4-42b6-b34a-d35cbe01db0a" + "WESTUS2:20180510T003546Z:0f1b3278-695c-402f-9e56-b906cbe74d66" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:37 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12855,7 +13534,10 @@ "10" ], "x-ms-request-id": [ - "3a26d8f3-9bff-4dfe-a9b7-9b8374c32338" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12863,6 +13545,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12871,34 +13556,37 @@ "14792" ], "x-ms-correlation-request-id": [ - "2b77e547-3a66-40ac-a3f1-b10599327cfc" + "03c9b209-9a64-4a0a-a81e-938819cc371b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215138Z:2b77e547-3a66-40ac-a3f1-b10599327cfc" + "WESTUS2:20180510T003546Z:03c9b209-9a64-4a0a-a81e-938819cc371b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:38 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12913,7 +13601,10 @@ "10" ], "x-ms-request-id": [ - "12543484-4a73-4072-8545-40bac5c0f027" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12921,6 +13612,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12929,34 +13623,37 @@ "14791" ], "x-ms-correlation-request-id": [ - "e5c41cda-6e22-4d5a-81de-18490a1b3d1a" + "067d0040-0b5c-4868-9d53-1e53475e32db" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215138Z:e5c41cda-6e22-4d5a-81de-18490a1b3d1a" + "WESTUS2:20180510T003546Z:067d0040-0b5c-4868-9d53-1e53475e32db" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:38 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12971,7 +13668,10 @@ "10" ], "x-ms-request-id": [ - "59750c15-e20f-4d55-94be-21eb9982d449" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12979,6 +13679,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -12987,34 +13690,37 @@ "14790" ], "x-ms-correlation-request-id": [ - "4c3f9d28-cad1-4764-bcf8-f547008c9fde" + "30b40aff-5fb6-427c-814d-befdfd76dba7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215138Z:4c3f9d28-cad1-4764-bcf8-f547008c9fde" + "WESTUS2:20180510T003546Z:30b40aff-5fb6-427c-814d-befdfd76dba7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:38 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13029,7 +13735,10 @@ "10" ], "x-ms-request-id": [ - "43a87b5a-6726-4391-b375-a08593bca7ce" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13037,6 +13746,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13045,34 +13757,37 @@ "14789" ], "x-ms-correlation-request-id": [ - "d5dcf06c-2e2e-4acd-8230-ab9fada7e6bd" + "7f9156a2-d720-4664-96f8-667ab2948ec5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215139Z:d5dcf06c-2e2e-4acd-8230-ab9fada7e6bd" + "WESTUS2:20180510T003546Z:7f9156a2-d720-4664-96f8-667ab2948ec5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:38 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13087,7 +13802,10 @@ "10" ], "x-ms-request-id": [ - "0ba194df-3e79-4206-a992-ad88d431cf9d" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13095,6 +13813,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13103,34 +13824,37 @@ "14788" ], "x-ms-correlation-request-id": [ - "4cfcb2c3-a74f-48c4-9ab8-a63225108667" + "c61851f4-2915-4a1f-8cb7-c25464d82771" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215139Z:4cfcb2c3-a74f-48c4-9ab8-a63225108667" + "WESTUS2:20180510T003546Z:c61851f4-2915-4a1f-8cb7-c25464d82771" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:38 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13145,7 +13869,10 @@ "10" ], "x-ms-request-id": [ - "aac43c51-e8d1-4067-85c1-4f1b80ad92cc" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13153,6 +13880,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13161,34 +13891,37 @@ "14787" ], "x-ms-correlation-request-id": [ - "a074c3d5-9476-4840-960f-4919e7c052bc" + "5ab82036-1b35-4565-9de0-8b103edacc71" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215139Z:a074c3d5-9476-4840-960f-4919e7c052bc" + "WESTUS2:20180510T003546Z:5ab82036-1b35-4565-9de0-8b103edacc71" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:38 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13203,7 +13936,10 @@ "10" ], "x-ms-request-id": [ - "0ef73d16-cd14-4d82-81ed-2d812aab4a1e" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13211,6 +13947,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13219,34 +13958,37 @@ "14786" ], "x-ms-correlation-request-id": [ - "d1dc4314-2997-44b7-9623-a8d61c8ea14c" + "59d994e8-e4d5-4096-8fd3-7a6e7e598386" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215139Z:d1dc4314-2997-44b7-9623-a8d61c8ea14c" + "WESTUS2:20180510T003546Z:59d994e8-e4d5-4096-8fd3-7a6e7e598386" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:39 GMT" + "Thu, 10 May 2018 00:35:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13261,7 +14003,10 @@ "10" ], "x-ms-request-id": [ - "33cb29d1-9409-4b2d-a832-d3b8bd83da03" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13269,6 +14014,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13277,34 +14025,37 @@ "14785" ], "x-ms-correlation-request-id": [ - "227c1cf6-e5b2-4c1d-bc9f-cad166d93e24" + "2a723b01-f26a-4422-a622-01720b7754e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215139Z:227c1cf6-e5b2-4c1d-bc9f-cad166d93e24" + "WESTUS2:20180510T003546Z:2a723b01-f26a-4422-a622-01720b7754e2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:39 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13319,7 +14070,10 @@ "10" ], "x-ms-request-id": [ - "6792ad37-1dbb-4adf-9089-bc7a36188f7f" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13327,6 +14081,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13335,34 +14092,37 @@ "14784" ], "x-ms-correlation-request-id": [ - "4285baa0-1adc-482f-ba61-aa2cf2c6f871" + "e01da2bb-4c24-48e7-a1ad-b74607a4b9a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215139Z:4285baa0-1adc-482f-ba61-aa2cf2c6f871" + "WESTUS2:20180510T003547Z:e01da2bb-4c24-48e7-a1ad-b74607a4b9a8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:39 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13377,7 +14137,10 @@ "10" ], "x-ms-request-id": [ - "f6a0f2f0-8c9e-4386-889e-6aab51506895" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13385,6 +14148,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13393,34 +14159,37 @@ "14783" ], "x-ms-correlation-request-id": [ - "9689f6a7-3aab-49d4-89f0-b0e25880d682" + "ae44da0e-91ad-4000-be09-6b3bb00e0e6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215140Z:9689f6a7-3aab-49d4-89f0-b0e25880d682" + "WESTUS2:20180510T003547Z:ae44da0e-91ad-4000-be09-6b3bb00e0e6a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:39 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13435,7 +14204,10 @@ "10" ], "x-ms-request-id": [ - "259a95bc-b596-4fb0-ae2c-e56a33c4c626" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13443,6 +14215,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13451,34 +14226,37 @@ "14782" ], "x-ms-correlation-request-id": [ - "dc3e262d-3a99-4776-8e20-6d0cb730ce57" + "27d74119-0c32-4b7c-8252-847e50ee6ddb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215140Z:dc3e262d-3a99-4776-8e20-6d0cb730ce57" + "WESTUS2:20180510T003547Z:27d74119-0c32-4b7c-8252-847e50ee6ddb" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:39 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13493,7 +14271,10 @@ "10" ], "x-ms-request-id": [ - "74c14226-fbc4-4ab4-bf4d-d61008827958" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13501,6 +14282,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13509,34 +14293,37 @@ "14781" ], "x-ms-correlation-request-id": [ - "b12aaaf0-3ed2-4e9a-b895-c2cbdb946121" + "c326e50d-f140-4d3d-927d-029f07bd45e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215140Z:b12aaaf0-3ed2-4e9a-b895-c2cbdb946121" + "WESTUS2:20180510T003547Z:c326e50d-f140-4d3d-927d-029f07bd45e0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:39 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13551,7 +14338,10 @@ "10" ], "x-ms-request-id": [ - "b0ca47c3-1c00-47ab-a54c-9eb35cc65235" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13559,6 +14349,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13567,34 +14360,37 @@ "14780" ], "x-ms-correlation-request-id": [ - "689eb982-2987-44c9-9fd9-5ea12a2a0505" + "151b94ce-6d86-44cc-930d-bd7a71191dd3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215140Z:689eb982-2987-44c9-9fd9-5ea12a2a0505" + "WESTUS2:20180510T003547Z:151b94ce-6d86-44cc-930d-bd7a71191dd3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:40 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13609,7 +14405,10 @@ "10" ], "x-ms-request-id": [ - "caf78a63-1b82-41c7-ad07-6cf031081700" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13617,6 +14416,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13625,34 +14427,37 @@ "14779" ], "x-ms-correlation-request-id": [ - "df1460f3-c9da-408b-a5c7-85aa6bb72a32" + "77e92fe4-98fe-476c-8199-4e765c7de551" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215140Z:df1460f3-c9da-408b-a5c7-85aa6bb72a32" + "WESTUS2:20180510T003547Z:77e92fe4-98fe-476c-8199-4e765c7de551" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:40 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13667,7 +14472,10 @@ "10" ], "x-ms-request-id": [ - "1c8080c8-29ff-4f67-8b8b-630920c3d80c" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13675,6 +14483,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13683,34 +14494,37 @@ "14778" ], "x-ms-correlation-request-id": [ - "671db4c4-2ce7-4df9-8d00-ad6e2eb8a78c" + "2b404849-7b72-4b2b-ab05-a8be0945fe87" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215140Z:671db4c4-2ce7-4df9-8d00-ad6e2eb8a78c" + "WESTUS2:20180510T003547Z:2b404849-7b72-4b2b-ab05-a8be0945fe87" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:40 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13725,7 +14539,10 @@ "10" ], "x-ms-request-id": [ - "c967e087-851f-4276-abdd-2ed3d61d739d" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13733,6 +14550,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13741,34 +14561,37 @@ "14777" ], "x-ms-correlation-request-id": [ - "631418c4-fd4a-48e7-a5c2-522fe10870d3" + "d155fc1f-b816-4556-9995-60ba8c293019" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215140Z:631418c4-fd4a-48e7-a5c2-522fe10870d3" + "WESTUS2:20180510T003547Z:d155fc1f-b816-4556-9995-60ba8c293019" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:40 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13783,7 +14606,10 @@ "10" ], "x-ms-request-id": [ - "690f6bd8-39f4-40df-a905-c7539ece94bf" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13791,6 +14617,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13799,34 +14628,37 @@ "14776" ], "x-ms-correlation-request-id": [ - "5c097eb1-7879-4bf6-bab1-1a2c8e16c704" + "e6756173-f0a6-4d4f-a093-bb048c7f9601" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215141Z:5c097eb1-7879-4bf6-bab1-1a2c8e16c704" + "WESTUS2:20180510T003547Z:e6756173-f0a6-4d4f-a093-bb048c7f9601" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:40 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13841,7 +14673,10 @@ "10" ], "x-ms-request-id": [ - "66767974-c94e-4565-b948-e90268676ae0" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13849,6 +14684,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13857,34 +14695,37 @@ "14775" ], "x-ms-correlation-request-id": [ - "ec12169f-3af1-4161-942c-a4e68d46f41b" + "01018ffe-a8a1-4ab6-9d78-56fed84082a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215141Z:ec12169f-3af1-4161-942c-a4e68d46f41b" + "WESTUS2:20180510T003547Z:01018ffe-a8a1-4ab6-9d78-56fed84082a1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:40 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13899,7 +14740,10 @@ "10" ], "x-ms-request-id": [ - "57bb970f-28c9-4fc5-9c64-3bb24e55b302" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13907,6 +14751,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13915,34 +14762,37 @@ "14774" ], "x-ms-correlation-request-id": [ - "03e66df2-c913-4b3a-bb63-793146cb944a" + "9d7b2d64-5884-4e75-bbb4-e8e80ed7aedb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215141Z:03e66df2-c913-4b3a-bb63-793146cb944a" + "WESTUS2:20180510T003547Z:9d7b2d64-5884-4e75-bbb4-e8e80ed7aedb" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:40 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13957,7 +14807,10 @@ "10" ], "x-ms-request-id": [ - "d62a2bb8-32d8-4d30-9600-8efd858399ee" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13965,6 +14818,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -13973,34 +14829,37 @@ "14773" ], "x-ms-correlation-request-id": [ - "27058f7e-9278-485b-a5fd-8741aa693b47" + "f251587b-511d-4b14-9dc8-86984b375425" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215141Z:27058f7e-9278-485b-a5fd-8741aa693b47" + "WESTUS2:20180510T003547Z:f251587b-511d-4b14-9dc8-86984b375425" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:41 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14015,7 +14874,10 @@ "10" ], "x-ms-request-id": [ - "26bc0804-8498-4816-befa-a9c517f6d745" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14023,6 +14885,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14031,34 +14896,37 @@ "14772" ], "x-ms-correlation-request-id": [ - "659e5c75-07e9-4856-923a-9d9df06aad48" + "5b951896-a554-46db-8c6a-aa2aa51822ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215141Z:659e5c75-07e9-4856-923a-9d9df06aad48" + "WESTUS2:20180510T003547Z:5b951896-a554-46db-8c6a-aa2aa51822ab" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:41 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14073,7 +14941,10 @@ "10" ], "x-ms-request-id": [ - "a6c5d395-3e21-4913-a772-e4f9cb8e23ae" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14081,6 +14952,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14089,34 +14963,37 @@ "14771" ], "x-ms-correlation-request-id": [ - "6152d025-c2d1-44bf-ab8a-8e12bf07556b" + "5fa346df-0265-4597-a12f-adc093b342f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215142Z:6152d025-c2d1-44bf-ab8a-8e12bf07556b" + "WESTUS2:20180510T003547Z:5fa346df-0265-4597-a12f-adc093b342f5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:41 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14131,7 +15008,10 @@ "10" ], "x-ms-request-id": [ - "7a9b5633-634e-479a-a55f-78c697e6a3c3" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14139,6 +15019,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14147,34 +15030,37 @@ "14770" ], "x-ms-correlation-request-id": [ - "f99e20e6-d15a-4d33-bb1a-fb681ecd83ed" + "86145734-7666-455b-ac08-acbf77bf1167" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215142Z:f99e20e6-d15a-4d33-bb1a-fb681ecd83ed" + "WESTUS2:20180510T003547Z:86145734-7666-455b-ac08-acbf77bf1167" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:41 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14189,7 +15075,10 @@ "10" ], "x-ms-request-id": [ - "66ecbe77-3066-44bf-913a-318d6e38375e" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14197,6 +15086,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14205,34 +15097,37 @@ "14769" ], "x-ms-correlation-request-id": [ - "e5f067ee-bd20-45de-99b2-021c5ea065e3" + "6586b1c5-5c5a-4c10-9a3a-6e77c975541d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215142Z:e5f067ee-bd20-45de-99b2-021c5ea065e3" + "WESTUS2:20180510T003547Z:6586b1c5-5c5a-4c10-9a3a-6e77c975541d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:42 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14247,7 +15142,10 @@ "10" ], "x-ms-request-id": [ - "bf92ce6d-5a17-41d9-8f19-6c8749eba42f" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14255,6 +15153,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14263,34 +15164,37 @@ "14768" ], "x-ms-correlation-request-id": [ - "51278a90-a9d3-4c64-869b-2bbb60146e7e" + "a77c15b2-d2ca-4e70-badd-a2a291a35689" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215142Z:51278a90-a9d3-4c64-869b-2bbb60146e7e" + "WESTUS2:20180510T003547Z:a77c15b2-d2ca-4e70-badd-a2a291a35689" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:42 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14305,7 +15209,10 @@ "10" ], "x-ms-request-id": [ - "04ad27e4-b6ee-431a-ac51-c9bcd2492aae" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14313,6 +15220,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14321,34 +15231,37 @@ "14767" ], "x-ms-correlation-request-id": [ - "5697561e-a418-44ef-9e61-05a1c091df6f" + "9499df2a-fcf6-4c87-a400-c16e48a31338" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215142Z:5697561e-a418-44ef-9e61-05a1c091df6f" + "WESTUS2:20180510T003547Z:9499df2a-fcf6-4c87-a400-c16e48a31338" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:42 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14363,7 +15276,10 @@ "10" ], "x-ms-request-id": [ - "eccb1980-cab6-4f89-8aab-299765aa436b" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14371,6 +15287,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14379,34 +15298,37 @@ "14766" ], "x-ms-correlation-request-id": [ - "186ebb2b-3cbd-45a4-8cb0-9bb916356ec2" + "b9192bc0-b2dc-456e-a160-9fb814c0c41c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215143Z:186ebb2b-3cbd-45a4-8cb0-9bb916356ec2" + "WESTUS2:20180510T003547Z:b9192bc0-b2dc-456e-a160-9fb814c0c41c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:42 GMT" + "Thu, 10 May 2018 00:35:46 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14421,7 +15343,10 @@ "10" ], "x-ms-request-id": [ - "12879ba1-977f-428a-acf6-d18816a72783" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14429,6 +15354,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14437,34 +15365,37 @@ "14765" ], "x-ms-correlation-request-id": [ - "f76bc282-368d-4b0d-9aa3-b09f2f26cffe" + "9cdb92a4-53cc-447e-b94a-ec3f98289199" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215143Z:f76bc282-368d-4b0d-9aa3-b09f2f26cffe" + "WESTUS2:20180510T003547Z:9cdb92a4-53cc-447e-b94a-ec3f98289199" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:42 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14479,7 +15410,10 @@ "10" ], "x-ms-request-id": [ - "48b9977e-4c19-4f3a-a7f6-594c4520f789" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14487,6 +15421,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14495,34 +15432,37 @@ "14764" ], "x-ms-correlation-request-id": [ - "0be6b626-a8b4-4a87-8de7-8beca8d8cd9f" + "d94bf043-6373-479c-b4a9-6b13f7fa38b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215143Z:0be6b626-a8b4-4a87-8de7-8beca8d8cd9f" + "WESTUS2:20180510T003548Z:d94bf043-6373-479c-b4a9-6b13f7fa38b0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:42 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14537,7 +15477,10 @@ "10" ], "x-ms-request-id": [ - "92d6a624-2740-489f-8f22-e34901a30334" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14545,6 +15488,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14553,34 +15499,37 @@ "14763" ], "x-ms-correlation-request-id": [ - "1e121fc4-2282-45a2-a575-f62aaa7e0a06" + "9530023d-0b93-4ac3-9677-0e11652164d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215143Z:1e121fc4-2282-45a2-a575-f62aaa7e0a06" + "WESTUS2:20180510T003548Z:9530023d-0b93-4ac3-9677-0e11652164d5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:43 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14595,7 +15544,10 @@ "10" ], "x-ms-request-id": [ - "8c5bd2bf-e72c-4a1b-ad58-5bb8038d3e0e" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14603,6 +15555,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14611,34 +15566,37 @@ "14762" ], "x-ms-correlation-request-id": [ - "c5fbf3b8-1091-4f1d-b598-8575389cc1d7" + "8646ef40-aa43-418e-bdf1-2c511bdf35d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215143Z:c5fbf3b8-1091-4f1d-b598-8575389cc1d7" + "WESTUS2:20180510T003548Z:8646ef40-aa43-418e-bdf1-2c511bdf35d3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:43 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14653,7 +15611,10 @@ "10" ], "x-ms-request-id": [ - "03741b4d-a5fc-48ef-a9d1-84b09eacb709" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14661,6 +15622,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14669,34 +15633,37 @@ "14761" ], "x-ms-correlation-request-id": [ - "2a0ca8a6-a360-4e11-8859-5ec2301bfa3a" + "8bf885dd-b396-4db4-98a1-c039c6080503" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215143Z:2a0ca8a6-a360-4e11-8859-5ec2301bfa3a" + "WESTUS2:20180510T003548Z:8bf885dd-b396-4db4-98a1-c039c6080503" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:43 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14711,7 +15678,10 @@ "10" ], "x-ms-request-id": [ - "590011c6-374e-4cc4-a069-ee2247737847" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14719,6 +15689,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14727,34 +15700,37 @@ "14760" ], "x-ms-correlation-request-id": [ - "4d3e3a7d-2751-4875-bf55-e1b75cf3766b" + "55a8d03d-ad64-4806-916b-2be7172f62c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215144Z:4d3e3a7d-2751-4875-bf55-e1b75cf3766b" + "WESTUS2:20180510T003548Z:55a8d03d-ad64-4806-916b-2be7172f62c5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:43 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14769,7 +15745,10 @@ "10" ], "x-ms-request-id": [ - "06f6f56e-1a39-4f63-bf57-1e60c0e021a8" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14777,6 +15756,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14785,34 +15767,37 @@ "14759" ], "x-ms-correlation-request-id": [ - "cd22889f-d498-40b5-ac24-924c1b7a704a" + "898ac45d-b53a-48c1-84fe-6ea31d0d49ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215144Z:cd22889f-d498-40b5-ac24-924c1b7a704a" + "WESTUS2:20180510T003548Z:898ac45d-b53a-48c1-84fe-6ea31d0d49ad" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:43 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14827,7 +15812,10 @@ "10" ], "x-ms-request-id": [ - "b7c67440-46f2-450e-8c3b-f8b120d76447" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14835,6 +15823,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14843,34 +15834,37 @@ "14758" ], "x-ms-correlation-request-id": [ - "7524b083-ee51-4d82-a4b0-fa2025bdfb6c" + "b2e3555b-213b-477d-969f-fbdc48d66258" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215144Z:7524b083-ee51-4d82-a4b0-fa2025bdfb6c" + "WESTUS2:20180510T003548Z:b2e3555b-213b-477d-969f-fbdc48d66258" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:43 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14885,7 +15879,10 @@ "10" ], "x-ms-request-id": [ - "52d7c94b-c5b2-4156-b9e9-31d0218da707" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14893,6 +15890,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14901,34 +15901,37 @@ "14757" ], "x-ms-correlation-request-id": [ - "c9d96be7-9eab-4d0d-844e-f199254135f6" + "1eac5970-fe1a-4b58-b17f-02a498f2aa99" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215144Z:c9d96be7-9eab-4d0d-844e-f199254135f6" + "WESTUS2:20180510T003548Z:1eac5970-fe1a-4b58-b17f-02a498f2aa99" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:43 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14943,7 +15946,10 @@ "10" ], "x-ms-request-id": [ - "696e8387-3a6e-4790-84b2-fa04c3717b97" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14951,6 +15957,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -14959,34 +15968,37 @@ "14756" ], "x-ms-correlation-request-id": [ - "34f6319a-6558-4d07-a4d9-5129c5134581" + "f78f991b-8a52-4e14-b62e-423087cdd73d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215144Z:34f6319a-6558-4d07-a4d9-5129c5134581" + "WESTUS2:20180510T003548Z:f78f991b-8a52-4e14-b62e-423087cdd73d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:44 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15001,7 +16013,10 @@ "10" ], "x-ms-request-id": [ - "1185c9ca-bd20-40cb-834b-9fd3f6ce1720" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15009,6 +16024,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15017,34 +16035,37 @@ "14755" ], "x-ms-correlation-request-id": [ - "b2db6e9f-aa30-426b-8ea6-a5bc6cbef962" + "089e25ff-a6be-48a9-a4e7-d0bbdefbf4e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215145Z:b2db6e9f-aa30-426b-8ea6-a5bc6cbef962" + "WESTUS2:20180510T003548Z:089e25ff-a6be-48a9-a4e7-d0bbdefbf4e5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:44 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15059,7 +16080,10 @@ "10" ], "x-ms-request-id": [ - "2fe8eb0d-b406-4757-8b4a-fb11e6904d3a" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15067,6 +16091,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15075,34 +16102,37 @@ "14754" ], "x-ms-correlation-request-id": [ - "ac73ea5e-a46d-4d9b-b862-08cbb7102d31" + "fc71ef27-a97f-48e9-9c6a-d1ffa73cf1c9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215145Z:ac73ea5e-a46d-4d9b-b862-08cbb7102d31" + "WESTUS2:20180510T003548Z:fc71ef27-a97f-48e9-9c6a-d1ffa73cf1c9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:44 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15117,7 +16147,10 @@ "10" ], "x-ms-request-id": [ - "a425fb8e-604f-4878-a1ec-48438c51215d" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15125,6 +16158,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15133,34 +16169,37 @@ "14753" ], "x-ms-correlation-request-id": [ - "a89a96be-3ee1-4c24-b6af-52eb486f6150" + "5d3eeb72-a15d-4432-9c23-e7b866c20b5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215145Z:a89a96be-3ee1-4c24-b6af-52eb486f6150" + "WESTUS2:20180510T003548Z:5d3eeb72-a15d-4432-9c23-e7b866c20b5c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:44 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15175,7 +16214,10 @@ "10" ], "x-ms-request-id": [ - "9f401173-e18b-43f4-932b-103dea19d648" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15183,6 +16225,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15191,34 +16236,37 @@ "14752" ], "x-ms-correlation-request-id": [ - "5b4fe255-6a6b-4314-b126-48f61d0bd767" + "b5dcff6a-f149-4485-8a2e-8736c971a763" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215145Z:5b4fe255-6a6b-4314-b126-48f61d0bd767" + "WESTUS2:20180510T003548Z:b5dcff6a-f149-4485-8a2e-8736c971a763" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:45 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15233,7 +16281,10 @@ "10" ], "x-ms-request-id": [ - "71bb19d7-3b6c-4ee0-9479-928c37ba14b0" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15241,6 +16292,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15249,34 +16303,37 @@ "14751" ], "x-ms-correlation-request-id": [ - "3e2c5caf-e6e9-4488-9131-a3a0ed5b7d74" + "8324923b-b067-4103-a188-91d6d73496fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215145Z:3e2c5caf-e6e9-4488-9131-a3a0ed5b7d74" + "WESTUS2:20180510T003548Z:8324923b-b067-4103-a188-91d6d73496fe" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:45 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15291,7 +16348,10 @@ "10" ], "x-ms-request-id": [ - "4e34d4a1-a0a5-4022-a5d0-e53f8b68dc7b" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15299,6 +16359,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15307,34 +16370,37 @@ "14750" ], "x-ms-correlation-request-id": [ - "0ff57640-7338-4213-bab1-c8f72982b3fd" + "f0e1fb34-a956-4e36-a20b-2bf58d9e3b1f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215146Z:0ff57640-7338-4213-bab1-c8f72982b3fd" + "WESTUS2:20180510T003548Z:f0e1fb34-a956-4e36-a20b-2bf58d9e3b1f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:45 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15349,7 +16415,10 @@ "10" ], "x-ms-request-id": [ - "87d2923f-09a5-404d-a5ba-1482d0369229" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15357,6 +16426,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15365,34 +16437,37 @@ "14749" ], "x-ms-correlation-request-id": [ - "e76cb3b8-ea5d-432d-85c1-d06d55e07116" + "5969886a-64f8-4769-9f15-c05b8128c47f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215146Z:e76cb3b8-ea5d-432d-85c1-d06d55e07116" + "WESTUS2:20180510T003548Z:5969886a-64f8-4769-9f15-c05b8128c47f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:45 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15407,7 +16482,10 @@ "10" ], "x-ms-request-id": [ - "d5ae651c-013a-4b66-b123-614ed8ff0953" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15415,6 +16493,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15423,34 +16504,37 @@ "14748" ], "x-ms-correlation-request-id": [ - "338f3aab-e499-4692-b6e4-7bc2c00f61dd" + "6e25aa45-367e-4542-a3f2-d8279de139f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215146Z:338f3aab-e499-4692-b6e4-7bc2c00f61dd" + "WESTUS2:20180510T003548Z:6e25aa45-367e-4542-a3f2-d8279de139f3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:45 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15465,7 +16549,10 @@ "10" ], "x-ms-request-id": [ - "7b061d21-88ab-41c2-ab24-347983552c0d" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15473,6 +16560,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15481,34 +16571,37 @@ "14747" ], "x-ms-correlation-request-id": [ - "ce63e67a-799e-4972-b7a7-efdff7ae46c1" + "ae298502-bbbb-4b6d-b59f-06e95460d2a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215146Z:ce63e67a-799e-4972-b7a7-efdff7ae46c1" + "WESTUS2:20180510T003548Z:ae298502-bbbb-4b6d-b59f-06e95460d2a6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:45 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15523,7 +16616,10 @@ "10" ], "x-ms-request-id": [ - "912e2803-e86b-4f4a-a855-d058d54b6b33" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15531,6 +16627,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15539,34 +16638,37 @@ "14746" ], "x-ms-correlation-request-id": [ - "576e5da4-700b-43f6-ab59-e16f05d64b0c" + "fb7acb20-0fd3-4347-81c5-94246b72b9a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215146Z:576e5da4-700b-43f6-ab59-e16f05d64b0c" + "WESTUS2:20180510T003548Z:fb7acb20-0fd3-4347-81c5-94246b72b9a4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:46 GMT" + "Thu, 10 May 2018 00:35:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15581,7 +16683,10 @@ "10" ], "x-ms-request-id": [ - "ec3127e1-bc80-4492-90d1-2c43befae6a8" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15589,6 +16694,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15597,34 +16705,37 @@ "14745" ], "x-ms-correlation-request-id": [ - "b4a89f0a-bd7b-4f33-83ca-cd17de219295" + "194c882d-487b-4b6e-acda-54886c8527f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215146Z:b4a89f0a-bd7b-4f33-83ca-cd17de219295" + "WESTUS2:20180510T003548Z:194c882d-487b-4b6e-acda-54886c8527f1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:46 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15639,7 +16750,10 @@ "10" ], "x-ms-request-id": [ - "04fff994-d479-4cde-a7b0-2bf35d887c71" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15647,6 +16761,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15655,34 +16772,37 @@ "14744" ], "x-ms-correlation-request-id": [ - "13fc3d60-5e56-4a16-b263-08b3194b260a" + "6790478a-c998-4160-8656-a925800633fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215147Z:13fc3d60-5e56-4a16-b263-08b3194b260a" + "WESTUS2:20180510T003549Z:6790478a-c998-4160-8656-a925800633fc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:46 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15697,7 +16817,10 @@ "10" ], "x-ms-request-id": [ - "ae1109f1-02c6-440a-ba38-e5fc06946a56" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15705,6 +16828,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15713,34 +16839,37 @@ "14743" ], "x-ms-correlation-request-id": [ - "44f27481-a6ca-45de-8e54-c2619bca70f7" + "c1ec3abe-311d-49c9-9cb6-df7b46465c3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215147Z:44f27481-a6ca-45de-8e54-c2619bca70f7" + "WESTUS2:20180510T003549Z:c1ec3abe-311d-49c9-9cb6-df7b46465c3b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:46 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15755,7 +16884,10 @@ "10" ], "x-ms-request-id": [ - "5db5cd62-d966-4747-a9c4-22692380dd96" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15763,6 +16895,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15771,34 +16906,37 @@ "14742" ], "x-ms-correlation-request-id": [ - "ff787e52-a6b9-48d9-a1c6-87323ac87bd4" + "722eceab-2f50-4304-a00b-b9892e261a3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215147Z:ff787e52-a6b9-48d9-a1c6-87323ac87bd4" + "WESTUS2:20180510T003549Z:722eceab-2f50-4304-a00b-b9892e261a3b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:46 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15813,7 +16951,10 @@ "10" ], "x-ms-request-id": [ - "9710f93b-703a-4ea9-bc56-560887eeeef1" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15821,6 +16962,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15829,34 +16973,37 @@ "14741" ], "x-ms-correlation-request-id": [ - "82a08e70-67a4-4979-9e64-45fdefab7e55" + "bce80519-8183-4da5-8667-8fa18f183975" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215147Z:82a08e70-67a4-4979-9e64-45fdefab7e55" + "WESTUS2:20180510T003549Z:bce80519-8183-4da5-8667-8fa18f183975" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:46 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15871,7 +17018,10 @@ "10" ], "x-ms-request-id": [ - "43f2f69f-82c5-41dc-97aa-c1331bd143ba" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15879,6 +17029,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15887,34 +17040,37 @@ "14740" ], "x-ms-correlation-request-id": [ - "ea7706fc-35b3-4204-896f-42abbf3631ae" + "d2996a10-3ee3-4627-a9ce-b5cef242d19f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215147Z:ea7706fc-35b3-4204-896f-42abbf3631ae" + "WESTUS2:20180510T003549Z:d2996a10-3ee3-4627-a9ce-b5cef242d19f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:46 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15929,7 +17085,10 @@ "10" ], "x-ms-request-id": [ - "3a48f0c3-2f90-44ad-94ad-8c07264d517f" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15937,6 +17096,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -15945,34 +17107,37 @@ "14739" ], "x-ms-correlation-request-id": [ - "7c33290d-edf8-41d5-8e69-a33156072046" + "89499531-7657-4386-bdbb-e4d22a5936fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215147Z:7c33290d-edf8-41d5-8e69-a33156072046" + "WESTUS2:20180510T003549Z:89499531-7657-4386-bdbb-e4d22a5936fc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:47 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -15987,7 +17152,10 @@ "10" ], "x-ms-request-id": [ - "f1946430-df4f-4b9e-8843-c763d087ec85" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15995,6 +17163,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -16003,34 +17174,37 @@ "14738" ], "x-ms-correlation-request-id": [ - "062d620c-8733-4fdc-a192-2f202f30fede" + "27523f55-4552-4355-ac93-36ad666492ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215147Z:062d620c-8733-4fdc-a192-2f202f30fede" + "WESTUS2:20180510T003549Z:27523f55-4552-4355-ac93-36ad666492ac" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:47 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -16045,7 +17219,10 @@ "10" ], "x-ms-request-id": [ - "fa29fc30-f6fc-49b1-b789-4fc96968b36c" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16053,6 +17230,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -16061,34 +17241,37 @@ "14737" ], "x-ms-correlation-request-id": [ - "6be3844f-4b32-4bba-8b49-0f22d4e541c5" + "108e53bb-5e90-4714-94b6-3c96591dd31a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215147Z:6be3844f-4b32-4bba-8b49-0f22d4e541c5" + "WESTUS2:20180510T003549Z:108e53bb-5e90-4714-94b6-3c96591dd31a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:47 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -16103,7 +17286,10 @@ "10" ], "x-ms-request-id": [ - "cd332d8b-866e-494d-ae6d-9c031dade546" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16111,6 +17297,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -16119,34 +17308,37 @@ "14736" ], "x-ms-correlation-request-id": [ - "23c8b332-dc7e-40ba-8fb3-1091374195a9" + "0bdaa8ed-05a0-4544-8934-066ea46e5435" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215148Z:23c8b332-dc7e-40ba-8fb3-1091374195a9" + "WESTUS2:20180510T003549Z:0bdaa8ed-05a0-4544-8934-066ea46e5435" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:47 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -16161,7 +17353,10 @@ "10" ], "x-ms-request-id": [ - "a935aa09-9026-47f3-8806-6203a38a0c11" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16169,6 +17364,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -16177,34 +17375,37 @@ "14735" ], "x-ms-correlation-request-id": [ - "717e7a6b-8c7b-44b3-a74d-329398e1c120" + "b4fbf14a-ccec-47b4-9739-afafc2f84f84" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215148Z:717e7a6b-8c7b-44b3-a74d-329398e1c120" + "WESTUS2:20180510T003549Z:b4fbf14a-ccec-47b4-9739-afafc2f84f84" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:47 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -16219,7 +17420,10 @@ "10" ], "x-ms-request-id": [ - "6d919a2c-05df-4cc7-8a87-99cf929f3bba" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16227,6 +17431,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -16235,34 +17442,37 @@ "14734" ], "x-ms-correlation-request-id": [ - "d2c0e1a6-7598-418b-b110-6b8e2ba05d14" + "d697f3cf-88ca-4366-bb6c-7a258fb9779a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215148Z:d2c0e1a6-7598-418b-b110-6b8e2ba05d14" + "WESTUS2:20180510T003549Z:d697f3cf-88ca-4366-bb6c-7a258fb9779a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:47 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -16277,7 +17487,10 @@ "10" ], "x-ms-request-id": [ - "f9fd4568-b850-4f0e-888d-1bcb95c9b436" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16285,6 +17498,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -16293,34 +17509,37 @@ "14733" ], "x-ms-correlation-request-id": [ - "44392bf1-31d8-4b78-99b8-e133eb3ef4d1" + "f2636bf9-ac0b-46c5-a611-ec232cf60560" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215148Z:44392bf1-31d8-4b78-99b8-e133eb3ef4d1" + "WESTUS2:20180510T003549Z:f2636bf9-ac0b-46c5-a611-ec232cf60560" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:48 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -16335,7 +17554,10 @@ "10" ], "x-ms-request-id": [ - "c1a8ed73-5dce-457d-a45d-2c9938fb176c" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16343,6 +17565,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -16351,34 +17576,37 @@ "14732" ], "x-ms-correlation-request-id": [ - "5e346efa-2947-4b77-959c-07294a4bbcb8" + "2676a463-453c-4fca-becd-26a80e991f0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215148Z:5e346efa-2947-4b77-959c-07294a4bbcb8" + "WESTUS2:20180510T003549Z:2676a463-453c-4fca-becd-26a80e991f0c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:48 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -16393,7 +17621,10 @@ "10" ], "x-ms-request-id": [ - "9efdaecb-52bf-41f9-85c1-fdd4e452279b" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16401,6 +17632,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -16409,34 +17643,37 @@ "14731" ], "x-ms-correlation-request-id": [ - "76d800be-376d-4046-b21a-d8fafaf78856" + "f7438266-7e49-4251-a352-5d4b5e66e1ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215149Z:76d800be-376d-4046-b21a-d8fafaf78856" + "WESTUS2:20180510T003549Z:f7438266-7e49-4251-a352-5d4b5e66e1ae" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:48 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -16451,7 +17688,10 @@ "10" ], "x-ms-request-id": [ - "385ae8f0-f432-44c4-82e5-5bb0320ab3d9" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16459,6 +17699,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -16467,34 +17710,37 @@ "14730" ], "x-ms-correlation-request-id": [ - "641627fe-be73-47c2-95ef-a104e37f1103" + "56dd7991-66ef-4549-b934-b7868952505c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215149Z:641627fe-be73-47c2-95ef-a104e37f1103" + "WESTUS2:20180510T003549Z:56dd7991-66ef-4549-b934-b7868952505c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:48 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -16509,7 +17755,10 @@ "10" ], "x-ms-request-id": [ - "2e5f8fed-4842-47d5-8097-d93272904fa4" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16517,6 +17766,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -16525,34 +17777,37 @@ "14729" ], "x-ms-correlation-request-id": [ - "18ab200a-00e4-4b03-ac03-89370b38c87f" + "93df6b7b-35e0-4ebf-8e0c-8ecd43e335c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215149Z:18ab200a-00e4-4b03-ac03-89370b38c87f" + "WESTUS2:20180510T003549Z:93df6b7b-35e0-4ebf-8e0c-8ecd43e335c5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:48 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -16567,7 +17822,10 @@ "10" ], "x-ms-request-id": [ - "c1a06a93-0263-47f0-b0f1-f6ab166539b6" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16575,6 +17833,9 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -16583,92 +17844,37 @@ "14728" ], "x-ms-correlation-request-id": [ - "3f925ce0-1b32-40d3-aa2f-0af3527668fc" + "d03b1733-9715-4c98-9177-7b9587c77df6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215149Z:3f925ce0-1b32-40d3-aa2f-0af3527668fc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56568b26-103b-4811-a5ca-00dc2b31c028" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" - ], - "x-ms-correlation-request-id": [ - "741e4ebe-0206-4198-83db-03328f41e1cd" + "WESTUS2:20180510T003549Z:d03b1733-9715-4c98-9177-7b9587c77df6" ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215149Z:741e4ebe-0206-4198-83db-03328f41e1cd" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:49 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -16683,65 +17889,10 @@ "10" ], "x-ms-request-id": [ - "f7f470de-66ea-44e3-9123-eabeb19af65d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" - ], - "x-ms-correlation-request-id": [ - "6dfd26f3-9bde-4138-b6f2-3bbf9bed82e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215149Z:6dfd26f3-9bde-4138-b6f2-3bbf9bed82e6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" + "20079ade-24eb-4c22-a881-078ad040b525" ], - "x-ms-request-id": [ - "bc607da0-e9b9-41c2-ad75-deed6359405f" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16749,158 +17900,48 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14725" - ], - "x-ms-correlation-request-id": [ - "25aa7ec6-9738-4243-aadd-13ea03fe2aac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215150Z:25aa7ec6-9738-4243-aadd-13ea03fe2aac" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1478c99-1617-49c3-86c8-13b1fa027066" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14727" ], "x-ms-correlation-request-id": [ - "46a6bef7-0f02-4cb3-883d-ee0a8ff4309c" + "225f3840-c526-42da-95fd-7d65128412f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215150Z:46a6bef7-0f02-4cb3-883d-ee0a8ff4309c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b915f60d-dc48-43d6-8bd7-db4c756ab06e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14723" + "WESTUS2:20180510T003549Z:225f3840-c526-42da-95fd-7d65128412f8" ], - "x-ms-correlation-request-id": [ - "aa3b1ef2-1cef-4f04-97b8-3039d241c81b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215150Z:aa3b1ef2-1cef-4f04-97b8-3039d241c81b" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:49 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -16915,65 +17956,10 @@ "10" ], "x-ms-request-id": [ - "4236f2a2-0206-484d-a7d8-28a55d95a443" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14722" - ], - "x-ms-correlation-request-id": [ - "276d1fa6-ce23-4128-935d-d4c1f453efd3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215150Z:276d1fa6-ce23-4128-935d-d4c1f453efd3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" + "20079ade-24eb-4c22-a881-078ad040b525" ], - "x-ms-request-id": [ - "89437c2d-5826-4a08-8b25-0c6a69b78588" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16981,158 +17967,48 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14721" - ], - "x-ms-correlation-request-id": [ - "b01ebbb9-42cb-420b-9ea0-e235de17ee12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215150Z:b01ebbb9-42cb-420b-9ea0-e235de17ee12" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc31cbae-b8d9-4461-8a8f-def8b8d0c175" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14726" ], "x-ms-correlation-request-id": [ - "812e9173-c114-4f28-a441-78ae2dbdb20a" + "51e22479-09fe-4c0a-b1e1-755956ea3eeb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215151Z:812e9173-c114-4f28-a441-78ae2dbdb20a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca47c8e8-57eb-494d-ac8a-fff2182bf58b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" - ], - "x-ms-correlation-request-id": [ - "4a244864-4d6e-47c6-8fb6-df29380369c3" + "WESTUS2:20180510T003549Z:51e22479-09fe-4c0a-b1e1-755956ea3eeb" ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215151Z:4a244864-4d6e-47c6-8fb6-df29380369c3" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:50 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -17147,65 +18023,10 @@ "10" ], "x-ms-request-id": [ - "6316c25a-5979-40a3-a953-9ae29ee641e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14718" - ], - "x-ms-correlation-request-id": [ - "0cb7e7ea-bb43-4a47-afb7-ccfb077299b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215151Z:0cb7e7ea-bb43-4a47-afb7-ccfb077299b3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "20079ade-24eb-4c22-a881-078ad040b525" ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2cd059f-1ccd-405e-940c-531cda0c5a72" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17213,158 +18034,48 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" - ], - "x-ms-correlation-request-id": [ - "4d69c9ae-8793-4246-9c72-f29b65370125" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215151Z:4d69c9ae-8793-4246-9c72-f29b65370125" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a281514-701b-4bb2-9b8b-320786b621b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "14725" ], "x-ms-correlation-request-id": [ - "c8853208-a6d4-4d80-8638-2378a79b303c" + "12408495-149a-4638-b28b-60b90ba3182d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215151Z:c8853208-a6d4-4d80-8638-2378a79b303c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9002975-4a68-4ba8-b2dd-a1172fea26ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" + "WESTUS2:20180510T003549Z:12408495-149a-4638-b28b-60b90ba3182d" ], - "x-ms-correlation-request-id": [ - "2b82faec-e010-4eab-b78b-6f4a08749c7b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215151Z:2b82faec-e010-4eab-b78b-6f4a08749c7b" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:51 GMT" + "Thu, 10 May 2018 00:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -17379,65 +18090,10 @@ "10" ], "x-ms-request-id": [ - "71bed2c6-9c84-4a70-be72-6e49dedc503e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" - ], - "x-ms-correlation-request-id": [ - "d1b9ee83-625a-486d-9d58-9b326f7fe674" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215152Z:d1b9ee83-625a-486d-9d58-9b326f7fe674" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" + "20079ade-24eb-4c22-a881-078ad040b525" ], - "x-ms-request-id": [ - "8641c6c7-b4db-49e1-9de8-c728ab754406" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17445,565365 +18101,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14713" + "14724" ], "x-ms-correlation-request-id": [ - "63e2b8ac-67d1-4509-9229-7e58e592c0a7" + "8fcfdfdc-31ff-4a8e-8b77-10f346d1108e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T215152Z:63e2b8ac-67d1-4509-9229-7e58e592c0a7" + "WESTUS2:20180510T003549Z:8fcfdfdc-31ff-4a8e-8b77-10f346d1108e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 21:51:51 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "feb1f415-72d4-4b27-bc4d-31f1a80838b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14712" - ], - "x-ms-correlation-request-id": [ - "2049280c-e7ab-44a5-9c31-8b2a0588bd97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215152Z:2049280c-e7ab-44a5-9c31-8b2a0588bd97" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78fe9eeb-0a7c-4d26-b123-a3cf8f816e77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14711" - ], - "x-ms-correlation-request-id": [ - "67a053d3-7857-425a-87dd-750c4d16e44d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215152Z:67a053d3-7857-425a-87dd-750c4d16e44d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18e96359-0a2e-4fd5-a01c-6bafb7a99172" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14710" - ], - "x-ms-correlation-request-id": [ - "9163965d-2ff0-4511-a19d-ac6ba57105d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215152Z:9163965d-2ff0-4511-a19d-ac6ba57105d0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "09c13d5b-9baa-4868-b9bf-9cb8e92ab567" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14709" - ], - "x-ms-correlation-request-id": [ - "5e5ed7fe-36f8-40ef-bd9f-1ec0d113f4ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215153Z:5e5ed7fe-36f8-40ef-bd9f-1ec0d113f4ba" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "50215f36-1be9-4518-b520-2c9ec3031884" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14708" - ], - "x-ms-correlation-request-id": [ - "c4a84b6d-fa38-44f2-b56e-ccc65dbc4fd8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215153Z:c4a84b6d-fa38-44f2-b56e-ccc65dbc4fd8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "690a47c9-a0ed-4d70-a3b2-e98d3872a603" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14707" - ], - "x-ms-correlation-request-id": [ - "12228302-1af3-475e-8b9d-207eb44af3b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215153Z:12228302-1af3-475e-8b9d-207eb44af3b1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7f7ace5-a842-4dfa-9c45-583acc66ed7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14706" - ], - "x-ms-correlation-request-id": [ - "94d9f128-618c-411c-bc2f-16bbdb1b3847" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215153Z:94d9f128-618c-411c-bc2f-16bbdb1b3847" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db28f972-9481-430e-bd03-5fc26cf8fec7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14705" - ], - "x-ms-correlation-request-id": [ - "f367272a-fe10-40e0-ba16-fb6da7495e7b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215153Z:f367272a-fe10-40e0-ba16-fb6da7495e7b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91968dc3-12b8-48bf-9fd1-8fab46bd42ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14704" - ], - "x-ms-correlation-request-id": [ - "d858612e-1e73-44e8-a429-81beca49c331" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215153Z:d858612e-1e73-44e8-a429-81beca49c331" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22a8c8f6-5bfa-4819-b479-186e33e3060d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14703" - ], - "x-ms-correlation-request-id": [ - "1ea0083b-00f8-4ecb-a57e-7232341d1fec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215153Z:1ea0083b-00f8-4ecb-a57e-7232341d1fec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0c8dc81-2988-4fdf-a7c6-ef4590faf71e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14702" - ], - "x-ms-correlation-request-id": [ - "9292b44e-8ecb-40ed-8fc7-40080cefa8a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215154Z:9292b44e-8ecb-40ed-8fc7-40080cefa8a7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea1570cf-9625-43e6-b7a7-3df7afd97040" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14701" - ], - "x-ms-correlation-request-id": [ - "04d30f2d-db44-4e3a-8b68-dd5ff1541e89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215154Z:04d30f2d-db44-4e3a-8b68-dd5ff1541e89" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "675dcc56-5ea5-4a40-8620-25fff146f75f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14700" - ], - "x-ms-correlation-request-id": [ - "0d0451be-4e7f-4ed4-bad5-7db721dde217" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215154Z:0d0451be-4e7f-4ed4-bad5-7db721dde217" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46ec7216-d158-4e3d-9440-f331f62cf507" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14699" - ], - "x-ms-correlation-request-id": [ - "efec43db-4aac-4387-bb60-14f86a6ecace" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215154Z:efec43db-4aac-4387-bb60-14f86a6ecace" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc07a8ad-f5d3-4f82-9769-b10ac1b0320e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14698" - ], - "x-ms-correlation-request-id": [ - "0e5b966e-166a-4aec-baa1-0d44b3546de7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215154Z:0e5b966e-166a-4aec-baa1-0d44b3546de7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b019a2b-4e2e-4c3e-877c-00f1af5f0b71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14697" - ], - "x-ms-correlation-request-id": [ - "469f97c6-5398-4857-93a1-3233db67c2d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215155Z:469f97c6-5398-4857-93a1-3233db67c2d5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a5ac2af-df91-412f-b08c-e04b677dab87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14696" - ], - "x-ms-correlation-request-id": [ - "dde86789-dfc1-4b90-b3c8-d975fa72e6f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215155Z:dde86789-dfc1-4b90-b3c8-d975fa72e6f8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2bbe5e89-3039-4bc3-8e14-1fd1f879a01a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14695" - ], - "x-ms-correlation-request-id": [ - "d24a5347-aa0b-4c53-992e-208c8fbe93fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215155Z:d24a5347-aa0b-4c53-992e-208c8fbe93fe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efe1d213-c532-4271-abd6-f51fcd604e4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14694" - ], - "x-ms-correlation-request-id": [ - "f5c8bc02-60cd-4b24-b3c1-c522cdb82aa2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215155Z:f5c8bc02-60cd-4b24-b3c1-c522cdb82aa2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d06dd1ac-00fe-4bff-a671-7edf3a1f576c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14693" - ], - "x-ms-correlation-request-id": [ - "3c3016b0-8998-4d4b-b825-8fece2c54577" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215155Z:3c3016b0-8998-4d4b-b825-8fece2c54577" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2ac5e51-0bff-4e4a-b6f7-642a763a477d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14692" - ], - "x-ms-correlation-request-id": [ - "cde809aa-ab71-4658-8e2d-f64d34af875e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215155Z:cde809aa-ab71-4658-8e2d-f64d34af875e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2298af6c-7193-4c4d-a072-16b588a4cae0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14691" - ], - "x-ms-correlation-request-id": [ - "e47e0d02-8890-4d1c-b7d4-fd64a837d45e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215156Z:e47e0d02-8890-4d1c-b7d4-fd64a837d45e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0df2cd2c-d7d8-4f5a-80e9-e9262ed13034" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14690" - ], - "x-ms-correlation-request-id": [ - "2b7b29e6-f976-452a-8f7a-1b38a0f30ffe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215156Z:2b7b29e6-f976-452a-8f7a-1b38a0f30ffe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc37cc4f-686e-4be1-af18-bfd55ac16a22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14689" - ], - "x-ms-correlation-request-id": [ - "aecf5ae6-3ecf-43db-89fd-f0e7e5d56151" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215156Z:aecf5ae6-3ecf-43db-89fd-f0e7e5d56151" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89bebeb4-6a62-4c44-9f81-d355ab601a92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14688" - ], - "x-ms-correlation-request-id": [ - "3d6f3dfe-a2b2-469b-b595-176384b06e63" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215156Z:3d6f3dfe-a2b2-469b-b595-176384b06e63" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4e4e101-4566-4817-b80c-5f5f0a43fa8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14687" - ], - "x-ms-correlation-request-id": [ - "e6154338-38f8-4986-adcf-44992d0b6825" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215156Z:e6154338-38f8-4986-adcf-44992d0b6825" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1c7910c-b2b3-4ba3-91fd-917beb27e2df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14686" - ], - "x-ms-correlation-request-id": [ - "aef4241c-c5cd-4605-b776-c18a1b0abdb7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215157Z:aef4241c-c5cd-4605-b776-c18a1b0abdb7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "088897d0-0104-42c4-9596-d2e69466c20f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14685" - ], - "x-ms-correlation-request-id": [ - "7eb5756b-a8aa-4f97-92dd-832f41b53786" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215157Z:7eb5756b-a8aa-4f97-92dd-832f41b53786" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20c16f5a-6a68-422a-8d26-36a375b387d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14684" - ], - "x-ms-correlation-request-id": [ - "535d285f-9a68-4c27-bc1a-50b39a91388f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215157Z:535d285f-9a68-4c27-bc1a-50b39a91388f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2647be52-3c8c-463e-94c9-5013414e5cd5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14683" - ], - "x-ms-correlation-request-id": [ - "40309a5d-21d2-4cb2-9226-8029b461ebaa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215157Z:40309a5d-21d2-4cb2-9226-8029b461ebaa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3807cbac-dc19-427f-ba8d-38ba9384d6a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14682" - ], - "x-ms-correlation-request-id": [ - "9b06f466-cfab-48c1-81f5-48c5ea4dac01" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215157Z:9b06f466-cfab-48c1-81f5-48c5ea4dac01" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a65e1a40-4dd3-48b2-b779-2128377afae6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14681" - ], - "x-ms-correlation-request-id": [ - "f62bb820-cbfe-4b13-94f8-41132b01c76c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215157Z:f62bb820-cbfe-4b13-94f8-41132b01c76c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "051ac7ee-3765-4d1e-a291-8ddb1630dc33" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14680" - ], - "x-ms-correlation-request-id": [ - "1e332d2a-c619-4e96-887c-2e5ed37c829e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215158Z:1e332d2a-c619-4e96-887c-2e5ed37c829e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29ae6c43-ecde-450d-8a72-be18ddac2b87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14679" - ], - "x-ms-correlation-request-id": [ - "b6476ff5-ec88-4cb8-b8f2-331a62391d11" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215158Z:b6476ff5-ec88-4cb8-b8f2-331a62391d11" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d4bc100-96cb-4b6e-8f47-72065cfc95f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14678" - ], - "x-ms-correlation-request-id": [ - "ca9c1726-f370-41aa-a3f1-b80938d2ddb2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215158Z:ca9c1726-f370-41aa-a3f1-b80938d2ddb2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0c1038e-0e47-43e5-88c0-8eb1984acf7f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14677" - ], - "x-ms-correlation-request-id": [ - "bc478d44-01c8-4316-acb6-93003252bb19" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215158Z:bc478d44-01c8-4316-acb6-93003252bb19" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40a96073-ef9e-4cc5-91b6-00c03e8b69de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14676" - ], - "x-ms-correlation-request-id": [ - "0e80fc1f-3966-4a4a-9f80-f7dc1891ab5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215158Z:0e80fc1f-3966-4a4a-9f80-f7dc1891ab5e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7543805-2980-4acd-a01b-dec4bf9eab32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14675" - ], - "x-ms-correlation-request-id": [ - "b5718fe8-eea7-42b5-b205-2c45e193ef00" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215158Z:b5718fe8-eea7-42b5-b205-2c45e193ef00" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a2881435-de0a-4587-9799-70374b0a2ed5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14674" - ], - "x-ms-correlation-request-id": [ - "185d6c0c-9359-4d75-be93-53bced7f83b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215159Z:185d6c0c-9359-4d75-be93-53bced7f83b7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ecd091c7-010b-400c-97cf-faa314b3651a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14673" - ], - "x-ms-correlation-request-id": [ - "bda799d0-603b-4e06-a0c2-dbf3897fd5e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215159Z:bda799d0-603b-4e06-a0c2-dbf3897fd5e8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00ba9ff8-a2d1-4342-baea-f43e286915a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14672" - ], - "x-ms-correlation-request-id": [ - "84e7a715-5707-49fc-8875-f425bdce8570" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215159Z:84e7a715-5707-49fc-8875-f425bdce8570" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0869eeb1-ad75-4178-b8cd-dc21afc985dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14671" - ], - "x-ms-correlation-request-id": [ - "826e32d7-444e-42ef-ac82-33ae8be14b27" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215159Z:826e32d7-444e-42ef-ac82-33ae8be14b27" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "884f2b77-5bc3-45e6-92e1-2bc4d1370982" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14670" - ], - "x-ms-correlation-request-id": [ - "2ac37d09-d0b9-428c-a015-9c8aabaa6f5b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215200Z:2ac37d09-d0b9-428c-a015-9c8aabaa6f5b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f1054aa-1c3f-4117-980c-49b163c46a50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14669" - ], - "x-ms-correlation-request-id": [ - "c1b39fdb-c9e6-412d-ac36-41936da6451a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215200Z:c1b39fdb-c9e6-412d-ac36-41936da6451a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef2e5ea6-8e1c-433c-bca2-de4c8de7dbc9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14668" - ], - "x-ms-correlation-request-id": [ - "20c4539e-4987-47ce-9840-b38b33f8aaa1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215200Z:20c4539e-4987-47ce-9840-b38b33f8aaa1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "253b8003-9ef3-42ad-a408-2f52ff4de1e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14667" - ], - "x-ms-correlation-request-id": [ - "62a8e741-dfb1-43a9-9734-1dcc585543e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215200Z:62a8e741-dfb1-43a9-9734-1dcc585543e1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f4b5e4f-87af-4855-a1d4-0e77c1e6072e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14666" - ], - "x-ms-correlation-request-id": [ - "610fc160-1a2a-4237-82e6-ae87b782ad18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215200Z:610fc160-1a2a-4237-82e6-ae87b782ad18" - ], - "Date": [ - "Tue, 29 Aug 2017 21:51:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ddebfc3-27df-459b-b27b-33149aec462e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14665" - ], - "x-ms-correlation-request-id": [ - "a6d7748f-c550-476b-8785-520c6836a788" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215200Z:a6d7748f-c550-476b-8785-520c6836a788" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31aaa415-5f58-467a-89ef-cb8ca9860852" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14664" - ], - "x-ms-correlation-request-id": [ - "e22e3a07-cdca-4acd-8c18-3dce2b61d0ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215201Z:e22e3a07-cdca-4acd-8c18-3dce2b61d0ec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7be04f1-d803-4805-b4bd-2ffae1302689" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14663" - ], - "x-ms-correlation-request-id": [ - "2880cb6f-3c5f-4b32-adc0-40d42b8475f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215201Z:2880cb6f-3c5f-4b32-adc0-40d42b8475f9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "acfe9d6a-77aa-4116-83f1-7b91bfc8bbc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14662" - ], - "x-ms-correlation-request-id": [ - "f64fb480-b39c-4c3a-bf5c-f60c39960da4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215201Z:f64fb480-b39c-4c3a-bf5c-f60c39960da4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a41b240c-46fb-457b-9067-b5ec75d6a049" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14661" - ], - "x-ms-correlation-request-id": [ - "dba21157-d0a8-4b67-8d06-e3ef0ad2b92a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215201Z:dba21157-d0a8-4b67-8d06-e3ef0ad2b92a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c426cbe8-82ee-4f49-adc1-805b4e889443" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14660" - ], - "x-ms-correlation-request-id": [ - "bf357825-6502-4b96-a636-06ac0f9e7552" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215201Z:bf357825-6502-4b96-a636-06ac0f9e7552" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78db4a06-9fb3-4b85-9279-890bb965955f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14659" - ], - "x-ms-correlation-request-id": [ - "387071a6-ca35-47c4-bf51-ae149070d0ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215202Z:387071a6-ca35-47c4-bf51-ae149070d0ae" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e40328f1-7f2a-490e-b538-64122c71da14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14658" - ], - "x-ms-correlation-request-id": [ - "47d7c6df-ec14-41f3-a214-b725b3ad9827" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215202Z:47d7c6df-ec14-41f3-a214-b725b3ad9827" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7818362-f0cc-4da7-8cf2-14c6882343f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14657" - ], - "x-ms-correlation-request-id": [ - "2f05c24b-3327-4d2d-b2e9-28b07d8d07cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215202Z:2f05c24b-3327-4d2d-b2e9-28b07d8d07cc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5cd81e71-be79-47be-8331-4fc58bff0cba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14656" - ], - "x-ms-correlation-request-id": [ - "d7a527d4-e01d-46f2-a2f9-5f153514465f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215202Z:d7a527d4-e01d-46f2-a2f9-5f153514465f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1881eb12-c7a7-4ca6-a25c-c797bf3c9be6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14655" - ], - "x-ms-correlation-request-id": [ - "de502338-de5e-4c10-9869-80bd4423b92d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215202Z:de502338-de5e-4c10-9869-80bd4423b92d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80ca0d25-407a-4ba4-8173-e27d134b4616" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14654" - ], - "x-ms-correlation-request-id": [ - "fef6e489-27bd-45e2-b627-f9fc2aebfb80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215202Z:fef6e489-27bd-45e2-b627-f9fc2aebfb80" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "371b5473-fbb8-4946-906c-af68d0030b3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14653" - ], - "x-ms-correlation-request-id": [ - "c33ea3b8-3131-4fe3-bdc4-1b0c4ace14b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215202Z:c33ea3b8-3131-4fe3-bdc4-1b0c4ace14b5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f31ee995-6be4-40d6-8bda-c1f05ff35b13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14652" - ], - "x-ms-correlation-request-id": [ - "cc2d609a-59bb-4dd3-bb1e-6dec73ccc334" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215203Z:cc2d609a-59bb-4dd3-bb1e-6dec73ccc334" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8eec3541-6da7-4226-ae24-6cecb0ad4f50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14651" - ], - "x-ms-correlation-request-id": [ - "b4a4df28-0fb6-4180-8364-753b36cf6684" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215203Z:b4a4df28-0fb6-4180-8364-753b36cf6684" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9467b3d1-aa82-419c-92f6-ee961bc9b688" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14650" - ], - "x-ms-correlation-request-id": [ - "4a470150-4809-4b65-ba30-aff78dc71ee8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215203Z:4a470150-4809-4b65-ba30-aff78dc71ee8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea2720c1-8701-48b0-acd6-6faa4b3932c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14649" - ], - "x-ms-correlation-request-id": [ - "9ef13a48-4967-4224-bd02-18b0f6b9f2b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215203Z:9ef13a48-4967-4224-bd02-18b0f6b9f2b1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "50c3c1f6-c00e-4478-bb4c-55d6055dc7fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14648" - ], - "x-ms-correlation-request-id": [ - "8e1680f1-50d6-4885-a315-376b0aa78185" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215203Z:8e1680f1-50d6-4885-a315-376b0aa78185" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2eed6a6-f300-4763-9ac8-5928e7748988" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14647" - ], - "x-ms-correlation-request-id": [ - "4a1d94c2-bbdd-40ef-a59b-f730ef506663" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215204Z:4a1d94c2-bbdd-40ef-a59b-f730ef506663" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10c1ab88-8066-4986-967e-ee93ec1ab83f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14646" - ], - "x-ms-correlation-request-id": [ - "4ae7aeaa-28df-40db-8f02-066cbb6060d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215204Z:4ae7aeaa-28df-40db-8f02-066cbb6060d1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19429743-5dc3-4d5f-ba75-81f6d975523b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14645" - ], - "x-ms-correlation-request-id": [ - "7b4576c7-e5e9-408a-b085-2e9c238dd39b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215204Z:7b4576c7-e5e9-408a-b085-2e9c238dd39b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89a322fc-2640-4cfb-8484-961c8b901d93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14644" - ], - "x-ms-correlation-request-id": [ - "afd8863b-17ab-40ba-b277-1d40deddf1e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215204Z:afd8863b-17ab-40ba-b277-1d40deddf1e9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8db9fc67-4f9b-40dd-891f-86a9a6c59267" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14643" - ], - "x-ms-correlation-request-id": [ - "09d0edce-0b35-4c02-ad5d-8fef40c8e771" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215204Z:09d0edce-0b35-4c02-ad5d-8fef40c8e771" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "799b6479-fa3f-41e4-bf05-5f9736e69741" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14642" - ], - "x-ms-correlation-request-id": [ - "cf446a0e-0b97-446c-8dfe-86a4868ea6a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215205Z:cf446a0e-0b97-446c-8dfe-86a4868ea6a3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "634c126a-76af-46cb-9139-3912d8263529" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14641" - ], - "x-ms-correlation-request-id": [ - "4d8495cc-379a-4570-b6c6-4b5eaf4b72ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215205Z:4d8495cc-379a-4570-b6c6-4b5eaf4b72ba" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de18d353-19dd-4cdb-9112-4f20ae57baa0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14640" - ], - "x-ms-correlation-request-id": [ - "15820c3e-1b76-438e-b134-e59f8204bca0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215205Z:15820c3e-1b76-438e-b134-e59f8204bca0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "acfbc69c-bec9-4dc1-a16b-b66fe15d9f71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14639" - ], - "x-ms-correlation-request-id": [ - "bc624b7a-b24a-4f50-88be-6125c316a704" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215205Z:bc624b7a-b24a-4f50-88be-6125c316a704" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bd165969-0a61-4414-b2e8-c661209642b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14638" - ], - "x-ms-correlation-request-id": [ - "ec148e6e-7bc9-4334-a67d-248a54e46100" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215205Z:ec148e6e-7bc9-4334-a67d-248a54e46100" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e601a0ab-c097-448d-bde9-a077b5f3bf79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14637" - ], - "x-ms-correlation-request-id": [ - "683fa929-4e91-4382-923e-a06c2c486637" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215206Z:683fa929-4e91-4382-923e-a06c2c486637" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87ab0516-0949-43e6-a12b-51bc24c670c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14636" - ], - "x-ms-correlation-request-id": [ - "534a5111-5901-40f2-96a7-33e224521703" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215206Z:534a5111-5901-40f2-96a7-33e224521703" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f2e5ace-04fb-41c4-b255-3ac7ba075b08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14635" - ], - "x-ms-correlation-request-id": [ - "eb83d01f-2d2f-4911-b6b7-b93f5a85ab0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215206Z:eb83d01f-2d2f-4911-b6b7-b93f5a85ab0d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6933df7-4326-4386-9f2b-7f5cae31f56d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14634" - ], - "x-ms-correlation-request-id": [ - "4c075daf-affc-49a5-8e76-caffb31d7cef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215206Z:4c075daf-affc-49a5-8e76-caffb31d7cef" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c426e07-1e4b-4a19-8b1e-cb24e94f52d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14633" - ], - "x-ms-correlation-request-id": [ - "b9053f13-421c-4297-8ddf-4979a2b1c1bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215206Z:b9053f13-421c-4297-8ddf-4979a2b1c1bb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f260fde-f3bd-40de-b6bc-a1c04c263b86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14632" - ], - "x-ms-correlation-request-id": [ - "39cb1ff6-5028-4cc1-becf-8688969173cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215207Z:39cb1ff6-5028-4cc1-becf-8688969173cf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b3eca675-fd53-4f9d-be38-f5b52ed3377c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14631" - ], - "x-ms-correlation-request-id": [ - "ad4b1e0e-4c00-4fe0-ac9b-8fe8736da86f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215207Z:ad4b1e0e-4c00-4fe0-ac9b-8fe8736da86f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2360e307-3718-48a0-81dc-6ce49480023a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14630" - ], - "x-ms-correlation-request-id": [ - "0a04b27e-d014-4f97-87e3-5df4b80f3c54" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215207Z:0a04b27e-d014-4f97-87e3-5df4b80f3c54" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68511e21-dec9-4289-a5f5-74beafbde2d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14629" - ], - "x-ms-correlation-request-id": [ - "69553409-3ea2-48a1-be5a-9e601e2ba353" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215207Z:69553409-3ea2-48a1-be5a-9e601e2ba353" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3daca1a2-8ef7-4d2b-acd1-7172f8121085" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14628" - ], - "x-ms-correlation-request-id": [ - "bc63d0d7-af03-40ab-b7b5-be9e9aef49b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215207Z:bc63d0d7-af03-40ab-b7b5-be9e9aef49b4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5688e32-6175-4642-af81-1372f815de5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14627" - ], - "x-ms-correlation-request-id": [ - "d7bf1a4e-f84f-4e04-8cd8-10c5d525f47d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215207Z:d7bf1a4e-f84f-4e04-8cd8-10c5d525f47d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ef15dde-fdd5-4c13-bd65-1d312e0203d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14626" - ], - "x-ms-correlation-request-id": [ - "02a494a9-2c21-401a-9595-e1d27fc96ef6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215208Z:02a494a9-2c21-401a-9595-e1d27fc96ef6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de0b537d-2af2-4c6d-a0a0-4fe6bbe3ffd7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14625" - ], - "x-ms-correlation-request-id": [ - "1e1f463a-6a31-426a-8692-cfdbc6fab0d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215208Z:1e1f463a-6a31-426a-8692-cfdbc6fab0d8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20089b12-26b6-4224-aef8-fef86d73d9dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14624" - ], - "x-ms-correlation-request-id": [ - "76a3ce6c-10b6-40c1-846b-88e69632df40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215208Z:76a3ce6c-10b6-40c1-846b-88e69632df40" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1b4ab50-ff6c-4c11-8b14-f0f5aa7d6ad8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14623" - ], - "x-ms-correlation-request-id": [ - "cbd7d66f-cebc-46bb-b2ce-16f5c14f987f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215208Z:cbd7d66f-cebc-46bb-b2ce-16f5c14f987f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5701311-e927-44fb-aeb6-3271dfd3f606" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14622" - ], - "x-ms-correlation-request-id": [ - "6d3b5782-f475-41be-8ebe-1521bbc85dd7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215208Z:6d3b5782-f475-41be-8ebe-1521bbc85dd7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a56b9924-c7bb-4ff2-a61c-46273eeaba18" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14621" - ], - "x-ms-correlation-request-id": [ - "96a5e4ae-b694-47f3-b0eb-9160b0049ea3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215208Z:96a5e4ae-b694-47f3-b0eb-9160b0049ea3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73bf4c63-3175-4227-afd9-2838e890d821" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14620" - ], - "x-ms-correlation-request-id": [ - "76167dc4-bcee-4ab7-93a9-19bdd7fb1485" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215209Z:76167dc4-bcee-4ab7-93a9-19bdd7fb1485" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85e43817-186c-4b02-94a7-fd8a95071daf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14619" - ], - "x-ms-correlation-request-id": [ - "6f7f2209-ca16-4d7d-8a8d-ed17fcc6e8f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215209Z:6f7f2209-ca16-4d7d-8a8d-ed17fcc6e8f5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f029f4c9-c9bf-4aac-8389-7fe282543430" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14618" - ], - "x-ms-correlation-request-id": [ - "95e221ad-300f-4340-bb36-86c3892b4413" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215209Z:95e221ad-300f-4340-bb36-86c3892b4413" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2c0d5b2-177b-4499-87fa-6c14d34abb1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14617" - ], - "x-ms-correlation-request-id": [ - "76964fb0-c356-417e-b82f-733162d4df17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215209Z:76964fb0-c356-417e-b82f-733162d4df17" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b486c47-c94c-4db3-bcb7-b421f5e81eaf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14616" - ], - "x-ms-correlation-request-id": [ - "927e02c8-5299-481e-bcb0-72383f18cb75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215209Z:927e02c8-5299-481e-bcb0-72383f18cb75" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8f004fe-2d32-4094-a0c4-d0b1350dc73b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14615" - ], - "x-ms-correlation-request-id": [ - "1904143e-d7ad-43e9-aa07-bb56280fe838" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215209Z:1904143e-d7ad-43e9-aa07-bb56280fe838" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "826834bb-fa79-49da-b4b7-b34fd46d3136" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14614" - ], - "x-ms-correlation-request-id": [ - "b5666cee-7fa5-4287-8a33-40da1b5edb8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215210Z:b5666cee-7fa5-4287-8a33-40da1b5edb8c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa8c207b-13ef-4458-a5fa-78dbdf6623ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14613" - ], - "x-ms-correlation-request-id": [ - "9e8bdd57-37fc-4243-9b23-2ad7f22185f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215210Z:9e8bdd57-37fc-4243-9b23-2ad7f22185f0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "359af83b-0a97-4711-a382-b160a1b5482e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14612" - ], - "x-ms-correlation-request-id": [ - "780b73e5-28f6-49c6-b4b7-f186aa963b12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215210Z:780b73e5-28f6-49c6-b4b7-f186aa963b12" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf92748b-0b7f-455e-a6f7-5ff64c112559" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14611" - ], - "x-ms-correlation-request-id": [ - "49eccdfc-d9d8-43cd-af3a-f8367e3c64fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215210Z:49eccdfc-d9d8-43cd-af3a-f8367e3c64fb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a33da45-b755-4ea2-9639-8dc8e1ce97bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14610" - ], - "x-ms-correlation-request-id": [ - "9aef78d1-bec1-4685-b988-aeec33e99d5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215211Z:9aef78d1-bec1-4685-b988-aeec33e99d5d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d7d5e0f-448f-477a-86ba-1c35d246cfce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14609" - ], - "x-ms-correlation-request-id": [ - "769cd0de-4f3c-4f16-9672-a5046be94ad0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215211Z:769cd0de-4f3c-4f16-9672-a5046be94ad0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82672527-a2b4-4d55-a29a-dc0da09b2aed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14608" - ], - "x-ms-correlation-request-id": [ - "830d69f7-345c-4cb6-aa88-48f011f5f474" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215211Z:830d69f7-345c-4cb6-aa88-48f011f5f474" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "067871d1-0639-47ef-b619-5a3fc479e8cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14607" - ], - "x-ms-correlation-request-id": [ - "a231fcee-96ff-4e5b-89cb-0c826838a076" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215211Z:a231fcee-96ff-4e5b-89cb-0c826838a076" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d456e8de-dc5e-415c-9bf4-f2a78d2bb9e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14606" - ], - "x-ms-correlation-request-id": [ - "a18d2ade-9678-459d-88e1-ab8a2b61398c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215211Z:a18d2ade-9678-459d-88e1-ab8a2b61398c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e634db2-2796-4f65-a436-81cd75de73ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14605" - ], - "x-ms-correlation-request-id": [ - "f01c7fff-0d4a-4bf0-8c09-1c126ab05ead" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215211Z:f01c7fff-0d4a-4bf0-8c09-1c126ab05ead" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1647efde-d20f-481a-95f4-a727198ad89d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14604" - ], - "x-ms-correlation-request-id": [ - "a053930d-da47-4ef9-b7e4-1d9dfe7cd424" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215212Z:a053930d-da47-4ef9-b7e4-1d9dfe7cd424" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b336a687-0ff5-4600-a575-9112a842b61f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14603" - ], - "x-ms-correlation-request-id": [ - "e230b459-2f49-44ab-bca3-8703e3f1018c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215212Z:e230b459-2f49-44ab-bca3-8703e3f1018c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2b763ca-5418-45a2-9187-8f3e37d7a2e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14602" - ], - "x-ms-correlation-request-id": [ - "f6f2ed81-bb3a-4dc6-a0b1-9d90ae741d6a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215212Z:f6f2ed81-bb3a-4dc6-a0b1-9d90ae741d6a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f5216a4-db78-4fa6-97e4-702e819b39d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14601" - ], - "x-ms-correlation-request-id": [ - "1b1c09dc-0109-4d0f-a21c-0c1f33f31ce7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215212Z:1b1c09dc-0109-4d0f-a21c-0c1f33f31ce7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06cb5e57-17bd-4a58-9e8d-b89f60281c0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14600" - ], - "x-ms-correlation-request-id": [ - "8fa9e705-69a2-43a7-a506-236e46a220f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215212Z:8fa9e705-69a2-43a7-a506-236e46a220f7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e61d077-bca2-4f32-96f1-c8caab62853f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14599" - ], - "x-ms-correlation-request-id": [ - "8835a5f9-526f-4c6b-a038-18199130ff0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215212Z:8835a5f9-526f-4c6b-a038-18199130ff0d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17f7bade-e0ea-4798-bdb5-2c0323cab364" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14598" - ], - "x-ms-correlation-request-id": [ - "8b0782f8-489c-4338-b0bb-15dc088a557f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215213Z:8b0782f8-489c-4338-b0bb-15dc088a557f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02f24341-140d-4ea7-b626-74f2d380415b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14597" - ], - "x-ms-correlation-request-id": [ - "808c4a7c-5cb9-418d-bf8a-27c61fcb233e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215213Z:808c4a7c-5cb9-418d-bf8a-27c61fcb233e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8262c440-39d3-492b-92cd-170e7386f80f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14596" - ], - "x-ms-correlation-request-id": [ - "fbd5190c-bb99-4211-ad11-aaeee12636f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215213Z:fbd5190c-bb99-4211-ad11-aaeee12636f8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a261581-5743-4941-a9a0-840c8faa6fa9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14595" - ], - "x-ms-correlation-request-id": [ - "b25f6a8e-1b5d-4d8a-9433-506ac27356c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215213Z:b25f6a8e-1b5d-4d8a-9433-506ac27356c0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d48d424c-f8c8-45ce-9d6a-753d19f4ef09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14594" - ], - "x-ms-correlation-request-id": [ - "2138d49c-6431-4836-a29e-30c194cae08e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215214Z:2138d49c-6431-4836-a29e-30c194cae08e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5423e922-439a-4a60-b717-3c380dfa1925" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14593" - ], - "x-ms-correlation-request-id": [ - "9bb11cdb-33c8-4fac-a16b-deb696a74886" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215214Z:9bb11cdb-33c8-4fac-a16b-deb696a74886" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db000408-91d3-477b-85ab-cd5ef0306085" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14592" - ], - "x-ms-correlation-request-id": [ - "3f13fe9b-83f5-4ece-9e4a-685bd151f9e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215214Z:3f13fe9b-83f5-4ece-9e4a-685bd151f9e1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03c39e4d-5e91-42c8-bdc5-891dcfb89d92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14591" - ], - "x-ms-correlation-request-id": [ - "7580f711-f90d-4147-b9ef-3b7135324748" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215214Z:7580f711-f90d-4147-b9ef-3b7135324748" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86296b91-7354-42e2-8232-25502c7dc87d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14590" - ], - "x-ms-correlation-request-id": [ - "b4c19a70-64e2-4734-887a-a4279e824c7d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215214Z:b4c19a70-64e2-4734-887a-a4279e824c7d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c36900a-4646-4d36-911e-826901710ded" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14589" - ], - "x-ms-correlation-request-id": [ - "74f93824-8e61-4d9a-9518-b55e0e0deab3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215215Z:74f93824-8e61-4d9a-9518-b55e0e0deab3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d435412-4657-4f04-ac4f-146189bbff4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14588" - ], - "x-ms-correlation-request-id": [ - "28ec769b-a25f-41a6-acc9-8ef925230f18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215215Z:28ec769b-a25f-41a6-acc9-8ef925230f18" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f4f2c6b-d2be-4e69-bf0c-9ad4475dfd38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14587" - ], - "x-ms-correlation-request-id": [ - "b6622ad4-ea4a-4c6e-9a90-7ade01fccdad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215215Z:b6622ad4-ea4a-4c6e-9a90-7ade01fccdad" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5bd709df-573e-49d3-95af-14e7acbea8ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14586" - ], - "x-ms-correlation-request-id": [ - "784c8e32-cf64-4315-96de-b6e38980a4b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215215Z:784c8e32-cf64-4315-96de-b6e38980a4b8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df9ee508-e575-4384-89aa-ed3ff62e9e87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14585" - ], - "x-ms-correlation-request-id": [ - "65c87862-bcfa-4973-ae6e-b82234138cc0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215216Z:65c87862-bcfa-4973-ae6e-b82234138cc0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77f52f1f-f751-43e0-a954-5afbe8608f90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14584" - ], - "x-ms-correlation-request-id": [ - "c644ab1e-205a-45cf-99ac-2d5ec8428cb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215216Z:c644ab1e-205a-45cf-99ac-2d5ec8428cb8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9900c254-a09f-48d4-93e4-42d12e297672" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14583" - ], - "x-ms-correlation-request-id": [ - "e2805363-ba68-48cd-b17b-658848c245ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215216Z:e2805363-ba68-48cd-b17b-658848c245ce" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08ab211b-1571-42b4-aed4-fe148f0d41fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14582" - ], - "x-ms-correlation-request-id": [ - "f6a4665a-b098-41b8-a523-d080fac86d14" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215216Z:f6a4665a-b098-41b8-a523-d080fac86d14" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1f213da-51c2-46d2-a10c-1e984faf2326" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14581" - ], - "x-ms-correlation-request-id": [ - "fcd8be7e-0a55-4bc8-a3f4-7d79393fc62f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215216Z:fcd8be7e-0a55-4bc8-a3f4-7d79393fc62f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0914dced-368c-4f6a-9fc2-f1e66adc8d61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14580" - ], - "x-ms-correlation-request-id": [ - "e740003e-59a8-4c34-8f58-6522e4f02bc0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215216Z:e740003e-59a8-4c34-8f58-6522e4f02bc0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57e4ee57-14b5-4bf9-a36b-1067fb5fa65e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14579" - ], - "x-ms-correlation-request-id": [ - "5b1a7b31-fbf3-44c4-9e51-e96eb53cb16b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215217Z:5b1a7b31-fbf3-44c4-9e51-e96eb53cb16b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccbab39f-f9fd-4831-b899-0a8d1ca4ea16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14578" - ], - "x-ms-correlation-request-id": [ - "71359560-8efa-4de8-ae59-03dd3c09f446" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215217Z:71359560-8efa-4de8-ae59-03dd3c09f446" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de7f3400-1d4e-41f5-a801-50239996a58a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14577" - ], - "x-ms-correlation-request-id": [ - "7b702478-08d5-41cb-bee6-66167b04476f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215217Z:7b702478-08d5-41cb-bee6-66167b04476f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b05c7b8-0176-40f7-9939-b74d41db7ea6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14576" - ], - "x-ms-correlation-request-id": [ - "d2fc10fb-ff1e-4d44-a735-b93c4638896a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215217Z:d2fc10fb-ff1e-4d44-a735-b93c4638896a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "017e46ab-db47-49b5-80c3-781616f46fe9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14575" - ], - "x-ms-correlation-request-id": [ - "4f2c9b36-edd4-4501-8347-2684eb19332c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215217Z:4f2c9b36-edd4-4501-8347-2684eb19332c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fcde54ca-d21a-4f86-a0e6-76a4561c7c35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14574" - ], - "x-ms-correlation-request-id": [ - "9f7013cb-cedc-4259-8e92-01e723b39b66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215217Z:9f7013cb-cedc-4259-8e92-01e723b39b66" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28fb1e57-160f-4538-98f0-bd1bcb33dc86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14573" - ], - "x-ms-correlation-request-id": [ - "22535748-f7d3-46b8-a55d-ba2d85552bdc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215217Z:22535748-f7d3-46b8-a55d-ba2d85552bdc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "199651a4-c24f-4099-884c-844564d17eda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14572" - ], - "x-ms-correlation-request-id": [ - "993ab264-eae9-4dd1-ac81-7a9f3054a017" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215218Z:993ab264-eae9-4dd1-ac81-7a9f3054a017" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f7c523b-8cd7-497a-9ecf-4ba593bd0621" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14571" - ], - "x-ms-correlation-request-id": [ - "f4a7854f-33a0-40a3-b0ff-a14ab646772b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215218Z:f4a7854f-33a0-40a3-b0ff-a14ab646772b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0e64774-bfce-4c17-9393-38ec8a9b9c9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14570" - ], - "x-ms-correlation-request-id": [ - "7d713898-037d-48ac-85d0-39d01dab80af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215218Z:7d713898-037d-48ac-85d0-39d01dab80af" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35f63fd0-3bb0-4948-a40f-d8d18a197602" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14569" - ], - "x-ms-correlation-request-id": [ - "a8653ee3-6cd2-407a-8aa5-a18a06ef75b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215218Z:a8653ee3-6cd2-407a-8aa5-a18a06ef75b5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd709797-cf74-44e1-be1f-b8cdf083d81b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14568" - ], - "x-ms-correlation-request-id": [ - "5b5a52a6-2506-443d-a666-4941939e8e45" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215218Z:5b5a52a6-2506-443d-a666-4941939e8e45" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "799326df-c4e0-4106-91eb-6a35fb03a2ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14567" - ], - "x-ms-correlation-request-id": [ - "d6149ad5-30da-46d0-95f0-0bd8b76ca3cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215218Z:d6149ad5-30da-46d0-95f0-0bd8b76ca3cf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cdc5f669-ceb7-4f3a-870b-ec0f573c4bbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14566" - ], - "x-ms-correlation-request-id": [ - "b8c151ad-ab9b-4e5e-b889-14cfb2cf6bc2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215219Z:b8c151ad-ab9b-4e5e-b889-14cfb2cf6bc2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "267d46d9-b571-4224-94f8-45fe93fa433a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14565" - ], - "x-ms-correlation-request-id": [ - "2e049bfc-b646-409e-ae06-db4edc9f01da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215219Z:2e049bfc-b646-409e-ae06-db4edc9f01da" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa48fda3-0b2d-4261-8f88-af70a5843dc3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14564" - ], - "x-ms-correlation-request-id": [ - "808b8cd6-722f-4475-a159-973435f54785" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215219Z:808b8cd6-722f-4475-a159-973435f54785" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "192f3d9e-295b-4907-a2c3-d8f3feaa5bd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14563" - ], - "x-ms-correlation-request-id": [ - "38b9abaa-8018-4fd5-bd88-5c3423846f55" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215219Z:38b9abaa-8018-4fd5-bd88-5c3423846f55" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ea39171-e42f-4a97-8abd-2c8c1e4a8237" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14562" - ], - "x-ms-correlation-request-id": [ - "d7f67063-e2ea-40fc-a026-e8c912249d1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215219Z:d7f67063-e2ea-40fc-a026-e8c912249d1e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d5dcdb0-0de2-4130-b7f8-32170b416b85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14561" - ], - "x-ms-correlation-request-id": [ - "f321bd79-f343-4e53-a69f-9e208727ad30" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215219Z:f321bd79-f343-4e53-a69f-9e208727ad30" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a96ee752-5ff9-4079-bbf9-8905cb35cdae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14560" - ], - "x-ms-correlation-request-id": [ - "b3502506-6910-45fd-bf94-2da0bc7ea090" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215219Z:b3502506-6910-45fd-bf94-2da0bc7ea090" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "903681e4-c2ed-4ee5-9ca8-01a718e76a7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14559" - ], - "x-ms-correlation-request-id": [ - "6db82954-595c-49c2-ba01-25f33e9fa6ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215220Z:6db82954-595c-49c2-ba01-25f33e9fa6ee" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "145926bf-ce8c-4f26-925a-859c47e790b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14558" - ], - "x-ms-correlation-request-id": [ - "c2a3f45a-4376-4456-8460-be072c451738" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215220Z:c2a3f45a-4376-4456-8460-be072c451738" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b417bfa8-30e7-479d-8bc5-4f23510addf0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14557" - ], - "x-ms-correlation-request-id": [ - "a99ee509-9bbc-419a-b9c6-08078715b8e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215220Z:a99ee509-9bbc-419a-b9c6-08078715b8e3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0d988f5-11a8-43da-bdb9-933ed9198f10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14556" - ], - "x-ms-correlation-request-id": [ - "5da0ea24-b511-4936-8571-35ec08aa98dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215220Z:5da0ea24-b511-4936-8571-35ec08aa98dd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "742b7663-c74e-4ed5-baba-5266412a42b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14555" - ], - "x-ms-correlation-request-id": [ - "45eff993-61a8-4f82-83ae-e51242275de0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215220Z:45eff993-61a8-4f82-83ae-e51242275de0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4488dec6-4fb8-4879-ba3a-d819fd8c65e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14554" - ], - "x-ms-correlation-request-id": [ - "5dafd277-53f6-4085-9039-7345f7ebf0c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215220Z:5dafd277-53f6-4085-9039-7345f7ebf0c2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1c1f912-f9ac-4b17-b754-5e658fb4f99a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14553" - ], - "x-ms-correlation-request-id": [ - "fd902dc7-dd95-4fb4-98ca-8808f7079c1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215220Z:fd902dc7-dd95-4fb4-98ca-8808f7079c1f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0edda55-92ec-4e1a-88c4-9e4ea3477b44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14552" - ], - "x-ms-correlation-request-id": [ - "a367cfd7-6680-43e6-ba2b-1451f09169d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215221Z:a367cfd7-6680-43e6-ba2b-1451f09169d6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e113460-cd30-43cc-a0ba-dfa65b52449b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14551" - ], - "x-ms-correlation-request-id": [ - "9680eded-4a9e-4a80-bd9e-fcc00ec656e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215221Z:9680eded-4a9e-4a80-bd9e-fcc00ec656e7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "666b45e9-1578-4728-a83e-35e221b058c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14550" - ], - "x-ms-correlation-request-id": [ - "3d1879dd-730e-4f38-a807-44bf85ea40a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215221Z:3d1879dd-730e-4f38-a807-44bf85ea40a4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1a57cf7-9580-4e36-96b4-d9b29d0facfe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14549" - ], - "x-ms-correlation-request-id": [ - "51b2011a-557f-4e3e-b165-2687ec243c38" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215221Z:51b2011a-557f-4e3e-b165-2687ec243c38" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "203edd66-7532-4828-8607-f196a43b3ba9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14548" - ], - "x-ms-correlation-request-id": [ - "d289f8c6-edaf-4fd0-88a9-f188dd8f8bef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215221Z:d289f8c6-edaf-4fd0-88a9-f188dd8f8bef" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36dc29d7-1c3c-4db3-826a-35a4b7ac2316" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14547" - ], - "x-ms-correlation-request-id": [ - "c63c0a5a-ca62-468f-95d4-77660bdf276d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215221Z:c63c0a5a-ca62-468f-95d4-77660bdf276d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "296f3d6c-34e0-4b30-873f-baf2fc55c83a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14546" - ], - "x-ms-correlation-request-id": [ - "903c29a4-c8d1-45ac-9da0-b670f2676a3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215221Z:903c29a4-c8d1-45ac-9da0-b670f2676a3d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ee29f69-ded1-43c6-a30d-3791927a4954" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14545" - ], - "x-ms-correlation-request-id": [ - "befd25ef-a85b-4a0c-9b71-7e2fbf7ce2ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215222Z:befd25ef-a85b-4a0c-9b71-7e2fbf7ce2ea" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "931e68b0-2357-411a-b531-aad47af378b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14544" - ], - "x-ms-correlation-request-id": [ - "2fe42b48-94e4-4b97-9875-3fac3a1a3b5c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215222Z:2fe42b48-94e4-4b97-9875-3fac3a1a3b5c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98432bc4-46dd-422e-a97c-83bde736431f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14543" - ], - "x-ms-correlation-request-id": [ - "b9bb1186-49c9-46c6-8ed5-59a407e3c057" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215222Z:b9bb1186-49c9-46c6-8ed5-59a407e3c057" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de2b9577-45a5-4258-9f76-c71b9988b789" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14542" - ], - "x-ms-correlation-request-id": [ - "4d0497c7-2e35-43e6-a516-72549dc74622" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215222Z:4d0497c7-2e35-43e6-a516-72549dc74622" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89791942-c28a-4e64-a1e8-de8d53b518f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14541" - ], - "x-ms-correlation-request-id": [ - "34964daa-82ba-42cd-8eec-1c640e166013" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215222Z:34964daa-82ba-42cd-8eec-1c640e166013" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc2067fe-ca1f-40ec-bc6b-05f3a9b2a5b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14540" - ], - "x-ms-correlation-request-id": [ - "2c61bfed-2295-41ff-97e9-67ec1e82442c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215222Z:2c61bfed-2295-41ff-97e9-67ec1e82442c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "008b2c0f-d982-4c92-a44b-6ced0fac8df7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14539" - ], - "x-ms-correlation-request-id": [ - "46d60608-ed18-4bfc-ae8f-20cabe860b60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215223Z:46d60608-ed18-4bfc-ae8f-20cabe860b60" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57114f67-9d22-4346-b116-20daa6ebfd37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14538" - ], - "x-ms-correlation-request-id": [ - "2ba639ef-49db-4457-a21d-8844f823a09b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215223Z:2ba639ef-49db-4457-a21d-8844f823a09b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a3f7cde-6ccb-436e-83e8-8b1a8ee3d8f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14537" - ], - "x-ms-correlation-request-id": [ - "3bdb1393-3606-4653-85f9-c424075c7ccc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215223Z:3bdb1393-3606-4653-85f9-c424075c7ccc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c744e1ab-e6c5-4514-a2c7-22693c56a183" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14536" - ], - "x-ms-correlation-request-id": [ - "dff4ea22-8c78-42d9-8abb-4350b436056a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215223Z:dff4ea22-8c78-42d9-8abb-4350b436056a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b61e306f-c14c-4970-b486-81807779f940" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14535" - ], - "x-ms-correlation-request-id": [ - "2a5cab82-af3c-4ecc-a1b9-8ad486e195ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215223Z:2a5cab82-af3c-4ecc-a1b9-8ad486e195ae" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88a16ec9-94ba-4568-8073-98afdd9cfd8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14534" - ], - "x-ms-correlation-request-id": [ - "d6326627-c7e0-4fec-9e90-a467ffd993ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215224Z:d6326627-c7e0-4fec-9e90-a467ffd993ea" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1a756a1-9989-43d7-81f6-109956ed2d5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14533" - ], - "x-ms-correlation-request-id": [ - "afbd3e89-2723-43e8-a5a3-de2a5a8662b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215224Z:afbd3e89-2723-43e8-a5a3-de2a5a8662b4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0bcf3bf-2115-41ca-90e2-2191ca756222" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14532" - ], - "x-ms-correlation-request-id": [ - "a99817a5-ba32-4d99-9cfa-2ccf41cc5b32" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215224Z:a99817a5-ba32-4d99-9cfa-2ccf41cc5b32" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "988b95cc-00e2-4adb-a757-9744bfea49ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14531" - ], - "x-ms-correlation-request-id": [ - "49139196-9df5-44c7-9cc8-2e4f2638e70e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215224Z:49139196-9df5-44c7-9cc8-2e4f2638e70e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f5ced55-0ac0-43e4-8b7c-b4671e3854fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14530" - ], - "x-ms-correlation-request-id": [ - "45a1d78f-98b2-4be4-a92d-d8a69dc7a0ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215224Z:45a1d78f-98b2-4be4-a92d-d8a69dc7a0ed" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5b18942-1e7c-4c8a-b2b6-a1a800baedb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14529" - ], - "x-ms-correlation-request-id": [ - "62cbcf39-34ef-4678-a324-7891984a82cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215224Z:62cbcf39-34ef-4678-a324-7891984a82cc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e9c5e2a4-be7d-4ab3-9be5-9fe78aa4aebf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14528" - ], - "x-ms-correlation-request-id": [ - "8cf7cd7f-fa46-45c3-a45d-e2ec06c4bd38" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215225Z:8cf7cd7f-fa46-45c3-a45d-e2ec06c4bd38" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a270da2-b1e3-43ce-88a7-83dae4c0f308" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14527" - ], - "x-ms-correlation-request-id": [ - "2074648c-0e46-4a5e-9e11-0ec9d9aa1d34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215225Z:2074648c-0e46-4a5e-9e11-0ec9d9aa1d34" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba3b7385-a340-497e-a287-d022e27ef504" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14526" - ], - "x-ms-correlation-request-id": [ - "8206ad49-b9f1-499d-9440-08e74eff7a21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215225Z:8206ad49-b9f1-499d-9440-08e74eff7a21" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69ba69b5-348b-42fc-8de0-1e7eb5a40c27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14525" - ], - "x-ms-correlation-request-id": [ - "6940f4dc-6041-411f-bdf5-eca95839e81e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215225Z:6940f4dc-6041-411f-bdf5-eca95839e81e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b181eda-84c2-40e5-a519-a876554a26bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14524" - ], - "x-ms-correlation-request-id": [ - "b9fb566a-d58e-409d-898a-27513f1e1897" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215225Z:b9fb566a-d58e-409d-898a-27513f1e1897" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3971aabe-a90a-46c5-924e-c741ae44b29d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14523" - ], - "x-ms-correlation-request-id": [ - "9a089f4b-7556-4976-9b6a-549eed0f77e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215225Z:9a089f4b-7556-4976-9b6a-549eed0f77e3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "502e5f98-5fec-46b6-bd07-db551cda304e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14522" - ], - "x-ms-correlation-request-id": [ - "139ed0fd-3be2-4784-a2d2-3402185298f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215225Z:139ed0fd-3be2-4784-a2d2-3402185298f8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0c926d8-4629-481f-81b0-e4e139b4eba0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14521" - ], - "x-ms-correlation-request-id": [ - "7e79df71-d471-424c-bbca-6a5b914f2cf1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215226Z:7e79df71-d471-424c-bbca-6a5b914f2cf1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d24f70c-59cd-4aab-ae37-4fe22030a320" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14520" - ], - "x-ms-correlation-request-id": [ - "cdeeca41-2ee2-4076-affc-bdedf6c038fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215226Z:cdeeca41-2ee2-4076-affc-bdedf6c038fb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d18a6b6-5721-4f07-83f0-5dcd8aa8b22c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14519" - ], - "x-ms-correlation-request-id": [ - "6379c87d-e772-4866-9ce9-50b2b360d317" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215226Z:6379c87d-e772-4866-9ce9-50b2b360d317" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f695052-d494-488f-bc96-7105520298bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14518" - ], - "x-ms-correlation-request-id": [ - "fa7da1dd-cc03-49ac-8ddc-30601f8f3534" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215226Z:fa7da1dd-cc03-49ac-8ddc-30601f8f3534" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f01ba7e9-071e-42a4-abee-a55a94acc3c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14517" - ], - "x-ms-correlation-request-id": [ - "68cbead3-51dc-4ce6-8dea-81b9d907b5d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215226Z:68cbead3-51dc-4ce6-8dea-81b9d907b5d4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b06350e-e78e-4b94-b3d2-66c674ca47a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14516" - ], - "x-ms-correlation-request-id": [ - "1237a42c-b391-4a43-8791-a16f54cf9397" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215226Z:1237a42c-b391-4a43-8791-a16f54cf9397" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4030a2de-7f7d-4da8-a332-a63fbbfb41f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14515" - ], - "x-ms-correlation-request-id": [ - "556a2578-e128-445d-95c9-3d0641209884" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215227Z:556a2578-e128-445d-95c9-3d0641209884" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67077de0-10b5-4cc4-8bda-3b508ed207c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14514" - ], - "x-ms-correlation-request-id": [ - "68748708-0b69-4719-bf04-f1b0ec171036" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215227Z:68748708-0b69-4719-bf04-f1b0ec171036" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2273915d-e682-4963-93b7-3f3205aab95a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14513" - ], - "x-ms-correlation-request-id": [ - "ba8d1d5d-40e1-4517-b6c7-aa04f4691dee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215227Z:ba8d1d5d-40e1-4517-b6c7-aa04f4691dee" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5317c2c-884e-4ee0-8b33-ac1c696d6589" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14512" - ], - "x-ms-correlation-request-id": [ - "c8fbe775-a27c-4bdc-be70-e51881e021e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215227Z:c8fbe775-a27c-4bdc-be70-e51881e021e2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ba91e62-aade-4797-85d4-df3ab08cf4bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14511" - ], - "x-ms-correlation-request-id": [ - "38d6eade-f8f6-4c4e-b6ea-ddc1dbd34fc5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215227Z:38d6eade-f8f6-4c4e-b6ea-ddc1dbd34fc5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5df53ab6-a908-4afa-95b5-776548cf50b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14510" - ], - "x-ms-correlation-request-id": [ - "044b8e27-74a5-4171-a4ce-13a61b8c2e54" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215228Z:044b8e27-74a5-4171-a4ce-13a61b8c2e54" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1892b6a7-453e-4774-b33a-0a14c2f2da67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14509" - ], - "x-ms-correlation-request-id": [ - "75a7b577-05cc-4d6a-b2e6-08bd02e6a87d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215228Z:75a7b577-05cc-4d6a-b2e6-08bd02e6a87d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e36d33b7-0f10-47f1-84cc-57555ef80dc7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14508" - ], - "x-ms-correlation-request-id": [ - "95da177a-c531-4b23-a56a-59f660f3e220" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215228Z:95da177a-c531-4b23-a56a-59f660f3e220" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "695066c7-dc75-4f8f-8de2-f86d60f97e8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14507" - ], - "x-ms-correlation-request-id": [ - "887d73b2-3a03-4b1b-924b-7f669309f667" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215228Z:887d73b2-3a03-4b1b-924b-7f669309f667" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "630718eb-e8d7-494e-ba35-ac13d6d445c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14506" - ], - "x-ms-correlation-request-id": [ - "f399502b-8e2d-493e-bf24-897f043c8b95" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215228Z:f399502b-8e2d-493e-bf24-897f043c8b95" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "accf76b6-3983-43e8-95e0-8a39a5084b80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14505" - ], - "x-ms-correlation-request-id": [ - "906fe406-71de-49fc-bd74-a454f675edc6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215228Z:906fe406-71de-49fc-bd74-a454f675edc6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0bf0a8b-b2a9-42ce-9aff-37304f6c5cbf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14504" - ], - "x-ms-correlation-request-id": [ - "8689c0a0-3bc3-43ad-ac36-86535b41dbbd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215229Z:8689c0a0-3bc3-43ad-ac36-86535b41dbbd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3633179-aa52-4b31-9d9a-ff989f47f855" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14503" - ], - "x-ms-correlation-request-id": [ - "9b901622-a61a-4a21-9a58-73e92d661e69" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215229Z:9b901622-a61a-4a21-9a58-73e92d661e69" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f49782c6-d202-4e55-8c4d-d09e3bd24ca9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14502" - ], - "x-ms-correlation-request-id": [ - "99a07d70-1c84-4806-958a-0dbf12595311" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215229Z:99a07d70-1c84-4806-958a-0dbf12595311" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13f2054d-9d43-4a46-b719-55764167d3e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14501" - ], - "x-ms-correlation-request-id": [ - "bf5ca2fb-56e9-43fd-9dcf-7ac8a0f119ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215229Z:bf5ca2fb-56e9-43fd-9dcf-7ac8a0f119ea" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52aba4ee-de1f-43b1-9a6f-95532398dbc3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14500" - ], - "x-ms-correlation-request-id": [ - "31efe893-fe7c-449a-8e60-83a9ac683ae8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215229Z:31efe893-fe7c-449a-8e60-83a9ac683ae8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7901711d-effd-4afb-b8bb-cb7e70584569" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14499" - ], - "x-ms-correlation-request-id": [ - "cd0bef50-3bdf-439b-a243-42cd1bab641c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215230Z:cd0bef50-3bdf-439b-a243-42cd1bab641c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "201b6aba-490b-4a79-b36e-091c92e5c348" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14498" - ], - "x-ms-correlation-request-id": [ - "b39cbfe6-01bc-4261-a5c3-7c4412882c56" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215230Z:b39cbfe6-01bc-4261-a5c3-7c4412882c56" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e0c66b2-168e-463f-85e0-747a5048850b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14497" - ], - "x-ms-correlation-request-id": [ - "0093bf93-2e7b-4fa3-9f93-d31b5a47de93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215230Z:0093bf93-2e7b-4fa3-9f93-d31b5a47de93" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ea7863d-4464-489b-8c9b-aeac41df82b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14496" - ], - "x-ms-correlation-request-id": [ - "23830667-470c-4bc4-a1a5-a0446f91ea9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215230Z:23830667-470c-4bc4-a1a5-a0446f91ea9d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0b02889-7fdf-4ead-8ab9-f84d89c4c862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14495" - ], - "x-ms-correlation-request-id": [ - "5398c820-0ec3-4814-946f-395c2cf4af80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215230Z:5398c820-0ec3-4814-946f-395c2cf4af80" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6163ede-c745-4c26-aff6-c6e5889ea563" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14494" - ], - "x-ms-correlation-request-id": [ - "a83c41f9-4299-419a-b37d-0744ebf7f63a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215230Z:a83c41f9-4299-419a-b37d-0744ebf7f63a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f23938d-47e8-44be-aac8-7d165bf8e80c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14493" - ], - "x-ms-correlation-request-id": [ - "7d9e4eed-d488-43c5-969a-356cf1b8def5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215230Z:7d9e4eed-d488-43c5-969a-356cf1b8def5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01c64d90-f780-40d7-88d7-37fe52c9f15e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14492" - ], - "x-ms-correlation-request-id": [ - "81c12fe4-f4f5-4984-8b5c-8b58ee83c7bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215231Z:81c12fe4-f4f5-4984-8b5c-8b58ee83c7bb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fcfb8e67-fc82-430b-a1fb-ff34cc998000" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14491" - ], - "x-ms-correlation-request-id": [ - "c32325f4-439e-4478-a468-5ea7e9c1f464" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215231Z:c32325f4-439e-4478-a468-5ea7e9c1f464" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ee3aeeb-36f0-4b42-a655-5cb15be618d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14490" - ], - "x-ms-correlation-request-id": [ - "30d7ad7a-50b2-4b45-92e1-ecd6f3917326" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215231Z:30d7ad7a-50b2-4b45-92e1-ecd6f3917326" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff97c16c-47b0-4ce0-a54a-043e5624d639" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14489" - ], - "x-ms-correlation-request-id": [ - "65f462a6-e620-45b5-9218-5ce03da59f4d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215231Z:65f462a6-e620-45b5-9218-5ce03da59f4d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c468928-eb20-49a8-9df6-282e0a6f30de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14488" - ], - "x-ms-correlation-request-id": [ - "d07e0e9a-96b4-4272-a162-732d102c6fbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215231Z:d07e0e9a-96b4-4272-a162-732d102c6fbe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bce9aec7-a581-4945-a66c-4ab30934ccd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14487" - ], - "x-ms-correlation-request-id": [ - "fbe61a75-13b2-4673-be09-fd3daa89cef1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215232Z:fbe61a75-13b2-4673-be09-fd3daa89cef1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "582cc42a-413d-43e4-bf26-1d53e5d0a100" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14486" - ], - "x-ms-correlation-request-id": [ - "a60cdd6e-a4fe-47c9-bf83-3caf492f2076" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215232Z:a60cdd6e-a4fe-47c9-bf83-3caf492f2076" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f9642e9-8d26-474a-98fc-60ee824582e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14485" - ], - "x-ms-correlation-request-id": [ - "fade49a8-b4a8-4f27-bd9c-368ca39fd0c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215232Z:fade49a8-b4a8-4f27-bd9c-368ca39fd0c0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86b83953-9590-4f1c-8e4c-c862633d21c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14484" - ], - "x-ms-correlation-request-id": [ - "32a6a0c9-e916-451b-ac0f-8c999c00d0e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215232Z:32a6a0c9-e916-451b-ac0f-8c999c00d0e4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1925be9b-f79b-4c02-bead-01c7ebf1e7ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14483" - ], - "x-ms-correlation-request-id": [ - "fb155daa-27e6-4d0c-a595-5e64dcb84c58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215232Z:fb155daa-27e6-4d0c-a595-5e64dcb84c58" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f7a7500-d8f6-4bf1-80af-023ce9019cce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14482" - ], - "x-ms-correlation-request-id": [ - "729bb9d9-0d45-4331-b84e-f7e377455e1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215232Z:729bb9d9-0d45-4331-b84e-f7e377455e1e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a31b38b-3a23-4dec-b0f3-d1caa6cb8ef9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14481" - ], - "x-ms-correlation-request-id": [ - "9f124f14-e372-4cad-97c8-b18af093cb70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215233Z:9f124f14-e372-4cad-97c8-b18af093cb70" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42c1819e-7b68-4a8f-ad90-f2aba41b3ff8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14480" - ], - "x-ms-correlation-request-id": [ - "8cfbb583-eabf-4c47-82f8-c07f32c8c8ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215233Z:8cfbb583-eabf-4c47-82f8-c07f32c8c8ed" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f77ec7b-15c0-44d4-b186-ee862db28b9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14479" - ], - "x-ms-correlation-request-id": [ - "5612c888-cccb-40e1-a473-63d89b9f3bd9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215233Z:5612c888-cccb-40e1-a473-63d89b9f3bd9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1af7002d-7df8-4979-bccf-9301717fcefb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14478" - ], - "x-ms-correlation-request-id": [ - "337f6443-12dd-4409-a7e8-846fc9a912f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215233Z:337f6443-12dd-4409-a7e8-846fc9a912f4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7060876c-691a-4f0a-b226-ae62d5c53517" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14477" - ], - "x-ms-correlation-request-id": [ - "06d5c4c0-85ee-407f-bc5b-4426c02b7553" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215233Z:06d5c4c0-85ee-407f-bc5b-4426c02b7553" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "952bfa3e-61ee-4af1-be45-cb70b415d0f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14476" - ], - "x-ms-correlation-request-id": [ - "ad240e7d-6b97-4371-9cb5-75106d8808e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215233Z:ad240e7d-6b97-4371-9cb5-75106d8808e7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fbda4f5c-cf2c-4df8-a209-d4206580bcaf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14475" - ], - "x-ms-correlation-request-id": [ - "6003b36c-c65a-457c-84d0-fc0ab5e8b33d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215234Z:6003b36c-c65a-457c-84d0-fc0ab5e8b33d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9da00023-419d-4a44-a084-d4ee99a27d75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14474" - ], - "x-ms-correlation-request-id": [ - "ee7cb44b-61ad-449f-a44d-2c584579461f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215234Z:ee7cb44b-61ad-449f-a44d-2c584579461f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb93775e-4d5f-4efb-9cbf-8351c329c00f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14473" - ], - "x-ms-correlation-request-id": [ - "debac942-7898-4bc2-b1fd-ff19576ca856" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215234Z:debac942-7898-4bc2-b1fd-ff19576ca856" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "942f2e5c-d4ea-4e77-adf0-1102ef4e8444" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14472" - ], - "x-ms-correlation-request-id": [ - "d2f31bab-1f53-4c90-a329-bd695fe2dca7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215235Z:d2f31bab-1f53-4c90-a329-bd695fe2dca7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b47e5f89-ec1c-4844-9091-b67b4dc15646" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14471" - ], - "x-ms-correlation-request-id": [ - "95736733-77cc-41e6-8604-7e19a56e950c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215235Z:95736733-77cc-41e6-8604-7e19a56e950c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45b67fc0-ca95-4cdd-8070-086a196a5e7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14470" - ], - "x-ms-correlation-request-id": [ - "b81b2f15-5ec5-4ef7-bd66-acd547f144ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215235Z:b81b2f15-5ec5-4ef7-bd66-acd547f144ea" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf3a824c-6a05-4077-9aa8-f5873ec7d6b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14469" - ], - "x-ms-correlation-request-id": [ - "5652b4b1-3563-4c8b-80c5-2357ba61f0f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215235Z:5652b4b1-3563-4c8b-80c5-2357ba61f0f7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6a9bf0d-12d4-4bc4-81a8-ad931abf0469" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14468" - ], - "x-ms-correlation-request-id": [ - "9e8ad4de-865e-484c-a72c-f1156a48aa88" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215235Z:9e8ad4de-865e-484c-a72c-f1156a48aa88" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eac765db-4573-4519-8cbc-559ab0de177b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14467" - ], - "x-ms-correlation-request-id": [ - "2cc154f5-084b-42d0-af47-564d73a912ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215235Z:2cc154f5-084b-42d0-af47-564d73a912ab" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d60383a-92a8-4f04-9b82-5faa8a97282f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14466" - ], - "x-ms-correlation-request-id": [ - "6807c962-f746-4740-b192-ce56c6e3fc60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215236Z:6807c962-f746-4740-b192-ce56c6e3fc60" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ab1cb98-aab8-44bf-bb2d-63436d36e581" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14465" - ], - "x-ms-correlation-request-id": [ - "7afe2090-fbf9-4a64-ae83-1b573abfe8e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215236Z:7afe2090-fbf9-4a64-ae83-1b573abfe8e2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1cad3161-8d7c-418a-8634-bf3516d994de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14464" - ], - "x-ms-correlation-request-id": [ - "d48b120c-694d-460e-8963-f137a6ede9fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215236Z:d48b120c-694d-460e-8963-f137a6ede9fc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "412abd10-e781-4e58-950b-68813ee565d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14463" - ], - "x-ms-correlation-request-id": [ - "66836c7a-f8a9-46d1-a6c4-50cf9575de56" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215236Z:66836c7a-f8a9-46d1-a6c4-50cf9575de56" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "776ce36c-bcf7-4182-acde-3ba54b0564c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14462" - ], - "x-ms-correlation-request-id": [ - "28b5b7b4-185b-49e5-a750-ced1067a7373" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215236Z:28b5b7b4-185b-49e5-a750-ced1067a7373" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19918e28-9765-4e90-8234-dc8b1d7da18b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14461" - ], - "x-ms-correlation-request-id": [ - "446625ec-dc63-498b-92df-eaf2bba9ebbc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215236Z:446625ec-dc63-498b-92df-eaf2bba9ebbc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8189ba3-e871-46e0-a24a-b63768e46458" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14460" - ], - "x-ms-correlation-request-id": [ - "475d07c8-ac36-415e-9b4f-fd4cdbb1096e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215237Z:475d07c8-ac36-415e-9b4f-fd4cdbb1096e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e61717e-a692-4bde-9257-2b59ba507047" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14459" - ], - "x-ms-correlation-request-id": [ - "50e88cf7-1eef-4a7c-b57c-a25792d6194a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215237Z:50e88cf7-1eef-4a7c-b57c-a25792d6194a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e39349b6-2599-4d71-887e-a2fa926968fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14458" - ], - "x-ms-correlation-request-id": [ - "e8c22128-5288-4b7f-8643-0c75f77373a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215237Z:e8c22128-5288-4b7f-8643-0c75f77373a8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c216c38-5607-43a2-991e-03b2bb5a7cf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14457" - ], - "x-ms-correlation-request-id": [ - "9b6e0bc3-a189-4b28-917a-54c1d7fb4063" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215237Z:9b6e0bc3-a189-4b28-917a-54c1d7fb4063" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1fbbb7a-4a72-4473-88ac-ad0c9661e075" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14456" - ], - "x-ms-correlation-request-id": [ - "14e72267-4422-43d4-a8a8-be8ad64f32f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215237Z:14e72267-4422-43d4-a8a8-be8ad64f32f2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f206039-40d3-4482-92d6-46ab927d5847" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14455" - ], - "x-ms-correlation-request-id": [ - "3d7ede41-ceb4-4ea0-9337-d14f7ecb5cb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215238Z:3d7ede41-ceb4-4ea0-9337-d14f7ecb5cb8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0cced8b1-49d7-4703-8f68-3852af6f6dba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14454" - ], - "x-ms-correlation-request-id": [ - "7ec7f9d7-9404-4718-a58a-2a570cfe59f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215238Z:7ec7f9d7-9404-4718-a58a-2a570cfe59f5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03eadf07-52b4-491c-9395-e8f700edd14f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14453" - ], - "x-ms-correlation-request-id": [ - "c1038e91-3090-4188-ab67-336049ae9b35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215238Z:c1038e91-3090-4188-ab67-336049ae9b35" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7df3af49-0110-4a67-b88c-66ce55d3760f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14452" - ], - "x-ms-correlation-request-id": [ - "25e29d24-8b5b-4f50-963c-0d64b9b657fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215238Z:25e29d24-8b5b-4f50-963c-0d64b9b657fe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b6db2ce-19e2-496a-af2e-3e823e411f42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14451" - ], - "x-ms-correlation-request-id": [ - "f6b9d5f6-be3e-467d-8ab9-7e40322b1f61" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215238Z:f6b9d5f6-be3e-467d-8ab9-7e40322b1f61" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1ef5691-d7d9-4da0-99ab-e34b010ece12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14450" - ], - "x-ms-correlation-request-id": [ - "8c289c01-89be-4289-b553-ff422e239ecb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215238Z:8c289c01-89be-4289-b553-ff422e239ecb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02f1dc20-3040-47bf-bb84-379a11589266" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14449" - ], - "x-ms-correlation-request-id": [ - "8b7f8c6f-3260-4f5b-adc8-26969aa8d8cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215239Z:8b7f8c6f-3260-4f5b-adc8-26969aa8d8cd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "655f5d3c-6c71-454a-b5ab-5961fa0c9a85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14448" - ], - "x-ms-correlation-request-id": [ - "5abffa85-3704-4b5b-8126-b8021b025415" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215239Z:5abffa85-3704-4b5b-8126-b8021b025415" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b868b5d0-11da-4d2f-8579-4d89ae28993d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14447" - ], - "x-ms-correlation-request-id": [ - "f95c8de2-518a-4dfe-94a4-d0819412883b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215239Z:f95c8de2-518a-4dfe-94a4-d0819412883b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39bef388-e82e-4ef6-9a49-f85d0051b29e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14446" - ], - "x-ms-correlation-request-id": [ - "c7d75e46-8496-414d-9fba-883613d1cb0b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215239Z:c7d75e46-8496-414d-9fba-883613d1cb0b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c4d8f8bb-4ccd-483a-93a4-f59b04525f88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14445" - ], - "x-ms-correlation-request-id": [ - "d21fb860-d497-4f53-9d08-80744d474607" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215239Z:d21fb860-d497-4f53-9d08-80744d474607" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2951858f-aa48-455b-99bb-d707e6e1c6f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14444" - ], - "x-ms-correlation-request-id": [ - "2cf634fc-6c5d-4503-8abe-38dfd3e29d5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215239Z:2cf634fc-6c5d-4503-8abe-38dfd3e29d5a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14cb0704-d675-45ab-aaae-72e8a76497c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14443" - ], - "x-ms-correlation-request-id": [ - "6c733571-c75d-4519-9d7e-2d59af07dbc9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215239Z:6c733571-c75d-4519-9d7e-2d59af07dbc9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "21eb5c0a-0301-4890-8843-2a2d9a9e458e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14442" - ], - "x-ms-correlation-request-id": [ - "5c91b740-aa18-48fd-a25f-442ddf792e5f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215240Z:5c91b740-aa18-48fd-a25f-442ddf792e5f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94abb25f-950d-43f8-8939-c79acbad6ed3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14441" - ], - "x-ms-correlation-request-id": [ - "5d4a6c7a-7d3e-4a47-98bc-079c5fa22e9e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215240Z:5d4a6c7a-7d3e-4a47-98bc-079c5fa22e9e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "050af4d8-8ab0-4382-9428-2f7a1874e1b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14440" - ], - "x-ms-correlation-request-id": [ - "494843ee-eae3-4e86-b285-2047e024fc52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215240Z:494843ee-eae3-4e86-b285-2047e024fc52" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "240662ef-cb8d-4d2b-9a66-aa27eaa9f3ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14439" - ], - "x-ms-correlation-request-id": [ - "e34f0d65-160d-4079-b8f5-70ce0b9e87c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215240Z:e34f0d65-160d-4079-b8f5-70ce0b9e87c0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1f34399-3360-471a-8476-c5fbcf02197a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14438" - ], - "x-ms-correlation-request-id": [ - "937e3b2e-2761-4f2a-ab52-8bb7f5c32f12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215240Z:937e3b2e-2761-4f2a-ab52-8bb7f5c32f12" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1baf629-8495-4482-8bb3-a82ba76744f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14437" - ], - "x-ms-correlation-request-id": [ - "38bd459b-83c3-4719-955b-1eeee82890fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215241Z:38bd459b-83c3-4719-955b-1eeee82890fd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06036308-f450-4052-86b4-1d805669d31a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14436" - ], - "x-ms-correlation-request-id": [ - "21ea9cfa-afa9-45a7-b0bb-80887d4f5fb0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215241Z:21ea9cfa-afa9-45a7-b0bb-80887d4f5fb0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac635957-46ab-49fa-92e6-c11f32cacce0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14435" - ], - "x-ms-correlation-request-id": [ - "d83efffe-a7da-49aa-90ca-f04f470506db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215241Z:d83efffe-a7da-49aa-90ca-f04f470506db" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d9eadbd-51f4-4ee6-b08f-978e0ca86566" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14434" - ], - "x-ms-correlation-request-id": [ - "1239b1b7-f3c4-48cc-bd42-63d560294dc5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215241Z:1239b1b7-f3c4-48cc-bd42-63d560294dc5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd4af621-a83f-47e6-bbea-a5634c47e57d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14433" - ], - "x-ms-correlation-request-id": [ - "7bde5c79-2dcf-441a-9045-2ef1a19c7deb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215241Z:7bde5c79-2dcf-441a-9045-2ef1a19c7deb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28cc5445-0a94-466b-beb0-d169fbef9698" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14432" - ], - "x-ms-correlation-request-id": [ - "ae10f87f-f51a-42b8-836b-4aa2a1f69f18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215241Z:ae10f87f-f51a-42b8-836b-4aa2a1f69f18" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d97cf42-36ed-4360-94db-1c8239571949" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14431" - ], - "x-ms-correlation-request-id": [ - "077c49fd-f4c1-4171-a118-7643034ae0c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215241Z:077c49fd-f4c1-4171-a118-7643034ae0c8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0444a446-cfd4-401d-b84e-3cc5f725cd22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14430" - ], - "x-ms-correlation-request-id": [ - "c15d0194-3c79-4709-a554-559606b1e644" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215242Z:c15d0194-3c79-4709-a554-559606b1e644" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be84076d-b00f-40b5-9f0f-c61adbb176c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14429" - ], - "x-ms-correlation-request-id": [ - "32cb0c49-718b-4cf5-83dc-0d5b872f3e04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215242Z:32cb0c49-718b-4cf5-83dc-0d5b872f3e04" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d93a94f8-a698-427a-a029-b120a951cf8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14428" - ], - "x-ms-correlation-request-id": [ - "5fc1edd8-4111-4c14-9e42-ef169ea291cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215242Z:5fc1edd8-4111-4c14-9e42-ef169ea291cc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78402daf-a65e-4cf1-a1c8-26870bf55555" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14427" - ], - "x-ms-correlation-request-id": [ - "1dc4eddc-8805-4583-89f0-76e8624e856c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215242Z:1dc4eddc-8805-4583-89f0-76e8624e856c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06456bce-8727-4e29-89c0-553c08eec78e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14426" - ], - "x-ms-correlation-request-id": [ - "b1df82f7-9501-400f-84cd-7460d8a00165" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215242Z:b1df82f7-9501-400f-84cd-7460d8a00165" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01662aca-4a4d-4ca5-8629-4ab1aaa7ac3e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14425" - ], - "x-ms-correlation-request-id": [ - "f44b8882-b3c7-4c1c-8822-0e1f2c022bf1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215243Z:f44b8882-b3c7-4c1c-8822-0e1f2c022bf1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "597bef70-8758-48f6-b46e-23cbae435db3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14424" - ], - "x-ms-correlation-request-id": [ - "3a188742-8326-469c-bfce-6701114449de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215243Z:3a188742-8326-469c-bfce-6701114449de" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a951257e-4cbb-4b50-b64e-f3df7bf12da6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14423" - ], - "x-ms-correlation-request-id": [ - "baba5e47-294c-428f-8681-1a7c99156b79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215243Z:baba5e47-294c-428f-8681-1a7c99156b79" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be3859c5-3b75-4ca7-83de-6eb9a34b3bbf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14422" - ], - "x-ms-correlation-request-id": [ - "d7181f9d-52d1-4469-b31a-b6fcfef91fff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215243Z:d7181f9d-52d1-4469-b31a-b6fcfef91fff" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1295311-c17a-4a5f-8ae4-2677c9acb336" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14421" - ], - "x-ms-correlation-request-id": [ - "9ddea3d1-9c62-4a99-aae8-d550196801d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215243Z:9ddea3d1-9c62-4a99-aae8-d550196801d1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81e70f7f-fd72-4fe3-a014-891307fc062e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14420" - ], - "x-ms-correlation-request-id": [ - "9a83bb32-ee40-4044-a1e9-9e0a17a48e12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215243Z:9a83bb32-ee40-4044-a1e9-9e0a17a48e12" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc116414-9f65-43fa-ba1f-8b28b8a9037b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14419" - ], - "x-ms-correlation-request-id": [ - "55165911-0252-4c24-a677-a5f14058a50b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215244Z:55165911-0252-4c24-a677-a5f14058a50b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "655ac327-2ed3-4e20-a5dc-d473ebe19883" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14418" - ], - "x-ms-correlation-request-id": [ - "7a796103-a84e-4819-bb51-a3da9585bcd5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215244Z:7a796103-a84e-4819-bb51-a3da9585bcd5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "668bc339-6787-49f1-9719-90e6eb342ad0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14417" - ], - "x-ms-correlation-request-id": [ - "01b2ee84-740b-4b63-8985-b957a1ccf542" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215244Z:01b2ee84-740b-4b63-8985-b957a1ccf542" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a85f28a8-0e99-4dc8-89e8-1b156849b6e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14416" - ], - "x-ms-correlation-request-id": [ - "154598ac-3b0b-45ee-8d31-a8090535f831" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215244Z:154598ac-3b0b-45ee-8d31-a8090535f831" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe2ed351-6809-45cb-9199-09064afcb3eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14415" - ], - "x-ms-correlation-request-id": [ - "3ea3df99-070b-4f0b-ba0a-b5ca3bdc45a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215244Z:3ea3df99-070b-4f0b-ba0a-b5ca3bdc45a2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c71b3bc-9366-46e6-9346-6fc57f1d3ebb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14414" - ], - "x-ms-correlation-request-id": [ - "3ee84e35-6e2b-464b-b9e3-7ad3d58c6479" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215245Z:3ee84e35-6e2b-464b-b9e3-7ad3d58c6479" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "836d32e2-c571-4e17-a46e-d0b671b08993" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14413" - ], - "x-ms-correlation-request-id": [ - "189ec3e6-a29c-4644-a9c3-44a18cc6f824" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215245Z:189ec3e6-a29c-4644-a9c3-44a18cc6f824" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf57c68f-ecc1-46b7-b7f0-d4021c67fd6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14412" - ], - "x-ms-correlation-request-id": [ - "f91a52f4-698b-4a15-a030-74b710bc447e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215245Z:f91a52f4-698b-4a15-a030-74b710bc447e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "576b8920-2f4d-438b-90f4-127e00d4078f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14411" - ], - "x-ms-correlation-request-id": [ - "4e3d60d1-abe5-4b63-81eb-4ea955e796d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215245Z:4e3d60d1-abe5-4b63-81eb-4ea955e796d0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57616bb0-7f40-40da-b436-d57499b8f7d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14410" - ], - "x-ms-correlation-request-id": [ - "643f81ab-86d1-4fcf-920f-46fdfdfdb2b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215245Z:643f81ab-86d1-4fcf-920f-46fdfdfdb2b2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b0239a6-b323-4738-acba-bfb4fe8709f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14409" - ], - "x-ms-correlation-request-id": [ - "1713f0c0-2936-48bf-bc8b-3b3c2e1d537a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215245Z:1713f0c0-2936-48bf-bc8b-3b3c2e1d537a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54e7bb52-ac02-4f87-90fd-fedde47210fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14408" - ], - "x-ms-correlation-request-id": [ - "f287c590-e6c6-456b-98a4-a1b19efa2fbb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215246Z:f287c590-e6c6-456b-98a4-a1b19efa2fbb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7a2c1cb-e6c3-4d05-a875-e072cb41347a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14407" - ], - "x-ms-correlation-request-id": [ - "f02f205e-05ae-43d1-a717-031790ce681f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215246Z:f02f205e-05ae-43d1-a717-031790ce681f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99e48173-ebd0-430a-a04c-f887152903a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14406" - ], - "x-ms-correlation-request-id": [ - "ff0c8a01-5c45-41a5-a1ff-74f5d8e58f7d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215246Z:ff0c8a01-5c45-41a5-a1ff-74f5d8e58f7d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a2e12671-6dcf-4917-a0f6-399feeb42674" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14405" - ], - "x-ms-correlation-request-id": [ - "c88495a1-c46e-4ed1-bc5c-d3c149a18daa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215246Z:c88495a1-c46e-4ed1-bc5c-d3c149a18daa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea198381-f9c5-434f-ba7e-342341a12d08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14404" - ], - "x-ms-correlation-request-id": [ - "30cdf586-f923-4f0e-ad01-82c3faee1494" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215247Z:30cdf586-f923-4f0e-ad01-82c3faee1494" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b28b4e2a-f384-4307-8626-6b58419b2125" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14403" - ], - "x-ms-correlation-request-id": [ - "1cf5435a-7734-43d0-be95-4313180c4a46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215247Z:1cf5435a-7734-43d0-be95-4313180c4a46" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2fb008c-2a70-4763-b78e-dd4a9207943d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14402" - ], - "x-ms-correlation-request-id": [ - "9168dbf7-e910-405d-9058-6055a88b8e37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215247Z:9168dbf7-e910-405d-9058-6055a88b8e37" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "142f56f5-2a19-4d7e-989e-af7f4b112971" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14401" - ], - "x-ms-correlation-request-id": [ - "d17c2071-7893-494c-bf88-e1d005f9182d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215247Z:d17c2071-7893-494c-bf88-e1d005f9182d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b350eb4-dbaf-49a6-9d0b-8929c7c79a97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14400" - ], - "x-ms-correlation-request-id": [ - "3da0bcc7-0f41-4726-a848-a7d3d38e4ea1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215247Z:3da0bcc7-0f41-4726-a848-a7d3d38e4ea1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b44fef97-2e40-4714-b9ad-4985b12c6f13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14399" - ], - "x-ms-correlation-request-id": [ - "b14405f4-2a83-4962-8be4-efcb345ffe26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215248Z:b14405f4-2a83-4962-8be4-efcb345ffe26" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9cc78edb-f009-4984-95a3-a2c51f4902f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14398" - ], - "x-ms-correlation-request-id": [ - "454b670c-c6db-417b-88ad-fee1359d5bc9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215248Z:454b670c-c6db-417b-88ad-fee1359d5bc9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82eeabd6-1fda-411a-97c1-d795cf71dd68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14397" - ], - "x-ms-correlation-request-id": [ - "6d2827da-799b-4fed-a9eb-c58ebab3312f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215248Z:6d2827da-799b-4fed-a9eb-c58ebab3312f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5150f3d-ecd4-40b7-a0b1-2b72dcbd8680" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14396" - ], - "x-ms-correlation-request-id": [ - "b38dcd2c-8810-4d67-907d-4bd93739e0fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215248Z:b38dcd2c-8810-4d67-907d-4bd93739e0fa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "015712a7-92ef-434c-a9c8-c033e8cccdf0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14395" - ], - "x-ms-correlation-request-id": [ - "2b24d021-386b-43bb-857a-e831bae1f9af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215248Z:2b24d021-386b-43bb-857a-e831bae1f9af" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e266eae-f0e7-439d-9b06-53bb3bbc05a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14394" - ], - "x-ms-correlation-request-id": [ - "f0c1f3c8-810c-495d-bf88-d2e7c0bd8456" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215248Z:f0c1f3c8-810c-495d-bf88-d2e7c0bd8456" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22933f04-1e59-4489-afb1-e0bd10921fd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14393" - ], - "x-ms-correlation-request-id": [ - "73f65fa6-6df9-4ebe-9808-32c044a838ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215248Z:73f65fa6-6df9-4ebe-9808-32c044a838ee" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5094693c-eb86-4d97-8cb9-d38e15504421" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14392" - ], - "x-ms-correlation-request-id": [ - "a75b5f2a-8bd6-42b6-9260-b77c236a74a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215248Z:a75b5f2a-8bd6-42b6-9260-b77c236a74a4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5cb976c2-a9f5-4389-9282-cf295bb5ebc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14391" - ], - "x-ms-correlation-request-id": [ - "1be8b0a6-eade-4ce4-b68f-0fb0cb711fd5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215249Z:1be8b0a6-eade-4ce4-b68f-0fb0cb711fd5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70051f05-8aa2-4413-92b7-c90f6882db35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14390" - ], - "x-ms-correlation-request-id": [ - "788bbec6-0ac3-4045-8805-9de50624ce5c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215249Z:788bbec6-0ac3-4045-8805-9de50624ce5c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d0b8bfa-883e-44f9-8331-03092ad680a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14389" - ], - "x-ms-correlation-request-id": [ - "8793b52a-e0b0-40cd-9f80-f9a823a02341" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215249Z:8793b52a-e0b0-40cd-9f80-f9a823a02341" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f41edb5-38be-4236-8f45-652c2bed1c07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14388" - ], - "x-ms-correlation-request-id": [ - "46e66e7c-eb40-49dc-8bbd-f3ad6d6c6221" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215249Z:46e66e7c-eb40-49dc-8bbd-f3ad6d6c6221" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "510c195d-49e5-4527-908f-bc371e05c19d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14387" - ], - "x-ms-correlation-request-id": [ - "cc853795-b360-4f52-887e-394c0cb6d2e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215249Z:cc853795-b360-4f52-887e-394c0cb6d2e9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7f728ce-e74b-4f24-b675-86535a953a44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14386" - ], - "x-ms-correlation-request-id": [ - "d25cb65f-6d0e-456c-80e1-20720bfead9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215250Z:d25cb65f-6d0e-456c-80e1-20720bfead9f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7752131a-84a3-44fd-817d-3d359a0d7e6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14385" - ], - "x-ms-correlation-request-id": [ - "a6a9a4d3-d7e7-4c4b-b8c7-b66b83c2e4f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215250Z:a6a9a4d3-d7e7-4c4b-b8c7-b66b83c2e4f1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c382bfc0-d4db-42fa-8446-504006de3500" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14384" - ], - "x-ms-correlation-request-id": [ - "609b2831-69c6-4434-a3cf-ebafd497e45e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215250Z:609b2831-69c6-4434-a3cf-ebafd497e45e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5ec02b2-28e2-4b7c-aba7-bf24c22a92ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14383" - ], - "x-ms-correlation-request-id": [ - "7784b9b8-92b5-4e09-af42-61bd570d3f14" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215250Z:7784b9b8-92b5-4e09-af42-61bd570d3f14" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a72b865b-b86e-4017-b621-db0fda3e461e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14382" - ], - "x-ms-correlation-request-id": [ - "ea8cecdd-bd8a-4927-95df-f856fc59d905" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215250Z:ea8cecdd-bd8a-4927-95df-f856fc59d905" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eeaa5e42-04cd-4fc1-83ed-410907323045" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14381" - ], - "x-ms-correlation-request-id": [ - "b1555899-fe4a-455b-9c27-8abb9f68a4c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215250Z:b1555899-fe4a-455b-9c27-8abb9f68a4c9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1dcbfde1-f321-4ea2-8d12-0e62a94cd461" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14380" - ], - "x-ms-correlation-request-id": [ - "c46b98af-aaa9-4bc3-bae3-cbf6a347af92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215251Z:c46b98af-aaa9-4bc3-bae3-cbf6a347af92" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdba75af-083d-47db-8f08-d4a122604334" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14379" - ], - "x-ms-correlation-request-id": [ - "83e03a5f-188d-47a0-8329-3e8c3eb9e80e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215251Z:83e03a5f-188d-47a0-8329-3e8c3eb9e80e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d5bb7cb-28b2-4977-a245-f132082e3f4e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14378" - ], - "x-ms-correlation-request-id": [ - "99966099-49af-4a0f-8232-9ced012b08c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215251Z:99966099-49af-4a0f-8232-9ced012b08c2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "768cdc20-ebaa-406f-82d5-5e77c54d901a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14377" - ], - "x-ms-correlation-request-id": [ - "d4ded1ab-6a7c-4822-8558-6695b2f5bd56" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215251Z:d4ded1ab-6a7c-4822-8558-6695b2f5bd56" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38145a42-585e-4ebc-ab6b-f0f223f0c80b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14376" - ], - "x-ms-correlation-request-id": [ - "404b8047-b22a-47c2-a4ac-6f49137dbec2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215251Z:404b8047-b22a-47c2-a4ac-6f49137dbec2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b84bef1-f242-4ef8-ba63-d35060c10ab1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14375" - ], - "x-ms-correlation-request-id": [ - "1f6feac9-6cc6-4490-bd84-75836ce41667" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215251Z:1f6feac9-6cc6-4490-bd84-75836ce41667" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "626682f6-0138-4535-ac2c-1e0e62df58d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14374" - ], - "x-ms-correlation-request-id": [ - "12b8c4d3-b803-423a-a301-3fba409ea8f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215252Z:12b8c4d3-b803-423a-a301-3fba409ea8f9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39dce62e-3ac2-417b-b654-79a3d73e09e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14373" - ], - "x-ms-correlation-request-id": [ - "4c3e4841-4412-4631-acff-d75633cf1f2f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215252Z:4c3e4841-4412-4631-acff-d75633cf1f2f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7278c3fa-f1e2-48ee-bdc9-02309c101836" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14372" - ], - "x-ms-correlation-request-id": [ - "08c4be76-577d-4a9b-b767-389f06bcca83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215252Z:08c4be76-577d-4a9b-b767-389f06bcca83" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73815dee-3a29-48b4-b248-f5bad61d4c25" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14371" - ], - "x-ms-correlation-request-id": [ - "2ed90b46-ab2f-4668-a943-402eccd9a3fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215252Z:2ed90b46-ab2f-4668-a943-402eccd9a3fe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e1a24d1-d4f1-454e-8134-9c2acbbba865" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14370" - ], - "x-ms-correlation-request-id": [ - "e180a4e3-73b2-4ce4-b1f1-91f9db612b3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215252Z:e180a4e3-73b2-4ce4-b1f1-91f9db612b3d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "656d7afc-213d-422d-bf97-ce55a0fc6a91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14369" - ], - "x-ms-correlation-request-id": [ - "70f0d67d-4b9b-48cb-8ee9-99b293106c4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215252Z:70f0d67d-4b9b-48cb-8ee9-99b293106c4c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "167166b6-830a-495a-aede-1a8f5a25efd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14368" - ], - "x-ms-correlation-request-id": [ - "a03d2086-fdad-4329-b2a3-6959f7535ed8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215253Z:a03d2086-fdad-4329-b2a3-6959f7535ed8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91e49f6a-f7d4-479f-9336-8defdc626b82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14367" - ], - "x-ms-correlation-request-id": [ - "849d016e-3f58-42ff-b298-5495cef95e4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215253Z:849d016e-3f58-42ff-b298-5495cef95e4e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42b18139-2b0c-4fa4-8826-3195c2b6c145" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14366" - ], - "x-ms-correlation-request-id": [ - "7d389b8b-f719-4a9a-a902-e359d203ed95" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215253Z:7d389b8b-f719-4a9a-a902-e359d203ed95" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59686f14-8870-407d-a286-a05162f0ca4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14365" - ], - "x-ms-correlation-request-id": [ - "fb0fec9b-8436-4646-9f68-91c0cf196d3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215253Z:fb0fec9b-8436-4646-9f68-91c0cf196d3b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c972f48-074c-4bef-ab97-31de0f04ec2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14364" - ], - "x-ms-correlation-request-id": [ - "78524982-933f-44ee-96c5-9aae94fcd120" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215253Z:78524982-933f-44ee-96c5-9aae94fcd120" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e1f99ee-c099-4210-8374-1ae70438086c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14363" - ], - "x-ms-correlation-request-id": [ - "0f722fae-b95a-46e0-b683-f6929f54e4b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215254Z:0f722fae-b95a-46e0-b683-f6929f54e4b4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca9f6647-ea7d-4de5-aa15-61814686ec29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14362" - ], - "x-ms-correlation-request-id": [ - "0e5e4225-df68-485a-a456-2cacec84e4d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215254Z:0e5e4225-df68-485a-a456-2cacec84e4d5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3c797300-a0c8-4a08-8c65-74e663ada92c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14361" - ], - "x-ms-correlation-request-id": [ - "230a4051-89c3-4b0c-a771-720b8edc3300" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215254Z:230a4051-89c3-4b0c-a771-720b8edc3300" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df37c2cf-6ec9-4eb3-a79a-fd6bb27883ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14360" - ], - "x-ms-correlation-request-id": [ - "31b12960-520c-4725-bfae-06bfb5b4b398" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215254Z:31b12960-520c-4725-bfae-06bfb5b4b398" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "252c0308-cc0b-4729-b652-e7fa3adc75b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14359" - ], - "x-ms-correlation-request-id": [ - "db4f30ba-caa6-49c9-9eea-a13fdb3f9f63" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215254Z:db4f30ba-caa6-49c9-9eea-a13fdb3f9f63" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73315dfb-dccd-4eda-8dc7-5cce7c3fc7b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14358" - ], - "x-ms-correlation-request-id": [ - "5da420f6-d658-4608-8034-15689ca1e183" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215254Z:5da420f6-d658-4608-8034-15689ca1e183" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0bc87bcb-483c-4ddc-b983-33f7bc44e896" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14357" - ], - "x-ms-correlation-request-id": [ - "2d619b15-9ebd-44c6-880c-c4a7175a846c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215254Z:2d619b15-9ebd-44c6-880c-c4a7175a846c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3437ada-feb0-4f0b-a51f-8ed1b9766397" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14356" - ], - "x-ms-correlation-request-id": [ - "ad589759-a09e-4090-b8b0-c5fae0c2dfc4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215255Z:ad589759-a09e-4090-b8b0-c5fae0c2dfc4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90ceb7e2-c799-40ca-a50e-bdbbee11110c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14355" - ], - "x-ms-correlation-request-id": [ - "3ad33069-db98-4b88-bf8d-bee163976605" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215255Z:3ad33069-db98-4b88-bf8d-bee163976605" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "26b2250b-a829-4000-882b-aed1ed4b19c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14354" - ], - "x-ms-correlation-request-id": [ - "3fb65d4b-5177-472e-b0f3-100684c4b540" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215255Z:3fb65d4b-5177-472e-b0f3-100684c4b540" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5bc2141c-fc06-4287-bd29-f1cb027ca8b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14353" - ], - "x-ms-correlation-request-id": [ - "569a04dd-f60e-4913-bad5-f4db692f8157" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215255Z:569a04dd-f60e-4913-bad5-f4db692f8157" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "537e71dc-fe0e-4560-ac96-97cef241f795" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14352" - ], - "x-ms-correlation-request-id": [ - "8cae5ade-513d-48db-a39c-bdc6579f4da9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215255Z:8cae5ade-513d-48db-a39c-bdc6579f4da9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a1aa0b9-6df8-43b2-9282-7ec28c3a2122" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14351" - ], - "x-ms-correlation-request-id": [ - "24a768fa-2e7c-4b90-9e9c-b8aa94d8c933" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215256Z:24a768fa-2e7c-4b90-9e9c-b8aa94d8c933" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d982d9e-831d-4469-948e-6cefe6c85cf5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14350" - ], - "x-ms-correlation-request-id": [ - "e0e66502-6175-4f3e-b43d-02241f8cb68e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215256Z:e0e66502-6175-4f3e-b43d-02241f8cb68e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fbb0ecfd-fbbf-481a-8486-01cd9f0c1894" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14349" - ], - "x-ms-correlation-request-id": [ - "1b204c25-9b75-4673-9665-6d2fdfbf59c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215256Z:1b204c25-9b75-4673-9665-6d2fdfbf59c7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62e31eca-9e09-4251-b7e4-188c6a2f20fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14348" - ], - "x-ms-correlation-request-id": [ - "bb27d7ca-70bb-43ad-9233-7aa0802e5656" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215256Z:bb27d7ca-70bb-43ad-9233-7aa0802e5656" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57f5c230-ee18-4d8f-87af-c8abc8427f54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14347" - ], - "x-ms-correlation-request-id": [ - "4f384f76-b0df-409e-a815-3c465f858a1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215256Z:4f384f76-b0df-409e-a815-3c465f858a1f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c944c410-1de9-4b62-9987-0665abad7b24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14346" - ], - "x-ms-correlation-request-id": [ - "1f96bd41-afe7-41e2-b6c4-e736b8fe827a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215256Z:1f96bd41-afe7-41e2-b6c4-e736b8fe827a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe89e852-f073-4799-bbdc-e0d209e7b969" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14345" - ], - "x-ms-correlation-request-id": [ - "e62b3034-c777-4cb2-afcd-f2d36b4249e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215256Z:e62b3034-c777-4cb2-afcd-f2d36b4249e5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dba9746c-1ec5-4373-b4a2-922782b8b8cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14344" - ], - "x-ms-correlation-request-id": [ - "1a8cde0e-46d3-46be-8007-8f260af9c643" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215256Z:1a8cde0e-46d3-46be-8007-8f260af9c643" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05b8f1fe-666f-4298-be82-bda8c599a460" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14343" - ], - "x-ms-correlation-request-id": [ - "9f4e82a6-760b-49f8-88a3-895adc7c6324" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215257Z:9f4e82a6-760b-49f8-88a3-895adc7c6324" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f97f06f-bfbe-4d43-886d-98d0e4ff28e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14342" - ], - "x-ms-correlation-request-id": [ - "097f2510-3c01-42ea-93e5-1ad06dda87ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215257Z:097f2510-3c01-42ea-93e5-1ad06dda87ab" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14763140-aef4-441b-a75c-208bb9248276" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14341" - ], - "x-ms-correlation-request-id": [ - "b81d0de0-ade7-4ca8-b0c0-9d0650a5738a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215257Z:b81d0de0-ade7-4ca8-b0c0-9d0650a5738a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c740b05c-a984-48df-a4b8-4a31fc4513e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14340" - ], - "x-ms-correlation-request-id": [ - "703ad9fa-0813-45a8-bbe0-f7eb28297e02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215257Z:703ad9fa-0813-45a8-bbe0-f7eb28297e02" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2e78420-d36c-4b55-9377-753b89d077a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14339" - ], - "x-ms-correlation-request-id": [ - "cf6326ca-c79f-4271-b718-95b4fcc0f868" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215257Z:cf6326ca-c79f-4271-b718-95b4fcc0f868" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3ff8102-cdfb-4795-8a9f-d6750cfe6118" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14338" - ], - "x-ms-correlation-request-id": [ - "4d3f13d1-6b67-4729-b46b-50a369621511" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215258Z:4d3f13d1-6b67-4729-b46b-50a369621511" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5ac0506-9b42-4ed7-898d-40a0194065f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14337" - ], - "x-ms-correlation-request-id": [ - "cd1d9009-9103-4c65-9d61-30c22111be88" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215258Z:cd1d9009-9103-4c65-9d61-30c22111be88" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e478dad4-956f-47eb-9aeb-8e3b0ab97830" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14336" - ], - "x-ms-correlation-request-id": [ - "68b9d96e-2527-4474-a6f6-1ee4b45dbb1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215258Z:68b9d96e-2527-4474-a6f6-1ee4b45dbb1e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13643230-9c53-4744-a042-865dfc8b6f17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14335" - ], - "x-ms-correlation-request-id": [ - "972b3888-1886-4c9b-bdd3-f13d3448f1a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215258Z:972b3888-1886-4c9b-bdd3-f13d3448f1a7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31183919-b69e-4847-8ca7-96acccf5ee00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14334" - ], - "x-ms-correlation-request-id": [ - "226e491a-f466-4059-ac24-af18784fafdf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215258Z:226e491a-f466-4059-ac24-af18784fafdf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6ee440b-a797-4b19-a778-22755db7f629" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14333" - ], - "x-ms-correlation-request-id": [ - "9315f28c-cadc-4e35-991a-3b756fe746d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215258Z:9315f28c-cadc-4e35-991a-3b756fe746d4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6de32e8d-0a65-4968-9fd9-b43b32a8fd8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14332" - ], - "x-ms-correlation-request-id": [ - "a79053cb-11bd-43c5-9608-8b9c714310ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215258Z:a79053cb-11bd-43c5-9608-8b9c714310ac" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "388b9d32-3781-439b-a1ab-f1795fd4fedc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14331" - ], - "x-ms-correlation-request-id": [ - "15e4c9ac-bc3d-48f3-90a5-906063e3da7f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215259Z:15e4c9ac-bc3d-48f3-90a5-906063e3da7f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0813cf3a-f606-4250-90d3-ad25ca5edb73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14330" - ], - "x-ms-correlation-request-id": [ - "fcb322b0-98be-4f82-a4df-5883939f789f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215259Z:fcb322b0-98be-4f82-a4df-5883939f789f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "316ddb5a-7146-4536-8794-18c9b0a02d5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14329" - ], - "x-ms-correlation-request-id": [ - "4e0d72a1-e58f-4ec6-9a53-c26c9ea662dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215259Z:4e0d72a1-e58f-4ec6-9a53-c26c9ea662dc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "779724f2-c62e-409e-b63d-655460005cf4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14328" - ], - "x-ms-correlation-request-id": [ - "060b1e26-3cf4-42e8-a51a-27eda6828462" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215259Z:060b1e26-3cf4-42e8-a51a-27eda6828462" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a403741d-0c8b-4145-b0cc-1e75fe81a707" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14327" - ], - "x-ms-correlation-request-id": [ - "123d0660-8db1-4f47-9ef5-58dc865ca4cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215259Z:123d0660-8db1-4f47-9ef5-58dc865ca4cc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:52:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "750f28e4-3ac1-4aab-aa13-6c29879ed539" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14326" - ], - "x-ms-correlation-request-id": [ - "d936fd20-d97e-4846-a137-1355d1299e79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215300Z:d936fd20-d97e-4846-a137-1355d1299e79" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "55aa022f-5b88-4da5-bb0c-4c31e4527174" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14325" - ], - "x-ms-correlation-request-id": [ - "a4a99497-fa32-49ab-848a-104467f65efb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215300Z:a4a99497-fa32-49ab-848a-104467f65efb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "930c1750-c032-4416-8fcd-e12bd93898fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14324" - ], - "x-ms-correlation-request-id": [ - "38efaf22-a1e3-4570-936f-93a2cbf05b4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215300Z:38efaf22-a1e3-4570-936f-93a2cbf05b4e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3b676a0-0bf2-427e-855b-50e133c99a58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14323" - ], - "x-ms-correlation-request-id": [ - "b24dfa47-369d-4e4a-831c-58ccea864e78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215300Z:b24dfa47-369d-4e4a-831c-58ccea864e78" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b3f5b66-f435-44ce-a1e2-165a22e0930f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14322" - ], - "x-ms-correlation-request-id": [ - "31141521-3ff5-4f17-9abe-7249cb3c1e12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215300Z:31141521-3ff5-4f17-9abe-7249cb3c1e12" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f82e1308-f4ff-407b-b059-7fc5f9ea39d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14321" - ], - "x-ms-correlation-request-id": [ - "e81a90b2-2cef-4e14-b0de-1ca626eb0e44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215300Z:e81a90b2-2cef-4e14-b0de-1ca626eb0e44" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ffd9884-74ce-401e-b749-26a7f239ec50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14320" - ], - "x-ms-correlation-request-id": [ - "f57c64a3-fcbd-43b6-b89c-feba8bfbfc9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215301Z:f57c64a3-fcbd-43b6-b89c-feba8bfbfc9d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4795601-5c0f-4562-954c-eae8cdf15098" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14319" - ], - "x-ms-correlation-request-id": [ - "4feb878a-c76e-4014-8573-5af1410152a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215301Z:4feb878a-c76e-4014-8573-5af1410152a2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e35155f0-81e5-4707-a1b0-b155484b3d88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14318" - ], - "x-ms-correlation-request-id": [ - "9d966e38-9af0-40b6-8f59-eb9ef7da4b4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215301Z:9d966e38-9af0-40b6-8f59-eb9ef7da4b4c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1725821-be8f-4b3c-82f0-2e6f651fdb2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14317" - ], - "x-ms-correlation-request-id": [ - "b0c2d20a-8ff6-42b3-9edd-f9d68e7e700b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215301Z:b0c2d20a-8ff6-42b3-9edd-f9d68e7e700b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5afa0983-917b-46f5-9334-f59aa68114a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14316" - ], - "x-ms-correlation-request-id": [ - "84855945-4c89-440d-b727-c23ab59e8fe3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215301Z:84855945-4c89-440d-b727-c23ab59e8fe3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43098e0a-9199-43c3-84ba-c6c6e20581dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14315" - ], - "x-ms-correlation-request-id": [ - "48100132-58d2-492b-bad0-17ef70e54116" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215301Z:48100132-58d2-492b-bad0-17ef70e54116" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e36d0abe-3b98-49e8-9f27-e34149b34176" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14314" - ], - "x-ms-correlation-request-id": [ - "059aa7b5-5e5d-44ca-8450-d231f4113a0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215301Z:059aa7b5-5e5d-44ca-8450-d231f4113a0c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56dcc23b-8170-4a58-8d0f-823ab85f99f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14313" - ], - "x-ms-correlation-request-id": [ - "18c30a07-4b64-4e16-8598-1f773884d216" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215302Z:18c30a07-4b64-4e16-8598-1f773884d216" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c7afe28e-b35c-478b-b0bc-cdf1c6d8c012" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14312" - ], - "x-ms-correlation-request-id": [ - "89b720f3-44ec-42a1-bf3b-483b26fab7d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215302Z:89b720f3-44ec-42a1-bf3b-483b26fab7d5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81cd5108-ed37-493a-aacb-45568af9f438" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14311" - ], - "x-ms-correlation-request-id": [ - "bbc56a20-36da-43bb-91bf-b5cbc5ac23cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215302Z:bbc56a20-36da-43bb-91bf-b5cbc5ac23cf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "acbadb78-b918-4037-a818-370f422afcaf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14310" - ], - "x-ms-correlation-request-id": [ - "c4a3cb50-0b50-4fdb-923c-c2d5fab290a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215302Z:c4a3cb50-0b50-4fdb-923c-c2d5fab290a4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f95b51d-39c6-4d79-a4c8-5b8799c045cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14309" - ], - "x-ms-correlation-request-id": [ - "58b10ae1-ef8a-409a-9825-6bc3636a1453" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215302Z:58b10ae1-ef8a-409a-9825-6bc3636a1453" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81da1954-b1ea-43b0-a8b3-bde457c7e90b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14308" - ], - "x-ms-correlation-request-id": [ - "986d9f64-37d8-4e85-9465-5efde590a0e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215302Z:986d9f64-37d8-4e85-9465-5efde590a0e9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7865b17e-bc4d-4eca-9b25-484d1b189992" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14307" - ], - "x-ms-correlation-request-id": [ - "ca4e0efd-0ad2-48ea-982f-c6089d73163a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215303Z:ca4e0efd-0ad2-48ea-982f-c6089d73163a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a17ad29-3ffb-4923-85e7-f2c154604946" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14306" - ], - "x-ms-correlation-request-id": [ - "3df19c30-24d8-4e07-b88a-75966b581839" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215303Z:3df19c30-24d8-4e07-b88a-75966b581839" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0e4708d-de90-431b-8a6f-6c50c040454d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14305" - ], - "x-ms-correlation-request-id": [ - "512c15a8-769d-4cd0-9882-8cfc168b2459" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215303Z:512c15a8-769d-4cd0-9882-8cfc168b2459" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5c90e09-50fd-4438-b54a-96974582bf1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14304" - ], - "x-ms-correlation-request-id": [ - "6e21b318-5aeb-426e-a632-d65f61db83d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215303Z:6e21b318-5aeb-426e-a632-d65f61db83d2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "32dc1de6-5322-44d9-9f36-44c4ec5e5481" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14303" - ], - "x-ms-correlation-request-id": [ - "5b2406b7-7cc1-4196-8d23-981e6a2b350a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215303Z:5b2406b7-7cc1-4196-8d23-981e6a2b350a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8e70a962-38c0-4a84-a983-18d8bf2ad378" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14302" - ], - "x-ms-correlation-request-id": [ - "a464f2fb-235f-4509-99cd-f8d5d1deece4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215303Z:a464f2fb-235f-4509-99cd-f8d5d1deece4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ab2bca1-f0c9-4915-baa8-b5823a24d69b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14301" - ], - "x-ms-correlation-request-id": [ - "ea57d54b-8a92-4838-bc53-0a952224db7d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215304Z:ea57d54b-8a92-4838-bc53-0a952224db7d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e3beb5d-27c5-4bb4-a09d-d57acc7c8d7f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14300" - ], - "x-ms-correlation-request-id": [ - "34489b11-8eba-407b-a13a-442adac28cbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215304Z:34489b11-8eba-407b-a13a-442adac28cbf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ef62aea-069f-42e0-8a55-3c5565d16617" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14299" - ], - "x-ms-correlation-request-id": [ - "92e1eeea-fe2e-446b-898e-447725878527" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215304Z:92e1eeea-fe2e-446b-898e-447725878527" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "954b9ea5-e653-4bb8-b954-35f0762cc455" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14298" - ], - "x-ms-correlation-request-id": [ - "ab3abc3d-f59e-47d6-afd1-31b251fe73d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215304Z:ab3abc3d-f59e-47d6-afd1-31b251fe73d5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a32752f-77ab-41d6-808f-77e24e62d03d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14297" - ], - "x-ms-correlation-request-id": [ - "e05fa1ff-6b6d-45e3-8596-9766e5fa3ce5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215304Z:e05fa1ff-6b6d-45e3-8596-9766e5fa3ce5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6680bc6a-7500-4b41-800d-76e0487f08a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14296" - ], - "x-ms-correlation-request-id": [ - "606d10cf-cd74-4822-97bc-d6163170e150" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215305Z:606d10cf-cd74-4822-97bc-d6163170e150" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "680e88b6-3ddc-46e4-b9f8-394f64a7169f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14295" - ], - "x-ms-correlation-request-id": [ - "80219ec8-fd47-411f-b5a8-7956ef6e3172" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215305Z:80219ec8-fd47-411f-b5a8-7956ef6e3172" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "181726b7-10e3-45a7-8c65-9b8b297c2bf9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14294" - ], - "x-ms-correlation-request-id": [ - "60de149f-9256-4d2c-bab7-0e79604cc027" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215305Z:60de149f-9256-4d2c-bab7-0e79604cc027" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a03c20f5-84f7-418e-b03f-084121774638" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14293" - ], - "x-ms-correlation-request-id": [ - "135391e7-5d7f-44ba-8a17-9d4fd24fc7e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215305Z:135391e7-5d7f-44ba-8a17-9d4fd24fc7e0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0e72859-368a-445a-90f5-a7134120d2c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14292" - ], - "x-ms-correlation-request-id": [ - "1d1b7628-237b-42fd-abb5-f407b86e42b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215305Z:1d1b7628-237b-42fd-abb5-f407b86e42b0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8b01f9a-a1cd-4f6a-8ec7-ebd7968bc675" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14291" - ], - "x-ms-correlation-request-id": [ - "01898f5c-b682-48d0-903c-c14fa54067b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215305Z:01898f5c-b682-48d0-903c-c14fa54067b0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d1a6446-30ce-47e0-9ad9-76ca5471f406" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14290" - ], - "x-ms-correlation-request-id": [ - "d39ac105-919a-4c3f-9ca9-164142e28ee8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215305Z:d39ac105-919a-4c3f-9ca9-164142e28ee8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c80dfb6e-a715-445b-9515-edae75c83b3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14289" - ], - "x-ms-correlation-request-id": [ - "7cb04f86-23e0-49c9-b74c-ea5255778bfc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215306Z:7cb04f86-23e0-49c9-b74c-ea5255778bfc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04462a74-3ad8-4c16-8de9-56bf3b7fb76f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14288" - ], - "x-ms-correlation-request-id": [ - "232c15c1-4ebe-455f-b70c-9eade9b6242e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215306Z:232c15c1-4ebe-455f-b70c-9eade9b6242e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41e9da39-9bf8-49d7-92c8-87fe3cc1c950" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14287" - ], - "x-ms-correlation-request-id": [ - "c6b82166-bd58-4710-aefd-a8bec9cf0913" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215306Z:c6b82166-bd58-4710-aefd-a8bec9cf0913" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ec2e310-67ec-4256-90af-119973aaa522" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14286" - ], - "x-ms-correlation-request-id": [ - "8325e7b3-1636-4cdc-83b0-237ef4278a89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215306Z:8325e7b3-1636-4cdc-83b0-237ef4278a89" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a473c2d3-8e66-49f4-8c5f-d93eff48fb50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14285" - ], - "x-ms-correlation-request-id": [ - "47b59ada-a949-46b4-a045-71d4a79fb2ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215306Z:47b59ada-a949-46b4-a045-71d4a79fb2ec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "754d34ae-4c2d-4290-a26e-6f73969b8729" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14284" - ], - "x-ms-correlation-request-id": [ - "1cc9307e-20e8-45a1-abfc-26aef4916502" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215306Z:1cc9307e-20e8-45a1-abfc-26aef4916502" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59b92cd8-ae51-449d-a5ab-ac636aa33a9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14283" - ], - "x-ms-correlation-request-id": [ - "5c7dcea9-eb10-4d3f-b260-e0cfb692468a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215307Z:5c7dcea9-eb10-4d3f-b260-e0cfb692468a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "974da69e-5c9a-4481-90ee-77ccbeac1292" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14282" - ], - "x-ms-correlation-request-id": [ - "8e88c422-7006-46e4-b7aa-2416a86daa78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215307Z:8e88c422-7006-46e4-b7aa-2416a86daa78" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61e3562d-79ea-44b0-a343-c40699266dfc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14281" - ], - "x-ms-correlation-request-id": [ - "4658e90a-eff5-4b13-8178-beee1573e717" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215307Z:4658e90a-eff5-4b13-8178-beee1573e717" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf9abce0-346c-4e8e-830e-32e56c1b5682" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14280" - ], - "x-ms-correlation-request-id": [ - "ee8b398c-5dd1-459c-a030-ae36e2d3a90c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215307Z:ee8b398c-5dd1-459c-a030-ae36e2d3a90c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00b2a476-5265-46cc-8a78-76f4ba7de10c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14279" - ], - "x-ms-correlation-request-id": [ - "038c3bcb-591f-44ea-9a17-9e04b1751406" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215307Z:038c3bcb-591f-44ea-9a17-9e04b1751406" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "666f12dd-e2d1-449f-afd5-60c4dbb2a61d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14278" - ], - "x-ms-correlation-request-id": [ - "f900b708-0836-4050-b07d-ab94a3bc038b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215307Z:f900b708-0836-4050-b07d-ab94a3bc038b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4e78cb9-8883-4fcd-8b7e-fcbeb291bbe5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14277" - ], - "x-ms-correlation-request-id": [ - "ee2a8777-dfe0-4f78-b016-5ae1d14b8b2b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215307Z:ee2a8777-dfe0-4f78-b016-5ae1d14b8b2b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "929c5e34-3358-4277-b512-dedf9a40c6f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14276" - ], - "x-ms-correlation-request-id": [ - "532739b8-9d94-4f02-b1b1-c01e3dfeb65a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215308Z:532739b8-9d94-4f02-b1b1-c01e3dfeb65a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6dfc8f8c-0b89-4fa6-bdfb-c3ac3755807c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14275" - ], - "x-ms-correlation-request-id": [ - "c92ed34e-7cc3-4de9-b0d5-1644cd7897ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215308Z:c92ed34e-7cc3-4de9-b0d5-1644cd7897ab" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b19f1996-4ec0-4c6a-9c01-0fe46d43a5ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14274" - ], - "x-ms-correlation-request-id": [ - "1b78d450-68ad-4d8f-8ee6-65bbb7b144cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215308Z:1b78d450-68ad-4d8f-8ee6-65bbb7b144cd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd355933-b410-497c-a531-ffa7ed6ef347" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14273" - ], - "x-ms-correlation-request-id": [ - "23bcb6ac-199b-4d1e-b28d-1a93a4a3d6f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215308Z:23bcb6ac-199b-4d1e-b28d-1a93a4a3d6f8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a739508-a927-4bf0-88a6-d28a176307f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14272" - ], - "x-ms-correlation-request-id": [ - "8df4da65-c6dd-436b-a5d4-2ed1efd60c71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215308Z:8df4da65-c6dd-436b-a5d4-2ed1efd60c71" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a47f1e4-69d1-4098-8756-d8675665580d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14271" - ], - "x-ms-correlation-request-id": [ - "782a8f92-f90a-4eab-8d9c-79572b6ffe99" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215308Z:782a8f92-f90a-4eab-8d9c-79572b6ffe99" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ea4b39f-98a0-4580-8b75-391e886bc19f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14270" - ], - "x-ms-correlation-request-id": [ - "567413be-62e7-4b87-8dc3-cf995a87424b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215308Z:567413be-62e7-4b87-8dc3-cf995a87424b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd3c94f0-a6a6-4423-8509-f17225a22313" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14269" - ], - "x-ms-correlation-request-id": [ - "0fca98ec-a0ec-4c3d-827e-46b9d0d10c8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215309Z:0fca98ec-a0ec-4c3d-827e-46b9d0d10c8a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7372e443-fcf4-4c71-ae56-3af37f4ca931" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14268" - ], - "x-ms-correlation-request-id": [ - "25e66257-35ce-47a2-bda2-9dcadfc20386" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215309Z:25e66257-35ce-47a2-bda2-9dcadfc20386" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2dd2c5a0-1714-4166-8239-91ca0d1f8c09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14267" - ], - "x-ms-correlation-request-id": [ - "0db46f44-12de-437e-ab89-8368644c452e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215309Z:0db46f44-12de-437e-ab89-8368644c452e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b3a8c97-6566-4a00-90e0-3c26de966047" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14266" - ], - "x-ms-correlation-request-id": [ - "6b7a0fcc-7e50-4f42-a273-66ce7a1ed1c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215309Z:6b7a0fcc-7e50-4f42-a273-66ce7a1ed1c6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40304066-9316-4e5e-8a4d-26069150b9e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14265" - ], - "x-ms-correlation-request-id": [ - "a2e31735-ad91-44b9-ac11-18bef97b3267" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215309Z:a2e31735-ad91-44b9-ac11-18bef97b3267" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8551549e-f6e7-4519-8fca-ada1243787cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14264" - ], - "x-ms-correlation-request-id": [ - "1fc8b63f-9460-4818-9aeb-dfa187737b1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215309Z:1fc8b63f-9460-4818-9aeb-dfa187737b1a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "671d500c-8749-452a-94ac-295fd3f84e43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14263" - ], - "x-ms-correlation-request-id": [ - "2783adde-a7c9-470c-bf70-a93fd7d1a6f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215310Z:2783adde-a7c9-470c-bf70-a93fd7d1a6f5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2917fec-636d-48fc-b9f9-112ec1c77ba8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14262" - ], - "x-ms-correlation-request-id": [ - "bb4088c2-59f5-45b1-99b1-ae9a47265600" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215310Z:bb4088c2-59f5-45b1-99b1-ae9a47265600" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5f6ffa9-b805-4d8c-8ecb-a8b20637096b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14261" - ], - "x-ms-correlation-request-id": [ - "ffcd7da7-42da-4f66-a23a-972d38c77c59" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215310Z:ffcd7da7-42da-4f66-a23a-972d38c77c59" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a37e14c-6456-4269-91cf-3cd3e9404828" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14260" - ], - "x-ms-correlation-request-id": [ - "5cdb4296-fe53-468d-813e-296f51a7d79c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215310Z:5cdb4296-fe53-468d-813e-296f51a7d79c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "21230bfa-b35e-4ae2-9a38-f2ea5e8cf4de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14259" - ], - "x-ms-correlation-request-id": [ - "70f88571-17a2-408c-b085-e3c38a8565ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215310Z:70f88571-17a2-408c-b085-e3c38a8565ff" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc968aed-ea65-4979-9aa5-cbf2f2db8d64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14258" - ], - "x-ms-correlation-request-id": [ - "8a20e1e8-8d90-428d-a812-bf05376b1436" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215310Z:8a20e1e8-8d90-428d-a812-bf05376b1436" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1d36360-21ef-4bf5-af34-75009acb7d0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14257" - ], - "x-ms-correlation-request-id": [ - "cf358743-cf45-4251-9b2b-fab5637e777a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215311Z:cf358743-cf45-4251-9b2b-fab5637e777a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2192da30-a454-4f52-891a-21838b62cec3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14256" - ], - "x-ms-correlation-request-id": [ - "6357b897-c1b4-42cd-82ea-b4b67ba175f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215311Z:6357b897-c1b4-42cd-82ea-b4b67ba175f5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f76bb996-c90e-4b63-9437-44486b027942" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14255" - ], - "x-ms-correlation-request-id": [ - "4af9251a-fea0-4d20-b053-99bd6fc395fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215311Z:4af9251a-fea0-4d20-b053-99bd6fc395fb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d6fa92a-c8be-4c3b-87a6-cff849de6f49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14254" - ], - "x-ms-correlation-request-id": [ - "2a225f63-ea40-488e-93c8-b50a192f0adb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215311Z:2a225f63-ea40-488e-93c8-b50a192f0adb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d649c632-aedc-4074-86e2-b4034797d892" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14253" - ], - "x-ms-correlation-request-id": [ - "2477c491-f420-4531-9cff-9f37ef3002ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215311Z:2477c491-f420-4531-9cff-9f37ef3002ae" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0668ea5-37ee-4f28-b14a-ce979e3f3d92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14252" - ], - "x-ms-correlation-request-id": [ - "705304e2-1c1e-4d58-9468-a120c581d02f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215312Z:705304e2-1c1e-4d58-9468-a120c581d02f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "998bae48-74d1-439c-8910-4f486ca2cad7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14251" - ], - "x-ms-correlation-request-id": [ - "8b08cf58-01c0-470b-b139-cf6d6b1f8b82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215312Z:8b08cf58-01c0-470b-b139-cf6d6b1f8b82" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8dd0cb36-1174-4952-99d9-864bfad3e086" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14250" - ], - "x-ms-correlation-request-id": [ - "e64bd2d6-6847-429f-b21c-98c9d5f1b58c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215312Z:e64bd2d6-6847-429f-b21c-98c9d5f1b58c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "121a6c31-4a6a-4bcb-9768-c7e94fc58093" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14249" - ], - "x-ms-correlation-request-id": [ - "863b8200-c382-40a9-8e0e-6e9ae964c00b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215312Z:863b8200-c382-40a9-8e0e-6e9ae964c00b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e375f7d-875e-44f2-adf0-d82357ca6863" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14248" - ], - "x-ms-correlation-request-id": [ - "ca862a87-8440-4e33-ae67-15e2b6ba277d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215312Z:ca862a87-8440-4e33-ae67-15e2b6ba277d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b026e472-798a-49c9-a799-c2f6cc940f6b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14247" - ], - "x-ms-correlation-request-id": [ - "50ae45b8-915a-470e-9760-4b99d934219f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215312Z:50ae45b8-915a-470e-9760-4b99d934219f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17225d39-dbcd-4fb1-b9a9-3580a6abc716" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14246" - ], - "x-ms-correlation-request-id": [ - "93b07183-2864-45d6-8843-448ece765606" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215313Z:93b07183-2864-45d6-8843-448ece765606" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4e71dba-6cca-4f23-af29-7e847a7f8cfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14245" - ], - "x-ms-correlation-request-id": [ - "e5d98ac0-e7b2-49c2-bb62-5f2e9d85e125" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215313Z:e5d98ac0-e7b2-49c2-bb62-5f2e9d85e125" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8fa0f691-524d-4091-9ebf-85e35254f0f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14244" - ], - "x-ms-correlation-request-id": [ - "4588fb1a-5407-4f6c-a937-fcd1d8435a7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215313Z:4588fb1a-5407-4f6c-a937-fcd1d8435a7e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7a1fa54-8fee-467f-81d7-f1fff87e49d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14243" - ], - "x-ms-correlation-request-id": [ - "c284b055-95b0-426f-9aaa-302fc4e4ae16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215313Z:c284b055-95b0-426f-9aaa-302fc4e4ae16" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa79e992-6d7b-42a6-88a3-7ac9ec759a49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14242" - ], - "x-ms-correlation-request-id": [ - "0349607e-9413-4acb-ab4f-651cbd7827d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215313Z:0349607e-9413-4acb-ab4f-651cbd7827d8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9e12610-1496-4e99-8b65-23e07577f204" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14241" - ], - "x-ms-correlation-request-id": [ - "f4f687c6-ab0c-4059-aaad-dda8c26f2a97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215313Z:f4f687c6-ab0c-4059-aaad-dda8c26f2a97" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5560f04a-321b-4186-a790-d0516c322b09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14240" - ], - "x-ms-correlation-request-id": [ - "1a3a3e67-e5e9-40f1-93a0-0ca66efc8ca8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215314Z:1a3a3e67-e5e9-40f1-93a0-0ca66efc8ca8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "26141876-9fd3-405c-b46a-61991da6bca6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14239" - ], - "x-ms-correlation-request-id": [ - "7f3fce1b-ded9-455d-93d1-91cb1c45e4cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215314Z:7f3fce1b-ded9-455d-93d1-91cb1c45e4cb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93e02ab8-84b9-4cf2-93e1-e7239f0bc997" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14238" - ], - "x-ms-correlation-request-id": [ - "e47462e4-702a-4f53-a9f1-319afde0f477" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215314Z:e47462e4-702a-4f53-a9f1-319afde0f477" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3e837f1-6530-4933-929b-13b646452320" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14237" - ], - "x-ms-correlation-request-id": [ - "de9d04be-d6bf-450a-876c-2a2a2d62cb0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215314Z:de9d04be-d6bf-450a-876c-2a2a2d62cb0d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42b2efd4-3a50-48de-b038-e6eb5f1690ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14236" - ], - "x-ms-correlation-request-id": [ - "3541499a-ca83-4c89-9df4-38cfa87073ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215314Z:3541499a-ca83-4c89-9df4-38cfa87073ef" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a492dfdc-2bda-4925-b39c-676af39acdca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14235" - ], - "x-ms-correlation-request-id": [ - "5b740390-fc88-4d8a-b187-93b5fa0eabb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215314Z:5b740390-fc88-4d8a-b187-93b5fa0eabb1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1a5ce79-dc9d-4fa8-a9bf-e22dc3890b57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14234" - ], - "x-ms-correlation-request-id": [ - "72bdc8cd-9aa9-41ee-bb38-de5f71fba871" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215314Z:72bdc8cd-9aa9-41ee-bb38-de5f71fba871" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa332efc-4087-47c1-80ed-b652c1659e9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14233" - ], - "x-ms-correlation-request-id": [ - "0b30d016-3c84-43fd-b13a-a1e5006bf416" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215315Z:0b30d016-3c84-43fd-b13a-a1e5006bf416" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fc68628-0025-4127-abd5-d4024d7f6f0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14232" - ], - "x-ms-correlation-request-id": [ - "9dfec8d3-c593-42f7-8c01-81af892165e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215315Z:9dfec8d3-c593-42f7-8c01-81af892165e2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d359e3b-54e6-4358-9c20-ddf2befeadaa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14231" - ], - "x-ms-correlation-request-id": [ - "10692ff8-3786-4f78-86d5-7000e27e89d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215315Z:10692ff8-3786-4f78-86d5-7000e27e89d7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88836b51-c79d-472b-b2c0-e28ffbede6ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14230" - ], - "x-ms-correlation-request-id": [ - "fa37118d-8d22-4d52-b65d-b252577b1ec6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215315Z:fa37118d-8d22-4d52-b65d-b252577b1ec6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c77347ad-67c3-42b6-a0bc-dadca508c1d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14229" - ], - "x-ms-correlation-request-id": [ - "1f4cf844-893f-4575-81e0-68099d217952" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215315Z:1f4cf844-893f-4575-81e0-68099d217952" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f882be89-1fd7-4137-9e81-357e4ea95e7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14228" - ], - "x-ms-correlation-request-id": [ - "cac4d25e-e77c-4a6b-b7e7-3a75441abe17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215315Z:cac4d25e-e77c-4a6b-b7e7-3a75441abe17" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b88dc437-307f-404b-a55c-dcaaa2b78e75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14227" - ], - "x-ms-correlation-request-id": [ - "21edfc40-0d03-476f-8dc0-b4de09035880" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215315Z:21edfc40-0d03-476f-8dc0-b4de09035880" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "af097cfe-f627-4254-9cdf-a61bb04d25f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14226" - ], - "x-ms-correlation-request-id": [ - "72e7a1b0-b101-465b-a0ea-90deff3d20f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215316Z:72e7a1b0-b101-465b-a0ea-90deff3d20f0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a1132ec-e753-4372-a2c5-076aa6f180d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14225" - ], - "x-ms-correlation-request-id": [ - "84c222f2-5c96-4341-b3c6-5ded47c1068b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215316Z:84c222f2-5c96-4341-b3c6-5ded47c1068b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72d2f10d-7bbe-4ce7-a250-ca5be43b479b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14224" - ], - "x-ms-correlation-request-id": [ - "9e015e43-44a6-456d-90ea-a26bd7a9937e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215316Z:9e015e43-44a6-456d-90ea-a26bd7a9937e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e085300-627e-4a75-862a-de0c85151d3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14223" - ], - "x-ms-correlation-request-id": [ - "4094f129-d181-472a-9584-02114acd1926" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215316Z:4094f129-d181-472a-9584-02114acd1926" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f260de2-bd42-4dbe-a558-440a3be29ffd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14222" - ], - "x-ms-correlation-request-id": [ - "f93088b1-a244-483e-825f-00542984fe0e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215316Z:f93088b1-a244-483e-825f-00542984fe0e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2de47b47-7904-4a26-8504-2eef6cf0dccc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14221" - ], - "x-ms-correlation-request-id": [ - "6745a3e9-00ed-4fed-8c8f-e85eea464ae1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215316Z:6745a3e9-00ed-4fed-8c8f-e85eea464ae1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0dca2b1-3369-454e-bdf2-3698f08f71b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14220" - ], - "x-ms-correlation-request-id": [ - "6ebb583a-e705-468e-a214-aa0e963aa9cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215317Z:6ebb583a-e705-468e-a214-aa0e963aa9cb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4baf0721-5990-498e-8cf2-21796d422865" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14219" - ], - "x-ms-correlation-request-id": [ - "1bbf088b-a2ee-45ef-b8bd-2454fdfc8c65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215317Z:1bbf088b-a2ee-45ef-b8bd-2454fdfc8c65" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e4e0182-2f6f-4e09-bc3b-1ee048e559a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14218" - ], - "x-ms-correlation-request-id": [ - "40b8bae1-5fca-47d8-83f6-034f9c465089" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215317Z:40b8bae1-5fca-47d8-83f6-034f9c465089" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31dd888f-a830-4341-82a3-07c066db0807" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14217" - ], - "x-ms-correlation-request-id": [ - "d5d8b252-13ce-43c7-9277-c41da8069280" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215317Z:d5d8b252-13ce-43c7-9277-c41da8069280" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f53551a-3539-4dcd-bcba-eb65855a62d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14216" - ], - "x-ms-correlation-request-id": [ - "5e8b3016-7524-4c2f-83d4-745899c669a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215317Z:5e8b3016-7524-4c2f-83d4-745899c669a4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccf87496-ea0f-424c-b19c-432b2852071a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14215" - ], - "x-ms-correlation-request-id": [ - "508a853f-e149-45f8-8f30-770984228aed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215318Z:508a853f-e149-45f8-8f30-770984228aed" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a9e3a9d-2be2-4f6b-b284-c0b75dd91aea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14214" - ], - "x-ms-correlation-request-id": [ - "bab1d416-244e-40e0-bec8-0c82b481543d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215318Z:bab1d416-244e-40e0-bec8-0c82b481543d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "528eadf2-3282-4580-ad12-ac7c12aa2fc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14213" - ], - "x-ms-correlation-request-id": [ - "57760e39-b0b1-452a-9cfc-720b70397654" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215318Z:57760e39-b0b1-452a-9cfc-720b70397654" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf54ad57-1fbd-42d1-b2a1-93450c4bd95d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14212" - ], - "x-ms-correlation-request-id": [ - "45bb2cc9-2f15-40cd-b577-cf2c3d5a873a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215318Z:45bb2cc9-2f15-40cd-b577-cf2c3d5a873a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf369025-6d38-4218-b467-7335816ba33d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14211" - ], - "x-ms-correlation-request-id": [ - "3083b07c-6e26-4ca7-aba9-4d13ab6f3be3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215318Z:3083b07c-6e26-4ca7-aba9-4d13ab6f3be3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3eebb44-27f2-45ef-a3c0-dae4bc5d1eaa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14210" - ], - "x-ms-correlation-request-id": [ - "df04be02-459d-41fc-ac29-df07dcb9472b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215318Z:df04be02-459d-41fc-ac29-df07dcb9472b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93b7c126-b2d4-4cc9-a83c-7eef9b775c27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14209" - ], - "x-ms-correlation-request-id": [ - "5b0a919d-bd6e-4698-bb43-73f65f4932fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215319Z:5b0a919d-bd6e-4698-bb43-73f65f4932fb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e9c9709f-c870-4856-9490-de2e0e703e9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14208" - ], - "x-ms-correlation-request-id": [ - "b4b3dfd4-9424-46e7-961d-938a5d9db7bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215319Z:b4b3dfd4-9424-46e7-961d-938a5d9db7bd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "103c4771-ccfc-442c-b88d-e2c39de234dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14207" - ], - "x-ms-correlation-request-id": [ - "c33cb853-46ef-4c68-93c2-93152c93cfcd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215319Z:c33cb853-46ef-4c68-93c2-93152c93cfcd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1551070f-050c-4057-b406-190e71fda691" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14206" - ], - "x-ms-correlation-request-id": [ - "90b445d7-c4e1-43c6-a3d7-d05828f4350f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215319Z:90b445d7-c4e1-43c6-a3d7-d05828f4350f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "953e5e83-cb12-4af4-af8b-f3eafe0d3b17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14205" - ], - "x-ms-correlation-request-id": [ - "03bc1ee5-550b-48b5-9e3d-e2bac18ca2c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215319Z:03bc1ee5-550b-48b5-9e3d-e2bac18ca2c6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70857dc7-127e-4579-80da-9fa03bc6a951" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14204" - ], - "x-ms-correlation-request-id": [ - "92c8f29b-d4b6-4ad0-b037-410b5b3ac6f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215319Z:92c8f29b-d4b6-4ad0-b037-410b5b3ac6f3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bf0c392-ce7f-42c8-afc4-e3c1bb80b3f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14203" - ], - "x-ms-correlation-request-id": [ - "09a90e46-901a-4e3d-bd66-89362e57edc0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215320Z:09a90e46-901a-4e3d-bd66-89362e57edc0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37569f69-b853-49c8-b49e-0838d36fc87b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14202" - ], - "x-ms-correlation-request-id": [ - "fac7f7a6-ec81-4477-a4d5-a2a7032a0be4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215320Z:fac7f7a6-ec81-4477-a4d5-a2a7032a0be4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5612e3c5-df1e-492d-89e3-dbc491ca485a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14201" - ], - "x-ms-correlation-request-id": [ - "ee5df538-ddb4-409b-a85d-2a58c9840aa8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215320Z:ee5df538-ddb4-409b-a85d-2a58c9840aa8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b10bf7fb-e25d-4ea9-a58a-0f023ac3ef8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14200" - ], - "x-ms-correlation-request-id": [ - "1aba67bc-def3-4454-81ac-24b9c3340d31" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215320Z:1aba67bc-def3-4454-81ac-24b9c3340d31" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f822b0b5-50ac-4e19-a739-4c642a9e9bc6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14199" - ], - "x-ms-correlation-request-id": [ - "69d9cb19-660e-4bb5-a492-0e4f495656e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215320Z:69d9cb19-660e-4bb5-a492-0e4f495656e8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d989d0b5-8f4a-4146-9719-6e0523856ab8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14198" - ], - "x-ms-correlation-request-id": [ - "0b890593-8777-433f-87dd-d8eb1f47f05c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215320Z:0b890593-8777-433f-87dd-d8eb1f47f05c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5a955f6-d1c6-4626-b5f2-efb66bb06b36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14197" - ], - "x-ms-correlation-request-id": [ - "808c3571-68ba-48ef-a18c-646058d187b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215320Z:808c3571-68ba-48ef-a18c-646058d187b9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4dd1c82-f864-40cf-ad30-110e1128d6d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14196" - ], - "x-ms-correlation-request-id": [ - "4605b2f7-0ccb-4a46-841f-3fcbdf81dcf5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215321Z:4605b2f7-0ccb-4a46-841f-3fcbdf81dcf5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1397046f-7885-4664-94e6-836ec155174a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14195" - ], - "x-ms-correlation-request-id": [ - "612d485c-4292-48e5-b9ba-176a01770ff9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215321Z:612d485c-4292-48e5-b9ba-176a01770ff9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70f2b3cd-ed11-434f-bad8-56bdb1dd1b84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14194" - ], - "x-ms-correlation-request-id": [ - "0d58fd5a-cddf-4fa2-b909-c8bd69b1704c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215321Z:0d58fd5a-cddf-4fa2-b909-c8bd69b1704c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96b50551-7c34-4e36-8c1e-5b0e19f4e16d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14193" - ], - "x-ms-correlation-request-id": [ - "9db49798-3097-4162-9800-c3559a2496a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215321Z:9db49798-3097-4162-9800-c3559a2496a5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "033dfcfd-feff-4637-9cb4-9c53d6c4e803" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14192" - ], - "x-ms-correlation-request-id": [ - "ca404a4f-d6f7-4979-8697-b6abcde1f6a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215321Z:ca404a4f-d6f7-4979-8697-b6abcde1f6a2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca2d3268-5645-442e-ad43-9a83cf73e9a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14191" - ], - "x-ms-correlation-request-id": [ - "255d32c4-8b0d-44f3-921e-39afabbc6cac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215321Z:255d32c4-8b0d-44f3-921e-39afabbc6cac" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04db5d08-42b5-4f49-96ba-f6a85263d922" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14190" - ], - "x-ms-correlation-request-id": [ - "cec0386b-9220-43f8-bfe0-906606e9a9ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215322Z:cec0386b-9220-43f8-bfe0-906606e9a9ed" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5765d750-9ea7-4564-a895-0592e172ddb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14189" - ], - "x-ms-correlation-request-id": [ - "fa4f01e2-12ce-4e9c-bff5-31f9a1dee9cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215322Z:fa4f01e2-12ce-4e9c-bff5-31f9a1dee9cb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3c76c42-52eb-4067-8959-3f824924c502" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14188" - ], - "x-ms-correlation-request-id": [ - "d3b798a0-7b62-4aa5-b56e-d61d37eedf59" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215322Z:d3b798a0-7b62-4aa5-b56e-d61d37eedf59" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0aecc628-04dd-43da-a6ff-bf2c2e8bbfd2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14187" - ], - "x-ms-correlation-request-id": [ - "a48cba98-7eb0-42c5-8862-137109995d1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215322Z:a48cba98-7eb0-42c5-8862-137109995d1a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a043af40-b7ff-4b29-82a6-a9c0c8c87129" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14186" - ], - "x-ms-correlation-request-id": [ - "70675640-c656-4630-99a4-6f3611ea08b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215322Z:70675640-c656-4630-99a4-6f3611ea08b5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5dfef4f-105d-45e6-8bc6-d18a13ab6588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14185" - ], - "x-ms-correlation-request-id": [ - "ed2257ac-2d7f-4e39-8b75-e6ebac824b83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215322Z:ed2257ac-2d7f-4e39-8b75-e6ebac824b83" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3562eb4f-89a6-41c5-bd2b-964163f03928" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14184" - ], - "x-ms-correlation-request-id": [ - "202aa3f9-a270-4e86-93d5-5bbc733aac84" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215322Z:202aa3f9-a270-4e86-93d5-5bbc733aac84" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be07d9d9-2144-4018-8164-c3548bc46966" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14183" - ], - "x-ms-correlation-request-id": [ - "0dc1bed6-80d6-4539-b89f-20a783d36118" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215323Z:0dc1bed6-80d6-4539-b89f-20a783d36118" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2eb34264-aa0a-4205-974b-0bccca2e0a43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14182" - ], - "x-ms-correlation-request-id": [ - "87350570-1a5a-4d13-9e00-14d9dc14209e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215323Z:87350570-1a5a-4d13-9e00-14d9dc14209e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "953e72c6-9632-4e90-9a2a-80c51ff93e9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14181" - ], - "x-ms-correlation-request-id": [ - "db712236-4c2c-4d42-bef8-ea7d94761daa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215323Z:db712236-4c2c-4d42-bef8-ea7d94761daa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff4fca18-f4ea-46a0-8c07-b45e27cef6da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14180" - ], - "x-ms-correlation-request-id": [ - "d018d7a2-3f1a-4c5d-9f1b-9f1eb3f7d07a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215323Z:d018d7a2-3f1a-4c5d-9f1b-9f1eb3f7d07a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f501097-acda-4cda-b6ba-4a96ba3e5823" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14179" - ], - "x-ms-correlation-request-id": [ - "0a48e982-77dc-4688-b5e9-a067025aef49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215323Z:0a48e982-77dc-4688-b5e9-a067025aef49" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8e60e32b-2fec-48cb-a62f-133bb3f0c890" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14178" - ], - "x-ms-correlation-request-id": [ - "2a706ce5-43dd-471c-b802-6f40fdcffc4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215323Z:2a706ce5-43dd-471c-b802-6f40fdcffc4c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5aefc0c-2d28-481e-9914-b82263679994" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14177" - ], - "x-ms-correlation-request-id": [ - "4c9d1eaa-eeed-4811-bcfd-aaae78957c6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215324Z:4c9d1eaa-eeed-4811-bcfd-aaae78957c6f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fdbc09be-5497-461f-b069-4656fb40e845" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14176" - ], - "x-ms-correlation-request-id": [ - "ae2224a0-7150-4279-807c-ebb5ab53eb36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215324Z:ae2224a0-7150-4279-807c-ebb5ab53eb36" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5a3b5f8-d912-4d14-a70b-69b9a27a3c65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14175" - ], - "x-ms-correlation-request-id": [ - "16ef3a9e-9632-4839-9c42-c34e0e9f5aea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215324Z:16ef3a9e-9632-4839-9c42-c34e0e9f5aea" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d0e9357-31df-4a6e-9c77-8c59a5a0b938" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14174" - ], - "x-ms-correlation-request-id": [ - "5d045307-26df-44d6-96d1-6b70ce595447" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215324Z:5d045307-26df-44d6-96d1-6b70ce595447" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dcc693bf-04f0-4cd9-a2b3-fb5f30be4bd1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14173" - ], - "x-ms-correlation-request-id": [ - "9db07e3e-c63b-426d-b93c-98f1b1953016" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215324Z:9db07e3e-c63b-426d-b93c-98f1b1953016" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6113534a-ac1b-49b0-afe7-27649b263483" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14172" - ], - "x-ms-correlation-request-id": [ - "5be2823f-bfe3-4ee3-97ac-33dcfcc9bbc5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215324Z:5be2823f-bfe3-4ee3-97ac-33dcfcc9bbc5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e52d8a3-60ef-47ca-a9ef-a256c2e43dcd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14171" - ], - "x-ms-correlation-request-id": [ - "49308db0-baec-4e62-ab99-e131c4e73d0e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215324Z:49308db0-baec-4e62-ab99-e131c4e73d0e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e76f85df-1f91-478a-bc62-1b55c299eacb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14170" - ], - "x-ms-correlation-request-id": [ - "628ed088-51a2-4171-9269-faa12d3997f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215325Z:628ed088-51a2-4171-9269-faa12d3997f6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce194657-a6eb-40bb-ba8a-9a10096f720c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14169" - ], - "x-ms-correlation-request-id": [ - "88079267-8705-4297-88cf-c30b654bed1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215325Z:88079267-8705-4297-88cf-c30b654bed1a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8c6055f-06f7-4c36-9c8b-b15e7d840ad7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14168" - ], - "x-ms-correlation-request-id": [ - "5aae9ccb-bb16-4502-8940-7a836ee1392d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215325Z:5aae9ccb-bb16-4502-8940-7a836ee1392d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d68547fd-8e02-4aaa-90b0-06f2a870bdf7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14167" - ], - "x-ms-correlation-request-id": [ - "d4deb961-44fc-41a2-8793-8ff7b6eb6bb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215325Z:d4deb961-44fc-41a2-8793-8ff7b6eb6bb1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5a0f141-835c-4e96-b805-140cdde9d7a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14166" - ], - "x-ms-correlation-request-id": [ - "52ccb287-f85a-4063-bbc5-c291a779d175" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215325Z:52ccb287-f85a-4063-bbc5-c291a779d175" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05bd274d-e70f-4361-85b1-41064ba5a654" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14165" - ], - "x-ms-correlation-request-id": [ - "0efa28ad-c3f0-4af7-b441-31d5cc5a55bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215326Z:0efa28ad-c3f0-4af7-b441-31d5cc5a55bd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3acaf37f-b02d-4ac9-bbbd-147406c452a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14164" - ], - "x-ms-correlation-request-id": [ - "5700586b-69a9-4d30-90dd-c6fa53f16358" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215326Z:5700586b-69a9-4d30-90dd-c6fa53f16358" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c1f417b-ca28-4d3f-a3d5-f26e4b1aed84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14163" - ], - "x-ms-correlation-request-id": [ - "b7ac6395-e9b7-4698-9a41-2d99a6ef3b6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215326Z:b7ac6395-e9b7-4698-9a41-2d99a6ef3b6c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf8bd8d8-2182-40fc-aa87-2e4bb0b21671" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14162" - ], - "x-ms-correlation-request-id": [ - "a76c9bc4-b690-472c-b1d9-492801238583" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215326Z:a76c9bc4-b690-472c-b1d9-492801238583" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6590f0a8-57c2-4bd7-bd19-d34092241c8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14161" - ], - "x-ms-correlation-request-id": [ - "ca6e9fa6-0d6d-41d6-a786-b909974604a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215326Z:ca6e9fa6-0d6d-41d6-a786-b909974604a3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "194883fc-c3df-4ee4-92a3-d277f9f61f71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14160" - ], - "x-ms-correlation-request-id": [ - "930e3f7e-ff34-4a73-959f-4d8872b9bbfa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215326Z:930e3f7e-ff34-4a73-959f-4d8872b9bbfa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb663976-41d9-4d05-bda9-b5d70a826832" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14159" - ], - "x-ms-correlation-request-id": [ - "c56f2572-5393-4737-8909-78bc7170cab6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215326Z:c56f2572-5393-4737-8909-78bc7170cab6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bca82237-922a-46e8-941c-2cb5e6da4da2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14158" - ], - "x-ms-correlation-request-id": [ - "f3d3f385-428f-4e86-8bd9-8232e6cedb2b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215327Z:f3d3f385-428f-4e86-8bd9-8232e6cedb2b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b6fde51-a095-4bd4-9866-30b31031720b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14157" - ], - "x-ms-correlation-request-id": [ - "c4ae74a5-186a-4ad3-9ef6-d181fa6dbc04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215327Z:c4ae74a5-186a-4ad3-9ef6-d181fa6dbc04" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2f036af-5af4-45cc-9837-333cb35c5466" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14156" - ], - "x-ms-correlation-request-id": [ - "e8599911-5aaa-4660-99f0-f5bf8c00f476" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215327Z:e8599911-5aaa-4660-99f0-f5bf8c00f476" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49a0c78c-5123-483a-abfd-96bff611567c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14155" - ], - "x-ms-correlation-request-id": [ - "f67da44a-ccb9-4062-8be9-bcc64b7b7ec4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215327Z:f67da44a-ccb9-4062-8be9-bcc64b7b7ec4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4f50c26-5557-4011-afd2-fd3324af07ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14154" - ], - "x-ms-correlation-request-id": [ - "7cb9fdc3-2a0d-443b-9665-237b0088a423" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215327Z:7cb9fdc3-2a0d-443b-9665-237b0088a423" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db7c1113-aac1-43aa-97dc-5f93cdc783bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14153" - ], - "x-ms-correlation-request-id": [ - "1bec85b4-ee46-44ce-9d57-44cc0cf7570d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215328Z:1bec85b4-ee46-44ce-9d57-44cc0cf7570d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be748cb0-a6fd-4f24-a5a7-db676e122dab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14152" - ], - "x-ms-correlation-request-id": [ - "1680449a-1b2c-4a06-9677-855023aa37fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215328Z:1680449a-1b2c-4a06-9677-855023aa37fe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c8abcaf-bcbf-4ae4-b17e-00cf1c735ee2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14151" - ], - "x-ms-correlation-request-id": [ - "6d5d1855-dd9c-4b16-8a98-e3de9612db6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215328Z:6d5d1855-dd9c-4b16-8a98-e3de9612db6f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52b3a8b0-1235-4c02-9061-6ea360bb6328" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14150" - ], - "x-ms-correlation-request-id": [ - "aa941690-5000-4946-9fa8-69ba926f826a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215328Z:aa941690-5000-4946-9fa8-69ba926f826a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6dc13bf0-cb82-4591-8da1-ba9feb874b4f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14149" - ], - "x-ms-correlation-request-id": [ - "1ac59770-8617-41bf-a5dc-bf7f9f64d2e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215328Z:1ac59770-8617-41bf-a5dc-bf7f9f64d2e7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bfbfa227-515e-4d84-bb13-9f2f0c1f8e28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14148" - ], - "x-ms-correlation-request-id": [ - "563b35d7-f5ac-40c1-91a8-567b5b9e94aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215328Z:563b35d7-f5ac-40c1-91a8-567b5b9e94aa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6a6449a-4c0b-417d-afa0-412c99e67ac6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14147" - ], - "x-ms-correlation-request-id": [ - "488c75d5-41f1-4f50-8524-fadef619b656" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215329Z:488c75d5-41f1-4f50-8524-fadef619b656" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e063280-05f2-4dae-bdb5-b237d2a3e928" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14146" - ], - "x-ms-correlation-request-id": [ - "806632cb-892d-4954-a037-19d66ba0f285" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215329Z:806632cb-892d-4954-a037-19d66ba0f285" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4eaaa56-c7be-4ec5-91b0-f52e94ca3cf6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14145" - ], - "x-ms-correlation-request-id": [ - "ec4e18da-64bf-42e9-aba1-5be288c4ff98" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215329Z:ec4e18da-64bf-42e9-aba1-5be288c4ff98" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a80596ea-07f2-4c53-bf73-f9813e033afe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14144" - ], - "x-ms-correlation-request-id": [ - "44db1aeb-347d-4ade-a136-be060ca7e83d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215329Z:44db1aeb-347d-4ade-a136-be060ca7e83d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2250818-112f-408b-879d-ee2bfba5b2d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14143" - ], - "x-ms-correlation-request-id": [ - "5f5f754c-528a-4ab4-a13f-d08b3ab59f8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215329Z:5f5f754c-528a-4ab4-a13f-d08b3ab59f8a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "273e964d-0af3-400c-8418-7cb94494429a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14142" - ], - "x-ms-correlation-request-id": [ - "dd7a24dc-c69a-4366-a756-992464448d12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215329Z:dd7a24dc-c69a-4366-a756-992464448d12" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f92d197-18e0-4df5-9556-493ff70bb980" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14141" - ], - "x-ms-correlation-request-id": [ - "ea12953d-85de-4bc4-a65b-35143ada2c88" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215329Z:ea12953d-85de-4bc4-a65b-35143ada2c88" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7143a476-efe2-4fe9-a593-f5e69144ae3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14140" - ], - "x-ms-correlation-request-id": [ - "07daf478-b392-4089-bcdc-727bbaf8c285" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215330Z:07daf478-b392-4089-bcdc-727bbaf8c285" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67c34b1a-b9e4-4e66-9364-456ba3f8bcb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14139" - ], - "x-ms-correlation-request-id": [ - "79d50258-2009-4fe0-8145-55b2d90c716b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215330Z:79d50258-2009-4fe0-8145-55b2d90c716b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "124f579a-c60f-4c31-a77d-f80b83366e4e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14138" - ], - "x-ms-correlation-request-id": [ - "bd5c7fc4-da39-4726-83b9-d1d3828d6a81" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215330Z:bd5c7fc4-da39-4726-83b9-d1d3828d6a81" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f6a054a-33e9-4bc4-9c92-d18b1f82895c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14137" - ], - "x-ms-correlation-request-id": [ - "1c200a8d-e9dc-4613-9e6f-cb4e3d0c4f44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215330Z:1c200a8d-e9dc-4613-9e6f-cb4e3d0c4f44" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6dc9759e-7cc9-4691-9ca4-42327785c3cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14136" - ], - "x-ms-correlation-request-id": [ - "ec3f9e18-0a3f-4c82-b6fe-7247df60f8df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215330Z:ec3f9e18-0a3f-4c82-b6fe-7247df60f8df" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38581740-5c4a-4e63-b573-9514d26de8e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14135" - ], - "x-ms-correlation-request-id": [ - "e2b10468-cf0e-4f5d-b597-d6c1d0e0a2a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215330Z:e2b10468-cf0e-4f5d-b597-d6c1d0e0a2a4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "07e76d9e-bb85-417c-8cf5-923c5067d32f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14134" - ], - "x-ms-correlation-request-id": [ - "cad9dea3-81d7-4397-b634-b2e01be5918c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215331Z:cad9dea3-81d7-4397-b634-b2e01be5918c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cef0b2ba-8f82-4886-8fad-4b56798d9048" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14133" - ], - "x-ms-correlation-request-id": [ - "8d21c008-4a2a-4564-8299-f6ee6d7ddf28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215331Z:8d21c008-4a2a-4564-8299-f6ee6d7ddf28" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73f3274d-6d31-4636-be84-58f8fcd5e2b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14132" - ], - "x-ms-correlation-request-id": [ - "57290f60-83bb-438c-9fc8-87d496a10e75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215331Z:57290f60-83bb-438c-9fc8-87d496a10e75" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03479f69-eee5-4fc3-81d3-88cfcd071321" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14131" - ], - "x-ms-correlation-request-id": [ - "b1abdb05-88cb-4257-a2c8-19a7067babfb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215331Z:b1abdb05-88cb-4257-a2c8-19a7067babfb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7370a63-9e9a-4ae5-ba2e-7f3ee2a9e2b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14130" - ], - "x-ms-correlation-request-id": [ - "a255bfd6-1dca-49a0-94c4-8e475fb9f7dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215331Z:a255bfd6-1dca-49a0-94c4-8e475fb9f7dd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "110c8d89-0eda-48b9-afca-e31f571eccaf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14129" - ], - "x-ms-correlation-request-id": [ - "73cd2d7d-67cb-4cf3-b3cd-ac5992079c5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215331Z:73cd2d7d-67cb-4cf3-b3cd-ac5992079c5e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1cd229c1-8df6-47a9-bf2b-3a413b8556bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14128" - ], - "x-ms-correlation-request-id": [ - "9c9524fe-116b-48d9-b853-a331006c07c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215332Z:9c9524fe-116b-48d9-b853-a331006c07c7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4ab3679-5a72-4dfc-9d83-eb5a84ac1b04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14127" - ], - "x-ms-correlation-request-id": [ - "e974197f-9639-446d-82ce-95c928f07e55" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215332Z:e974197f-9639-446d-82ce-95c928f07e55" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "387ba37c-d066-4d19-9a7e-5f671e6b1ef1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14126" - ], - "x-ms-correlation-request-id": [ - "346264f1-8a25-4869-9607-cdd1d0562dcc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215332Z:346264f1-8a25-4869-9607-cdd1d0562dcc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5031519-9d1d-48ea-b888-be0d54ebbe12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14125" - ], - "x-ms-correlation-request-id": [ - "26bda0bb-10f9-4ca4-9203-11fe1383e385" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215332Z:26bda0bb-10f9-4ca4-9203-11fe1383e385" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d049d3fd-e226-4d63-94fd-fb96c8b176db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14124" - ], - "x-ms-correlation-request-id": [ - "1db465d9-23e1-442e-bd24-98fb547db40a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215332Z:1db465d9-23e1-442e-bd24-98fb547db40a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7f628e2-9ae3-4f02-9c2b-3dff0fd775c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14123" - ], - "x-ms-correlation-request-id": [ - "c01a004e-f01b-45e7-a8dd-de4457258b02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215333Z:c01a004e-f01b-45e7-a8dd-de4457258b02" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff2d6b0c-d3cc-4832-b217-f5532772073e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14122" - ], - "x-ms-correlation-request-id": [ - "a28aa172-8c68-446a-8a13-4f600c60b10e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215333Z:a28aa172-8c68-446a-8a13-4f600c60b10e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b34cf992-446e-4b08-98a2-fd63390972bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14121" - ], - "x-ms-correlation-request-id": [ - "9bf597a8-ba8a-4f10-919d-e5b5fcb730d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215333Z:9bf597a8-ba8a-4f10-919d-e5b5fcb730d9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6761196-ad49-46ed-903f-2d6e07af8198" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14120" - ], - "x-ms-correlation-request-id": [ - "32d61731-c4a0-4e34-8229-3097a10c863e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215333Z:32d61731-c4a0-4e34-8229-3097a10c863e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b15d1caa-ccfa-4a2d-a334-7808b283acb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14119" - ], - "x-ms-correlation-request-id": [ - "c1b41880-5a2d-448a-811f-975cff82fed9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215333Z:c1b41880-5a2d-448a-811f-975cff82fed9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b0a7c6b-995f-4dbe-b6e1-ae66b4933836" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14118" - ], - "x-ms-correlation-request-id": [ - "bae5530a-66c2-4435-96e6-968a26aaf9d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215333Z:bae5530a-66c2-4435-96e6-968a26aaf9d0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c2d3f08-6932-4e9f-a50d-b64ebd910edf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14117" - ], - "x-ms-correlation-request-id": [ - "d2478adb-ac2b-4fc9-92cb-7433b492b49a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215334Z:d2478adb-ac2b-4fc9-92cb-7433b492b49a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38a1e6a8-5811-4bbf-9959-42fbd494fefd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14116" - ], - "x-ms-correlation-request-id": [ - "6b913b9d-2f4d-4338-8fb4-dd63474e46ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215334Z:6b913b9d-2f4d-4338-8fb4-dd63474e46ce" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3db3cc2-5f62-4983-8bd8-839d4cd3d50d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14115" - ], - "x-ms-correlation-request-id": [ - "76690716-f3aa-4dd3-a9dd-0ba8b1539736" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215334Z:76690716-f3aa-4dd3-a9dd-0ba8b1539736" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "474bd8cb-51c1-42dd-b9d6-7b4e2b4dcefb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14114" - ], - "x-ms-correlation-request-id": [ - "ad5b4df2-9c11-476c-86e8-0eea02b91d76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215334Z:ad5b4df2-9c11-476c-86e8-0eea02b91d76" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "32705bb3-3043-4842-b655-c2397ffb9ee6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14113" - ], - "x-ms-correlation-request-id": [ - "b1dab021-cf6e-490c-b9b5-8c581102189b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215334Z:b1dab021-cf6e-490c-b9b5-8c581102189b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1aec8fa-a53d-4b65-95d4-76b4ed98dd3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14112" - ], - "x-ms-correlation-request-id": [ - "1dfefac3-83b0-420c-a800-4ffc84419e4d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215334Z:1dfefac3-83b0-420c-a800-4ffc84419e4d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae455c3b-3b65-4a5a-80cc-18202d144faf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14111" - ], - "x-ms-correlation-request-id": [ - "fabd94f1-2c12-412a-8090-e2cc2ad9ba1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215334Z:fabd94f1-2c12-412a-8090-e2cc2ad9ba1f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "34d483e5-2357-4e30-b5c2-4f713f852041" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14110" - ], - "x-ms-correlation-request-id": [ - "d19f685d-0445-42c3-aefc-538e104a84c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215335Z:d19f685d-0445-42c3-aefc-538e104a84c6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f693eff-41ff-476e-a99d-b486c89549d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14109" - ], - "x-ms-correlation-request-id": [ - "67acdaf7-ba3e-4162-8ad6-bfb0e64b8629" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215335Z:67acdaf7-ba3e-4162-8ad6-bfb0e64b8629" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "af3a1405-1da4-462f-b353-305ad7300d4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14108" - ], - "x-ms-correlation-request-id": [ - "0d0877eb-680b-451f-8c41-eff584d201f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215335Z:0d0877eb-680b-451f-8c41-eff584d201f7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b8860fd-45bc-4171-b46f-67d245137ad4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14107" - ], - "x-ms-correlation-request-id": [ - "027ac215-b883-4996-994e-7f41cdaad3b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215335Z:027ac215-b883-4996-994e-7f41cdaad3b4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "640e78ae-7bf5-48c8-8ee6-e11b3796e9a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14106" - ], - "x-ms-correlation-request-id": [ - "75d604e5-af93-490a-8150-a4729958a316" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215336Z:75d604e5-af93-490a-8150-a4729958a316" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9dc03b41-7b7e-4d7e-9fa7-2940a36eca3d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14105" - ], - "x-ms-correlation-request-id": [ - "8ba7309e-e0a5-4442-9839-b0140a04b571" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215336Z:8ba7309e-e0a5-4442-9839-b0140a04b571" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "531d0652-fdd2-4706-a304-d1f397387c5f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14104" - ], - "x-ms-correlation-request-id": [ - "4b1b9007-c312-47f7-8159-feadd1e0278d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215336Z:4b1b9007-c312-47f7-8159-feadd1e0278d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad8c98e0-ee8d-4c49-98fa-d4dc7d1a11d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14103" - ], - "x-ms-correlation-request-id": [ - "0ac14b86-4ac8-453d-9616-3cccc8c1565b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215336Z:0ac14b86-4ac8-453d-9616-3cccc8c1565b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25ea70b2-e363-4889-856b-5260e82060e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14102" - ], - "x-ms-correlation-request-id": [ - "0043c886-ecb4-44b8-ade8-539dfc747f22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215336Z:0043c886-ecb4-44b8-ade8-539dfc747f22" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c4b9ff9d-09e4-4f9c-a690-eca524c1e805" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14101" - ], - "x-ms-correlation-request-id": [ - "d1d3fec3-04cc-48c7-bbda-f85eec4bbb57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215336Z:d1d3fec3-04cc-48c7-bbda-f85eec4bbb57" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da93ea67-651d-42bd-b4d5-a45902013002" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14100" - ], - "x-ms-correlation-request-id": [ - "65a76145-ae1f-4e2d-a324-1312ceddf258" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215336Z:65a76145-ae1f-4e2d-a324-1312ceddf258" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74f98552-8b03-4ec0-b112-ec5d1a0315ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14099" - ], - "x-ms-correlation-request-id": [ - "bd114166-a0f0-46ec-9e51-9b3b437b11af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215337Z:bd114166-a0f0-46ec-9e51-9b3b437b11af" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77a4c504-a9e3-47f6-8265-c4f84be03ec2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14098" - ], - "x-ms-correlation-request-id": [ - "8bf8e754-fc9e-42d6-8be9-16540927c545" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215337Z:8bf8e754-fc9e-42d6-8be9-16540927c545" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f2dd55a-b9e5-42a6-ba72-27ca926f3b1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14097" - ], - "x-ms-correlation-request-id": [ - "e65b0cf2-d004-40cc-8501-f138f44a1cdc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215337Z:e65b0cf2-d004-40cc-8501-f138f44a1cdc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39c7a663-f554-4f22-a843-921123848b94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14096" - ], - "x-ms-correlation-request-id": [ - "55dc8cec-a44d-4ed7-bab4-2503839d5114" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215337Z:55dc8cec-a44d-4ed7-bab4-2503839d5114" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d71e74d6-7475-4f01-8ba3-5c4c05f6f2c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14095" - ], - "x-ms-correlation-request-id": [ - "e50ace17-804c-4076-85ad-faadaa3979d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215337Z:e50ace17-804c-4076-85ad-faadaa3979d3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "caf6b19f-2628-4acb-bd75-d164832efeee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14094" - ], - "x-ms-correlation-request-id": [ - "fb7969d3-23d4-4aae-bbe5-4ee1a08ca6b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215337Z:fb7969d3-23d4-4aae-bbe5-4ee1a08ca6b3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f38d10c5-df2d-4220-90ef-f9799e1b8203" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14093" - ], - "x-ms-correlation-request-id": [ - "38019d27-a6b6-494c-8d0f-eab49b541717" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215338Z:38019d27-a6b6-494c-8d0f-eab49b541717" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2667bb4e-5971-4a7d-8770-79a24a2f34a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14092" - ], - "x-ms-correlation-request-id": [ - "f96cab45-407d-4d38-aff3-51c492d99083" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215338Z:f96cab45-407d-4d38-aff3-51c492d99083" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dbfe06d0-b997-4d95-93fa-a34d39c6b07a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14091" - ], - "x-ms-correlation-request-id": [ - "03e78cb4-a247-4824-8a52-2a88a1bbfb83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215338Z:03e78cb4-a247-4824-8a52-2a88a1bbfb83" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dce3c662-5fa3-4dd1-b57c-4ed9fe44dc5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14090" - ], - "x-ms-correlation-request-id": [ - "4fe4cf0f-039a-4251-be37-1f63f59347a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215338Z:4fe4cf0f-039a-4251-be37-1f63f59347a3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84e2f031-e4d0-4271-a017-3e9387a629b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14089" - ], - "x-ms-correlation-request-id": [ - "49454b04-df1a-4a8c-80d4-a91f0d4e917f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215338Z:49454b04-df1a-4a8c-80d4-a91f0d4e917f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1608102c-dc23-4035-b8f5-dc51b3490030" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14088" - ], - "x-ms-correlation-request-id": [ - "ba386772-947d-4d24-91ca-9b783093c2d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215339Z:ba386772-947d-4d24-91ca-9b783093c2d8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "26cb9cd9-9071-4101-ae32-8102a292ce6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14087" - ], - "x-ms-correlation-request-id": [ - "9a436164-c26c-42cd-b80c-b19c736f6a85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215339Z:9a436164-c26c-42cd-b80c-b19c736f6a85" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a119ec3-10f7-4872-981d-ba1295eed69b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14086" - ], - "x-ms-correlation-request-id": [ - "728fb987-3b81-428c-91c8-9534acf32dd2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215339Z:728fb987-3b81-428c-91c8-9534acf32dd2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d96ea686-d113-450b-b5ef-124cafe28ab3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14085" - ], - "x-ms-correlation-request-id": [ - "662fdf10-9c52-4f6b-8a55-7e932ae1889c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215339Z:662fdf10-9c52-4f6b-8a55-7e932ae1889c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30e6c5a9-d3d1-4b34-abe8-b8e7d76be31b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14084" - ], - "x-ms-correlation-request-id": [ - "61d4812f-cf78-4f6b-b834-b224d64a7be0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215339Z:61d4812f-cf78-4f6b-b834-b224d64a7be0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c14bbcde-25d4-4a1f-96c1-b7e9f09b16cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14083" - ], - "x-ms-correlation-request-id": [ - "0148448f-35b0-4186-b843-b580184585db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215340Z:0148448f-35b0-4186-b843-b580184585db" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efbf64ea-1cd1-4fdd-bbdb-001b87ccbeb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14082" - ], - "x-ms-correlation-request-id": [ - "1cebcca2-004f-4e88-991b-eef95e129bbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215340Z:1cebcca2-004f-4e88-991b-eef95e129bbf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "add4230a-622b-453d-9257-fd909702b7fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14081" - ], - "x-ms-correlation-request-id": [ - "7735b623-55b0-410d-8daf-39d8c6824d2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215340Z:7735b623-55b0-410d-8daf-39d8c6824d2c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5fa2ab0-2c8a-4806-86f0-50198b8b92cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14080" - ], - "x-ms-correlation-request-id": [ - "d106e05a-d41c-4e0b-95e4-42517473408c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215340Z:d106e05a-d41c-4e0b-95e4-42517473408c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d39ad04-54aa-494c-bd77-988657843091" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14079" - ], - "x-ms-correlation-request-id": [ - "a553cb2d-ca20-4147-a631-939a7aaf3557" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215340Z:a553cb2d-ca20-4147-a631-939a7aaf3557" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0db8fea4-73d1-4205-ad7f-f3384bc6aac4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14078" - ], - "x-ms-correlation-request-id": [ - "0712b801-fbdd-46d4-8196-6c1d7474db21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215340Z:0712b801-fbdd-46d4-8196-6c1d7474db21" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d06c6f5f-940e-4ec4-b979-a8344cc0eec9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14077" - ], - "x-ms-correlation-request-id": [ - "bba2d2ff-4e4d-45d3-a77b-5bd6735b7125" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215341Z:bba2d2ff-4e4d-45d3-a77b-5bd6735b7125" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05f81649-3a44-4aa4-9420-b8720cf06f6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14076" - ], - "x-ms-correlation-request-id": [ - "59a3d1ae-4004-4ea3-9a8e-0365a73cb599" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215341Z:59a3d1ae-4004-4ea3-9a8e-0365a73cb599" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e3e3998-28c5-4cbf-ac8a-c67df60769b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14075" - ], - "x-ms-correlation-request-id": [ - "e6200280-0171-418c-877c-2b76b9e6acbc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215341Z:e6200280-0171-418c-877c-2b76b9e6acbc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2444c63b-32a2-4b3d-8224-93adfda075dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14074" - ], - "x-ms-correlation-request-id": [ - "15bd9f55-a875-4a2a-bd65-87fdfb90a567" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215341Z:15bd9f55-a875-4a2a-bd65-87fdfb90a567" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d29af1d-07ec-46dc-bb7a-7ea31d71a222" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14073" - ], - "x-ms-correlation-request-id": [ - "3cd6f091-74e6-4663-8998-1b224dea1a11" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215341Z:3cd6f091-74e6-4663-8998-1b224dea1a11" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad1c3359-49a0-486e-a9fe-7a9941dd360e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14072" - ], - "x-ms-correlation-request-id": [ - "17aa9fd3-cef4-490e-be2e-420e9bada308" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215341Z:17aa9fd3-cef4-490e-be2e-420e9bada308" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f732ca2-7daa-42cf-be17-a8407eec43a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14071" - ], - "x-ms-correlation-request-id": [ - "8d7b3f05-65da-45fa-89ad-29ba35677a15" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215342Z:8d7b3f05-65da-45fa-89ad-29ba35677a15" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "321e44fb-a0b7-44fe-9d15-950c8e12c690" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14070" - ], - "x-ms-correlation-request-id": [ - "7f879bfb-6464-43c9-b63c-fbac13c873ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215342Z:7f879bfb-6464-43c9-b63c-fbac13c873ac" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9388361f-e28b-4ad9-9fff-9496f39c912e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14069" - ], - "x-ms-correlation-request-id": [ - "bbad49c4-6917-43aa-a5f4-2dac4409a169" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215342Z:bbad49c4-6917-43aa-a5f4-2dac4409a169" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "706e69d6-ce54-4ff5-bf61-d7d42fb78cae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14068" - ], - "x-ms-correlation-request-id": [ - "f1820756-ae99-4588-a831-573f64f1ef0f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215342Z:f1820756-ae99-4588-a831-573f64f1ef0f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4dede7bd-d88f-45b7-9136-3b285901c32a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14067" - ], - "x-ms-correlation-request-id": [ - "8c451d42-91a9-4f74-a899-ee8e0f092f6b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215343Z:8c451d42-91a9-4f74-a899-ee8e0f092f6b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2b97c9e-76e2-43e5-8b4b-f2150af39014" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14066" - ], - "x-ms-correlation-request-id": [ - "93dbdd84-1022-4a76-8ee9-55cb5f8d1798" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215343Z:93dbdd84-1022-4a76-8ee9-55cb5f8d1798" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82b4fa30-a7f2-4c64-a6ed-2ac99af64ef8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14065" - ], - "x-ms-correlation-request-id": [ - "e3ca1d14-50f2-4eee-a6eb-5378734e0846" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215343Z:e3ca1d14-50f2-4eee-a6eb-5378734e0846" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b881f84-4663-462a-b073-3a6e2cca18e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14064" - ], - "x-ms-correlation-request-id": [ - "79aa25d3-5cad-4237-ba0b-afed9a818499" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215343Z:79aa25d3-5cad-4237-ba0b-afed9a818499" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0ffc736-56f2-41d4-ad79-144d481fb43b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14063" - ], - "x-ms-correlation-request-id": [ - "0a0c94fb-d753-4f55-b87e-f2a1060a8e25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215343Z:0a0c94fb-d753-4f55-b87e-f2a1060a8e25" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5c0f0c6-3743-4370-94c5-a4eacc7ceea2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14062" - ], - "x-ms-correlation-request-id": [ - "00e09c81-1305-43b2-9194-e216372acc4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215343Z:00e09c81-1305-43b2-9194-e216372acc4b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b48bc2e3-b7bb-4e11-9b1a-79e0bddef199" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14061" - ], - "x-ms-correlation-request-id": [ - "b5cb1ebe-a24e-4580-8108-3f9036e7c529" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215344Z:b5cb1ebe-a24e-4580-8108-3f9036e7c529" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f25a7631-4ce6-4907-a980-2bdb8da48e56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14060" - ], - "x-ms-correlation-request-id": [ - "af45ed10-fc46-45cd-9a0f-630e8f28b5c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215344Z:af45ed10-fc46-45cd-9a0f-630e8f28b5c2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ae4091a-627f-452f-98f3-b4bf1a71db44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14059" - ], - "x-ms-correlation-request-id": [ - "26b7cc53-2b9f-44e6-ae29-4d2b69c50be8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215344Z:26b7cc53-2b9f-44e6-ae29-4d2b69c50be8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36643deb-c80d-48f4-9f6b-1d78e8745d40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14058" - ], - "x-ms-correlation-request-id": [ - "455c2096-6db8-4696-b9f9-3a03f542bdb0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215344Z:455c2096-6db8-4696-b9f9-3a03f542bdb0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "feda2ace-5301-4326-aa9e-754e21cb0279" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14057" - ], - "x-ms-correlation-request-id": [ - "cc774366-4349-4c8b-bad5-773f473561b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215344Z:cc774366-4349-4c8b-bad5-773f473561b5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2da8b73-a418-4126-8013-b3d1e9e270e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14056" - ], - "x-ms-correlation-request-id": [ - "3db13c12-1e7c-417c-8b1c-ed369949e80c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215344Z:3db13c12-1e7c-417c-8b1c-ed369949e80c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38b9793c-6df8-4d00-a7e5-e54e69fdd564" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14055" - ], - "x-ms-correlation-request-id": [ - "789184d9-d2fa-45ab-be4c-0bdd96b2caf5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215345Z:789184d9-d2fa-45ab-be4c-0bdd96b2caf5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1fad04eb-0ba0-4b81-ba82-e3cc5527bd98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14054" - ], - "x-ms-correlation-request-id": [ - "bd1cc32d-df81-492a-ad47-896b62efc927" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215345Z:bd1cc32d-df81-492a-ad47-896b62efc927" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b10386bb-1510-49ae-a7dd-7f616e8006e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14053" - ], - "x-ms-correlation-request-id": [ - "ef10d952-44aa-4f28-ae03-c8d54cf7d17a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215345Z:ef10d952-44aa-4f28-ae03-c8d54cf7d17a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4f93773-d137-45df-9592-5264028e70d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14052" - ], - "x-ms-correlation-request-id": [ - "b1c9f569-c748-4150-a4c2-6a7144603620" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215345Z:b1c9f569-c748-4150-a4c2-6a7144603620" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "753cdcde-967f-4d86-a81f-7aaafa76c841" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14051" - ], - "x-ms-correlation-request-id": [ - "50ea25a9-345c-4d28-84a9-4adfd75a10bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215345Z:50ea25a9-345c-4d28-84a9-4adfd75a10bb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b866e6c-7a41-45fa-9daa-bb46f4cf1f4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14050" - ], - "x-ms-correlation-request-id": [ - "37ba9ab9-2173-4ad6-a942-e12cee7febbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215345Z:37ba9ab9-2173-4ad6-a942-e12cee7febbe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee147c2d-c755-4735-8c10-5afa4ae167e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14049" - ], - "x-ms-correlation-request-id": [ - "b9bc1a72-3e69-483a-bd18-91cc4ad9e973" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215346Z:b9bc1a72-3e69-483a-bd18-91cc4ad9e973" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "855ba5fb-4136-4f6a-ae67-65a5987a24e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14048" - ], - "x-ms-correlation-request-id": [ - "ed0d6960-f58a-4be2-a44d-702c1495e462" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215346Z:ed0d6960-f58a-4be2-a44d-702c1495e462" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fdad4f07-eadd-4960-83ea-ae83b41e7ef3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14047" - ], - "x-ms-correlation-request-id": [ - "d255a380-71a6-472e-a7e6-fd77378fa1e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215346Z:d255a380-71a6-472e-a7e6-fd77378fa1e9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "484850ce-62e4-4892-ae12-d3fa83ced347" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14046" - ], - "x-ms-correlation-request-id": [ - "1509ea63-8a39-4ede-af1f-e467ab61c155" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215346Z:1509ea63-8a39-4ede-af1f-e467ab61c155" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef813525-4551-4730-b3f8-acd43282c32f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14045" - ], - "x-ms-correlation-request-id": [ - "cc868c1f-c26a-406e-8fdc-e84429303f21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215346Z:cc868c1f-c26a-406e-8fdc-e84429303f21" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee035864-f749-4af4-87ce-8cf738de43e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14044" - ], - "x-ms-correlation-request-id": [ - "65837a47-f80c-4da8-9305-0804edea21fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215346Z:65837a47-f80c-4da8-9305-0804edea21fe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8afd146-0d2d-425a-92f7-27ff9f74dc90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14043" - ], - "x-ms-correlation-request-id": [ - "b13e933a-428b-4cf5-9326-c6f5d4436b31" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215347Z:b13e933a-428b-4cf5-9326-c6f5d4436b31" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8506a069-b7e1-4186-9f9f-fa963fef8c4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14042" - ], - "x-ms-correlation-request-id": [ - "f3c79032-306b-4c5a-8986-1dcf95a04356" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215347Z:f3c79032-306b-4c5a-8986-1dcf95a04356" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee9874a7-085d-4119-865b-96f1a9771ed4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14041" - ], - "x-ms-correlation-request-id": [ - "4244460c-50cd-49a6-a95e-98a0b690c129" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215347Z:4244460c-50cd-49a6-a95e-98a0b690c129" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6b6aa00-f2e9-4d0f-ac48-404ab9d3b086" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14040" - ], - "x-ms-correlation-request-id": [ - "68bd4ca8-6b42-487f-9989-7438ef40d731" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215347Z:68bd4ca8-6b42-487f-9989-7438ef40d731" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "233c8f2e-d1f7-4c02-aaa5-c4e47cd064f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14039" - ], - "x-ms-correlation-request-id": [ - "9f0e512b-b5a4-497b-ab5f-2279bd3cb17e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215347Z:9f0e512b-b5a4-497b-ab5f-2279bd3cb17e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cbf49eb4-0f31-419e-8132-947f1b4a16df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14038" - ], - "x-ms-correlation-request-id": [ - "de76a882-f143-4d6b-883c-d62f32a0872e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215347Z:de76a882-f143-4d6b-883c-d62f32a0872e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5822aa9-dde2-4e2e-b086-358d492c4cb5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14037" - ], - "x-ms-correlation-request-id": [ - "4474df1e-c19f-48af-8cba-416eaeec9a66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215348Z:4474df1e-c19f-48af-8cba-416eaeec9a66" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab765036-1b94-40f3-a365-94d79dfcd1a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14036" - ], - "x-ms-correlation-request-id": [ - "8acb5163-b0a6-4902-9595-077ede721392" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215348Z:8acb5163-b0a6-4902-9595-077ede721392" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b9219e9e-87f2-48c5-b475-a57d514cd9ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14035" - ], - "x-ms-correlation-request-id": [ - "1ed121df-0d95-428b-b561-12fdbbaadb62" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215348Z:1ed121df-0d95-428b-b561-12fdbbaadb62" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31fa6ae6-0e94-40c0-ac69-13e293b553b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14034" - ], - "x-ms-correlation-request-id": [ - "aa599179-222a-4fec-a6e4-b83eb7caa9b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215348Z:aa599179-222a-4fec-a6e4-b83eb7caa9b3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ae5a7bc-53ee-4099-9125-78f659d87694" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14033" - ], - "x-ms-correlation-request-id": [ - "edd42b18-cf31-43c1-8839-d98cfae3d2d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215348Z:edd42b18-cf31-43c1-8839-d98cfae3d2d4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "865a26ae-ce9e-44fb-aa71-ef87e9605537" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14032" - ], - "x-ms-correlation-request-id": [ - "0a32d16c-1715-4533-9225-5733a0f59be4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215348Z:0a32d16c-1715-4533-9225-5733a0f59be4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f953613-4a71-4ad5-a457-5558d8801f5f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14031" - ], - "x-ms-correlation-request-id": [ - "2a11eb77-1ff0-4dd4-a131-90b349ac775f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215349Z:2a11eb77-1ff0-4dd4-a131-90b349ac775f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a51e864b-b6c3-4496-8122-3eb5c9e0ddf6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14030" - ], - "x-ms-correlation-request-id": [ - "3da1e586-f240-4b52-8b0c-2944dfbb5e07" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215349Z:3da1e586-f240-4b52-8b0c-2944dfbb5e07" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9ececd5-9f52-4268-b6df-97fc4239bbc5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14029" - ], - "x-ms-correlation-request-id": [ - "50549ed5-a37e-424d-ac44-0a331c5c1d00" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215349Z:50549ed5-a37e-424d-ac44-0a331c5c1d00" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9d75cc4-507f-48d4-b9e3-aeb69b2e6954" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14028" - ], - "x-ms-correlation-request-id": [ - "656f2416-f666-4508-85a7-e469a0a12227" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215349Z:656f2416-f666-4508-85a7-e469a0a12227" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f72c3093-f1da-412d-96d6-0a475bef2553" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14027" - ], - "x-ms-correlation-request-id": [ - "18e82438-1f0c-4008-9e82-7b82c933b895" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215349Z:18e82438-1f0c-4008-9e82-7b82c933b895" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f23eab5-0415-4843-9b79-b1a14accfc43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14026" - ], - "x-ms-correlation-request-id": [ - "32904226-57b6-4edd-a791-0da8b39fe71e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215349Z:32904226-57b6-4edd-a791-0da8b39fe71e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "283a49d2-19ae-4dfd-94f5-57ee7abf7db5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14025" - ], - "x-ms-correlation-request-id": [ - "4358f9d8-8827-4319-87ef-baa7b0eabf23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215349Z:4358f9d8-8827-4319-87ef-baa7b0eabf23" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44dec35f-3944-48e6-a866-7497e6f6ab29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14024" - ], - "x-ms-correlation-request-id": [ - "d0ec7bdb-3386-4f88-91b4-3763f2047e5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215350Z:d0ec7bdb-3386-4f88-91b4-3763f2047e5a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00560004-46e4-4428-80b2-91b340c501ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14023" - ], - "x-ms-correlation-request-id": [ - "ed60e2a7-d5fa-4c5d-b248-849dc4640ad9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215350Z:ed60e2a7-d5fa-4c5d-b248-849dc4640ad9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b059150c-5b5a-4ff9-9415-f723bc71f0d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14022" - ], - "x-ms-correlation-request-id": [ - "60be56a7-5c7f-4af3-a34e-140cd285ce94" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215350Z:60be56a7-5c7f-4af3-a34e-140cd285ce94" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03513718-25f8-4425-b975-b1667a4d8859" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14021" - ], - "x-ms-correlation-request-id": [ - "ab52e49c-fb90-4083-92c2-8573f092462f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215350Z:ab52e49c-fb90-4083-92c2-8573f092462f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5ff1ee3-dfb9-4817-8209-b0589a20a9cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14020" - ], - "x-ms-correlation-request-id": [ - "996df6ce-0bc6-4fd0-a898-3003819de863" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215350Z:996df6ce-0bc6-4fd0-a898-3003819de863" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a18556e7-5d2c-4fb2-a9fd-b6c881f6bef3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14019" - ], - "x-ms-correlation-request-id": [ - "e0cf7dbd-1ee6-4100-a11f-a79591add272" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215351Z:e0cf7dbd-1ee6-4100-a11f-a79591add272" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc089aa9-ae98-4659-bba0-549f49cdaea8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14018" - ], - "x-ms-correlation-request-id": [ - "cb7cfdcd-9b59-4ec3-a4ea-0d2b48d97278" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215351Z:cb7cfdcd-9b59-4ec3-a4ea-0d2b48d97278" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "64812239-47ba-43f1-9bce-183cebc7cec4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14017" - ], - "x-ms-correlation-request-id": [ - "c9383159-e9c8-44ec-8cff-fce869f072e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215351Z:c9383159-e9c8-44ec-8cff-fce869f072e8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe96bfb4-0c62-490a-a17d-cde7fd5249a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14016" - ], - "x-ms-correlation-request-id": [ - "80a39fce-5f45-4510-8b2f-369807528fdc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215351Z:80a39fce-5f45-4510-8b2f-369807528fdc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f8f3800-5aa6-4854-ab24-2857f45218f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14015" - ], - "x-ms-correlation-request-id": [ - "ca7df64d-30bf-4e33-8040-5afb46f63b2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215351Z:ca7df64d-30bf-4e33-8040-5afb46f63b2c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4abd37e7-5564-4eff-ae76-5d224a29e082" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14014" - ], - "x-ms-correlation-request-id": [ - "7fecc1d5-6e88-4d4d-913d-fde6ce96c1d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215351Z:7fecc1d5-6e88-4d4d-913d-fde6ce96c1d6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d2468aa-4311-45ea-9c02-f16dacc84c51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14013" - ], - "x-ms-correlation-request-id": [ - "3ccb8290-e264-4211-8c17-de071f2e1e91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215351Z:3ccb8290-e264-4211-8c17-de071f2e1e91" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "862d00b6-621c-4000-8cda-b0eb40cfea0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14012" - ], - "x-ms-correlation-request-id": [ - "a85f8fa5-ffa7-4df2-96a8-4524573d75d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215352Z:a85f8fa5-ffa7-4df2-96a8-4524573d75d0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0828a792-eb21-46f5-a3fc-f2d2f5b96f81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14011" - ], - "x-ms-correlation-request-id": [ - "d1a0e91e-7cd9-4f18-9ee2-bd105c6057ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215352Z:d1a0e91e-7cd9-4f18-9ee2-bd105c6057ea" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4dafa20f-9e63-48da-8e7f-9fe11703eb67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14010" - ], - "x-ms-correlation-request-id": [ - "041e9a91-9897-41bb-a7a2-b98c9d543957" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215352Z:041e9a91-9897-41bb-a7a2-b98c9d543957" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60550bc4-3b0b-457b-8cf4-906f2ad09391" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14009" - ], - "x-ms-correlation-request-id": [ - "0e2d298f-2ea6-40f3-8c37-229d2461e3e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215352Z:0e2d298f-2ea6-40f3-8c37-229d2461e3e1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57ccb8eb-0869-4fbb-a34d-7439d8c8082e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14008" - ], - "x-ms-correlation-request-id": [ - "d1c6b947-5621-4f37-b592-d27db8870876" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215352Z:d1c6b947-5621-4f37-b592-d27db8870876" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b844e024-4a60-44a6-bb38-d4372ec0e454" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14007" - ], - "x-ms-correlation-request-id": [ - "646edc22-951b-49af-86e0-683acfb76f04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215352Z:646edc22-951b-49af-86e0-683acfb76f04" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1683fb07-16bd-4d19-8a8c-f7cb627d56f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14006" - ], - "x-ms-correlation-request-id": [ - "df5e1929-5b5f-4835-b070-531c38f8de54" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215353Z:df5e1929-5b5f-4835-b070-531c38f8de54" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f546ebd6-b793-43c7-9eda-707ba67bcd5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14005" - ], - "x-ms-correlation-request-id": [ - "78bbd57d-9dd2-4703-bfda-70866dc0ac70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215353Z:78bbd57d-9dd2-4703-bfda-70866dc0ac70" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f4e674b-b956-449b-897c-7eb91a0c08f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14004" - ], - "x-ms-correlation-request-id": [ - "6fc51136-d711-4dda-86b4-5295b3355ec5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215353Z:6fc51136-d711-4dda-86b4-5295b3355ec5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4515651a-1f23-4771-964d-8ded574ca407" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14003" - ], - "x-ms-correlation-request-id": [ - "3833de84-1528-4688-a814-73d3f86bed49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215353Z:3833de84-1528-4688-a814-73d3f86bed49" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e853bc8-9b65-4b63-8a02-ac06a2897076" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14002" - ], - "x-ms-correlation-request-id": [ - "0eca3c10-42bc-4006-ad98-9ea2a88e4464" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215353Z:0eca3c10-42bc-4006-ad98-9ea2a88e4464" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df4ebf35-3c52-4af9-a646-b996f2c11200" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14001" - ], - "x-ms-correlation-request-id": [ - "7c93099b-c9c0-43a8-afd3-29fe756ca006" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215354Z:7c93099b-c9c0-43a8-afd3-29fe756ca006" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6d48e0a-03d9-4ff7-99f7-8db556387fd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14000" - ], - "x-ms-correlation-request-id": [ - "eb4316de-cdd9-4feb-9967-61404d6f08fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215354Z:eb4316de-cdd9-4feb-9967-61404d6f08fb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dac0ab74-4704-49c1-9a45-8c0ed15a80ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13999" - ], - "x-ms-correlation-request-id": [ - "8c1bcbea-d5f8-495a-8150-3b49d3a102ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215354Z:8c1bcbea-d5f8-495a-8150-3b49d3a102ce" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6e20212-f079-4afb-843b-dffc6926e9ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13998" - ], - "x-ms-correlation-request-id": [ - "1f3ccdab-9a6a-4574-a861-3c5e299435dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215354Z:1f3ccdab-9a6a-4574-a861-3c5e299435dc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e821565-1c66-4145-a183-bfba905d6908" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13997" - ], - "x-ms-correlation-request-id": [ - "9b29a454-f0bb-400e-a19a-2e180a63c15c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215354Z:9b29a454-f0bb-400e-a19a-2e180a63c15c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d670a9c-d32a-4a5b-908e-5ac260fad5f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13996" - ], - "x-ms-correlation-request-id": [ - "126b9f03-c587-4126-9b35-335dcea0f496" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215354Z:126b9f03-c587-4126-9b35-335dcea0f496" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e92a589-dfdf-4e66-ba4e-3c359bb232d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13995" - ], - "x-ms-correlation-request-id": [ - "47eea668-f1a2-4ab1-9fac-78a14aa10598" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215354Z:47eea668-f1a2-4ab1-9fac-78a14aa10598" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb0d56b6-d5f5-45a6-ac96-1cf041db5849" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13994" - ], - "x-ms-correlation-request-id": [ - "073df576-da21-4c2e-a74b-b4d2b87447a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215355Z:073df576-da21-4c2e-a74b-b4d2b87447a3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e6c0738-3811-4b07-aff0-106bd61ebdd5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13993" - ], - "x-ms-correlation-request-id": [ - "40b11303-2f73-4137-a7ab-0069842b51ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215355Z:40b11303-2f73-4137-a7ab-0069842b51ec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52ba9d02-3036-431c-aec6-938952eed3c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13992" - ], - "x-ms-correlation-request-id": [ - "11d24395-fdbc-4c8b-88ca-ccb62ca5c796" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215355Z:11d24395-fdbc-4c8b-88ca-ccb62ca5c796" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd47cbe4-dafd-4baa-a98c-8f2b50af3aa5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13991" - ], - "x-ms-correlation-request-id": [ - "9524b491-0334-4eae-91df-e35b7adc89ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215355Z:9524b491-0334-4eae-91df-e35b7adc89ff" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a9d3865d-7994-4f42-9422-d88d1af34ff0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13990" - ], - "x-ms-correlation-request-id": [ - "57c6c4bd-898c-4f5c-8b52-7025c1dce70d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215355Z:57c6c4bd-898c-4f5c-8b52-7025c1dce70d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d1d8cc1-8cd2-4dfe-9a87-f1f43d7a5da9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13989" - ], - "x-ms-correlation-request-id": [ - "526ecc44-d67e-44f4-9a1f-0fdbe943137e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215356Z:526ecc44-d67e-44f4-9a1f-0fdbe943137e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bb17105-5925-49f7-b6f0-a53a8c1a6b3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13988" - ], - "x-ms-correlation-request-id": [ - "2c94f72e-1146-41cd-803f-77cddec6bcce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215356Z:2c94f72e-1146-41cd-803f-77cddec6bcce" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a84f87a-f25c-4356-8521-abc31a894d5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13987" - ], - "x-ms-correlation-request-id": [ - "2e0e3253-716a-4ed4-bbcb-839b34052688" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215356Z:2e0e3253-716a-4ed4-bbcb-839b34052688" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69252a19-e89f-4c3a-b03e-92be0e19929f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13986" - ], - "x-ms-correlation-request-id": [ - "e608d172-a733-438d-a1a4-5a5d46f3492a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215356Z:e608d172-a733-438d-a1a4-5a5d46f3492a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "746fa5c3-92a2-48b2-8063-21a08dc0585c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13985" - ], - "x-ms-correlation-request-id": [ - "1c53c88a-c418-4ae5-8edb-4111dafea80a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215356Z:1c53c88a-c418-4ae5-8edb-4111dafea80a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7542940b-be81-4b57-bfd1-26942962b7e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13984" - ], - "x-ms-correlation-request-id": [ - "a2bdde7f-47a8-43fe-ae16-580c7fbffd01" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215356Z:a2bdde7f-47a8-43fe-ae16-580c7fbffd01" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a1b0011-aa60-4f8c-ab4a-5b6cedd0a885" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13983" - ], - "x-ms-correlation-request-id": [ - "0ccda7bb-6697-450b-bd6b-3dc71a3217fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215356Z:0ccda7bb-6697-450b-bd6b-3dc71a3217fd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2259eebd-dc05-4871-97dc-845edeac9ae1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13982" - ], - "x-ms-correlation-request-id": [ - "7016e5e0-0369-407a-be10-9011c47e932c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215357Z:7016e5e0-0369-407a-be10-9011c47e932c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3292fb16-f52c-4428-8c30-1e09d970cbe1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13981" - ], - "x-ms-correlation-request-id": [ - "ae7a74c9-5668-48d7-bc19-659124d41609" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215357Z:ae7a74c9-5668-48d7-bc19-659124d41609" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "292f44cd-f1d4-47c7-9ad4-f176a1f4272e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13980" - ], - "x-ms-correlation-request-id": [ - "fcf63175-37fe-41a5-97d6-50d6b8ed08d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215357Z:fcf63175-37fe-41a5-97d6-50d6b8ed08d8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ee9fa17-f6ea-4f0c-9741-e77bd57d0c2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13979" - ], - "x-ms-correlation-request-id": [ - "d01f1002-7d62-4c7d-9af0-e7414b98fc62" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215357Z:d01f1002-7d62-4c7d-9af0-e7414b98fc62" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46f07183-1ecc-4e80-b3ab-247284c1e344" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13978" - ], - "x-ms-correlation-request-id": [ - "b57cd1eb-10df-4d27-83b7-3426fe32c5fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215357Z:b57cd1eb-10df-4d27-83b7-3426fe32c5fe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46313a2f-89fb-49e9-940f-c761332efc79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13977" - ], - "x-ms-correlation-request-id": [ - "672a90c1-f8c0-4048-80f3-9e22536003c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215358Z:672a90c1-f8c0-4048-80f3-9e22536003c6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2effd05-af7f-4c77-967b-66f91595ef09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13976" - ], - "x-ms-correlation-request-id": [ - "63594c47-eb45-4905-8626-060c57adc512" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215358Z:63594c47-eb45-4905-8626-060c57adc512" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f656f53-f62e-4c5e-9d38-adc3a8b628e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13975" - ], - "x-ms-correlation-request-id": [ - "4b780fb3-f434-49e7-9df8-dc3152b3ff93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215358Z:4b780fb3-f434-49e7-9df8-dc3152b3ff93" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "175c1505-1cb6-4d34-a2cc-b3151992df31" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13974" - ], - "x-ms-correlation-request-id": [ - "e92435a0-92f1-47a9-b3e8-de2f0fbe76d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215358Z:e92435a0-92f1-47a9-b3e8-de2f0fbe76d8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ecca4933-2843-4a83-a95d-4f5c0fb3d340" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13973" - ], - "x-ms-correlation-request-id": [ - "602040ee-244e-402c-a0d2-24b4d1178caf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215358Z:602040ee-244e-402c-a0d2-24b4d1178caf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a0101b9-05c5-4064-ab97-2a213097e614" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13972" - ], - "x-ms-correlation-request-id": [ - "53fa5c57-eb33-40d7-ba23-b89c9bdbbd49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215358Z:53fa5c57-eb33-40d7-ba23-b89c9bdbbd49" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "def83368-1454-4849-b9ca-2b0a50d61d94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13971" - ], - "x-ms-correlation-request-id": [ - "e7fa0cd4-1de0-4899-8638-f79a9c0ab429" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215359Z:e7fa0cd4-1de0-4899-8638-f79a9c0ab429" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bd1ddd06-44c3-4b81-902d-e05cede2bcb8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13970" - ], - "x-ms-correlation-request-id": [ - "2a56ddbb-0e95-4eda-a4d2-3609be9d123f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215359Z:2a56ddbb-0e95-4eda-a4d2-3609be9d123f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a82cb25d-1c19-487c-9880-d6a89be28cbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13969" - ], - "x-ms-correlation-request-id": [ - "3b7c7bfd-f682-4329-8e2b-63e6caa08ba9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215359Z:3b7c7bfd-f682-4329-8e2b-63e6caa08ba9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78f93397-6911-49ec-954e-302afe552571" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13968" - ], - "x-ms-correlation-request-id": [ - "6d00c611-20b7-449a-922e-1dab69c4fbfc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215359Z:6d00c611-20b7-449a-922e-1dab69c4fbfc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a76c5ff0-3b61-457e-be5d-f23039b15f32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13967" - ], - "x-ms-correlation-request-id": [ - "af570b0e-dbd3-4173-88cd-fbdfcd4772bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215359Z:af570b0e-dbd3-4173-88cd-fbdfcd4772bc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30f8509b-fc1c-4779-aea6-40fac4afe725" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13966" - ], - "x-ms-correlation-request-id": [ - "b38d8ac8-7ccf-4f15-b672-9490ce30749e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215359Z:b38d8ac8-7ccf-4f15-b672-9490ce30749e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1496b285-eaa1-471f-8a86-dfef46fc0440" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13965" - ], - "x-ms-correlation-request-id": [ - "5967fe90-0b62-4e81-a8ef-06e402474d1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215400Z:5967fe90-0b62-4e81-a8ef-06e402474d1b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b3fc4684-4045-4095-95b4-7549e1766a21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13964" - ], - "x-ms-correlation-request-id": [ - "497c1af2-9f51-4574-b92d-0a897fd46fb6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215400Z:497c1af2-9f51-4574-b92d-0a897fd46fb6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40625ef4-6c03-4cc5-b720-18c40b60ec4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13963" - ], - "x-ms-correlation-request-id": [ - "798c7be4-b183-442d-ac5a-d7ed0bab9734" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215400Z:798c7be4-b183-442d-ac5a-d7ed0bab9734" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3106c5c-0453-45a0-9a25-99574ecefda7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13962" - ], - "x-ms-correlation-request-id": [ - "c07d3a88-ef4e-4091-ab69-343308227162" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215400Z:c07d3a88-ef4e-4091-ab69-343308227162" - ], - "Date": [ - "Tue, 29 Aug 2017 21:53:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa0417d8-7cf0-4b56-93f7-dbee0107c281" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13961" - ], - "x-ms-correlation-request-id": [ - "ed7cd26f-fd4b-49d5-8c02-4798559ee251" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215400Z:ed7cd26f-fd4b-49d5-8c02-4798559ee251" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83998915-d9b1-4235-b220-c9818d756533" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13960" - ], - "x-ms-correlation-request-id": [ - "882cc30f-e4ca-47b7-bd85-c32b7e064b7c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215400Z:882cc30f-e4ca-47b7-bd85-c32b7e064b7c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc1c2771-2234-4a7d-85bb-11e10178f3ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13959" - ], - "x-ms-correlation-request-id": [ - "5c1ab72b-0d5f-4342-b112-b133e6c235a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215400Z:5c1ab72b-0d5f-4342-b112-b133e6c235a3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97800bcd-6bd4-4707-a2ab-88840eb20848" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13958" - ], - "x-ms-correlation-request-id": [ - "6fb04c51-55ee-491d-b2db-6d40fd6dc9eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215401Z:6fb04c51-55ee-491d-b2db-6d40fd6dc9eb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43e9a837-6372-4a51-b6b5-7494db4dd8c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13957" - ], - "x-ms-correlation-request-id": [ - "49bd69a6-a7e9-4cb6-ab2b-5653a681d1a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215401Z:49bd69a6-a7e9-4cb6-ab2b-5653a681d1a5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49200406-389a-42af-8579-5590ff9806b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13956" - ], - "x-ms-correlation-request-id": [ - "45345a0f-c44f-40cb-aa93-d63585d98d39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215401Z:45345a0f-c44f-40cb-aa93-d63585d98d39" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e8f3637-7090-4ca3-bd8d-ac2905703bfc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13955" - ], - "x-ms-correlation-request-id": [ - "5cb20fcb-9123-4950-ae3a-e9ea6f32f780" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215401Z:5cb20fcb-9123-4950-ae3a-e9ea6f32f780" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b0488eb-2dad-4b74-893d-62f21d20c78f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13954" - ], - "x-ms-correlation-request-id": [ - "17bd3330-76a3-4fff-bfaa-71da9ed499ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215401Z:17bd3330-76a3-4fff-bfaa-71da9ed499ec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96a4b2b9-183f-4ed5-afeb-f406c9b49216" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13953" - ], - "x-ms-correlation-request-id": [ - "bc8ea896-2f7c-4020-9485-d0289f4e5d58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215401Z:bc8ea896-2f7c-4020-9485-d0289f4e5d58" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b47a512-24f1-4436-bd99-47dd6b8c448b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13952" - ], - "x-ms-correlation-request-id": [ - "fd2dd329-e9ab-4931-bb9a-b4c82b7c18f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215402Z:fd2dd329-e9ab-4931-bb9a-b4c82b7c18f4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1fd4996-a713-4d0f-942d-6238509f4e20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13951" - ], - "x-ms-correlation-request-id": [ - "00dea89f-01f3-43d4-b04d-d4b63d351e9e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215402Z:00dea89f-01f3-43d4-b04d-d4b63d351e9e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f126241b-6bbf-4543-8e24-51e5bafd81bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13950" - ], - "x-ms-correlation-request-id": [ - "c14cf49b-4f0c-4bac-a36c-471c96f41112" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215402Z:c14cf49b-4f0c-4bac-a36c-471c96f41112" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "804b70bd-9b49-4ef7-9bda-436d54a82c2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13949" - ], - "x-ms-correlation-request-id": [ - "5583bcd6-7a21-4954-9ea6-841f1e3f766e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215402Z:5583bcd6-7a21-4954-9ea6-841f1e3f766e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81738302-88ba-4ac6-9206-f92e0cab53f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13948" - ], - "x-ms-correlation-request-id": [ - "2a33c5b0-585c-4e7b-8dcc-7fbc1c516401" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215402Z:2a33c5b0-585c-4e7b-8dcc-7fbc1c516401" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3abec305-c02c-45b7-a36c-9c0d5e297feb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13947" - ], - "x-ms-correlation-request-id": [ - "4450df95-4dbd-49f2-bd08-12e63ccc5739" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215403Z:4450df95-4dbd-49f2-bd08-12e63ccc5739" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9fc387de-edf3-46ce-b221-0ee576f8fec7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13946" - ], - "x-ms-correlation-request-id": [ - "7812d1f6-0090-4b17-8670-f43bde4facf0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215403Z:7812d1f6-0090-4b17-8670-f43bde4facf0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "235b0f10-c435-448f-a5cd-ba1102642090" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13945" - ], - "x-ms-correlation-request-id": [ - "6dff82da-f3d3-4f88-a813-a3f9244ff525" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215403Z:6dff82da-f3d3-4f88-a813-a3f9244ff525" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b46f440-eb15-4d63-9656-4d0fb26fdfe2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13944" - ], - "x-ms-correlation-request-id": [ - "4a8234b9-c3b6-45fe-b5bd-5fe8dc0c0368" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215403Z:4a8234b9-c3b6-45fe-b5bd-5fe8dc0c0368" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f68f63d-6a86-4db1-b9b3-a004a7e55272" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13943" - ], - "x-ms-correlation-request-id": [ - "ee0500a5-e8df-4d5c-8f6f-9a00477e97df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215403Z:ee0500a5-e8df-4d5c-8f6f-9a00477e97df" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e04bac81-e92c-41b0-87aa-0af5dfc65157" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13942" - ], - "x-ms-correlation-request-id": [ - "42c8b14c-0afb-4dbb-8689-70deb5d34892" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215404Z:42c8b14c-0afb-4dbb-8689-70deb5d34892" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "12f915f5-f9ed-44b1-b9e0-6fdc9d28a56f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13941" - ], - "x-ms-correlation-request-id": [ - "995e4ba8-fc65-4aa6-ad72-ac8b2a317c3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215404Z:995e4ba8-fc65-4aa6-ad72-ac8b2a317c3c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eda3715f-e089-497c-a8c9-d9cc7b485b01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13940" - ], - "x-ms-correlation-request-id": [ - "2d04cce7-a2d4-4b46-90d1-97a45e18175c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215404Z:2d04cce7-a2d4-4b46-90d1-97a45e18175c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1b53fa5-d6e2-470e-9d21-1cb4dc4d8430" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13939" - ], - "x-ms-correlation-request-id": [ - "2d93c826-2285-4a00-bb22-49bb8ed476fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215404Z:2d93c826-2285-4a00-bb22-49bb8ed476fd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5111ab0b-5fcc-44b3-9f61-30fd0f81a452" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13938" - ], - "x-ms-correlation-request-id": [ - "17008527-3b13-4305-91f2-8826235884e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215404Z:17008527-3b13-4305-91f2-8826235884e6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de8d58c3-0887-4d67-9c81-d98596eda7cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13937" - ], - "x-ms-correlation-request-id": [ - "d8657e44-007d-4b3a-aaca-04552b50b2a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215404Z:d8657e44-007d-4b3a-aaca-04552b50b2a6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ff0da86-5f8a-452d-94b3-a96c6050999a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13936" - ], - "x-ms-correlation-request-id": [ - "c76b494f-877b-4999-8ae1-86755569aff2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215405Z:c76b494f-877b-4999-8ae1-86755569aff2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5740899e-edc8-45ca-b8b3-d6a33fa6bb26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13935" - ], - "x-ms-correlation-request-id": [ - "a8dc485b-3501-4b87-9ad4-50200212dbd8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215405Z:a8dc485b-3501-4b87-9ad4-50200212dbd8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77ae70a7-dcf8-4c47-a20c-e04e0bb46651" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13934" - ], - "x-ms-correlation-request-id": [ - "8c284bc5-309a-450c-a746-64b157ec9618" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215405Z:8c284bc5-309a-450c-a746-64b157ec9618" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d4121b0-7e4d-431c-a93c-45f9d35b6b1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13933" - ], - "x-ms-correlation-request-id": [ - "2619baf7-6abf-4ce6-bafa-1ec2177cbd70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215405Z:2619baf7-6abf-4ce6-bafa-1ec2177cbd70" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82d95f1c-c6ff-41dd-8579-f7626a75e8fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13932" - ], - "x-ms-correlation-request-id": [ - "39b304b3-7bb3-4e69-99c6-fa90543adc4f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215405Z:39b304b3-7bb3-4e69-99c6-fa90543adc4f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1dba5b73-691b-4d56-82b4-83baa6bcfd60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13931" - ], - "x-ms-correlation-request-id": [ - "0cf335d2-bdc3-4152-81c7-77f662cd1350" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215405Z:0cf335d2-bdc3-4152-81c7-77f662cd1350" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bbc9b5ed-c6a4-4fc6-9197-cdca5477dfb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13930" - ], - "x-ms-correlation-request-id": [ - "6a8977f5-7a92-4b80-9df6-bfa297be53f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215406Z:6a8977f5-7a92-4b80-9df6-bfa297be53f8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3c7f2283-5a63-40d7-a4ab-b09d4ee93c7f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13929" - ], - "x-ms-correlation-request-id": [ - "ce3e7045-2eb1-4e64-b29b-36a0b0f736ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215406Z:ce3e7045-2eb1-4e64-b29b-36a0b0f736ac" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fae83360-921e-4e1d-ba2b-be5fff2166fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13928" - ], - "x-ms-correlation-request-id": [ - "ec3c207f-3565-463c-b38e-0eb493d559e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215406Z:ec3c207f-3565-463c-b38e-0eb493d559e0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00dbd548-90bc-49b2-9e53-ead65bc98966" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13927" - ], - "x-ms-correlation-request-id": [ - "90b9c831-4145-4d1d-a6f2-8a0d633b5e05" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215406Z:90b9c831-4145-4d1d-a6f2-8a0d633b5e05" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7dee1578-667b-4404-bf95-eec58ca15101" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13926" - ], - "x-ms-correlation-request-id": [ - "c3577a5b-dfa9-4133-a4cf-0d78df099229" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215406Z:c3577a5b-dfa9-4133-a4cf-0d78df099229" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f91b631-6f92-4fe0-90cd-ace0e52702f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13925" - ], - "x-ms-correlation-request-id": [ - "dae88637-5df7-4c8c-a928-100f4bed7a73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215406Z:dae88637-5df7-4c8c-a928-100f4bed7a73" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bde5a706-1f0b-4fde-bc37-a60adeeb64cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13924" - ], - "x-ms-correlation-request-id": [ - "387e71eb-227a-4e6f-8a72-0a70987ff0f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215406Z:387e71eb-227a-4e6f-8a72-0a70987ff0f5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8fc0b18e-367d-4c64-8d2a-1907c91df9a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13923" - ], - "x-ms-correlation-request-id": [ - "9c712d7b-9720-4d86-9b96-113d06d24752" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215407Z:9c712d7b-9720-4d86-9b96-113d06d24752" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44024be4-76e5-4374-a8c6-e9e361803248" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13922" - ], - "x-ms-correlation-request-id": [ - "97c4b4fd-920d-4b66-b50d-fa6bda3acd48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215407Z:97c4b4fd-920d-4b66-b50d-fa6bda3acd48" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1341d435-0171-494d-ba09-951786e0777f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13921" - ], - "x-ms-correlation-request-id": [ - "ef9d43a9-718d-490e-bcb9-7ffa0349e907" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215407Z:ef9d43a9-718d-490e-bcb9-7ffa0349e907" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46a63af6-f540-461c-874d-8dcc374733ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13920" - ], - "x-ms-correlation-request-id": [ - "2f4b61f8-6a17-4cf8-b7b1-920368d0028a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215407Z:2f4b61f8-6a17-4cf8-b7b1-920368d0028a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f97a451c-071b-4974-a692-e5c282b2f698" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13919" - ], - "x-ms-correlation-request-id": [ - "0a242101-6d8c-42a3-9dcf-9848fcc3d384" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215407Z:0a242101-6d8c-42a3-9dcf-9848fcc3d384" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54f564c7-c507-4d88-8323-4059c9ff9861" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13918" - ], - "x-ms-correlation-request-id": [ - "58799bd5-0cf1-49a4-b09a-5cca3d724b01" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215408Z:58799bd5-0cf1-49a4-b09a-5cca3d724b01" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6098dfc-d956-460c-9237-4d540041b601" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13917" - ], - "x-ms-correlation-request-id": [ - "920b0c57-bd53-4545-b407-df0475c6baec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215408Z:920b0c57-bd53-4545-b407-df0475c6baec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "291da556-27bf-462e-93ba-dc2ada27aa6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13916" - ], - "x-ms-correlation-request-id": [ - "d72eaf2a-f70e-49d7-812a-06e171d4f9ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215408Z:d72eaf2a-f70e-49d7-812a-06e171d4f9ff" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76e228ce-4803-4429-b7a2-76245002cc1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13915" - ], - "x-ms-correlation-request-id": [ - "7c20051b-06bc-47ab-bfac-7eb34526f027" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215408Z:7c20051b-06bc-47ab-bfac-7eb34526f027" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f78f9653-6e52-41c6-9bad-f8362bee0836" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13914" - ], - "x-ms-correlation-request-id": [ - "cdc7a2a4-997e-4530-a15e-2d54a8795cfb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215408Z:cdc7a2a4-997e-4530-a15e-2d54a8795cfb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "076d59fe-cd05-4285-83ff-1aea03c6f8f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13913" - ], - "x-ms-correlation-request-id": [ - "765d5d46-4739-4791-9ad8-9832b7d75480" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215408Z:765d5d46-4739-4791-9ad8-9832b7d75480" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "58308a98-8dd1-4c70-bdaa-41f4700e842b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13912" - ], - "x-ms-correlation-request-id": [ - "6eb74fd2-dfc8-4bc8-b831-6b8f5e155b90" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215408Z:6eb74fd2-dfc8-4bc8-b831-6b8f5e155b90" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "64a79529-05b0-4423-aadb-b0a1431268c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13911" - ], - "x-ms-correlation-request-id": [ - "2dfb4294-aba5-4ddd-9b07-7ed12d30c7d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215409Z:2dfb4294-aba5-4ddd-9b07-7ed12d30c7d9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2a516c4-dfe2-47d2-8776-341c209a7c60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13910" - ], - "x-ms-correlation-request-id": [ - "e844c395-d38c-4deb-bf97-202ebcc84247" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215409Z:e844c395-d38c-4deb-bf97-202ebcc84247" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8911718-af1b-41d6-9cd5-413d6e52fb08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13909" - ], - "x-ms-correlation-request-id": [ - "e237574f-6f67-4ca8-8e8b-0c48b7d9255b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215409Z:e237574f-6f67-4ca8-8e8b-0c48b7d9255b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "64ab604d-d46c-4c25-8e2d-82cb8865b355" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13908" - ], - "x-ms-correlation-request-id": [ - "68805063-4d18-4525-81b8-a4e5af8b08c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215409Z:68805063-4d18-4525-81b8-a4e5af8b08c1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd08ada6-aa3e-4ca4-83c8-43093fbfe56f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13907" - ], - "x-ms-correlation-request-id": [ - "a5a8f8a1-9390-4225-b5a1-d2930e5ef998" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215409Z:a5a8f8a1-9390-4225-b5a1-d2930e5ef998" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bef8e29c-8151-4860-a64d-84a96c9fca11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13906" - ], - "x-ms-correlation-request-id": [ - "5e617490-cba4-4291-8c7a-2dcb5f42d912" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215410Z:5e617490-cba4-4291-8c7a-2dcb5f42d912" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23414e29-b644-47be-91c5-7840c8b9cfe2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13905" - ], - "x-ms-correlation-request-id": [ - "23c3cf77-3b6f-4aac-8027-2fa298ad8b8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215410Z:23c3cf77-3b6f-4aac-8027-2fa298ad8b8d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a88e25a-7689-4fcf-b356-27ed507c0c9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13904" - ], - "x-ms-correlation-request-id": [ - "c06f0bb0-db52-44f4-b7c5-7e4d3dbb7af9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215410Z:c06f0bb0-db52-44f4-b7c5-7e4d3dbb7af9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f542e966-db03-4e6f-8740-299176ae883a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13903" - ], - "x-ms-correlation-request-id": [ - "77eaa032-3b3a-4d38-9e67-74ddf7c4c83c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215410Z:77eaa032-3b3a-4d38-9e67-74ddf7c4c83c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ec17857-d2a1-431e-b1f1-0cdc3bdb385d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13902" - ], - "x-ms-correlation-request-id": [ - "e1f7fa67-9f5d-48dc-9688-c913dc2b6e4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215410Z:e1f7fa67-9f5d-48dc-9688-c913dc2b6e4c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0cdbb23b-0f4a-41ec-b536-92fbe03f0bc5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13901" - ], - "x-ms-correlation-request-id": [ - "fd23b3e7-dbac-4ae7-8f48-0b20a8aa450f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215410Z:fd23b3e7-dbac-4ae7-8f48-0b20a8aa450f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5788cbf8-a7b2-45c1-b07f-e8d4b2a2277e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13900" - ], - "x-ms-correlation-request-id": [ - "58a26c3c-3d82-4f80-a727-7e70068fd609" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215410Z:58a26c3c-3d82-4f80-a727-7e70068fd609" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7062136e-b6fb-4097-85ed-2b349f080838" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13899" - ], - "x-ms-correlation-request-id": [ - "47f85ea4-2687-4b03-b351-e48d19e37088" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215411Z:47f85ea4-2687-4b03-b351-e48d19e37088" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2cacc916-edb7-400c-90be-218b07b31311" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13898" - ], - "x-ms-correlation-request-id": [ - "9a1c2d73-af11-4d9c-aa2c-cc3956d13b86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215411Z:9a1c2d73-af11-4d9c-aa2c-cc3956d13b86" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b72d58c3-5668-4714-95df-5f6da8ddb132" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13897" - ], - "x-ms-correlation-request-id": [ - "c63357f1-ce5d-4610-9be6-0d0868fed695" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215411Z:c63357f1-ce5d-4610-9be6-0d0868fed695" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d97aaa72-5feb-4800-b062-b4d54e326cdb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13896" - ], - "x-ms-correlation-request-id": [ - "4c65e808-6fdf-4b32-823f-8fea9bf2a893" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215411Z:4c65e808-6fdf-4b32-823f-8fea9bf2a893" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7a4d64e-626e-4ebe-949e-e78b9aeb72e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13895" - ], - "x-ms-correlation-request-id": [ - "851f3526-d10f-4499-8e03-2795453f92bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215411Z:851f3526-d10f-4499-8e03-2795453f92bb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "990ec03c-621a-4ec6-8e98-ed804754c70e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13894" - ], - "x-ms-correlation-request-id": [ - "761d5622-67e9-4dd0-8f97-d60bce0033f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215411Z:761d5622-67e9-4dd0-8f97-d60bce0033f9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc2bb462-16ec-447d-8a9c-688a65c0d8a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13893" - ], - "x-ms-correlation-request-id": [ - "d1bc86a7-58b4-4935-ae5d-ab34484e7772" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215412Z:d1bc86a7-58b4-4935-ae5d-ab34484e7772" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70932e3a-27d7-4774-b0ee-ace310234b4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13892" - ], - "x-ms-correlation-request-id": [ - "839c4336-6272-4e16-abab-893d0161688a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215412Z:839c4336-6272-4e16-abab-893d0161688a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aacbac17-badf-4fd1-a6ef-3e7865c7fc3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13891" - ], - "x-ms-correlation-request-id": [ - "b8491f20-a671-4024-9510-99200b622d5f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215412Z:b8491f20-a671-4024-9510-99200b622d5f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7de74fd2-ad56-4791-80ae-4c55a939b6f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13890" - ], - "x-ms-correlation-request-id": [ - "73d431aa-3041-470c-b9f3-f2ad0d424ed4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215412Z:73d431aa-3041-470c-b9f3-f2ad0d424ed4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7b8986d-4548-4335-b3d7-8f9bb00dc8e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13889" - ], - "x-ms-correlation-request-id": [ - "4c58b442-944a-4723-acf9-805f202453be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215412Z:4c58b442-944a-4723-acf9-805f202453be" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81033272-a3b4-4e94-b678-2077610aa1c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13888" - ], - "x-ms-correlation-request-id": [ - "0dc03cf1-c954-4a59-9ea8-a2290dcec745" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215412Z:0dc03cf1-c954-4a59-9ea8-a2290dcec745" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9779b2a-8517-4fab-a15a-4243f2ddfbc7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13887" - ], - "x-ms-correlation-request-id": [ - "b901eaf9-6338-41f8-a3f5-ba7990b41498" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215412Z:b901eaf9-6338-41f8-a3f5-ba7990b41498" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "50278fb0-29c8-4717-b1c0-516443f93118" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13886" - ], - "x-ms-correlation-request-id": [ - "4246d6f4-9462-406f-9113-297f9820081c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215413Z:4246d6f4-9462-406f-9113-297f9820081c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccc7525d-8ccb-465d-8346-b304f7174ef5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13885" - ], - "x-ms-correlation-request-id": [ - "27833a44-4950-4363-8fe8-3312bcfde11a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215413Z:27833a44-4950-4363-8fe8-3312bcfde11a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01713707-2595-4e51-997e-604a41c6ec5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13884" - ], - "x-ms-correlation-request-id": [ - "f766e194-0833-4421-a2cc-dd848f0b4f2f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215413Z:f766e194-0833-4421-a2cc-dd848f0b4f2f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "996a5cb1-d678-4f57-8814-4fc52d9a06df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13883" - ], - "x-ms-correlation-request-id": [ - "14dbbe77-d9f6-4ea0-bf76-93b670c8dc0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215413Z:14dbbe77-d9f6-4ea0-bf76-93b670c8dc0c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa0def6b-8297-4b1f-8448-c7bbf731d5ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13882" - ], - "x-ms-correlation-request-id": [ - "75b74826-c4ca-48b4-b280-11aa2a05b921" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215413Z:75b74826-c4ca-48b4-b280-11aa2a05b921" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2669cb41-73fa-4d4d-8b61-0fc257dc771a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13881" - ], - "x-ms-correlation-request-id": [ - "af8baee3-2eea-4cb0-8239-82ee985317d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215413Z:af8baee3-2eea-4cb0-8239-82ee985317d1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "971cf90b-fb6b-4dca-a9f8-2aedeb5526c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13880" - ], - "x-ms-correlation-request-id": [ - "d4961a9d-dc3b-4544-94ef-9dd659723091" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215414Z:d4961a9d-dc3b-4544-94ef-9dd659723091" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c80780e-7348-49e5-9400-e73cbc481112" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13879" - ], - "x-ms-correlation-request-id": [ - "6b87109b-88f9-45a6-a2af-9d6418543f40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215414Z:6b87109b-88f9-45a6-a2af-9d6418543f40" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d0426e5-c55b-47c3-8693-e569ff13675b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13878" - ], - "x-ms-correlation-request-id": [ - "44cff7a4-88fb-4cff-b576-c19385e28f3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215414Z:44cff7a4-88fb-4cff-b576-c19385e28f3d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41235c3c-424e-43f2-a2d0-3deee5d01ec0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13877" - ], - "x-ms-correlation-request-id": [ - "aedb3abe-330d-4fee-a757-98a1b40ee046" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215414Z:aedb3abe-330d-4fee-a757-98a1b40ee046" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "509f4645-7b4a-4282-b99b-96c059dc9add" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13876" - ], - "x-ms-correlation-request-id": [ - "ab9ff581-5220-404a-a38b-0dc2abbee389" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215414Z:ab9ff581-5220-404a-a38b-0dc2abbee389" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f48afeb2-b43d-415f-8220-8b9018a067cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13875" - ], - "x-ms-correlation-request-id": [ - "1aca287a-ba25-40ee-9bb9-87bb786b9b6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215414Z:1aca287a-ba25-40ee-9bb9-87bb786b9b6c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13d15b53-a2ad-4285-99b6-694633361098" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13874" - ], - "x-ms-correlation-request-id": [ - "5740af88-9c44-44e3-8641-bd690d540896" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215415Z:5740af88-9c44-44e3-8641-bd690d540896" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6dd902e-0c97-4669-b64e-01ab39b164db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13873" - ], - "x-ms-correlation-request-id": [ - "24fdd3f2-f484-4e1b-b958-9a0999026fd9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215415Z:24fdd3f2-f484-4e1b-b958-9a0999026fd9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5d7af41-d831-43a7-a503-b11954742f58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13872" - ], - "x-ms-correlation-request-id": [ - "f96c27e1-3f58-48e0-9201-6bf98706f20c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215415Z:f96c27e1-3f58-48e0-9201-6bf98706f20c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1186636f-194b-448c-b4d0-efa32f8762a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13871" - ], - "x-ms-correlation-request-id": [ - "f67919b2-2ce1-4bb1-8e18-6530683e44d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215415Z:f67919b2-2ce1-4bb1-8e18-6530683e44d2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6fdf9f9-8f63-44a4-ba5b-9422bfc31d1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13870" - ], - "x-ms-correlation-request-id": [ - "c11f1a04-d11f-4a0e-87d3-03d1097fc3f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215415Z:c11f1a04-d11f-4a0e-87d3-03d1097fc3f0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae5f5001-f8c9-4cac-a73a-aede207d703d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13869" - ], - "x-ms-correlation-request-id": [ - "82520f9f-a919-4b00-a63d-066a8ec8891e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215416Z:82520f9f-a919-4b00-a63d-066a8ec8891e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b66ebf31-e2c2-4325-99e5-0061a76312b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13868" - ], - "x-ms-correlation-request-id": [ - "f04e2136-033f-42f0-ab34-bd7aa6b326a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215416Z:f04e2136-033f-42f0-ab34-bd7aa6b326a6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "435cf41d-7c32-47de-aaec-30d52b339149" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13867" - ], - "x-ms-correlation-request-id": [ - "1b943ddd-cc2d-43c5-bed8-17910667effd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215416Z:1b943ddd-cc2d-43c5-bed8-17910667effd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8604d7de-4749-45eb-b5c3-6c7bc715295e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13866" - ], - "x-ms-correlation-request-id": [ - "445a8938-2f9c-4faf-ad48-63aa2cec0f87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215416Z:445a8938-2f9c-4faf-ad48-63aa2cec0f87" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ce401ef-68bb-4f71-ba93-c7fe4e5e1c09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13865" - ], - "x-ms-correlation-request-id": [ - "4fb98ad1-df37-4589-adef-81cde970cb99" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215416Z:4fb98ad1-df37-4589-adef-81cde970cb99" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3da5c7b6-54b1-4a34-92c9-be969f2a2bd7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13864" - ], - "x-ms-correlation-request-id": [ - "a3007bf8-703b-40a7-bfe1-8da5296d1566" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215417Z:a3007bf8-703b-40a7-bfe1-8da5296d1566" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65a4af85-4de9-49b6-a18d-1c1f95c1868a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13863" - ], - "x-ms-correlation-request-id": [ - "928cc47b-f564-4738-ba34-12cce84203c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215417Z:928cc47b-f564-4738-ba34-12cce84203c4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7819597d-470e-4099-a47c-15ffc4262049" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13862" - ], - "x-ms-correlation-request-id": [ - "dc533ec6-7b82-4b6e-9972-a9a14913e368" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215417Z:dc533ec6-7b82-4b6e-9972-a9a14913e368" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce6d2a4b-b4a3-4c8a-8422-85d621c40d21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13861" - ], - "x-ms-correlation-request-id": [ - "19f45457-bc75-4cf2-91b2-d2a14df92e8b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215417Z:19f45457-bc75-4cf2-91b2-d2a14df92e8b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3ec36d9-d309-41cf-97b9-9368a694987a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13860" - ], - "x-ms-correlation-request-id": [ - "33c70e5c-daa9-4784-a00b-7b15549689ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215417Z:33c70e5c-daa9-4784-a00b-7b15549689ad" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "974a1fab-5ac0-4fb3-9691-e71a99423fa0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13859" - ], - "x-ms-correlation-request-id": [ - "270a301a-b43f-4bb2-b044-5d1d9db74df5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215417Z:270a301a-b43f-4bb2-b044-5d1d9db74df5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db6baacc-71ea-41ba-98eb-d6db058f9108" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13858" - ], - "x-ms-correlation-request-id": [ - "bf01cf52-0a3b-4085-98fb-6b6c0db9607b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215417Z:bf01cf52-0a3b-4085-98fb-6b6c0db9607b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6888f4cb-a615-4823-875e-04a42df9331d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13857" - ], - "x-ms-correlation-request-id": [ - "9de8a831-a3cf-4342-b22a-e454b4ca74ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215418Z:9de8a831-a3cf-4342-b22a-e454b4ca74ca" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bbb3e287-d318-4c5f-8c0c-5d5dc5e41a3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13856" - ], - "x-ms-correlation-request-id": [ - "8276a068-933e-48fb-9647-66ee91b08e60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215418Z:8276a068-933e-48fb-9647-66ee91b08e60" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e73a974-7957-403e-8e62-bb029d7b6520" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13855" - ], - "x-ms-correlation-request-id": [ - "cc0e0883-539a-4ea3-897a-6181a25b861b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215418Z:cc0e0883-539a-4ea3-897a-6181a25b861b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e17ab96-781a-45cf-b85e-821697bd3ec5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13854" - ], - "x-ms-correlation-request-id": [ - "72e17019-83b3-418f-b31c-3ac53a988d2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215418Z:72e17019-83b3-418f-b31c-3ac53a988d2c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3c37f4a-60d9-41b1-a016-f4d679a64391" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13853" - ], - "x-ms-correlation-request-id": [ - "35cbcbce-f061-4ef8-93e0-63b60a49c377" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215418Z:35cbcbce-f061-4ef8-93e0-63b60a49c377" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "416d1b7f-0784-4a2e-8a67-09137e3de65a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13852" - ], - "x-ms-correlation-request-id": [ - "4749f3ea-9d1d-4d94-8b8c-4455668c3f2a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215418Z:4749f3ea-9d1d-4d94-8b8c-4455668c3f2a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24ef08ba-bc51-45a3-b201-1123d735ae6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13851" - ], - "x-ms-correlation-request-id": [ - "27d02e3f-2b61-45cf-a081-d742fde324db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215419Z:27d02e3f-2b61-45cf-a081-d742fde324db" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a1c9250-59d8-40d4-9541-c33a6bc35ef4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13850" - ], - "x-ms-correlation-request-id": [ - "b4419324-feca-42a4-b9d1-d7cfde6479bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215419Z:b4419324-feca-42a4-b9d1-d7cfde6479bb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "21b594c2-9a2f-41c3-a1bf-e9c6bbe8d77b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13849" - ], - "x-ms-correlation-request-id": [ - "4ae27a17-7e1e-4425-a17e-ba996c1bf2af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215419Z:4ae27a17-7e1e-4425-a17e-ba996c1bf2af" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4fcd820-4939-4659-96b1-46910d11799a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13848" - ], - "x-ms-correlation-request-id": [ - "1f9a019d-93fa-4e31-a160-c4d212ea293f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215419Z:1f9a019d-93fa-4e31-a160-c4d212ea293f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b5a8d0b-7222-43bb-a811-cd0e140975b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13847" - ], - "x-ms-correlation-request-id": [ - "ec0a87c3-271a-4dbd-a298-e74f69ad31b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215419Z:ec0a87c3-271a-4dbd-a298-e74f69ad31b1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bd5727d-8162-43f1-8fc2-a336a90b6e6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13846" - ], - "x-ms-correlation-request-id": [ - "ccc158a7-93af-4bb5-b969-8e4696807cae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215419Z:ccc158a7-93af-4bb5-b969-8e4696807cae" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14285995-dab4-4e1e-80b6-a6a438030012" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13845" - ], - "x-ms-correlation-request-id": [ - "c8a0df44-e67e-4996-9d22-48e1dcbbe78b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215420Z:c8a0df44-e67e-4996-9d22-48e1dcbbe78b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df124c97-9dc4-4be1-8a0a-9038d37eaaa4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13844" - ], - "x-ms-correlation-request-id": [ - "51b6802f-9133-4c16-b08e-32bf763169b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215420Z:51b6802f-9133-4c16-b08e-32bf763169b8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18fe1685-5ac6-4fa2-92e2-c7c426f215a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13843" - ], - "x-ms-correlation-request-id": [ - "89c204dd-2eda-485e-b2cd-2474af587edf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215420Z:89c204dd-2eda-485e-b2cd-2474af587edf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a11cbaee-5f84-4b61-9a83-04104132486e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13842" - ], - "x-ms-correlation-request-id": [ - "d3d61a4a-3354-4b91-a27b-f86986763671" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215420Z:d3d61a4a-3354-4b91-a27b-f86986763671" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92ce2426-0eff-4e59-8df2-23c85fd939e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13841" - ], - "x-ms-correlation-request-id": [ - "4c72c561-5186-40a4-8408-fed0061e40c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215420Z:4c72c561-5186-40a4-8408-fed0061e40c3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48310ae8-1130-4948-8dd0-bd13284933f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13840" - ], - "x-ms-correlation-request-id": [ - "5bd93d28-54cb-46b0-b228-54addbe4c39b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215420Z:5bd93d28-54cb-46b0-b228-54addbe4c39b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c936a3e2-70fc-4a41-b42c-81677c829ab6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13839" - ], - "x-ms-correlation-request-id": [ - "2d2c101a-fe67-4383-a3cf-bfd0f0ae1276" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215421Z:2d2c101a-fe67-4383-a3cf-bfd0f0ae1276" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3dbe5da2-c43c-4526-bdea-54ef7465ffee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13838" - ], - "x-ms-correlation-request-id": [ - "9bb4a406-e035-429e-8c69-d17b4b30deb3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215421Z:9bb4a406-e035-429e-8c69-d17b4b30deb3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c13674b-8859-40bf-8139-06d23c8bea4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13837" - ], - "x-ms-correlation-request-id": [ - "a13bae22-669e-4a53-adf9-5d70a3e88747" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215421Z:a13bae22-669e-4a53-adf9-5d70a3e88747" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff0f9d91-94c2-4b63-aee0-c16ad49699c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13836" - ], - "x-ms-correlation-request-id": [ - "9f695f44-0637-46c4-b90c-aa044a776859" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215421Z:9f695f44-0637-46c4-b90c-aa044a776859" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a919f3a-f8dc-4a18-a5d5-ea0113cb08ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13835" - ], - "x-ms-correlation-request-id": [ - "1c169616-bc4b-4b6d-a600-5c18ebbb0851" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215421Z:1c169616-bc4b-4b6d-a600-5c18ebbb0851" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b3769ef-4b79-4d53-a2d4-e8b929279e07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13834" - ], - "x-ms-correlation-request-id": [ - "a60e0e3b-7384-42b7-8829-d77b051eeafb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215421Z:a60e0e3b-7384-42b7-8829-d77b051eeafb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea55afa9-3697-4392-bd44-cb035b68c342" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13833" - ], - "x-ms-correlation-request-id": [ - "86a968ed-159d-4ef8-9369-add6ef4e8990" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215421Z:86a968ed-159d-4ef8-9369-add6ef4e8990" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ddf980f-2e8c-4747-b356-236d048ee9e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13832" - ], - "x-ms-correlation-request-id": [ - "78d76c97-b64c-439d-ab69-ffccf697ca0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215422Z:78d76c97-b64c-439d-ab69-ffccf697ca0d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7a2df3e-a3d4-4076-b67a-dca06ec9f12d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13831" - ], - "x-ms-correlation-request-id": [ - "c003be85-b36b-45ba-8600-f6949b144ca3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215422Z:c003be85-b36b-45ba-8600-f6949b144ca3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8f3c3f9-887f-422f-b27d-d0dc2cff289c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13830" - ], - "x-ms-correlation-request-id": [ - "b0119797-6574-4add-a74c-24e5e6e5f3d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215422Z:b0119797-6574-4add-a74c-24e5e6e5f3d4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82658835-2142-4f2f-959e-57e553732a40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13829" - ], - "x-ms-correlation-request-id": [ - "bf4e57be-8814-4d0b-ae40-6d78e3736161" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215422Z:bf4e57be-8814-4d0b-ae40-6d78e3736161" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b864769-d882-4f17-b137-37f9c90355bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13828" - ], - "x-ms-correlation-request-id": [ - "29d5b0d1-2285-44dc-9f71-d3b7148f0be5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215422Z:29d5b0d1-2285-44dc-9f71-d3b7148f0be5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d48a60c-5438-4bbb-a072-9008e2e9382d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13827" - ], - "x-ms-correlation-request-id": [ - "3a7d553d-ba85-485c-858d-771ca2941a00" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215422Z:3a7d553d-ba85-485c-858d-771ca2941a00" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d11acf5-be68-4106-b845-213433afab95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13826" - ], - "x-ms-correlation-request-id": [ - "5a09ae6e-3cf6-40d7-8136-0576319ea5d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215422Z:5a09ae6e-3cf6-40d7-8136-0576319ea5d8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "515e3390-2606-4abf-9a34-ecffa10ca6d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13825" - ], - "x-ms-correlation-request-id": [ - "65676b85-8949-4425-bec4-4217d4f4f0bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215423Z:65676b85-8949-4425-bec4-4217d4f4f0bb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7af0655-834d-40b4-896b-6d8419328d3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13824" - ], - "x-ms-correlation-request-id": [ - "9dc1a60b-1f83-44d9-9b13-9523b382440c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215423Z:9dc1a60b-1f83-44d9-9b13-9523b382440c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "141b55cd-e3f2-40a5-8810-3c49d1d84478" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13823" - ], - "x-ms-correlation-request-id": [ - "183271e6-f79e-4afb-9c23-9c5b62e22532" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215423Z:183271e6-f79e-4afb-9c23-9c5b62e22532" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94d38b35-38dd-4509-b9bd-177024009b09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13822" - ], - "x-ms-correlation-request-id": [ - "c796e037-81a8-40d8-bbfa-e37345307bea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215423Z:c796e037-81a8-40d8-bbfa-e37345307bea" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85178232-8217-4fa5-bf51-ed0aafc2b321" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13821" - ], - "x-ms-correlation-request-id": [ - "4bf0fea1-1fe6-44fe-addb-9bf436ecc099" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215423Z:4bf0fea1-1fe6-44fe-addb-9bf436ecc099" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a4a3432-86d8-41e5-8445-e179b0cc7f8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13820" - ], - "x-ms-correlation-request-id": [ - "48406f9b-1522-41fe-a460-80402355d0e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215423Z:48406f9b-1522-41fe-a460-80402355d0e4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a6dc6de-6e94-402f-8c63-97040061d94e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13819" - ], - "x-ms-correlation-request-id": [ - "42f1c5be-3301-4672-bad3-afd14fcd178a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215424Z:42f1c5be-3301-4672-bad3-afd14fcd178a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "677e54ab-b320-4aea-9c50-a66760d2323c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13818" - ], - "x-ms-correlation-request-id": [ - "5c417140-afd9-4410-a4b8-39b9049a50a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215424Z:5c417140-afd9-4410-a4b8-39b9049a50a2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a75ec9b-e6a2-4b59-8b99-416bb6c06ef8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13817" - ], - "x-ms-correlation-request-id": [ - "b42480a0-1b44-4557-9e93-a549bfddbdea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215424Z:b42480a0-1b44-4557-9e93-a549bfddbdea" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6fece69a-91bd-4ee0-aa20-c7e60b0496ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13816" - ], - "x-ms-correlation-request-id": [ - "e5712981-09aa-4ba9-a48f-cbc451c9cdaa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215424Z:e5712981-09aa-4ba9-a48f-cbc451c9cdaa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f685dc93-8c43-4950-b213-5d08566b1279" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13815" - ], - "x-ms-correlation-request-id": [ - "88859a69-d17f-4035-b570-2049dce6b9d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215424Z:88859a69-d17f-4035-b570-2049dce6b9d8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1be019ab-4b3e-4d10-8386-9acd8a7687b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13814" - ], - "x-ms-correlation-request-id": [ - "07d958f9-8e0f-44a2-a1fe-0fb3ce3eec51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215425Z:07d958f9-8e0f-44a2-a1fe-0fb3ce3eec51" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9a27dec-4a3e-422d-8805-4ee7fcea22e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13813" - ], - "x-ms-correlation-request-id": [ - "c330f3d0-3d30-4f24-a82f-71e894a0ba5f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215425Z:c330f3d0-3d30-4f24-a82f-71e894a0ba5f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "64d4f755-e9c6-4dbf-836e-51b93ed425c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13812" - ], - "x-ms-correlation-request-id": [ - "3af81596-f5fc-4102-9da6-66b058ae468a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215425Z:3af81596-f5fc-4102-9da6-66b058ae468a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5af39a4-1d7f-409d-9fa4-cf13276c6a1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13811" - ], - "x-ms-correlation-request-id": [ - "f091d03c-3a8c-4588-989b-0d1b192aa57b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215425Z:f091d03c-3a8c-4588-989b-0d1b192aa57b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8de691eb-8192-46db-8337-7f188c43b60d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13810" - ], - "x-ms-correlation-request-id": [ - "1447fe66-7d8b-4b14-8365-2c1606d2eba0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215425Z:1447fe66-7d8b-4b14-8365-2c1606d2eba0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94f3fea0-f4eb-4138-9f41-13d878f57b44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13809" - ], - "x-ms-correlation-request-id": [ - "27aa542e-3813-4c6b-9dc3-b149d75d7711" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215425Z:27aa542e-3813-4c6b-9dc3-b149d75d7711" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "202e17b6-9072-4b46-b907-2397b2ee7b2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13808" - ], - "x-ms-correlation-request-id": [ - "ddeeaefb-38d5-4d63-aef3-f92cfbb67b23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215426Z:ddeeaefb-38d5-4d63-aef3-f92cfbb67b23" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "547a1c4b-8eda-41a6-b841-1fdaa1091f83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13807" - ], - "x-ms-correlation-request-id": [ - "6b214881-219d-4c66-9bdf-f2408ab67370" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215426Z:6b214881-219d-4c66-9bdf-f2408ab67370" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "32c39ebc-2311-4e3d-901e-6ecc838c6aff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13806" - ], - "x-ms-correlation-request-id": [ - "10d265f2-f0d7-4d78-8723-21c52f5fd690" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215426Z:10d265f2-f0d7-4d78-8723-21c52f5fd690" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82230aa7-8e84-4fd3-9c87-f24b43f15e48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13805" - ], - "x-ms-correlation-request-id": [ - "177a3204-4c43-4a62-afe2-376b1b82109e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215426Z:177a3204-4c43-4a62-afe2-376b1b82109e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1ddbcd9-98cb-442f-bdd4-08f0380c6e95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13804" - ], - "x-ms-correlation-request-id": [ - "19bf306b-212d-452d-9eb4-8fb5bb345f92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215426Z:19bf306b-212d-452d-9eb4-8fb5bb345f92" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1debd4c-3b98-472c-999e-fde1343c1cbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13803" - ], - "x-ms-correlation-request-id": [ - "ae715540-5191-4d31-8a6e-67d9dba7e425" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215426Z:ae715540-5191-4d31-8a6e-67d9dba7e425" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0498b3da-8fb5-4127-9820-b32aa9d7d8c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13802" - ], - "x-ms-correlation-request-id": [ - "be9d18c7-5c65-4c86-9aff-142aa2570e32" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215427Z:be9d18c7-5c65-4c86-9aff-142aa2570e32" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "907db0a9-4c29-4f86-b1fc-756cfd79a033" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13801" - ], - "x-ms-correlation-request-id": [ - "a2914a86-7bbf-407b-9021-3ece8324e9c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215427Z:a2914a86-7bbf-407b-9021-3ece8324e9c8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1657fad8-1548-4ffe-9b97-a6bbdf1e6a94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13800" - ], - "x-ms-correlation-request-id": [ - "1bfade94-dac4-4308-9f87-bd9974eafa23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215427Z:1bfade94-dac4-4308-9f87-bd9974eafa23" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "58687fb6-7b38-4db0-bf37-23913bc03127" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13799" - ], - "x-ms-correlation-request-id": [ - "c1f94193-9613-49b1-bcdf-8cc3f0328069" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215427Z:c1f94193-9613-49b1-bcdf-8cc3f0328069" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37be38c4-20fe-4c7a-96e8-89341a0e1b0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13798" - ], - "x-ms-correlation-request-id": [ - "7452d625-f2a9-4831-af10-83c6e9b24cb6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215427Z:7452d625-f2a9-4831-af10-83c6e9b24cb6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e3379ba-2a3b-445a-92ea-1ec2b70f918e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13797" - ], - "x-ms-correlation-request-id": [ - "aac60220-7c9a-457f-812a-82e4c247e2f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215428Z:aac60220-7c9a-457f-812a-82e4c247e2f0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a1efc3d-e9ee-4a0c-9c9e-bfc47b5d1867" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13796" - ], - "x-ms-correlation-request-id": [ - "795d8a6a-1f48-45ef-93df-7acea9b93d24" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215428Z:795d8a6a-1f48-45ef-93df-7acea9b93d24" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ab78ea1-eca8-4174-948d-c375a727c508" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13795" - ], - "x-ms-correlation-request-id": [ - "df3ccac8-8079-42c5-a571-4e1bb575f70e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215428Z:df3ccac8-8079-42c5-a571-4e1bb575f70e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d30e9dbf-dbef-4ce6-9e2a-8ea53aa84d22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13794" - ], - "x-ms-correlation-request-id": [ - "fcd8690c-b618-4c90-9600-658f27c806fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215428Z:fcd8690c-b618-4c90-9600-658f27c806fd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b2b588d-4d26-4324-b827-6f22b2c8f233" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13793" - ], - "x-ms-correlation-request-id": [ - "ee39a4c1-f90c-4c33-a8f2-687cc6c737e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215428Z:ee39a4c1-f90c-4c33-a8f2-687cc6c737e1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "253db99c-3f64-45d0-b039-418857f0f68c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13792" - ], - "x-ms-correlation-request-id": [ - "c9d90420-161b-4c41-ae93-237cb2b8bb44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215428Z:c9d90420-161b-4c41-ae93-237cb2b8bb44" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "925f5e7d-1163-4c9d-9791-6e51e5510697" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13791" - ], - "x-ms-correlation-request-id": [ - "956b6951-ba65-41c0-8034-527693d324db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215429Z:956b6951-ba65-41c0-8034-527693d324db" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04536e40-0cc8-4361-8d5e-2aa33439b4e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13790" - ], - "x-ms-correlation-request-id": [ - "da504e84-9951-4411-a247-6505c4a591a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215429Z:da504e84-9951-4411-a247-6505c4a591a6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28869b7d-cffb-428b-b8fc-7ac9169b054f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13789" - ], - "x-ms-correlation-request-id": [ - "31b5ed5f-2064-4a99-9d75-ab510cb0480c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215429Z:31b5ed5f-2064-4a99-9d75-ab510cb0480c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d26ac49-f1f8-43ad-a4a3-8206f3076707" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13788" - ], - "x-ms-correlation-request-id": [ - "41cca58b-43b9-4f0a-b1a5-b0a1cc44592a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215429Z:41cca58b-43b9-4f0a-b1a5-b0a1cc44592a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9725852d-0fb4-482e-aa72-bca236f55ef9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13787" - ], - "x-ms-correlation-request-id": [ - "2d1753a4-fd4c-4c70-ba3c-973fb7a672eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215429Z:2d1753a4-fd4c-4c70-ba3c-973fb7a672eb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "15aec0f4-d763-422f-9cdf-912a87dc9e70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13786" - ], - "x-ms-correlation-request-id": [ - "210c4ad3-c4e3-4981-81a0-a53173b8425c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215430Z:210c4ad3-c4e3-4981-81a0-a53173b8425c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f236ebc-c185-49de-9e9a-dcbaadc02bd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13785" - ], - "x-ms-correlation-request-id": [ - "8bc01bf2-dd34-49e6-ba7c-152bd774fbc8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215430Z:8bc01bf2-dd34-49e6-ba7c-152bd774fbc8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "32ccb149-05b1-48d0-a4ab-25a233859740" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13784" - ], - "x-ms-correlation-request-id": [ - "d9fabfd4-ed9b-4675-b925-e8bebd7f567c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215430Z:d9fabfd4-ed9b-4675-b925-e8bebd7f567c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76a0c6d7-b18b-4485-b4cb-d1b8cd8a321b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13783" - ], - "x-ms-correlation-request-id": [ - "de9bc5a6-e103-4da4-b4b5-03ef406064dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215430Z:de9bc5a6-e103-4da4-b4b5-03ef406064dc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d5b6e68-69aa-4823-b11a-15a10a8fc252" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13782" - ], - "x-ms-correlation-request-id": [ - "fb4da4b7-21b4-40d1-bd97-b3fd3f50fa23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215430Z:fb4da4b7-21b4-40d1-bd97-b3fd3f50fa23" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2daabc3-7553-4dd3-a20f-34dedca3cac3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13781" - ], - "x-ms-correlation-request-id": [ - "67513a84-0dbd-403f-974f-60ea3bda3d90" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215431Z:67513a84-0dbd-403f-974f-60ea3bda3d90" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a89fbb7-c45e-4546-8adc-1e039c42d1a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13780" - ], - "x-ms-correlation-request-id": [ - "c16d30b0-afce-4724-8596-70863734a12c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215431Z:c16d30b0-afce-4724-8596-70863734a12c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40ee0572-51cb-4c72-b5df-e6c2337a4a91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13779" - ], - "x-ms-correlation-request-id": [ - "2a88c94c-5691-45ba-8d99-9babc25b9daf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215431Z:2a88c94c-5691-45ba-8d99-9babc25b9daf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72f3baaf-8c3d-49ec-af51-2598d176765a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13778" - ], - "x-ms-correlation-request-id": [ - "8e370f0c-d862-4a36-b49e-19727bc1e8a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215431Z:8e370f0c-d862-4a36-b49e-19727bc1e8a2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "168f8e1f-fcaa-4d42-82fe-b26b9c60a296" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13777" - ], - "x-ms-correlation-request-id": [ - "c6ff9bc3-41f2-4e1b-b49d-0fa5de0fdfd0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215431Z:c6ff9bc3-41f2-4e1b-b49d-0fa5de0fdfd0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7208384-f423-461d-b962-2a8d5d575383" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13776" - ], - "x-ms-correlation-request-id": [ - "14fae006-5afc-4280-b13c-7c43e0979204" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215431Z:14fae006-5afc-4280-b13c-7c43e0979204" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b9d30ea-e331-40fa-8bf1-454902461e66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13775" - ], - "x-ms-correlation-request-id": [ - "7425c6cd-38f1-44c9-bcb1-7a6748172266" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215431Z:7425c6cd-38f1-44c9-bcb1-7a6748172266" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b9f3949-8c1c-4137-b6ff-bd8a33e2141f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13774" - ], - "x-ms-correlation-request-id": [ - "d7f98492-d6d8-4f2c-8063-92a248c4241e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215432Z:d7f98492-d6d8-4f2c-8063-92a248c4241e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "437b86e9-e54f-43d4-a49b-90e74891a484" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13773" - ], - "x-ms-correlation-request-id": [ - "cee8f53f-878a-4999-8647-ff9b8066f178" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215432Z:cee8f53f-878a-4999-8647-ff9b8066f178" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a5a82d9-0b82-492c-bb33-80c255b18afa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13772" - ], - "x-ms-correlation-request-id": [ - "d9ef8718-ab18-4424-b5cc-d5c1e95af4d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215432Z:d9ef8718-ab18-4424-b5cc-d5c1e95af4d1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75ec3ee9-f423-45fd-a9d3-a01bb55f2dd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13771" - ], - "x-ms-correlation-request-id": [ - "97f5ca18-6d4c-411a-849c-a7580643b320" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215432Z:97f5ca18-6d4c-411a-849c-a7580643b320" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7a45f24-aa26-4e0a-846d-2bd77efa5c8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13770" - ], - "x-ms-correlation-request-id": [ - "9db453f7-4cf7-4bdd-986c-be770ee30f92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215432Z:9db453f7-4cf7-4bdd-986c-be770ee30f92" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "300b6ddb-3b3e-4128-8779-c080c53f8df4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13769" - ], - "x-ms-correlation-request-id": [ - "ca6f9096-5536-4906-8e4b-2ed19edcd8f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215432Z:ca6f9096-5536-4906-8e4b-2ed19edcd8f5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c4d2a041-ac26-4171-90e4-4cd72825c62c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13768" - ], - "x-ms-correlation-request-id": [ - "c90416d6-b6e7-4da5-86f2-e47a4bd9d72c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215433Z:c90416d6-b6e7-4da5-86f2-e47a4bd9d72c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ce8ecb3-df4f-42ff-af22-3f546857eb11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13767" - ], - "x-ms-correlation-request-id": [ - "6a2edcec-53c4-416b-941e-a31a320602b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215433Z:6a2edcec-53c4-416b-941e-a31a320602b9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae32abcc-7fbb-45db-89dd-d868c62ed9a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13766" - ], - "x-ms-correlation-request-id": [ - "0de949b3-aa25-4b97-9979-142845e8b841" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215433Z:0de949b3-aa25-4b97-9979-142845e8b841" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c78d8011-1c62-4b4c-9fc2-0bb0435c0834" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13765" - ], - "x-ms-correlation-request-id": [ - "0586a324-e10e-46d0-926d-da1a3089439a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215433Z:0586a324-e10e-46d0-926d-da1a3089439a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0d44fe4-9fca-427e-bf44-512985c9a3f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13764" - ], - "x-ms-correlation-request-id": [ - "e0224988-1628-4cba-bf24-1deb6c052904" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215433Z:e0224988-1628-4cba-bf24-1deb6c052904" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37bf0c22-6a7f-47c7-ac76-5c32abd451fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13763" - ], - "x-ms-correlation-request-id": [ - "20f3d4e1-e12c-4d13-bb77-582b9bb6ce68" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215433Z:20f3d4e1-e12c-4d13-bb77-582b9bb6ce68" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a730c60e-ccc3-4d58-a177-c0f3aecf7fff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13762" - ], - "x-ms-correlation-request-id": [ - "a0bb45d9-1dfb-463f-81a3-45410cae38e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215433Z:a0bb45d9-1dfb-463f-81a3-45410cae38e9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f8754cc-acdd-492e-b721-90a5873bbe23" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13761" - ], - "x-ms-correlation-request-id": [ - "1d6ce362-1c2e-446c-8fff-cd024f52379e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215434Z:1d6ce362-1c2e-446c-8fff-cd024f52379e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30e29bf8-d553-4d29-af82-0e5430292bb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13760" - ], - "x-ms-correlation-request-id": [ - "30be9f1d-55a0-441d-9a60-e3b2eff7dedc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215434Z:30be9f1d-55a0-441d-9a60-e3b2eff7dedc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70aa2710-4b0c-4a9f-92f0-c35963668091" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13759" - ], - "x-ms-correlation-request-id": [ - "12863126-6cf6-4380-9553-4c4043a9c260" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215434Z:12863126-6cf6-4380-9553-4c4043a9c260" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "21fd2a1d-29c0-435b-9834-ee9563d6c3eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13758" - ], - "x-ms-correlation-request-id": [ - "f2ef1033-98a7-4d95-abf2-316d9fa784aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215434Z:f2ef1033-98a7-4d95-abf2-316d9fa784aa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b75943c0-ceec-42de-b30c-831c88c66b6b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13757" - ], - "x-ms-correlation-request-id": [ - "ed3893c8-646c-40e3-a2c1-6d4df840d793" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215434Z:ed3893c8-646c-40e3-a2c1-6d4df840d793" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8d82617-55f0-4a4d-b5c0-c2f5c07c08d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13756" - ], - "x-ms-correlation-request-id": [ - "caa750f8-6267-4ca8-b707-37e59543f576" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215434Z:caa750f8-6267-4ca8-b707-37e59543f576" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "375d5429-0e4b-499e-b3d0-583ecf386faa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13755" - ], - "x-ms-correlation-request-id": [ - "5f6ac940-fe79-4e1f-9ce8-731dc3f5dee4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215434Z:5f6ac940-fe79-4e1f-9ce8-731dc3f5dee4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89a32cdf-35b6-440c-b80c-f7556c28b621" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13754" - ], - "x-ms-correlation-request-id": [ - "0e236605-6325-48bd-b16d-436c6e6f6db3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215435Z:0e236605-6325-48bd-b16d-436c6e6f6db3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14f3871c-509a-460d-8c2c-58029b0059c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13753" - ], - "x-ms-correlation-request-id": [ - "0ee75e4b-46d0-4cdc-acb3-e7ecf0670bc6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215435Z:0ee75e4b-46d0-4cdc-acb3-e7ecf0670bc6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "772746f5-a36b-4b6d-8266-6a76da1f98a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13752" - ], - "x-ms-correlation-request-id": [ - "cc172b3a-ee61-4369-9929-2726abf89507" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215435Z:cc172b3a-ee61-4369-9929-2726abf89507" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6a0f150-060f-4692-9063-fb944fbd597e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13751" - ], - "x-ms-correlation-request-id": [ - "3a54c23b-895a-4ee8-9eff-92fb179cad66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215435Z:3a54c23b-895a-4ee8-9eff-92fb179cad66" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9983fdff-cee3-4035-8ee8-e122e9d90e0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13750" - ], - "x-ms-correlation-request-id": [ - "474622d5-c171-4926-abef-9902350ceec0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215435Z:474622d5-c171-4926-abef-9902350ceec0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb95a026-1f13-4480-aac3-70f0a77d4d4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13749" - ], - "x-ms-correlation-request-id": [ - "c289f216-01a8-449c-a65c-3029d4e04b90" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215435Z:c289f216-01a8-449c-a65c-3029d4e04b90" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42484e39-dd1b-41ff-a1dc-e3cc18873f4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13748" - ], - "x-ms-correlation-request-id": [ - "676f0948-f2e1-4374-aba2-04873ef73c39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215435Z:676f0948-f2e1-4374-aba2-04873ef73c39" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f28fb71-f41f-4f35-a59d-f29e1cea2735" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13747" - ], - "x-ms-correlation-request-id": [ - "314b4470-f5b8-4f48-b322-cb58395995e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215436Z:314b4470-f5b8-4f48-b322-cb58395995e0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4630320e-0a78-417b-bf85-dae2da5fcea2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13746" - ], - "x-ms-correlation-request-id": [ - "fa6dc2ea-d63e-4c23-931a-f67ba9d58edd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215436Z:fa6dc2ea-d63e-4c23-931a-f67ba9d58edd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7853254-11c8-414c-b0e2-ecafed08acb8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13745" - ], - "x-ms-correlation-request-id": [ - "256d50e2-e917-4ad4-ba6e-6ac2bc4d4e1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215436Z:256d50e2-e917-4ad4-ba6e-6ac2bc4d4e1b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0d6d2f5-9f19-4441-953c-735b5ffcb06e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13744" - ], - "x-ms-correlation-request-id": [ - "a663e4ff-4eb4-4f2c-bed6-96a1c4a97d3a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215436Z:a663e4ff-4eb4-4f2c-bed6-96a1c4a97d3a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d8cc3b2-e6e6-4c40-b450-2cc83e2be3b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13743" - ], - "x-ms-correlation-request-id": [ - "3c0c2a41-7be8-43a2-81f1-98044f8052c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215436Z:3c0c2a41-7be8-43a2-81f1-98044f8052c5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c825dff0-ab93-4fb2-b7d0-14d0c548665c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13742" - ], - "x-ms-correlation-request-id": [ - "28dc0991-c1f2-4bbc-a8c0-913504cf2cdc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215436Z:28dc0991-c1f2-4bbc-a8c0-913504cf2cdc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45288e97-3ffb-40df-b26d-913c88bd6188" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13741" - ], - "x-ms-correlation-request-id": [ - "fe6a42d8-b1cf-4bfa-ae20-5291a0f7d789" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215437Z:fe6a42d8-b1cf-4bfa-ae20-5291a0f7d789" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42bf65b5-00ec-4d74-9e1e-8b2aaa403737" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13740" - ], - "x-ms-correlation-request-id": [ - "e86c1186-d1d6-45b7-87c4-2aeb15a80ef3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215437Z:e86c1186-d1d6-45b7-87c4-2aeb15a80ef3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4212528b-b920-48a6-ba56-eb1c6f9b1f09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13739" - ], - "x-ms-correlation-request-id": [ - "c37ae6fa-14e7-4e16-a5af-820440dc549b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215437Z:c37ae6fa-14e7-4e16-a5af-820440dc549b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84c5d4fc-0b81-4985-a0e2-fc8b4d32cd00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13738" - ], - "x-ms-correlation-request-id": [ - "d76c8bf0-cbc3-4c33-b83f-a8425148e41f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215437Z:d76c8bf0-cbc3-4c33-b83f-a8425148e41f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a11bff7c-0bdb-4cf4-ad9b-2845f95af609" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13737" - ], - "x-ms-correlation-request-id": [ - "790b02e2-49ea-41d5-bc93-13e2a987ccb0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215437Z:790b02e2-49ea-41d5-bc93-13e2a987ccb0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd7b5da4-6c87-4811-9793-259617b75025" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13736" - ], - "x-ms-correlation-request-id": [ - "753366f5-4a6d-41bb-89fc-82c2a9a7c0ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215437Z:753366f5-4a6d-41bb-89fc-82c2a9a7c0ab" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "902fce75-b953-4193-b2cf-4b2668d8bdfc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13735" - ], - "x-ms-correlation-request-id": [ - "b99e9515-50d5-4a70-924a-68b8ebc296dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215437Z:b99e9515-50d5-4a70-924a-68b8ebc296dc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "787db578-db50-4743-9462-8483c19724a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13734" - ], - "x-ms-correlation-request-id": [ - "28b2b03b-1fe3-48e0-9cdf-7fffdc929fcc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215438Z:28b2b03b-1fe3-48e0-9cdf-7fffdc929fcc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99496936-03ca-4604-9b78-ca0001444e43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13733" - ], - "x-ms-correlation-request-id": [ - "7ff76f29-6828-4e66-b5e6-16f110f1b87d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215438Z:7ff76f29-6828-4e66-b5e6-16f110f1b87d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0f4ba48-fd77-4716-ae47-1209e94b73b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13732" - ], - "x-ms-correlation-request-id": [ - "16094449-a39d-4b88-b86a-a90865a4dc01" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215438Z:16094449-a39d-4b88-b86a-a90865a4dc01" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44e14503-ddcd-4baf-b5c9-d8fdb7af7625" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13731" - ], - "x-ms-correlation-request-id": [ - "9a496c9b-1a79-4249-89b4-7a41b80c5b10" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215438Z:9a496c9b-1a79-4249-89b4-7a41b80c5b10" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb4bc132-300b-4509-b09d-3082f5c2432e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13730" - ], - "x-ms-correlation-request-id": [ - "4b07dd1b-db8d-4177-8aa3-7a28f044a282" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215438Z:4b07dd1b-db8d-4177-8aa3-7a28f044a282" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9c39d0b-385a-41d9-afee-969c25dd76e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13729" - ], - "x-ms-correlation-request-id": [ - "01374004-a95e-49cb-882d-6e7ca6ce1c97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215438Z:01374004-a95e-49cb-882d-6e7ca6ce1c97" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "380a4c31-73c7-47d9-859a-f8a04f9ab858" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13728" - ], - "x-ms-correlation-request-id": [ - "abfba586-2323-4f94-b761-90bfd18d1205" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215439Z:abfba586-2323-4f94-b761-90bfd18d1205" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "697ace74-d081-4514-acba-c1d914c3fda6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13727" - ], - "x-ms-correlation-request-id": [ - "2727ff22-ce78-47fd-8a41-cfc54615edea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215439Z:2727ff22-ce78-47fd-8a41-cfc54615edea" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c791fe1-9b67-4817-9796-dfa8811e6c44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13726" - ], - "x-ms-correlation-request-id": [ - "bc4d12b9-baaf-4f8c-951e-48bcd462987a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215439Z:bc4d12b9-baaf-4f8c-951e-48bcd462987a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05e327e6-a644-42ce-94dc-b37eb711d2cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13725" - ], - "x-ms-correlation-request-id": [ - "2ed5a8d7-bd1c-4d50-832e-cae668cdd757" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215439Z:2ed5a8d7-bd1c-4d50-832e-cae668cdd757" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "344f5e52-e011-4f38-a01f-b389ce9fd0d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13724" - ], - "x-ms-correlation-request-id": [ - "ffecd7f4-d0b3-48c6-b518-afad27ea4390" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215439Z:ffecd7f4-d0b3-48c6-b518-afad27ea4390" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92a4d98c-c859-4252-af30-1a1288f9dae4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13723" - ], - "x-ms-correlation-request-id": [ - "7f2aa3c5-96c7-444e-9cec-2b96edaf0256" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215439Z:7f2aa3c5-96c7-444e-9cec-2b96edaf0256" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eba99007-31ef-4cb8-8b90-7ba832ae1b56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13722" - ], - "x-ms-correlation-request-id": [ - "f2001ac8-4f70-4427-af73-141ded80a53d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215439Z:f2001ac8-4f70-4427-af73-141ded80a53d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "208ba0ab-8d23-4b41-becf-205382675b1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13721" - ], - "x-ms-correlation-request-id": [ - "9cb174f8-3f11-4e5d-bb49-ac370b051d33" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215440Z:9cb174f8-3f11-4e5d-bb49-ac370b051d33" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "841313ee-860b-4504-9f09-65b1d482d565" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13720" - ], - "x-ms-correlation-request-id": [ - "56772495-c024-4a71-baab-18e1609e508f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215440Z:56772495-c024-4a71-baab-18e1609e508f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79e12e35-dbab-4bf9-bcf7-12032469ac72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13719" - ], - "x-ms-correlation-request-id": [ - "82b5eb09-3410-45b2-84f7-51caacefe95b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215440Z:82b5eb09-3410-45b2-84f7-51caacefe95b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ebaddee8-61f2-4e68-bd05-e10f82afa9ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13718" - ], - "x-ms-correlation-request-id": [ - "caec3740-3ed2-4fbe-8732-e39192eddb86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215440Z:caec3740-3ed2-4fbe-8732-e39192eddb86" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c219fe8e-8295-4d42-a6e7-420218dc95b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13717" - ], - "x-ms-correlation-request-id": [ - "a7f1e8ac-4a6c-4187-a376-f055a05ed9ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215440Z:a7f1e8ac-4a6c-4187-a376-f055a05ed9ae" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1a02bf3-00e4-4293-8fc9-dedbb7ec5595" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13716" - ], - "x-ms-correlation-request-id": [ - "2d44cd2f-69a0-4509-a558-0dcad0058d21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215441Z:2d44cd2f-69a0-4509-a558-0dcad0058d21" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d26cc03f-dfd9-40f3-bb66-6d1ba0774879" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13715" - ], - "x-ms-correlation-request-id": [ - "9d46112b-f8fc-40c0-81a1-b84ba2427e6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215441Z:9d46112b-f8fc-40c0-81a1-b84ba2427e6d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "921b8358-15fe-4a5a-8e60-5d1ec790ec46" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13714" - ], - "x-ms-correlation-request-id": [ - "13ada3b1-7458-42f2-be23-7b61397cd744" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215441Z:13ada3b1-7458-42f2-be23-7b61397cd744" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e855943-71ca-4370-b0b3-3a57abca4726" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13713" - ], - "x-ms-correlation-request-id": [ - "166e6099-ff4f-4765-82d2-fd13b5a480ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215441Z:166e6099-ff4f-4765-82d2-fd13b5a480ab" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2413339-bd95-4417-a9fb-194fbe152cb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13712" - ], - "x-ms-correlation-request-id": [ - "1bb39121-5e69-4b64-9621-b2782d4ef9a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215441Z:1bb39121-5e69-4b64-9621-b2782d4ef9a5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16e23571-3725-4016-bd27-98f8d66a9544" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13711" - ], - "x-ms-correlation-request-id": [ - "202bfb7d-c555-43f3-b7cc-4acbad6c4f07" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215442Z:202bfb7d-c555-43f3-b7cc-4acbad6c4f07" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8867891c-d663-4613-befe-c99196649db2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13710" - ], - "x-ms-correlation-request-id": [ - "50cc9944-a2b8-4d55-a976-8cfa93a41b39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215442Z:50cc9944-a2b8-4d55-a976-8cfa93a41b39" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd59bab5-150f-44af-ba89-79be70f62412" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13709" - ], - "x-ms-correlation-request-id": [ - "2df986a4-0320-4fdb-9743-64f02468aa58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215442Z:2df986a4-0320-4fdb-9743-64f02468aa58" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0bc960c2-3ec3-4943-9041-8ec9c92f08e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13708" - ], - "x-ms-correlation-request-id": [ - "70270c9b-4a54-4b5e-8c3a-05956b9365ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215442Z:70270c9b-4a54-4b5e-8c3a-05956b9365ee" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10451f6d-e640-49f3-9c41-c13599028160" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13707" - ], - "x-ms-correlation-request-id": [ - "a78292f6-8426-4838-964f-4a8e946c9c45" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215442Z:a78292f6-8426-4838-964f-4a8e946c9c45" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93a82f52-f4ff-4b12-bd5c-5fa58712e515" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13706" - ], - "x-ms-correlation-request-id": [ - "27c2fe24-8111-44b1-bb16-529080639f82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215442Z:27c2fe24-8111-44b1-bb16-529080639f82" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7bc3363f-faf2-4b4b-9b9b-63dd0cc4b8fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13705" - ], - "x-ms-correlation-request-id": [ - "cd093d22-3216-4a52-b14d-595e731091bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215443Z:cd093d22-3216-4a52-b14d-595e731091bb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69923617-84c6-427f-a341-c1f6ec623e95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13704" - ], - "x-ms-correlation-request-id": [ - "4fcf90a9-99c7-48eb-958a-7b3bd475054d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215443Z:4fcf90a9-99c7-48eb-958a-7b3bd475054d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd229c44-1965-49d2-9761-4312e6a61c1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13703" - ], - "x-ms-correlation-request-id": [ - "df511bf6-b097-4478-a2fd-4715f00682d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215443Z:df511bf6-b097-4478-a2fd-4715f00682d2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5cd79aaf-62e0-4ca3-ad2b-d4a09ccc861b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13702" - ], - "x-ms-correlation-request-id": [ - "8922139b-c7ee-413e-9344-b73ac4d4ce1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215443Z:8922139b-c7ee-413e-9344-b73ac4d4ce1f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1aba6bd7-f310-482e-8ff6-800a57ee4795" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13701" - ], - "x-ms-correlation-request-id": [ - "a98642cd-b958-4597-9c0e-d63d27af463c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215443Z:a98642cd-b958-4597-9c0e-d63d27af463c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1dc35f3-32c0-48de-be11-c002f36e163b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13700" - ], - "x-ms-correlation-request-id": [ - "c8031c11-8870-4255-89b7-12428fc897c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215443Z:c8031c11-8870-4255-89b7-12428fc897c8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18b04fed-cc63-4935-b5b3-9ac8d41c2a45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13699" - ], - "x-ms-correlation-request-id": [ - "3466208f-1751-4756-b5b2-8c780907e73f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215444Z:3466208f-1751-4756-b5b2-8c780907e73f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d923233-9726-415d-bdad-5e89e16c07d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13698" - ], - "x-ms-correlation-request-id": [ - "9b423eb7-c9d5-462d-bca0-bd2a3c6b1ac6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215444Z:9b423eb7-c9d5-462d-bca0-bd2a3c6b1ac6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "576b4804-bd4c-419b-8946-4307e2fa5baa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13697" - ], - "x-ms-correlation-request-id": [ - "f0199ae9-3c7e-4d7f-9728-a2e63c86fda9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215444Z:f0199ae9-3c7e-4d7f-9728-a2e63c86fda9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de0a4a80-bbcb-4942-b42d-5b0318876f6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13696" - ], - "x-ms-correlation-request-id": [ - "007ce9dc-71cb-49ef-b40a-4d51997ef2be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215444Z:007ce9dc-71cb-49ef-b40a-4d51997ef2be" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f91fdaaf-9080-48b1-a6f7-619dad0760bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13695" - ], - "x-ms-correlation-request-id": [ - "c6645fb7-ba12-4e39-b7bd-6ff14e55d123" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215445Z:c6645fb7-ba12-4e39-b7bd-6ff14e55d123" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "485c3f3c-06bc-4ffc-bfec-9a9c98451871" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13694" - ], - "x-ms-correlation-request-id": [ - "643ae084-c5a3-4521-97a1-83382a5be0c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215445Z:643ae084-c5a3-4521-97a1-83382a5be0c1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e9bd0212-c054-4aff-9550-3ca901ba4883" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13693" - ], - "x-ms-correlation-request-id": [ - "0866a801-b1d6-476c-ac45-9d4d9f7b2435" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215445Z:0866a801-b1d6-476c-ac45-9d4d9f7b2435" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01a9d939-ed41-41ee-bf00-e0593901e73d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13692" - ], - "x-ms-correlation-request-id": [ - "ec921eb1-5b72-4b40-9ef2-7afd614b2ca9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215445Z:ec921eb1-5b72-4b40-9ef2-7afd614b2ca9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52684d74-af8d-4f26-aaef-0d4780ef1401" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13691" - ], - "x-ms-correlation-request-id": [ - "1b7d722e-a96e-45b5-b15e-c2af53797b6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215445Z:1b7d722e-a96e-45b5-b15e-c2af53797b6f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72fb78ab-c55b-4ba0-bc08-84e7f4c3e51a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13690" - ], - "x-ms-correlation-request-id": [ - "d45be0d1-5ca2-4f38-80f5-bf29ba607f91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215446Z:d45be0d1-5ca2-4f38-80f5-bf29ba607f91" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "135d9969-8c0c-4fe5-9234-36254140a9c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13689" - ], - "x-ms-correlation-request-id": [ - "98c57a7a-65df-41e8-9fa7-e0b50b3dd968" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215446Z:98c57a7a-65df-41e8-9fa7-e0b50b3dd968" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c40f1319-fded-41fc-b0de-613153be6861" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13688" - ], - "x-ms-correlation-request-id": [ - "189bcde9-fce3-4c55-bb7b-5c03d0e96db5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215446Z:189bcde9-fce3-4c55-bb7b-5c03d0e96db5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5df576a8-cdef-495f-962a-efd2d0054083" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13687" - ], - "x-ms-correlation-request-id": [ - "ad5866e5-e213-4c4f-a324-6722962fe710" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215446Z:ad5866e5-e213-4c4f-a324-6722962fe710" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dfdd0f0a-5ef2-4c16-8c75-ec212e424da1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13686" - ], - "x-ms-correlation-request-id": [ - "5e9a118c-5774-464a-a977-ec7ce455f56c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215446Z:5e9a118c-5774-464a-a977-ec7ce455f56c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e98fed82-c4ce-452d-8afd-d00da1ed82c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13685" - ], - "x-ms-correlation-request-id": [ - "ad10b12c-832f-495a-b521-2bed9f1d1577" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215446Z:ad10b12c-832f-495a-b521-2bed9f1d1577" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41d3192b-544b-43a1-95f4-e2ebffa3b8c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13684" - ], - "x-ms-correlation-request-id": [ - "1770a017-dc57-4cc0-861d-407306d8174c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215447Z:1770a017-dc57-4cc0-861d-407306d8174c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0109644-52f5-4727-ac28-d17a086313f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13683" - ], - "x-ms-correlation-request-id": [ - "7fba7c4c-88fc-4768-b2ab-11dab6cd6f5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215447Z:7fba7c4c-88fc-4768-b2ab-11dab6cd6f5e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba7b4b70-8f42-4a3e-9f22-cc49b1ddb4a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13682" - ], - "x-ms-correlation-request-id": [ - "0c198061-60ca-47d5-8bcf-4800bc92e930" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215447Z:0c198061-60ca-47d5-8bcf-4800bc92e930" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "64af3f53-e7da-4a61-856a-2262b89ec3a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13681" - ], - "x-ms-correlation-request-id": [ - "e3eaa146-4a11-4c09-b258-99699c8cf600" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215447Z:e3eaa146-4a11-4c09-b258-99699c8cf600" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "383fd620-f012-4a87-b58c-8695ce94cceb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13680" - ], - "x-ms-correlation-request-id": [ - "55a07e42-a8f9-4ac1-89f6-8c993353f19e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215447Z:55a07e42-a8f9-4ac1-89f6-8c993353f19e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54ed270c-8001-4acd-8983-c8e1bb08ee8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13679" - ], - "x-ms-correlation-request-id": [ - "342ecec9-30ea-4863-85ad-1150304d8455" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215447Z:342ecec9-30ea-4863-85ad-1150304d8455" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0c18938a-83ce-4bd4-8c71-c94414593ee2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13678" - ], - "x-ms-correlation-request-id": [ - "91e62e6f-87e0-4040-abdf-af12ea88fc8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215448Z:91e62e6f-87e0-4040-abdf-af12ea88fc8c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9cd9a1fd-e977-4e81-85cc-c5acaf130b4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13677" - ], - "x-ms-correlation-request-id": [ - "b7812892-dabd-4fd0-b082-22556350baaa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215448Z:b7812892-dabd-4fd0-b082-22556350baaa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0e3a85b-69e2-4bae-8a2a-e881a6eb75db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13676" - ], - "x-ms-correlation-request-id": [ - "c3f6cdef-7759-45bc-b22d-d69ec0888cfe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215448Z:c3f6cdef-7759-45bc-b22d-d69ec0888cfe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "396ebbcb-f3cb-4ab6-807e-13b168c38cb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13675" - ], - "x-ms-correlation-request-id": [ - "aa86cbdf-bede-4508-9360-e8d5fafc23c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215448Z:aa86cbdf-bede-4508-9360-e8d5fafc23c7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85f96843-aa4c-4cec-bf1c-8c4db0bd353a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13674" - ], - "x-ms-correlation-request-id": [ - "523f5bb9-4bf5-4882-9979-2cf950a7d0b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215448Z:523f5bb9-4bf5-4882-9979-2cf950a7d0b2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2631b323-37d6-49d5-ac10-c462fc5ca347" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13673" - ], - "x-ms-correlation-request-id": [ - "46edcae5-217b-436f-84ed-14a499713691" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215448Z:46edcae5-217b-436f-84ed-14a499713691" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4164df14-99ab-422b-8004-945db5983b26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13672" - ], - "x-ms-correlation-request-id": [ - "264dcbba-4d2a-422e-8f0a-e9fa2f18c40c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215448Z:264dcbba-4d2a-422e-8f0a-e9fa2f18c40c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf0bcfcb-0cc9-4188-8aaa-041fefd0a6c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13671" - ], - "x-ms-correlation-request-id": [ - "04627b2f-efaf-4a9f-bfde-3fa03dce29ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215449Z:04627b2f-efaf-4a9f-bfde-3fa03dce29ae" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6506277a-b9f6-46c4-a23b-ccdb9c972921" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13670" - ], - "x-ms-correlation-request-id": [ - "d02aaa72-bc0f-4345-938d-bc3ef7081110" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215449Z:d02aaa72-bc0f-4345-938d-bc3ef7081110" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7d9567e-85fd-4a5e-adb8-6fb07db1bb26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13669" - ], - "x-ms-correlation-request-id": [ - "9437cc2b-ca5c-4ac6-9abb-be353afe6e03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215449Z:9437cc2b-ca5c-4ac6-9abb-be353afe6e03" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "249d8f3d-8477-4824-a0ab-13893c18854f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13668" - ], - "x-ms-correlation-request-id": [ - "29e3fc2f-8285-4f64-979d-efc95492328c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215449Z:29e3fc2f-8285-4f64-979d-efc95492328c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f2d1687-5422-4f46-9ac0-e7475ff7daec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13667" - ], - "x-ms-correlation-request-id": [ - "01f02db9-5290-43bc-b1d4-5beea0c886e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215449Z:01f02db9-5290-43bc-b1d4-5beea0c886e7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c97e373-cee5-4b61-bd39-c85eacc9e997" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13666" - ], - "x-ms-correlation-request-id": [ - "bb00b4d4-7901-4514-8f33-428db83d3ada" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215449Z:bb00b4d4-7901-4514-8f33-428db83d3ada" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87496795-465e-4978-a05a-297e7c9a511d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13665" - ], - "x-ms-correlation-request-id": [ - "7aea354d-72ca-4d36-b6c3-886d9c968c49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215450Z:7aea354d-72ca-4d36-b6c3-886d9c968c49" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3c98023a-5540-4949-bfe2-029f65f0d27e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13664" - ], - "x-ms-correlation-request-id": [ - "729736f3-12eb-4192-97af-e46d1192a97f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215450Z:729736f3-12eb-4192-97af-e46d1192a97f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "711b9756-b1e1-4a4a-a5ae-92264adfdcb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13663" - ], - "x-ms-correlation-request-id": [ - "12853f7d-0127-467c-9eb9-d2024dc1c0b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215450Z:12853f7d-0127-467c-9eb9-d2024dc1c0b7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df8e3208-120f-409b-9072-95e58bf6dba9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13662" - ], - "x-ms-correlation-request-id": [ - "165534e7-0e94-4f78-bf7e-b5e2355541f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215450Z:165534e7-0e94-4f78-bf7e-b5e2355541f6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9911402-df60-41a0-b0c8-928f8f6d9c7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13661" - ], - "x-ms-correlation-request-id": [ - "18f9225f-c859-4bb7-bb92-c2ff8ce71d96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215450Z:18f9225f-c859-4bb7-bb92-c2ff8ce71d96" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c7a3524-31ed-4958-9c02-a404ff443729" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13660" - ], - "x-ms-correlation-request-id": [ - "abcf411c-ea41-4c84-b4b2-0f2d3661950f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215450Z:abcf411c-ea41-4c84-b4b2-0f2d3661950f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e271506d-3e40-4acd-ad2c-d3f3ce089db4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13659" - ], - "x-ms-correlation-request-id": [ - "71e9b848-2ba4-445d-8749-e2f54ab40596" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215451Z:71e9b848-2ba4-445d-8749-e2f54ab40596" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b44357b-1924-4dbd-83ab-091bff7f9ef9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13658" - ], - "x-ms-correlation-request-id": [ - "c99334b5-8026-4111-96d0-a623ae48aa47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215451Z:c99334b5-8026-4111-96d0-a623ae48aa47" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6ae0cd0-d272-4a83-9e54-9c66a3e84d44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13657" - ], - "x-ms-correlation-request-id": [ - "1eb9d776-e376-4b85-b39c-b68d5fecf0c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215451Z:1eb9d776-e376-4b85-b39c-b68d5fecf0c3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10f444d5-c47e-4f40-b814-a703b5baad60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13656" - ], - "x-ms-correlation-request-id": [ - "42f2fa7a-fd99-421e-a51f-b300a4863cf7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215451Z:42f2fa7a-fd99-421e-a51f-b300a4863cf7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "176532fa-76b9-4569-852b-304c75417c2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13655" - ], - "x-ms-correlation-request-id": [ - "d1ca8fec-58d0-4c08-9243-b3365d189c38" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215451Z:d1ca8fec-58d0-4c08-9243-b3365d189c38" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45f3df0d-c7f1-4c67-927d-6464df814594" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13654" - ], - "x-ms-correlation-request-id": [ - "b8d7d8d4-7592-486a-aa9d-3f40086307e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215451Z:b8d7d8d4-7592-486a-aa9d-3f40086307e5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82b1c2d2-0c6e-4221-a031-98408a710d19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13653" - ], - "x-ms-correlation-request-id": [ - "2224deab-cdc5-4e7f-97f6-b7b486515f93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215452Z:2224deab-cdc5-4e7f-97f6-b7b486515f93" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4697a49f-b78c-4580-b38a-6c354a855945" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13652" - ], - "x-ms-correlation-request-id": [ - "8734b07e-7eff-43ed-94ce-b77b4349b8ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215452Z:8734b07e-7eff-43ed-94ce-b77b4349b8ce" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "874575e7-21c7-42a6-8159-12b69e7921b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13651" - ], - "x-ms-correlation-request-id": [ - "6d00d6b5-08e8-4556-8fcf-6d803d58dc80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215452Z:6d00d6b5-08e8-4556-8fcf-6d803d58dc80" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bda3417-0bb8-4777-a473-1279364bf15c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13650" - ], - "x-ms-correlation-request-id": [ - "f8ddad7a-dd68-421c-a5c9-76df6e9b57db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215452Z:f8ddad7a-dd68-421c-a5c9-76df6e9b57db" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95d2bd7b-b435-4c3b-845d-682c8eb180e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13649" - ], - "x-ms-correlation-request-id": [ - "d022a6ac-e174-4307-8a95-5c50020bd726" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215452Z:d022a6ac-e174-4307-8a95-5c50020bd726" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c47ab844-4f84-4e22-8af1-447b2f092bdc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13648" - ], - "x-ms-correlation-request-id": [ - "97628616-f7d1-46fd-865f-c1fb041d3f90" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215453Z:97628616-f7d1-46fd-865f-c1fb041d3f90" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a67476d6-7cfa-44ca-8bcf-b0bb83f11e46" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13647" - ], - "x-ms-correlation-request-id": [ - "67bdfb37-6d10-420d-9faf-9105bb1f5d2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215453Z:67bdfb37-6d10-420d-9faf-9105bb1f5d2e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9eccace-953e-4743-9486-16f3f3b340d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13646" - ], - "x-ms-correlation-request-id": [ - "297a735a-09d8-4122-b890-95d3139b085d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215453Z:297a735a-09d8-4122-b890-95d3139b085d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ff1747f-4cc8-403b-8d95-536b480e0580" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13645" - ], - "x-ms-correlation-request-id": [ - "c09ca769-09db-4535-b0a6-36295666cbdb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215453Z:c09ca769-09db-4535-b0a6-36295666cbdb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3719c69b-14c7-4019-b9ee-d5fcb2d1d678" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13644" - ], - "x-ms-correlation-request-id": [ - "4346dc14-1e9f-4e3e-8ace-8ef893d4afbc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215453Z:4346dc14-1e9f-4e3e-8ace-8ef893d4afbc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de7a925c-c97b-413b-89c7-c010c1c882dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13643" - ], - "x-ms-correlation-request-id": [ - "0cb18015-e6cc-404d-85bf-2499e20c9648" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215453Z:0cb18015-e6cc-404d-85bf-2499e20c9648" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35495dc0-f0d1-4860-950c-e934ee0c8865" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13642" - ], - "x-ms-correlation-request-id": [ - "228ef23b-9f8c-442a-a1ec-efce03332654" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215454Z:228ef23b-9f8c-442a-a1ec-efce03332654" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2fa8f25-bdd1-436e-895f-70aac09ed029" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13641" - ], - "x-ms-correlation-request-id": [ - "4253e0a4-22a0-4a0b-a358-849d0a141564" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215454Z:4253e0a4-22a0-4a0b-a358-849d0a141564" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc3edbd4-11ff-485b-9edd-45db40f34153" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13640" - ], - "x-ms-correlation-request-id": [ - "587c9067-cb22-4a84-b312-fe37a81caf22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215454Z:587c9067-cb22-4a84-b312-fe37a81caf22" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eed9296a-b2f3-40bb-bfaa-943b7d0d7653" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13639" - ], - "x-ms-correlation-request-id": [ - "bdff7932-ec7d-4bec-90c8-1a16fdc7268b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215454Z:bdff7932-ec7d-4bec-90c8-1a16fdc7268b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d78450f-6456-42b8-989a-107815f9cf96" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13638" - ], - "x-ms-correlation-request-id": [ - "9c36d6b9-0ade-41cf-a14b-6bb561a7f900" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215454Z:9c36d6b9-0ade-41cf-a14b-6bb561a7f900" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "66395458-988f-4a03-9219-46e1c0be4704" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13637" - ], - "x-ms-correlation-request-id": [ - "fbf90681-e3b1-44ab-b7ef-0a27776b0bc6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215454Z:fbf90681-e3b1-44ab-b7ef-0a27776b0bc6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e08b653d-5855-4cfc-b3c2-7920f675ede4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13636" - ], - "x-ms-correlation-request-id": [ - "2f527343-14d2-40c6-9d25-3961dd6a9f96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215454Z:2f527343-14d2-40c6-9d25-3961dd6a9f96" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0918fd8e-b6d6-49a2-a92c-bb56d195bbd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13635" - ], - "x-ms-correlation-request-id": [ - "6e55bda1-d0e4-4fe0-bd1c-96741f4fd69b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215455Z:6e55bda1-d0e4-4fe0-bd1c-96741f4fd69b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51715c87-005f-49d6-a292-be26e72e8a16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13634" - ], - "x-ms-correlation-request-id": [ - "810e8326-15db-4c06-b59b-e7424228e447" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215455Z:810e8326-15db-4c06-b59b-e7424228e447" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5afc76bd-dab3-45bb-b1cd-6f167539f999" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13633" - ], - "x-ms-correlation-request-id": [ - "457378f7-24a9-4453-a772-1e65519225df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215455Z:457378f7-24a9-4453-a772-1e65519225df" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f035b2c3-6e6c-48f7-830f-02fa2c42333b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13632" - ], - "x-ms-correlation-request-id": [ - "0b46ba79-8cb6-4f0b-b2d2-e3a4d20d90b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215455Z:0b46ba79-8cb6-4f0b-b2d2-e3a4d20d90b4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f67bc99-23e6-400c-978e-f4ed6893e5dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13631" - ], - "x-ms-correlation-request-id": [ - "c305a4ef-38fd-48da-804f-208d2f71cf97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215455Z:c305a4ef-38fd-48da-804f-208d2f71cf97" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bedb07f-3c87-4f1a-816b-08a9e9cd27ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13630" - ], - "x-ms-correlation-request-id": [ - "488084c2-3273-4fc9-b033-e7ff8eb79e4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215455Z:488084c2-3273-4fc9-b033-e7ff8eb79e4c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee156b6b-ae50-4213-b382-dd68dfb88a3d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13629" - ], - "x-ms-correlation-request-id": [ - "aa0f7f44-8e2e-4664-be66-4508d10ef892" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215455Z:aa0f7f44-8e2e-4664-be66-4508d10ef892" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "947e823d-5ddd-4ec5-a3a8-1b4a1fe0ccb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13628" - ], - "x-ms-correlation-request-id": [ - "91f55467-a05b-438b-9636-6a8b6b618a3f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215456Z:91f55467-a05b-438b-9636-6a8b6b618a3f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce703cb4-b362-4524-afe3-a32c4554b224" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13627" - ], - "x-ms-correlation-request-id": [ - "d9ac0723-3b75-4ffe-a559-c76713517dd5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215456Z:d9ac0723-3b75-4ffe-a559-c76713517dd5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f33dc483-6d4d-4b09-b676-aacbc3b12fb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13626" - ], - "x-ms-correlation-request-id": [ - "1067b4aa-cd60-46da-99e2-b006617c6807" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215456Z:1067b4aa-cd60-46da-99e2-b006617c6807" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "66641066-e8c8-4068-b5c6-1b86dfbf3f83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13625" - ], - "x-ms-correlation-request-id": [ - "fd59908f-4ec9-4dd3-863b-a18c1a175458" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215456Z:fd59908f-4ec9-4dd3-863b-a18c1a175458" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4eb5b314-dd18-47f9-ae8e-04bb06bd989d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13624" - ], - "x-ms-correlation-request-id": [ - "82bc3641-c34f-4e72-8e3f-9ff56ee622b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215456Z:82bc3641-c34f-4e72-8e3f-9ff56ee622b8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "528b3499-7f33-4007-af14-11fc491868b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13623" - ], - "x-ms-correlation-request-id": [ - "a56dcfaf-9d93-4c5c-b644-91a012d664b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215456Z:a56dcfaf-9d93-4c5c-b644-91a012d664b6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "116fcd70-b055-4166-b55f-48575baaa0bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13622" - ], - "x-ms-correlation-request-id": [ - "a0b8ce5b-3204-4e81-a511-c126d8a55ba5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215457Z:a0b8ce5b-3204-4e81-a511-c126d8a55ba5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60c39b21-df98-4769-9004-874362f0f04a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13621" - ], - "x-ms-correlation-request-id": [ - "50cb9992-dbcb-40ca-8f5e-f16493f9087f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215457Z:50cb9992-dbcb-40ca-8f5e-f16493f9087f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72c8ea52-69dd-439f-b539-79323e71c318" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13620" - ], - "x-ms-correlation-request-id": [ - "733c41ad-adfa-4849-b2db-dbc465d08e0e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215457Z:733c41ad-adfa-4849-b2db-dbc465d08e0e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "987b23a1-48e3-4add-84ab-847db6b3e79d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13619" - ], - "x-ms-correlation-request-id": [ - "8b8ca588-b1cb-499e-96a1-dd73ca89a27a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215457Z:8b8ca588-b1cb-499e-96a1-dd73ca89a27a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2937bb0-6952-4f16-a530-a90a8579e66f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13618" - ], - "x-ms-correlation-request-id": [ - "3577dcf4-ae69-43dd-93e5-d0f68d38844d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215457Z:3577dcf4-ae69-43dd-93e5-d0f68d38844d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ffb049e4-d35a-4d2b-a82b-91516c7ce786" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13617" - ], - "x-ms-correlation-request-id": [ - "a084c92b-1fb5-4c44-8015-07877a9c7f41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215457Z:a084c92b-1fb5-4c44-8015-07877a9c7f41" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8fb5af82-db6f-4a7b-9603-a6f1b3d20d0a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13616" - ], - "x-ms-correlation-request-id": [ - "03b7aed4-efe7-4779-bfd5-cc50ed6571fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215457Z:03b7aed4-efe7-4779-bfd5-cc50ed6571fe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59ac5e39-df37-4abf-8f21-7141b0c5120a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13615" - ], - "x-ms-correlation-request-id": [ - "5927fd0e-6e0b-4904-8f2f-8ac593b03e76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215458Z:5927fd0e-6e0b-4904-8f2f-8ac593b03e76" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "534ebcf5-de25-419c-a7e6-619d51e3692c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13614" - ], - "x-ms-correlation-request-id": [ - "a1345a39-1132-4e64-8f20-a8ca83b39f49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215458Z:a1345a39-1132-4e64-8f20-a8ca83b39f49" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c90162f0-9638-43b7-8c4f-062a185f91e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13613" - ], - "x-ms-correlation-request-id": [ - "59b03eec-d7d5-4ca4-a345-57b30af86ea7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215458Z:59b03eec-d7d5-4ca4-a345-57b30af86ea7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d151379-ce06-483c-ba25-289b0299ad95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13612" - ], - "x-ms-correlation-request-id": [ - "0ff8f518-3c55-4745-96b5-92d47718b4a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215458Z:0ff8f518-3c55-4745-96b5-92d47718b4a5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "821327fb-fa5a-4047-89dd-1ee333ae7b6d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13611" - ], - "x-ms-correlation-request-id": [ - "65dfdb33-648c-4043-a977-af1de8a177d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215458Z:65dfdb33-648c-4043-a977-af1de8a177d0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70e03330-f82f-451b-b778-cbd50482e602" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13610" - ], - "x-ms-correlation-request-id": [ - "1dcd263e-c339-4a0a-b7b7-1abcfabf26a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215458Z:1dcd263e-c339-4a0a-b7b7-1abcfabf26a9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46dc827d-6eb3-4084-95b7-5226e764e2f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13609" - ], - "x-ms-correlation-request-id": [ - "e9ead3df-51f4-47c6-bfec-3fc8762c2ea0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215458Z:e9ead3df-51f4-47c6-bfec-3fc8762c2ea0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "58e88e1e-bd14-4d44-8343-ffb55b4cf481" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13608" - ], - "x-ms-correlation-request-id": [ - "514fb870-48e3-43b9-a5f5-599b4557e739" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215459Z:514fb870-48e3-43b9-a5f5-599b4557e739" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e574328f-f680-4baf-b377-ffbd62ccabd1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13607" - ], - "x-ms-correlation-request-id": [ - "18c0510a-70d2-4c80-adab-870ed56e75de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215459Z:18c0510a-70d2-4c80-adab-870ed56e75de" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bd154f3b-e144-48b4-8391-505abcf3c5e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13606" - ], - "x-ms-correlation-request-id": [ - "3082353a-ffbd-4073-b0bf-af3a8ec97a66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215459Z:3082353a-ffbd-4073-b0bf-af3a8ec97a66" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd1b24e0-449b-43a5-883c-570e5d5f16cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13605" - ], - "x-ms-correlation-request-id": [ - "fd2661ef-c928-444b-a575-63a204e7e017" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215459Z:fd2661ef-c928-444b-a575-63a204e7e017" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e3816d6-128d-4b01-9da0-2052397abc73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13604" - ], - "x-ms-correlation-request-id": [ - "dc78d7ed-e3f4-4a59-a220-958f340414d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215459Z:dc78d7ed-e3f4-4a59-a220-958f340414d5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ab44dd3-c47b-457d-a4a1-7101316d20f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13603" - ], - "x-ms-correlation-request-id": [ - "5b41f322-4cf0-4c8d-bc41-779814f79050" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215459Z:5b41f322-4cf0-4c8d-bc41-779814f79050" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c4ca8f35-7386-4fc9-926a-a370da5d5654" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13602" - ], - "x-ms-correlation-request-id": [ - "f0c77ae8-47b2-4c30-8a82-7f46af405b01" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215459Z:f0c77ae8-47b2-4c30-8a82-7f46af405b01" - ], - "Date": [ - "Tue, 29 Aug 2017 21:54:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "970ab5b9-45cd-4b54-a1da-7e6487904eee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13601" - ], - "x-ms-correlation-request-id": [ - "23e93137-8f07-49b5-8964-dcacae32d59b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215500Z:23e93137-8f07-49b5-8964-dcacae32d59b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e93e4d11-5b3b-4ec6-ac6f-59f55cc03478" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13600" - ], - "x-ms-correlation-request-id": [ - "1851c05f-9d12-4d4e-8918-ed25eae9cb1d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215500Z:1851c05f-9d12-4d4e-8918-ed25eae9cb1d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36b46488-fc02-4c04-9b8a-2a6ff691655d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13599" - ], - "x-ms-correlation-request-id": [ - "9fa0c80a-b203-4244-9e37-c124f88e50b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215500Z:9fa0c80a-b203-4244-9e37-c124f88e50b5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c444493-b9e6-41b9-9e1f-7ba58edca795" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13598" - ], - "x-ms-correlation-request-id": [ - "53a3e972-dc1f-47c6-816a-620e92ce5d41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215500Z:53a3e972-dc1f-47c6-816a-620e92ce5d41" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bee5fe64-71ec-4cf0-bb75-b3892e4d1adc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13597" - ], - "x-ms-correlation-request-id": [ - "0504c960-6b01-4b05-96c7-999795cb6545" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215500Z:0504c960-6b01-4b05-96c7-999795cb6545" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a818b40f-6f58-4702-b185-ed466b773d6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13596" - ], - "x-ms-correlation-request-id": [ - "b36ad79b-dbe8-4553-9ab3-15c19e52fd33" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215500Z:b36ad79b-dbe8-4553-9ab3-15c19e52fd33" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7017b5df-073d-479d-99ac-12c5d8d2c2e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13595" - ], - "x-ms-correlation-request-id": [ - "84297f90-7011-4d82-a5e5-3bbcf9039305" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215501Z:84297f90-7011-4d82-a5e5-3bbcf9039305" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d3af958-aaf7-45d6-bc5e-9099e239ec6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13594" - ], - "x-ms-correlation-request-id": [ - "a4d18b2c-240c-436f-893b-d00112865f7c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215501Z:a4d18b2c-240c-436f-893b-d00112865f7c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "642ac9fb-be5a-4946-acaf-76591cbd0404" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13593" - ], - "x-ms-correlation-request-id": [ - "26e1839d-7762-4842-a9dc-12bca3ee29c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215501Z:26e1839d-7762-4842-a9dc-12bca3ee29c0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28195fe0-0b26-4523-9484-dca1e242374a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13592" - ], - "x-ms-correlation-request-id": [ - "a8870b1d-3cbf-4083-8b30-e3e53d5aef36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215501Z:a8870b1d-3cbf-4083-8b30-e3e53d5aef36" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70f3db22-8f8e-4d05-a67a-74a8c8845e0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13591" - ], - "x-ms-correlation-request-id": [ - "5048afa4-43c3-4513-9ea4-6f4a49442de9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215501Z:5048afa4-43c3-4513-9ea4-6f4a49442de9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06685d76-ca70-4266-a6fb-fa013d322bae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13590" - ], - "x-ms-correlation-request-id": [ - "06bfcf4e-80a2-4f13-8dba-bd1769d0a341" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215501Z:06bfcf4e-80a2-4f13-8dba-bd1769d0a341" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "636aa850-304f-4826-b981-57a5a8b4d33f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13589" - ], - "x-ms-correlation-request-id": [ - "38b82d92-0415-46a8-89c3-b863e4abc3bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215502Z:38b82d92-0415-46a8-89c3-b863e4abc3bc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86ab3595-2e06-4244-94b2-c8793c4f99e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13588" - ], - "x-ms-correlation-request-id": [ - "2c4f61c8-2ddd-4014-95f9-2ad7dcc1e964" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215502Z:2c4f61c8-2ddd-4014-95f9-2ad7dcc1e964" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2def7385-61fb-4d6c-a26d-1b5935b42c8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13587" - ], - "x-ms-correlation-request-id": [ - "23bbfd24-381f-4933-89d8-839d4a241f40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215502Z:23bbfd24-381f-4933-89d8-839d4a241f40" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6514402-7cdb-430e-933a-9732646d641f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13586" - ], - "x-ms-correlation-request-id": [ - "4b79f30c-da49-421e-9a8c-a8d03dfc91b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215502Z:4b79f30c-da49-421e-9a8c-a8d03dfc91b8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e9784198-5340-46f1-bc2b-0d71b49a8dda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13585" - ], - "x-ms-correlation-request-id": [ - "0cd5baf2-c62c-41c6-8e14-234317607a74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215503Z:0cd5baf2-c62c-41c6-8e14-234317607a74" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5ec85a4-3655-45f6-b791-aa2c1fcef36b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13584" - ], - "x-ms-correlation-request-id": [ - "d53c9dcf-3b47-40f6-9333-04946b6b6731" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215503Z:d53c9dcf-3b47-40f6-9333-04946b6b6731" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c1ecf92-832a-42e8-8e85-e42d38b3d294" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13583" - ], - "x-ms-correlation-request-id": [ - "6bf57f1a-20f5-49af-b243-1d9830d9dbb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215503Z:6bf57f1a-20f5-49af-b243-1d9830d9dbb9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eec259eb-a5ff-4398-b17b-d25bc815a025" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13582" - ], - "x-ms-correlation-request-id": [ - "f4d6a38b-b00f-46ee-93ae-ab1df6c75e25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215503Z:f4d6a38b-b00f-46ee-93ae-ab1df6c75e25" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1cbc3827-d69f-44ea-a549-c6dec5cb7c07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13581" - ], - "x-ms-correlation-request-id": [ - "b05b56ae-fce3-4b2b-92eb-46e5f19df8c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215503Z:b05b56ae-fce3-4b2b-92eb-46e5f19df8c6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d584e31a-a83e-4715-a7d7-31519e6f4679" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13580" - ], - "x-ms-correlation-request-id": [ - "f17b2472-9386-4284-ae10-5e017ca38cae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215504Z:f17b2472-9386-4284-ae10-5e017ca38cae" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14892be5-01f1-4c75-a131-95d39ca5e965" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13579" - ], - "x-ms-correlation-request-id": [ - "e7435d2b-41de-4281-8575-0796c6e6f184" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215504Z:e7435d2b-41de-4281-8575-0796c6e6f184" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f937daa9-9258-4f84-8ae9-9736dd24fe05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13578" - ], - "x-ms-correlation-request-id": [ - "981625ea-5c1b-4329-9148-7bb8a4aaa1d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215504Z:981625ea-5c1b-4329-9148-7bb8a4aaa1d8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bce34dd3-600a-4050-bc67-bc58b70a879a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13577" - ], - "x-ms-correlation-request-id": [ - "e0783a9a-f8a7-4f8c-86b0-fee3b5a5103c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215504Z:e0783a9a-f8a7-4f8c-86b0-fee3b5a5103c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ef9aa1f-1205-4c20-ba58-b65d07401782" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13576" - ], - "x-ms-correlation-request-id": [ - "cf1ea406-9f6a-4746-9827-0fbb7d2a95be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215505Z:cf1ea406-9f6a-4746-9827-0fbb7d2a95be" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08c4c56f-c924-4d96-9499-19b35a99cbfc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13575" - ], - "x-ms-correlation-request-id": [ - "dccf77a4-a812-475b-8d6f-74ef89fe4356" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215505Z:dccf77a4-a812-475b-8d6f-74ef89fe4356" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fbfd1567-ab3c-44d8-9107-41faae1c5a71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13574" - ], - "x-ms-correlation-request-id": [ - "c9b5fb88-b2e4-425a-a185-a042f7c8e90e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215505Z:c9b5fb88-b2e4-425a-a185-a042f7c8e90e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab281353-54e9-450e-a270-92813780f913" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13573" - ], - "x-ms-correlation-request-id": [ - "ec710b5a-7e1f-4206-a957-7321fa5f4149" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215506Z:ec710b5a-7e1f-4206-a957-7321fa5f4149" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6d833bb-a2ef-41ee-a77b-c772b506081e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13572" - ], - "x-ms-correlation-request-id": [ - "41a24420-caec-44ee-85f9-7ee035375468" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215506Z:41a24420-caec-44ee-85f9-7ee035375468" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4fba7f3-8bce-4e9e-a76f-6f730bfcafd2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13571" - ], - "x-ms-correlation-request-id": [ - "579896a0-9266-4c18-8cca-964431e4e0d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215506Z:579896a0-9266-4c18-8cca-964431e4e0d4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d62babd-deb1-44c6-99f6-ffbdee6b4c7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13570" - ], - "x-ms-correlation-request-id": [ - "1d995304-093b-4caa-a348-e8f69814bbed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215506Z:1d995304-093b-4caa-a348-e8f69814bbed" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb924063-232f-4dfa-a282-7a84c9ce3feb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13569" - ], - "x-ms-correlation-request-id": [ - "3974952d-1f30-4d55-98df-0d6040b989f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215506Z:3974952d-1f30-4d55-98df-0d6040b989f1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb74725d-519d-42e6-8e48-c62cfccc7f19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13568" - ], - "x-ms-correlation-request-id": [ - "55cce2a4-177b-461d-9b81-ad34e968da95" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215507Z:55cce2a4-177b-461d-9b81-ad34e968da95" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd507854-c45b-48fa-95db-ba730efbcddb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13567" - ], - "x-ms-correlation-request-id": [ - "99289f32-471e-4b38-9df6-feb41979d19c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215507Z:99289f32-471e-4b38-9df6-feb41979d19c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16266e50-031a-4337-8b56-b11f2cafba25" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13566" - ], - "x-ms-correlation-request-id": [ - "8d0bccb1-5d18-4802-9a74-2a8228445bd1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215507Z:8d0bccb1-5d18-4802-9a74-2a8228445bd1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5506a674-774c-452b-8eb1-76452b2f7f82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13565" - ], - "x-ms-correlation-request-id": [ - "7f3cb15e-2c84-4c9a-a407-e144f8495ede" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215507Z:7f3cb15e-2c84-4c9a-a407-e144f8495ede" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "361aee21-ece5-4e30-a0f0-bcb887649ad8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13564" - ], - "x-ms-correlation-request-id": [ - "98ef7523-4b66-4f40-a929-f93a11e06578" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215507Z:98ef7523-4b66-4f40-a929-f93a11e06578" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a791d422-a714-421e-85bf-cbd096380af3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13563" - ], - "x-ms-correlation-request-id": [ - "30e0c146-cba8-4923-813c-131f681360c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215507Z:30e0c146-cba8-4923-813c-131f681360c5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d05f1077-f5c4-427e-a999-1b0d98c7b9e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13562" - ], - "x-ms-correlation-request-id": [ - "28ea2088-96aa-44ab-b807-32e650916bd9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215508Z:28ea2088-96aa-44ab-b807-32e650916bd9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "766bde3d-e8a2-4507-a83f-1630043ad8f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13561" - ], - "x-ms-correlation-request-id": [ - "ef0abba0-e87f-42a8-ad5a-e49c88965086" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215508Z:ef0abba0-e87f-42a8-ad5a-e49c88965086" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dcef3263-92ab-405e-8064-a6ef27c14907" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13560" - ], - "x-ms-correlation-request-id": [ - "c411281c-dfb6-4404-82fc-bed8e3ba8c49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215508Z:c411281c-dfb6-4404-82fc-bed8e3ba8c49" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "854ce4a7-ca4b-43a5-bd64-8f0a454cd157" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13559" - ], - "x-ms-correlation-request-id": [ - "1636c7f9-8273-4054-b6b6-f4d4b1089135" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215508Z:1636c7f9-8273-4054-b6b6-f4d4b1089135" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11cca37f-2ef8-4916-a7ec-770e50c060a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13558" - ], - "x-ms-correlation-request-id": [ - "ea504629-64dd-49da-9c23-9b326808e219" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215508Z:ea504629-64dd-49da-9c23-9b326808e219" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "961bde01-c136-4f51-b963-b755dc851f05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13557" - ], - "x-ms-correlation-request-id": [ - "a03469bf-c293-4f68-a43d-d4de6334acde" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215508Z:a03469bf-c293-4f68-a43d-d4de6334acde" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0bed9bf1-94f2-43a9-a807-588a0d1d0cf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13556" - ], - "x-ms-correlation-request-id": [ - "98a92f00-6f6f-4c38-87e5-e4a2ab4d0ba2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215508Z:98a92f00-6f6f-4c38-87e5-e4a2ab4d0ba2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "075a37cc-ec51-4c7d-b63d-d42aff045207" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13555" - ], - "x-ms-correlation-request-id": [ - "bfb2f100-8295-4684-b18f-84eebdf489ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215509Z:bfb2f100-8295-4684-b18f-84eebdf489ba" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e87b153e-3a52-4309-91e1-88138857ba54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13554" - ], - "x-ms-correlation-request-id": [ - "d20d5443-5860-489c-9b44-0deb1155801d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215509Z:d20d5443-5860-489c-9b44-0deb1155801d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c2c818b8-aa88-4a10-b1e1-60d147051be7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13553" - ], - "x-ms-correlation-request-id": [ - "e56cfbb0-ee63-4b0b-b18a-7f41ee739a7d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215509Z:e56cfbb0-ee63-4b0b-b18a-7f41ee739a7d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ef99b87-0365-4e6f-bc8a-26e74e73936d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13552" - ], - "x-ms-correlation-request-id": [ - "93eda062-f4c4-4a2a-8060-b9890c456286" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215509Z:93eda062-f4c4-4a2a-8060-b9890c456286" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e84c0079-1a4f-48d2-851b-c708beee3b24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13551" - ], - "x-ms-correlation-request-id": [ - "dc663aa7-bcc6-41b1-941f-b330f5c4b3e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215509Z:dc663aa7-bcc6-41b1-941f-b330f5c4b3e7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dece4f5b-4764-4347-995e-3a2c71e86b66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13550" - ], - "x-ms-correlation-request-id": [ - "82f8ff6d-781c-4f05-8eb6-a48322e8d30b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215509Z:82f8ff6d-781c-4f05-8eb6-a48322e8d30b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84bc3b8c-28b0-4fc4-a024-486ce4016d62" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13549" - ], - "x-ms-correlation-request-id": [ - "d5da83b6-a901-4660-9b9a-85a290eea0ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215510Z:d5da83b6-a901-4660-9b9a-85a290eea0ef" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02dd8ae8-0daa-48ee-a918-7c5b74128fa0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13548" - ], - "x-ms-correlation-request-id": [ - "0f437e2c-9b6d-4533-8b89-43b893f1313a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215510Z:0f437e2c-9b6d-4533-8b89-43b893f1313a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48c17d8e-2fd5-4216-886e-852c132ec51d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13547" - ], - "x-ms-correlation-request-id": [ - "3bd2116a-b928-4019-a939-1d0f1f8e77ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215510Z:3bd2116a-b928-4019-a939-1d0f1f8e77ae" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b508961-ccea-497a-89d9-a9d25438a22d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13546" - ], - "x-ms-correlation-request-id": [ - "e7b71822-0b49-4f9c-8a9b-399a416ece49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215510Z:e7b71822-0b49-4f9c-8a9b-399a416ece49" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e17f325f-f7aa-4bde-899d-f6cc60e71925" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13545" - ], - "x-ms-correlation-request-id": [ - "6cac0864-b9ed-4e2d-8717-2e8abf00bf73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215510Z:6cac0864-b9ed-4e2d-8717-2e8abf00bf73" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f55589a-4072-4180-90e3-4e90edede9c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13544" - ], - "x-ms-correlation-request-id": [ - "f637c01c-d6ff-46d1-a6cc-4eeb7a882361" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215511Z:f637c01c-d6ff-46d1-a6cc-4eeb7a882361" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10bae02a-8713-4a3c-8745-d7004089f1ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13543" - ], - "x-ms-correlation-request-id": [ - "2defea74-3712-4f84-aa34-10cacb09f72a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215511Z:2defea74-3712-4f84-aa34-10cacb09f72a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79d2723e-76d0-48be-8479-7cd5c2d44d50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13542" - ], - "x-ms-correlation-request-id": [ - "2acb73aa-c628-4004-bdde-5d55390b7c3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215511Z:2acb73aa-c628-4004-bdde-5d55390b7c3e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb231007-18ac-4d61-bced-4944a884edca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13541" - ], - "x-ms-correlation-request-id": [ - "768fe354-24d4-4c26-b641-4640cc928eef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215511Z:768fe354-24d4-4c26-b641-4640cc928eef" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c48cc4be-314d-43fe-9e98-4d19bafec37a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13540" - ], - "x-ms-correlation-request-id": [ - "e407be09-19ab-4777-8b97-72f6ad76b20e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215511Z:e407be09-19ab-4777-8b97-72f6ad76b20e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2eb9c26-1b97-4080-a98f-227f775e11f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13539" - ], - "x-ms-correlation-request-id": [ - "acbc6a51-4733-4ae3-8943-489534366824" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215511Z:acbc6a51-4733-4ae3-8943-489534366824" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "408272c6-4d15-4de7-9f5d-b26d1b5030fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13538" - ], - "x-ms-correlation-request-id": [ - "b1db03fb-23a1-4c8e-b771-8cf926dfc164" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215512Z:b1db03fb-23a1-4c8e-b771-8cf926dfc164" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17324cb9-bec6-4507-9460-16e982e13ae0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13537" - ], - "x-ms-correlation-request-id": [ - "37c4e371-4faa-44bb-8150-90203f6cc6f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215512Z:37c4e371-4faa-44bb-8150-90203f6cc6f8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9f9ab6f-dd81-4691-8a26-3e89903e5403" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13536" - ], - "x-ms-correlation-request-id": [ - "ce91d95b-90f6-4834-99de-b2395f9a6e79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215512Z:ce91d95b-90f6-4834-99de-b2395f9a6e79" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d972840-73bd-45f5-8d3f-4520d2532d34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13535" - ], - "x-ms-correlation-request-id": [ - "a27d61ee-539e-4271-8387-e84f74bf249f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215512Z:a27d61ee-539e-4271-8387-e84f74bf249f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ab26372-fa41-47d3-a25f-14c4a9644437" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13534" - ], - "x-ms-correlation-request-id": [ - "3c1c0520-93cb-46fd-a6a6-289ee95bb924" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215512Z:3c1c0520-93cb-46fd-a6a6-289ee95bb924" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6c3b504-c69a-4886-b4f4-9e7bff3d8e51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13533" - ], - "x-ms-correlation-request-id": [ - "d74670dc-9991-466a-9b6e-bacf7c3edb09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215512Z:d74670dc-9991-466a-9b6e-bacf7c3edb09" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb667e15-b0e8-4845-b79e-acbbe48819a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13532" - ], - "x-ms-correlation-request-id": [ - "2f81739a-1890-4ba3-9237-e76a7ddd0084" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215513Z:2f81739a-1890-4ba3-9237-e76a7ddd0084" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79d85f73-e82e-4e3e-a2a0-401effb99124" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13531" - ], - "x-ms-correlation-request-id": [ - "bd92c9d8-a7d2-437f-b16c-fce5bd29f111" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215513Z:bd92c9d8-a7d2-437f-b16c-fce5bd29f111" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b85eec35-b1c4-406b-ba63-d03d5a4c44b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13530" - ], - "x-ms-correlation-request-id": [ - "608f5c65-6e5b-4bb1-935b-0eb3091c6093" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215513Z:608f5c65-6e5b-4bb1-935b-0eb3091c6093" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f9cbc74-b56b-4c37-a912-a16d9a07d9f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13529" - ], - "x-ms-correlation-request-id": [ - "58ac62c1-d017-47f6-a325-8486ae342d8b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215513Z:58ac62c1-d017-47f6-a325-8486ae342d8b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60061c7d-e3a0-49a3-8388-46370bbd74af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13528" - ], - "x-ms-correlation-request-id": [ - "4ee0e4c8-6d06-40be-8a1f-7b145f200c93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215513Z:4ee0e4c8-6d06-40be-8a1f-7b145f200c93" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c0454fe-6f46-498b-9b82-d00ab87aef73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13527" - ], - "x-ms-correlation-request-id": [ - "13d24338-397a-461a-8999-a8f153984ed3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215514Z:13d24338-397a-461a-8999-a8f153984ed3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88f0104e-5652-4f99-b3bb-db706ee39743" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13526" - ], - "x-ms-correlation-request-id": [ - "5bebd89a-d538-4650-a3fc-603c57cd3aff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215514Z:5bebd89a-d538-4650-a3fc-603c57cd3aff" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ea8a99f-8d75-4247-afb2-b70a56ad4b75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13525" - ], - "x-ms-correlation-request-id": [ - "2a67ae57-4eff-4498-8ebe-a858dfe0938b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215514Z:2a67ae57-4eff-4498-8ebe-a858dfe0938b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25a0c68a-23a4-44c9-9608-72dbe9067cda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13524" - ], - "x-ms-correlation-request-id": [ - "a38824a6-fec2-4c78-a0e6-c5f735ebaab9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215514Z:a38824a6-fec2-4c78-a0e6-c5f735ebaab9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2bb84d0-5c16-4627-9636-751fc75be4f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13523" - ], - "x-ms-correlation-request-id": [ - "a68974e4-6f81-4501-9fa2-edea885dfcac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215514Z:a68974e4-6f81-4501-9fa2-edea885dfcac" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a043d46-7a36-4cbc-9008-54a62afc0ffb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13522" - ], - "x-ms-correlation-request-id": [ - "38134233-27e2-46bc-9b70-0972b1895d53" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215514Z:38134233-27e2-46bc-9b70-0972b1895d53" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10e4153e-0580-408b-89da-d1e9bd399bf0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13521" - ], - "x-ms-correlation-request-id": [ - "e24684e4-b97e-4651-b815-04b3638dc56f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215515Z:e24684e4-b97e-4651-b815-04b3638dc56f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14abca36-e7ab-453d-a7ac-bc8e9bfa10cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13520" - ], - "x-ms-correlation-request-id": [ - "682c87d2-cb33-41cc-b69a-4236e3fbc94f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215515Z:682c87d2-cb33-41cc-b69a-4236e3fbc94f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6676ee17-083c-471b-b317-0f090cb53161" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13519" - ], - "x-ms-correlation-request-id": [ - "b5252d4f-b894-413c-8128-dd134f648b02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215515Z:b5252d4f-b894-413c-8128-dd134f648b02" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf839542-768c-49fa-abce-641863425e8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13518" - ], - "x-ms-correlation-request-id": [ - "b57e1059-2f6e-40df-8032-b570d3ace28b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215515Z:b57e1059-2f6e-40df-8032-b570d3ace28b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a20b053d-7b6b-40f2-b89e-3663d460fc05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13517" - ], - "x-ms-correlation-request-id": [ - "10bab733-a3b5-43dc-8ea4-c252da4185a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215515Z:10bab733-a3b5-43dc-8ea4-c252da4185a6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bcf54b48-b492-4df0-b967-52f22fdff071" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13516" - ], - "x-ms-correlation-request-id": [ - "33a485e5-a362-4e7c-9766-af611b09168f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215515Z:33a485e5-a362-4e7c-9766-af611b09168f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b3989c5-29be-4cbf-add4-d9fad93e5721" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13515" - ], - "x-ms-correlation-request-id": [ - "53842bc7-5ea2-47e0-99e4-17abeecb6596" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215515Z:53842bc7-5ea2-47e0-99e4-17abeecb6596" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08494e13-a39d-4204-83f9-af2c5c1cc6f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13514" - ], - "x-ms-correlation-request-id": [ - "4c398f97-32d5-426d-b718-76ccb9e796d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215516Z:4c398f97-32d5-426d-b718-76ccb9e796d6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1da3127b-9efb-48c0-a78b-e641f585cb35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13513" - ], - "x-ms-correlation-request-id": [ - "7d32091f-5b7a-45f0-b64b-da94eab5b770" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215516Z:7d32091f-5b7a-45f0-b64b-da94eab5b770" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04b42469-0560-45aa-b89b-c449979c6807" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13512" - ], - "x-ms-correlation-request-id": [ - "bb271a52-3028-47d1-944f-77c056132d1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215516Z:bb271a52-3028-47d1-944f-77c056132d1a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52c6d5c4-ff89-4826-b294-7e85a02c7696" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13511" - ], - "x-ms-correlation-request-id": [ - "8850bbd9-a17c-4d3b-8193-a81afba08f80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215516Z:8850bbd9-a17c-4d3b-8193-a81afba08f80" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1589264a-8111-4764-8942-95f0b0b72563" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13510" - ], - "x-ms-correlation-request-id": [ - "1b45a7aa-6a1f-4eb6-b346-1adc1c256fde" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215516Z:1b45a7aa-6a1f-4eb6-b346-1adc1c256fde" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "197aef21-badc-4870-9949-74a469d10cb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13509" - ], - "x-ms-correlation-request-id": [ - "fbe82c61-9f15-48ff-8e7a-3a9b09279df9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215517Z:fbe82c61-9f15-48ff-8e7a-3a9b09279df9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "903fd97a-222d-4db3-8d7a-32e240f46980" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13508" - ], - "x-ms-correlation-request-id": [ - "c28d9cdf-49fe-41a0-baf7-ff65e3baed3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215517Z:c28d9cdf-49fe-41a0-baf7-ff65e3baed3e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2bbb19e8-1172-420f-9e22-e7d900079ba1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13507" - ], - "x-ms-correlation-request-id": [ - "5fa5b6b0-4740-4789-9118-657dbf4ec1b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215517Z:5fa5b6b0-4740-4789-9118-657dbf4ec1b8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cedd4563-a729-4b67-a4c9-9bef0b508125" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13506" - ], - "x-ms-correlation-request-id": [ - "18dc2830-679f-480a-b7a0-f16f8950334f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215517Z:18dc2830-679f-480a-b7a0-f16f8950334f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b66ab89-9be9-4186-bee5-b6169426300a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13505" - ], - "x-ms-correlation-request-id": [ - "d4b1ffc7-5bf9-42d6-a1a3-7c5e22f88805" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215517Z:d4b1ffc7-5bf9-42d6-a1a3-7c5e22f88805" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1bed195a-f8cc-433c-a935-dc992a0d7f20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13504" - ], - "x-ms-correlation-request-id": [ - "eccc716f-92e2-44e0-89a5-2a4928bc355a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215517Z:eccc716f-92e2-44e0-89a5-2a4928bc355a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae781c0d-9844-45f4-8e57-9b5575edca49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13503" - ], - "x-ms-correlation-request-id": [ - "a2042aab-40c7-4142-b1cd-0263eb1ac7d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215518Z:a2042aab-40c7-4142-b1cd-0263eb1ac7d6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83877d89-8d5f-468d-a965-e436140f05c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13502" - ], - "x-ms-correlation-request-id": [ - "923e425a-353e-43aa-b779-31fcb50887e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215518Z:923e425a-353e-43aa-b779-31fcb50887e8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19761db9-bfc2-4cd7-a5a9-2c4c836fe4e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13501" - ], - "x-ms-correlation-request-id": [ - "a8298500-9145-4311-b609-598ed4fec03e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215518Z:a8298500-9145-4311-b609-598ed4fec03e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d574255d-c2bf-4626-a17a-c6b7a373cf51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13500" - ], - "x-ms-correlation-request-id": [ - "7ad04306-86bf-4501-92fd-3e7afb7550e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215518Z:7ad04306-86bf-4501-92fd-3e7afb7550e0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de7a9127-71e0-4006-997b-721550c2aa27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13499" - ], - "x-ms-correlation-request-id": [ - "e2c38dac-f711-40ef-90b1-6e5943d4fe65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215518Z:e2c38dac-f711-40ef-90b1-6e5943d4fe65" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81e0dcc8-b171-4a22-9aca-929f1c0cb532" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13498" - ], - "x-ms-correlation-request-id": [ - "6400cb4b-206d-4cef-ade2-4736a885f9ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215519Z:6400cb4b-206d-4cef-ade2-4736a885f9ba" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7ce608f-ab4b-4d0d-b155-f1dae5e747a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13497" - ], - "x-ms-correlation-request-id": [ - "b939bfa2-57e8-4485-b90a-9f2697fe83da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215519Z:b939bfa2-57e8-4485-b90a-9f2697fe83da" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f419c3a-d330-43d4-a234-0ec3549fe773" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13496" - ], - "x-ms-correlation-request-id": [ - "af0c9cd6-1600-4974-a7f1-3491a96a6c3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215519Z:af0c9cd6-1600-4974-a7f1-3491a96a6c3d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "058291e7-4895-4aef-b7bd-189ab0c2a2aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13495" - ], - "x-ms-correlation-request-id": [ - "ae35e77b-971b-4670-aedb-477514eda285" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215519Z:ae35e77b-971b-4670-aedb-477514eda285" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92229673-630f-484b-b96c-49819b865d49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13494" - ], - "x-ms-correlation-request-id": [ - "612b03f9-ccef-412c-94f1-4d08f5a656e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215519Z:612b03f9-ccef-412c-94f1-4d08f5a656e9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "07505d25-9d6f-4f33-8349-ea2942552e97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13493" - ], - "x-ms-correlation-request-id": [ - "606178d4-2412-4320-ac51-814890f44c42" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215519Z:606178d4-2412-4320-ac51-814890f44c42" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cce64550-f603-4186-87ad-2d144a4adc6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13492" - ], - "x-ms-correlation-request-id": [ - "006ddab5-c605-43a5-a359-2a907e39b446" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215519Z:006ddab5-c605-43a5-a359-2a907e39b446" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "356cc8dc-943b-44d8-a836-4d4e4f523794" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13491" - ], - "x-ms-correlation-request-id": [ - "3547c5ae-a49b-4c68-bfb6-52cc485abded" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215520Z:3547c5ae-a49b-4c68-bfb6-52cc485abded" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5ae2bbf-a60b-4da2-8f1f-5a62fb602d3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13490" - ], - "x-ms-correlation-request-id": [ - "6ffb6fef-2643-4a8a-9027-63a50c4fb03c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215520Z:6ffb6fef-2643-4a8a-9027-63a50c4fb03c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e7d5ab2-c9ef-4012-8042-25169179be44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13489" - ], - "x-ms-correlation-request-id": [ - "19b170c9-b9c7-4afe-b8f5-bc06764bc394" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215520Z:19b170c9-b9c7-4afe-b8f5-bc06764bc394" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b392a7c-bfb9-45cc-b5e7-f1b657a98c41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13488" - ], - "x-ms-correlation-request-id": [ - "88e71c5a-1d4f-4b3c-9e63-91b611c837e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215520Z:88e71c5a-1d4f-4b3c-9e63-91b611c837e6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa447768-b5b7-4cd6-8e8a-9ad7aa663f1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13487" - ], - "x-ms-correlation-request-id": [ - "4f40ffca-2c4d-4b0c-8203-c10e4faaf2f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215520Z:4f40ffca-2c4d-4b0c-8203-c10e4faaf2f4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d91481ed-2e3e-4303-99f1-6905ff2756ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13486" - ], - "x-ms-correlation-request-id": [ - "efec11f1-d45a-4ef4-aef3-d3060014072b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215520Z:efec11f1-d45a-4ef4-aef3-d3060014072b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3634ab6e-65cd-4105-a96e-51c00135e522" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13485" - ], - "x-ms-correlation-request-id": [ - "d4abe02a-6adc-4dba-a555-e421ef20b602" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215520Z:d4abe02a-6adc-4dba-a555-e421ef20b602" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e093e25d-f72f-4a4f-9d50-fb525d448176" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13484" - ], - "x-ms-correlation-request-id": [ - "536622f3-845c-489e-bf71-62ca203690f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215521Z:536622f3-845c-489e-bf71-62ca203690f8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "abbf7462-b5e4-4c68-826c-eeb668fa9f45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13483" - ], - "x-ms-correlation-request-id": [ - "74879301-e8e6-4fd4-b836-58cdf6cfde41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215521Z:74879301-e8e6-4fd4-b836-58cdf6cfde41" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4bdabba9-b446-4ec7-9931-f9580e17a40c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13482" - ], - "x-ms-correlation-request-id": [ - "a4f670e6-afbb-4efa-9490-e9d4cb4c0c74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215521Z:a4f670e6-afbb-4efa-9490-e9d4cb4c0c74" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc629cd1-cc4e-436d-a953-5afba05c3a52" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13481" - ], - "x-ms-correlation-request-id": [ - "46ce623d-44d1-40a7-b67c-7ec8d6ead02f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215521Z:46ce623d-44d1-40a7-b67c-7ec8d6ead02f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5efdfc8b-f7a8-4f2a-bb3d-9d0ccd41498f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13480" - ], - "x-ms-correlation-request-id": [ - "f8db7829-1751-43b6-93c0-e7f418572048" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215521Z:f8db7829-1751-43b6-93c0-e7f418572048" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "abc22a06-fcb3-4cc7-932d-1fa8f617936c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13479" - ], - "x-ms-correlation-request-id": [ - "75770d74-cc21-4fd6-befb-8694b6307e1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215521Z:75770d74-cc21-4fd6-befb-8694b6307e1f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea752a53-da1a-4e23-ac4b-ba57ecd57b24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13478" - ], - "x-ms-correlation-request-id": [ - "77aecd4a-7fc4-4f0b-86c3-7db4e371607d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215521Z:77aecd4a-7fc4-4f0b-86c3-7db4e371607d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51d688e7-9898-4910-85f2-1182d196c168" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13477" - ], - "x-ms-correlation-request-id": [ - "2df3ad3a-edce-4433-b2fa-4dddf2a86a4d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215522Z:2df3ad3a-edce-4433-b2fa-4dddf2a86a4d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7cbbee26-67be-460c-897a-2e9661d7d303" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13476" - ], - "x-ms-correlation-request-id": [ - "debd320e-26f8-40c0-8968-fd95e46312fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215522Z:debd320e-26f8-40c0-8968-fd95e46312fd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2955cb6f-b971-4999-856a-04750513ecc8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13475" - ], - "x-ms-correlation-request-id": [ - "7ca21eae-83cb-4adb-8eb2-0fac73f04e72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215522Z:7ca21eae-83cb-4adb-8eb2-0fac73f04e72" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b35505c-2da1-401c-8ede-1a04ef6140fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13474" - ], - "x-ms-correlation-request-id": [ - "9e6acd27-287d-422c-b363-a75abbb4b471" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215522Z:9e6acd27-287d-422c-b363-a75abbb4b471" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b55b611a-9c4e-4c43-8632-c18714187988" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13473" - ], - "x-ms-correlation-request-id": [ - "23ac5449-8b37-4288-ae87-9d173845620d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215522Z:23ac5449-8b37-4288-ae87-9d173845620d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "289c7e74-3ee1-42af-9ca3-a2d7d7e88cac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13472" - ], - "x-ms-correlation-request-id": [ - "e20a4a81-5c8c-4333-b80f-1896ec0b1778" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215522Z:e20a4a81-5c8c-4333-b80f-1896ec0b1778" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90045087-f347-4db8-bf26-1bf072ee9eeb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13471" - ], - "x-ms-correlation-request-id": [ - "52f241b3-c762-412d-bddd-e38e84e2fd1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215523Z:52f241b3-c762-412d-bddd-e38e84e2fd1e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ef4ac86-e625-49e0-8d36-fcff63768542" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13470" - ], - "x-ms-correlation-request-id": [ - "fe6a9989-0d53-4620-8a85-67c51cecc19c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215523Z:fe6a9989-0d53-4620-8a85-67c51cecc19c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1757d1b1-6b8f-43d6-bc58-8eb7a649a77b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13469" - ], - "x-ms-correlation-request-id": [ - "8c6a7dfe-0d80-4c81-89b0-e482f4bbcfae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215523Z:8c6a7dfe-0d80-4c81-89b0-e482f4bbcfae" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88170849-4602-4d4c-a3cb-ef45e27d8ada" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13468" - ], - "x-ms-correlation-request-id": [ - "14750a05-71b3-4a23-891e-0c875f7ffa3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215523Z:14750a05-71b3-4a23-891e-0c875f7ffa3c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ac8e86d-0d63-4952-ad37-9686d35277a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13467" - ], - "x-ms-correlation-request-id": [ - "68937c7e-93ce-4049-8ff9-565e19e8a07b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215523Z:68937c7e-93ce-4049-8ff9-565e19e8a07b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38588994-aee4-4263-883b-4ca914264061" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13466" - ], - "x-ms-correlation-request-id": [ - "6e96c1d9-8590-45c5-9776-b22108a6bf2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215524Z:6e96c1d9-8590-45c5-9776-b22108a6bf2e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b197368-5c7d-4ce3-96ba-86d5c909ca04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13465" - ], - "x-ms-correlation-request-id": [ - "8f7c6552-02fa-40fd-a2be-374e8b48d845" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215524Z:8f7c6552-02fa-40fd-a2be-374e8b48d845" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e614f60e-6cb8-4d1d-8d4c-91139130782c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13464" - ], - "x-ms-correlation-request-id": [ - "21a7e21c-1373-47c6-8083-e9badfffa4c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215524Z:21a7e21c-1373-47c6-8083-e9badfffa4c0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4a3e307-4295-46f0-8c83-f265f3f12302" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13463" - ], - "x-ms-correlation-request-id": [ - "45c2d149-eac0-4cd3-a6e6-ece2f5c26d86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215524Z:45c2d149-eac0-4cd3-a6e6-ece2f5c26d86" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0871c7c1-c87a-4aaa-8ce4-10b41900e26f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13462" - ], - "x-ms-correlation-request-id": [ - "ebae3703-cd80-41fa-81b0-493c5361dd80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215524Z:ebae3703-cd80-41fa-81b0-493c5361dd80" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73f03c08-abd8-4b3c-87ad-48820eb7413a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13461" - ], - "x-ms-correlation-request-id": [ - "eb6a4383-f3ec-43cb-9dae-8751523ab87c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215524Z:eb6a4383-f3ec-43cb-9dae-8751523ab87c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7598baf8-9d27-4fb4-ab48-b1156bf17b2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13460" - ], - "x-ms-correlation-request-id": [ - "7bf4af5e-e9ac-47aa-a786-e1f5696f5399" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215525Z:7bf4af5e-e9ac-47aa-a786-e1f5696f5399" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a2734d3e-1775-46cb-a89d-37f67ee0189c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13459" - ], - "x-ms-correlation-request-id": [ - "d925eed4-ac15-4194-a303-2f4ac6954092" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215525Z:d925eed4-ac15-4194-a303-2f4ac6954092" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ea91734-a692-4e00-9ff7-da6711847284" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13458" - ], - "x-ms-correlation-request-id": [ - "b3bd9c2f-6dd1-4876-8af3-4b0446dac48c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215525Z:b3bd9c2f-6dd1-4876-8af3-4b0446dac48c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8a13e49-c44a-40dc-87f6-aef4cf1db60f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13457" - ], - "x-ms-correlation-request-id": [ - "bd6ea227-8ca0-46ad-a8d0-f557858ddc79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215525Z:bd6ea227-8ca0-46ad-a8d0-f557858ddc79" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f66caa66-b693-4b5d-9497-a52ffb595106" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13456" - ], - "x-ms-correlation-request-id": [ - "06acbfe5-90c6-4c55-98f3-754f9267f74a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215525Z:06acbfe5-90c6-4c55-98f3-754f9267f74a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "480c8914-b300-4ffc-9ed6-0cd56bf44180" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13455" - ], - "x-ms-correlation-request-id": [ - "21ad7b09-1547-410c-9a98-5b3f3670c990" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215525Z:21ad7b09-1547-410c-9a98-5b3f3670c990" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6a0c33d-3f2b-44ca-afb8-a5fe7c71c265" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13454" - ], - "x-ms-correlation-request-id": [ - "65abefac-3bcd-4066-a8ad-55c7709852e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215526Z:65abefac-3bcd-4066-a8ad-55c7709852e0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c753696-c053-45fb-8180-e67455af4450" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13453" - ], - "x-ms-correlation-request-id": [ - "38d01b27-9bd4-4b84-ae9e-9b95bad86c72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215526Z:38d01b27-9bd4-4b84-ae9e-9b95bad86c72" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0473b469-5fc7-4bc0-907f-061e29d64cf4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13452" - ], - "x-ms-correlation-request-id": [ - "3abcd51d-699b-4d2e-8cb7-307b93252681" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215526Z:3abcd51d-699b-4d2e-8cb7-307b93252681" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b16011cc-6000-45bf-9451-cf50e66fcd0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13451" - ], - "x-ms-correlation-request-id": [ - "7bced460-289e-4861-9e2d-ceef56c2cfcb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215526Z:7bced460-289e-4861-9e2d-ceef56c2cfcb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee6ab3ab-21f8-48b4-aadc-366170f686a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13450" - ], - "x-ms-correlation-request-id": [ - "a8cb82af-9603-49bd-bcbe-020c0eef8d9c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215526Z:a8cb82af-9603-49bd-bcbe-020c0eef8d9c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6829bb23-74dd-4485-99cb-bb99d6e1ab57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13449" - ], - "x-ms-correlation-request-id": [ - "19272851-28dd-4d2a-b8c4-4f673082b682" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215526Z:19272851-28dd-4d2a-b8c4-4f673082b682" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05e5842d-a574-49c9-a428-69252ace3005" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13448" - ], - "x-ms-correlation-request-id": [ - "238e55d3-bb84-43af-95b1-44407c3dc063" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215526Z:238e55d3-bb84-43af-95b1-44407c3dc063" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb2388cd-3b6a-4ed3-a972-9e35c02b2488" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13447" - ], - "x-ms-correlation-request-id": [ - "8de807b8-ff63-4530-b627-0360fb46750a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215527Z:8de807b8-ff63-4530-b627-0360fb46750a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e674359c-c20f-4dc5-ae95-c662495c9285" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13446" - ], - "x-ms-correlation-request-id": [ - "f87a34ab-281c-48ac-894d-7bcf60ca9c59" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215527Z:f87a34ab-281c-48ac-894d-7bcf60ca9c59" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a97b2aec-a5c1-43fc-9993-a48a248e047e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13445" - ], - "x-ms-correlation-request-id": [ - "705bf36a-733b-4742-8774-09f176e5c9b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215527Z:705bf36a-733b-4742-8774-09f176e5c9b9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3097a0d-1043-422b-ac46-fbe1d57ac215" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13444" - ], - "x-ms-correlation-request-id": [ - "6fb0f438-9aee-4b15-8c34-6613483c3ac9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215527Z:6fb0f438-9aee-4b15-8c34-6613483c3ac9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac3995da-7fd2-4514-802d-9ea1c0697f01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13443" - ], - "x-ms-correlation-request-id": [ - "61cad169-67fd-4183-b107-ffa49696442a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215527Z:61cad169-67fd-4183-b107-ffa49696442a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be2a9858-0c29-4f8b-afb6-b78565bdd853" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13442" - ], - "x-ms-correlation-request-id": [ - "3e668cd0-bef3-457d-8447-34e83a1bfd22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215527Z:3e668cd0-bef3-457d-8447-34e83a1bfd22" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3341aadd-13b9-41bc-88ea-ee0d95aec501" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13441" - ], - "x-ms-correlation-request-id": [ - "348dbc89-47fe-467e-9289-08fd4cd7c30b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215528Z:348dbc89-47fe-467e-9289-08fd4cd7c30b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9dffd387-89ba-40fb-a762-451706bf4821" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13440" - ], - "x-ms-correlation-request-id": [ - "469e4e9d-31c0-4056-8024-563d19c6c450" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215528Z:469e4e9d-31c0-4056-8024-563d19c6c450" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d83989f-7e80-45f2-85d2-4b5de84aba67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13439" - ], - "x-ms-correlation-request-id": [ - "2a2b560f-7df0-4bf8-9a97-163372c91232" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215528Z:2a2b560f-7df0-4bf8-9a97-163372c91232" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1068b554-3b5a-4a6d-81ca-dfe711da5236" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13438" - ], - "x-ms-correlation-request-id": [ - "a887bfc3-9a18-429d-a7e1-683bcdde8b7d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215528Z:a887bfc3-9a18-429d-a7e1-683bcdde8b7d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b9b91d08-5b62-47d8-a261-5c83dc952514" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13437" - ], - "x-ms-correlation-request-id": [ - "bb158790-d1de-4424-80b7-1c4ca140fca5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215528Z:bb158790-d1de-4424-80b7-1c4ca140fca5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25c7021e-eb23-4b60-843a-55b4ada409a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13436" - ], - "x-ms-correlation-request-id": [ - "a6a6fd0a-4185-404e-8119-7f4d9c53cf18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215528Z:a6a6fd0a-4185-404e-8119-7f4d9c53cf18" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60161be1-9c98-47c4-acb2-9fea9ee67127" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13435" - ], - "x-ms-correlation-request-id": [ - "e3c4ff3e-a6ae-4d19-b79d-b6764904b0c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215528Z:e3c4ff3e-a6ae-4d19-b79d-b6764904b0c5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d46478b4-72d9-4e0d-94b5-6032871e762a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13434" - ], - "x-ms-correlation-request-id": [ - "74bcf814-ab26-4906-8fcb-ba31719b6223" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215529Z:74bcf814-ab26-4906-8fcb-ba31719b6223" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0618e0e4-0ced-414e-bd50-02fcf272e712" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13433" - ], - "x-ms-correlation-request-id": [ - "b02cdbfb-1b7a-4bfb-8342-0eb1d17b8266" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215529Z:b02cdbfb-1b7a-4bfb-8342-0eb1d17b8266" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d291b86c-74a2-4038-9c97-4a56c2598e8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13432" - ], - "x-ms-correlation-request-id": [ - "7158d313-2d5c-4dcc-b911-f0304b0e860d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215529Z:7158d313-2d5c-4dcc-b911-f0304b0e860d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90a10cff-2d65-41a0-b94b-8333417f51fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13431" - ], - "x-ms-correlation-request-id": [ - "d281ee2a-64b0-4dfd-9d6e-979e2ff0cb09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215529Z:d281ee2a-64b0-4dfd-9d6e-979e2ff0cb09" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bd19bb7-d3fc-4b20-aa1d-b19ca74cb9eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13430" - ], - "x-ms-correlation-request-id": [ - "de6d9e48-80a2-4ab1-8c92-74c39d18adb7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215529Z:de6d9e48-80a2-4ab1-8c92-74c39d18adb7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3e7fda88-787b-4182-b523-02b0fdcc14a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13429" - ], - "x-ms-correlation-request-id": [ - "f533c007-1195-4eae-a50f-f2a13ce5e297" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215530Z:f533c007-1195-4eae-a50f-f2a13ce5e297" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6557632-5749-4aca-bfb3-6236128bf3a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13428" - ], - "x-ms-correlation-request-id": [ - "b7541102-afad-4674-a156-84b75c55e5ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215530Z:b7541102-afad-4674-a156-84b75c55e5ec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df9a67ab-2a6f-46f5-b13d-103cb7fb66ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13427" - ], - "x-ms-correlation-request-id": [ - "e5cf4063-b516-459f-97f8-4371a9575623" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215530Z:e5cf4063-b516-459f-97f8-4371a9575623" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b696c20-1377-47bd-976b-f9602238c723" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13426" - ], - "x-ms-correlation-request-id": [ - "ea42a4cd-7261-4eaf-ad21-381f38adc58b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215530Z:ea42a4cd-7261-4eaf-ad21-381f38adc58b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86cb7703-57d3-4e80-8846-983ca5b87dbf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13425" - ], - "x-ms-correlation-request-id": [ - "64b317cb-5b86-44b0-b02f-2aebdef80698" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215530Z:64b317cb-5b86-44b0-b02f-2aebdef80698" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed945032-72a1-436d-b4f6-b27a84717291" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13424" - ], - "x-ms-correlation-request-id": [ - "9ed8609a-7ed9-4202-8b27-d4afe7d31481" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215530Z:9ed8609a-7ed9-4202-8b27-d4afe7d31481" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f15321db-d038-4b63-8abd-5b069dfab538" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13423" - ], - "x-ms-correlation-request-id": [ - "f03a2c55-7112-4761-be33-cf4c08c464f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215530Z:f03a2c55-7112-4761-be33-cf4c08c464f4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd22a1ff-6dd3-4884-9f7c-7a5df9ebe99a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13422" - ], - "x-ms-correlation-request-id": [ - "ba3ca246-abb0-4fe2-ba05-31b0c8cc1ed3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215531Z:ba3ca246-abb0-4fe2-ba05-31b0c8cc1ed3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a450c786-58ce-4783-ba25-932bccc24416" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13421" - ], - "x-ms-correlation-request-id": [ - "023dced9-34f3-4b99-893b-461cf2bd5e83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215531Z:023dced9-34f3-4b99-893b-461cf2bd5e83" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b900ffd9-f775-4695-92b8-59e6bd54d592" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13420" - ], - "x-ms-correlation-request-id": [ - "71b39547-05ba-4fab-a23f-b26e94faf6e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215531Z:71b39547-05ba-4fab-a23f-b26e94faf6e9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78042291-9023-484a-b592-39ee8fba9d4f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13419" - ], - "x-ms-correlation-request-id": [ - "3e74bacc-6ca6-48da-9bd4-1c49c09a2b7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215531Z:3e74bacc-6ca6-48da-9bd4-1c49c09a2b7e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7228e6f9-643c-402f-9446-2f4170022adc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13418" - ], - "x-ms-correlation-request-id": [ - "96749dbf-84b0-4694-98a6-ce17b3391135" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215531Z:96749dbf-84b0-4694-98a6-ce17b3391135" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1907b354-646d-4102-8196-17b3d9751d19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13417" - ], - "x-ms-correlation-request-id": [ - "a9d917ac-386a-4458-919e-4d1cc63204ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215531Z:a9d917ac-386a-4458-919e-4d1cc63204ca" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d5933b3-3694-4475-988b-f3b4e47a993a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13416" - ], - "x-ms-correlation-request-id": [ - "6297d3dd-2d80-46cb-b032-5eb9bf0499b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215532Z:6297d3dd-2d80-46cb-b032-5eb9bf0499b9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e61e8b64-5240-4650-a9d5-cb9e0a49ee07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13415" - ], - "x-ms-correlation-request-id": [ - "e11389f2-f8e1-4279-b5c9-a10e92847e04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215532Z:e11389f2-f8e1-4279-b5c9-a10e92847e04" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7065a678-b901-47ae-aeb8-3a87c75b8470" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13414" - ], - "x-ms-correlation-request-id": [ - "23877eed-365e-4072-bf18-0b87112a98d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215532Z:23877eed-365e-4072-bf18-0b87112a98d9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49c2cd8d-a266-44ef-9861-61c3053743b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13413" - ], - "x-ms-correlation-request-id": [ - "624583cc-b663-4088-bb5c-9e7e6714810e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215532Z:624583cc-b663-4088-bb5c-9e7e6714810e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e53a9af-465b-40ca-a6b7-3c1eae92f72e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13412" - ], - "x-ms-correlation-request-id": [ - "da0dc407-649c-402f-a0cf-3c0fc331a08f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215532Z:da0dc407-649c-402f-a0cf-3c0fc331a08f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "485d7a87-de4c-4382-a89c-81256f21cfac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13411" - ], - "x-ms-correlation-request-id": [ - "7afbd0dc-d5b7-4446-948f-9a9b1f5a48b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215532Z:7afbd0dc-d5b7-4446-948f-9a9b1f5a48b5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3262a43a-8dd4-4b25-aaa7-c150457c491f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13410" - ], - "x-ms-correlation-request-id": [ - "180cace3-e31d-46db-9963-ef1fdf5ddcd2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215533Z:180cace3-e31d-46db-9963-ef1fdf5ddcd2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0c057ab7-7da9-4482-802f-dc9d3486a4b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13409" - ], - "x-ms-correlation-request-id": [ - "6f48f613-0f2f-4069-904e-ec45723496b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215533Z:6f48f613-0f2f-4069-904e-ec45723496b7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1cc3de1c-89b7-42a2-8f6f-6440d13372b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13408" - ], - "x-ms-correlation-request-id": [ - "72eff35a-9b44-4552-a0a5-82ca4db01328" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215533Z:72eff35a-9b44-4552-a0a5-82ca4db01328" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c861217f-7b7b-4c5d-b679-1f650f13548d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13407" - ], - "x-ms-correlation-request-id": [ - "8ca83eb3-35b1-4c83-8d47-c9cde4355727" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215533Z:8ca83eb3-35b1-4c83-8d47-c9cde4355727" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2257708a-6a1b-48bf-83e5-f6a45373ae0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13406" - ], - "x-ms-correlation-request-id": [ - "c2583e5e-c9f0-49ea-93d0-4f45cc09a759" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215533Z:c2583e5e-c9f0-49ea-93d0-4f45cc09a759" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ae1ac85-c176-4cd2-9214-7bbb7a7475b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13405" - ], - "x-ms-correlation-request-id": [ - "6317b9e3-a624-486e-bb86-f9a332c53cc5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215533Z:6317b9e3-a624-486e-bb86-f9a332c53cc5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba8411f5-a059-4ea6-8bd5-8faad36be228" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13404" - ], - "x-ms-correlation-request-id": [ - "1ea7446b-0bd6-4f99-8126-d564e29603f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215534Z:1ea7446b-0bd6-4f99-8126-d564e29603f6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2cccf538-87f5-4d4c-a642-39f9af859bf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13403" - ], - "x-ms-correlation-request-id": [ - "40c25778-dc64-415c-81d3-e45c1e4d7334" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215534Z:40c25778-dc64-415c-81d3-e45c1e4d7334" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33fc8ddb-623b-49f7-92fc-d611b2f41d8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13402" - ], - "x-ms-correlation-request-id": [ - "a6eb5162-d859-4d19-8471-b3738e7616bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215534Z:a6eb5162-d859-4d19-8471-b3738e7616bd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dda5409c-d644-4700-82a8-a1562761a578" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13401" - ], - "x-ms-correlation-request-id": [ - "f995e04a-17cd-442f-b8d6-ccfb44c2177d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215534Z:f995e04a-17cd-442f-b8d6-ccfb44c2177d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb5fdc2f-a6e3-4e23-acd3-b2338058ad15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13400" - ], - "x-ms-correlation-request-id": [ - "9508adc2-5faa-4602-a550-8431953ea509" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215534Z:9508adc2-5faa-4602-a550-8431953ea509" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f74ff8d-4512-4f50-9cc2-1da0c7808516" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13399" - ], - "x-ms-correlation-request-id": [ - "531e10f0-9858-41a9-9e11-0c7840a22cc6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215534Z:531e10f0-9858-41a9-9e11-0c7840a22cc6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee117c5b-04ce-4de9-ba42-e347240750cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13398" - ], - "x-ms-correlation-request-id": [ - "a2d03e6d-b79b-4599-a9f1-8d0bae1a905d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215535Z:a2d03e6d-b79b-4599-a9f1-8d0bae1a905d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "082c95fc-f932-445f-aea5-fb11260e00a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13397" - ], - "x-ms-correlation-request-id": [ - "7c55502b-6f83-4374-b1f2-6f6739d8854f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215535Z:7c55502b-6f83-4374-b1f2-6f6739d8854f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa6fb8f3-ad72-44df-8042-316849ca5c75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13396" - ], - "x-ms-correlation-request-id": [ - "9d4747e0-1b25-4b9b-b4d7-4c824712c280" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215535Z:9d4747e0-1b25-4b9b-b4d7-4c824712c280" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c699d97-be24-4721-880d-0764a0495099" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13395" - ], - "x-ms-correlation-request-id": [ - "bc9085ec-8bfe-4fe4-8ebb-262c86faef94" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215535Z:bc9085ec-8bfe-4fe4-8ebb-262c86faef94" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b420a38-9725-4884-8d03-0050c1b29044" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13394" - ], - "x-ms-correlation-request-id": [ - "856b1242-2d92-4af1-961f-c21f1207132b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215535Z:856b1242-2d92-4af1-961f-c21f1207132b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "964a4f60-d5d2-4ff2-a532-8646ca7c582b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13393" - ], - "x-ms-correlation-request-id": [ - "f1093bb2-2ccc-40db-baed-bee457a3b77a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215535Z:f1093bb2-2ccc-40db-baed-bee457a3b77a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "094112dc-9be1-4a01-bed6-57cbcd69bb78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13392" - ], - "x-ms-correlation-request-id": [ - "9789e6ea-6705-4d0f-a975-bbd37d59e1cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215536Z:9789e6ea-6705-4d0f-a975-bbd37d59e1cd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2289c1c2-0b50-43cc-8d9b-0ed0566e6fb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13391" - ], - "x-ms-correlation-request-id": [ - "57372c3c-871b-481b-9ce2-673d308bb672" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215536Z:57372c3c-871b-481b-9ce2-673d308bb672" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "15137d02-c10d-4cdc-b471-b37d2932d171" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13390" - ], - "x-ms-correlation-request-id": [ - "c9dfda7c-a864-46af-a552-0bdaa00780cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215536Z:c9dfda7c-a864-46af-a552-0bdaa00780cd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2fa0c79a-6d15-4214-b09a-dac85c442bd2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13389" - ], - "x-ms-correlation-request-id": [ - "430dca41-48aa-4cd9-aedd-695d94377a54" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215536Z:430dca41-48aa-4cd9-aedd-695d94377a54" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77b8fb1b-d860-4cd1-a626-8e68228c1b68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13388" - ], - "x-ms-correlation-request-id": [ - "8dc8c074-185b-472e-828f-e85b828d6d3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215536Z:8dc8c074-185b-472e-828f-e85b828d6d3b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f105e9da-eb4a-4bef-a210-76a54b78371a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13387" - ], - "x-ms-correlation-request-id": [ - "42fc77bf-94c4-41a2-8b89-8521dbef2703" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215536Z:42fc77bf-94c4-41a2-8b89-8521dbef2703" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0b254ed-b3a9-4770-a53b-0210c6028b84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13386" - ], - "x-ms-correlation-request-id": [ - "c1023cdb-b765-487e-8dd2-47ffa23ec3d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215536Z:c1023cdb-b765-487e-8dd2-47ffa23ec3d9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60e0c945-7bb5-4725-b1f4-58fc2df11935" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13385" - ], - "x-ms-correlation-request-id": [ - "4d801291-9835-49ae-956e-5d81c0b0a121" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215537Z:4d801291-9835-49ae-956e-5d81c0b0a121" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bbcab8f-8ae1-4933-9130-4778df2a741b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13384" - ], - "x-ms-correlation-request-id": [ - "b4316740-32ba-4308-a26f-ddcaa28bf04a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215537Z:b4316740-32ba-4308-a26f-ddcaa28bf04a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef8ab55c-294a-4b24-a0f1-8022638f8900" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13383" - ], - "x-ms-correlation-request-id": [ - "f2db3ae5-8e4c-4788-ab0b-3caea41ecadd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215537Z:f2db3ae5-8e4c-4788-ab0b-3caea41ecadd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0eb36338-b1ce-4f93-95a4-5bda00704dd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13382" - ], - "x-ms-correlation-request-id": [ - "3ea46a9c-2bf0-4053-9df6-e02faedc9ad5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215537Z:3ea46a9c-2bf0-4053-9df6-e02faedc9ad5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d78f5866-c769-4c92-af91-7b3dfcff24f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13381" - ], - "x-ms-correlation-request-id": [ - "4c6eee42-1330-4a05-b230-86b77eefcf96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215537Z:4c6eee42-1330-4a05-b230-86b77eefcf96" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f7ff770-0800-459b-b963-04d5bcab42ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13380" - ], - "x-ms-correlation-request-id": [ - "86a64993-739a-48d5-a87f-ea305dda43d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215537Z:86a64993-739a-48d5-a87f-ea305dda43d7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "acf0e412-0a63-4196-8f62-2c6964284c56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13379" - ], - "x-ms-correlation-request-id": [ - "66eab7e6-345e-4cbe-94ce-8e564e74561b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215537Z:66eab7e6-345e-4cbe-94ce-8e564e74561b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb41049f-9ec9-421b-837f-47aae7881eb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13378" - ], - "x-ms-correlation-request-id": [ - "cdf431f9-89ec-415a-9b4f-cc2942b33813" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215538Z:cdf431f9-89ec-415a-9b4f-cc2942b33813" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8dee5bcb-8511-4060-915e-3ff322231e26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13377" - ], - "x-ms-correlation-request-id": [ - "c4e7ab94-4d7e-4adc-b582-cbf255716326" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215538Z:c4e7ab94-4d7e-4adc-b582-cbf255716326" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0bf58f53-608b-4fce-af8b-740d006ab261" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13376" - ], - "x-ms-correlation-request-id": [ - "e15f605f-b759-4974-a72d-ad61e60444e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215538Z:e15f605f-b759-4974-a72d-ad61e60444e6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "845c613c-3110-44a6-be81-2decc82ebaea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13375" - ], - "x-ms-correlation-request-id": [ - "0781d8d5-8a39-49a3-a8df-ab1a195ea0c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215538Z:0781d8d5-8a39-49a3-a8df-ab1a195ea0c8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1d19431-91dd-43c8-b76f-661b1d66dafd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13374" - ], - "x-ms-correlation-request-id": [ - "32201820-e416-41e2-b810-f2dbe609c56f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215538Z:32201820-e416-41e2-b810-f2dbe609c56f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28db92c9-d756-4af5-b6a4-09ce0a080b7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13373" - ], - "x-ms-correlation-request-id": [ - "6ed74302-2244-4cbe-b930-7e7dfda559cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215538Z:6ed74302-2244-4cbe-b930-7e7dfda559cd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11e3543c-b77f-4525-82ec-63e1bda1a059" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13372" - ], - "x-ms-correlation-request-id": [ - "4fc9b20d-d411-4054-abc1-89fe4cdcc882" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215539Z:4fc9b20d-d411-4054-abc1-89fe4cdcc882" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0079f34-76c1-416f-89ce-f2bd180e8571" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13371" - ], - "x-ms-correlation-request-id": [ - "c814f874-fb9f-480a-bd2b-59477bb6c691" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215539Z:c814f874-fb9f-480a-bd2b-59477bb6c691" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "066e8932-3e6b-4733-98cf-159d2d5aef51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13370" - ], - "x-ms-correlation-request-id": [ - "6c481948-c994-430f-bd2e-380175f7f60b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215539Z:6c481948-c994-430f-bd2e-380175f7f60b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75a245d9-6555-4bb4-ba81-7f61fb104cde" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13369" - ], - "x-ms-correlation-request-id": [ - "2fb6bda1-b708-4ad4-9d15-e6e644276181" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215539Z:2fb6bda1-b708-4ad4-9d15-e6e644276181" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9fcc6c40-3b51-4824-95f2-98c2df13dacb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13368" - ], - "x-ms-correlation-request-id": [ - "4b23e31d-f711-41e0-82e6-e71f45db87d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215539Z:4b23e31d-f711-41e0-82e6-e71f45db87d0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3862928-130b-4e1a-b5e0-7195f08fe48f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13367" - ], - "x-ms-correlation-request-id": [ - "62f6bf54-492a-4202-a89d-b1dbaf71c336" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215539Z:62f6bf54-492a-4202-a89d-b1dbaf71c336" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8801dfa3-f9f4-4f78-b4c6-80036ce72175" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13366" - ], - "x-ms-correlation-request-id": [ - "1120d623-df93-4034-97a4-ceb7e74ee8ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215539Z:1120d623-df93-4034-97a4-ceb7e74ee8ec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bbe77206-831c-45d2-9257-217d39248152" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13365" - ], - "x-ms-correlation-request-id": [ - "9782d793-8628-4a7b-b711-390897b84019" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215540Z:9782d793-8628-4a7b-b711-390897b84019" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43158b15-8b1b-43e2-9bf3-9a484fbb3b3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13364" - ], - "x-ms-correlation-request-id": [ - "396e85f4-e6c6-44d8-b75f-899bbbbb5934" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215540Z:396e85f4-e6c6-44d8-b75f-899bbbbb5934" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdbb40a6-9ed7-400d-91d6-94120dcb991c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13363" - ], - "x-ms-correlation-request-id": [ - "c82c834e-8612-4956-9569-27312250691d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215540Z:c82c834e-8612-4956-9569-27312250691d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ace71ea-29aa-4a78-9f34-75ffa1d47833" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13362" - ], - "x-ms-correlation-request-id": [ - "f3442607-a218-4bdc-a14d-64c57ea4a4d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215540Z:f3442607-a218-4bdc-a14d-64c57ea4a4d9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "701b88e5-c963-4303-9b81-02afdf00aa11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13361" - ], - "x-ms-correlation-request-id": [ - "c3175c8e-6e3f-4c4e-9fd9-b92e9ba2e66b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215540Z:c3175c8e-6e3f-4c4e-9fd9-b92e9ba2e66b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "66129be6-504c-4357-a3f3-ab0cb8097be1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13360" - ], - "x-ms-correlation-request-id": [ - "568d7125-81d1-4982-9019-66cdcb445ec2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215540Z:568d7125-81d1-4982-9019-66cdcb445ec2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efb8861f-e16e-4fe2-91ef-978aba5b356b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13359" - ], - "x-ms-correlation-request-id": [ - "71a80219-d4ca-4c8e-8185-d67dbfd2b095" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215540Z:71a80219-d4ca-4c8e-8185-d67dbfd2b095" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5b5b974-b252-4a21-9a85-e3c84f62fe44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13358" - ], - "x-ms-correlation-request-id": [ - "78430636-7e31-49f5-addb-830df15f54fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215541Z:78430636-7e31-49f5-addb-830df15f54fb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a2fff62-650c-4440-9440-94de9d5b84dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13357" - ], - "x-ms-correlation-request-id": [ - "7f8aabf8-f14e-40e9-a8c5-8219a9ba58f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215541Z:7f8aabf8-f14e-40e9-a8c5-8219a9ba58f3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef5f20ef-59f4-42da-b020-f306c3501fac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13356" - ], - "x-ms-correlation-request-id": [ - "14da56be-7f86-48cb-89f9-5614ac997935" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215541Z:14da56be-7f86-48cb-89f9-5614ac997935" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "231ef9c9-b76b-4fc3-8f2c-60c686019a54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13355" - ], - "x-ms-correlation-request-id": [ - "1aacc3dc-4d17-4b38-8c77-122904941eef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215541Z:1aacc3dc-4d17-4b38-8c77-122904941eef" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b012509-b8c9-47cb-bb94-3719d0b7536c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13354" - ], - "x-ms-correlation-request-id": [ - "39dd5683-0ae6-49e8-b4d9-c53fcf761460" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215541Z:39dd5683-0ae6-49e8-b4d9-c53fcf761460" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5b46ed5-e9c4-4d0b-a6a5-9cf318cb7a2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13353" - ], - "x-ms-correlation-request-id": [ - "a3782dad-641c-40d0-bb4c-918b6f481757" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215541Z:a3782dad-641c-40d0-bb4c-918b6f481757" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "709476fb-97d9-4986-910e-9a5dcbdd78df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13352" - ], - "x-ms-correlation-request-id": [ - "ec613305-95a1-4faa-8ef5-723cebf4097e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215541Z:ec613305-95a1-4faa-8ef5-723cebf4097e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e56c3844-7309-46ce-8154-a525c40c5497" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13351" - ], - "x-ms-correlation-request-id": [ - "b655d1cd-3c97-4904-aa86-e4d2a5ce2b6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215542Z:b655d1cd-3c97-4904-aa86-e4d2a5ce2b6d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "daf18e3b-0577-4b19-a3e8-2c04ae622f3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13350" - ], - "x-ms-correlation-request-id": [ - "c15e12d5-c9fd-45e1-8787-b243d75daf47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215542Z:c15e12d5-c9fd-45e1-8787-b243d75daf47" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3183c43b-82af-4076-9a1d-8bfb038f623e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13349" - ], - "x-ms-correlation-request-id": [ - "b206567e-a858-49ef-a789-14667678035e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215542Z:b206567e-a858-49ef-a789-14667678035e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cde247a5-3b2d-4615-b09c-15bddff19be2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13348" - ], - "x-ms-correlation-request-id": [ - "fc6b37bf-100e-4b97-bfb9-d71b0a0debc0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215542Z:fc6b37bf-100e-4b97-bfb9-d71b0a0debc0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87488242-a964-4ab5-8e75-3c2c06cbad3e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13347" - ], - "x-ms-correlation-request-id": [ - "9ca9b226-1381-43a5-b340-a3350bf113d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215542Z:9ca9b226-1381-43a5-b340-a3350bf113d1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba8e23e9-73de-426e-a44d-5a63954dccd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13346" - ], - "x-ms-correlation-request-id": [ - "7c385a9b-647a-4a6a-9a2c-2709467428bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215542Z:7c385a9b-647a-4a6a-9a2c-2709467428bf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6fb552b3-bd43-48bd-8d59-7db023238104" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13345" - ], - "x-ms-correlation-request-id": [ - "57d49f87-d925-4d6f-8fde-5d98c5bfba72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215543Z:57d49f87-d925-4d6f-8fde-5d98c5bfba72" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e65c8cb-f0db-42ba-9210-b430f57d3df9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13344" - ], - "x-ms-correlation-request-id": [ - "1bdfdcbb-6837-4b78-a620-74a76e4b344e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215543Z:1bdfdcbb-6837-4b78-a620-74a76e4b344e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54a9603b-56e0-44b1-9ff1-b8744368586a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13343" - ], - "x-ms-correlation-request-id": [ - "9b27844d-301a-47bf-8212-13b07d3ee324" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215543Z:9b27844d-301a-47bf-8212-13b07d3ee324" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4142670-c6de-44f5-ab27-26f874e16520" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13342" - ], - "x-ms-correlation-request-id": [ - "afb05078-8ace-4af3-a9fc-0d280ebf425a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215543Z:afb05078-8ace-4af3-a9fc-0d280ebf425a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c9a824a-7821-41b9-a253-05fccb502dc9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13341" - ], - "x-ms-correlation-request-id": [ - "b3ba59fb-df17-4634-9e97-82cb8239054f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215543Z:b3ba59fb-df17-4634-9e97-82cb8239054f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79d73ac1-561a-437a-a2c7-bc2714008513" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13340" - ], - "x-ms-correlation-request-id": [ - "5e009461-a9c1-4e60-8681-1ef5d2a510da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215543Z:5e009461-a9c1-4e60-8681-1ef5d2a510da" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "073c1222-7131-4405-8d09-1dd083b798e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13339" - ], - "x-ms-correlation-request-id": [ - "021366c8-dd1d-4cf3-bb28-6a6fee29af5f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215543Z:021366c8-dd1d-4cf3-bb28-6a6fee29af5f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00117f0a-7611-423c-8e55-5b081726f6ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13338" - ], - "x-ms-correlation-request-id": [ - "d41fd377-3640-4d1a-a74f-dd7b7b36f30b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215544Z:d41fd377-3640-4d1a-a74f-dd7b7b36f30b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5de070b7-521a-407a-a2b6-5208749ed737" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13337" - ], - "x-ms-correlation-request-id": [ - "9496c763-c4f8-4c57-a951-d5998058e9aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215544Z:9496c763-c4f8-4c57-a951-d5998058e9aa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3367149-2b9a-45a0-bae7-e7cfcc4c34dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13336" - ], - "x-ms-correlation-request-id": [ - "31921d63-a0cc-44e3-9e9e-c9e2d8a13d29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215544Z:31921d63-a0cc-44e3-9e9e-c9e2d8a13d29" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2f0ee89-1ca9-4983-b285-f88a7f0fdc85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13335" - ], - "x-ms-correlation-request-id": [ - "29f7b8dc-8e11-4cae-aebf-c5b2172e144f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215544Z:29f7b8dc-8e11-4cae-aebf-c5b2172e144f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b164f58a-2d35-475e-a836-1e1b0dfbee95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13334" - ], - "x-ms-correlation-request-id": [ - "671b68cd-61a3-497a-89d1-e6f6fdfa6e97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215544Z:671b68cd-61a3-497a-89d1-e6f6fdfa6e97" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05879948-3de5-4833-a31c-4775f2e73e50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13333" - ], - "x-ms-correlation-request-id": [ - "183326dd-ba73-456e-abab-80add617a4df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215544Z:183326dd-ba73-456e-abab-80add617a4df" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e65d3135-7a95-4fe6-b72c-ad8e35c86884" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13332" - ], - "x-ms-correlation-request-id": [ - "b1fb0985-e4a7-417c-b3ae-daeb7b5cf086" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215544Z:b1fb0985-e4a7-417c-b3ae-daeb7b5cf086" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d15936a-55d3-4d99-b01e-f826bcea11c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13331" - ], - "x-ms-correlation-request-id": [ - "5e06cbd8-791b-4b09-9706-0aa1fbb34851" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215545Z:5e06cbd8-791b-4b09-9706-0aa1fbb34851" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a575e6d6-fea9-4ca9-9b79-bae2b6825620" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13330" - ], - "x-ms-correlation-request-id": [ - "5ce86cb1-49f1-4301-9a0a-3020e216f83a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215545Z:5ce86cb1-49f1-4301-9a0a-3020e216f83a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "890f4ce9-954e-4489-83cc-d76e2d208c30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13329" - ], - "x-ms-correlation-request-id": [ - "f1700e0d-a1eb-4058-af17-50bcc979f77d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215545Z:f1700e0d-a1eb-4058-af17-50bcc979f77d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2071c5c1-d15e-4a17-afcf-ecaec3ea6b3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13328" - ], - "x-ms-correlation-request-id": [ - "21f81786-c7a3-4b12-848e-e88fa2d92477" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215545Z:21f81786-c7a3-4b12-848e-e88fa2d92477" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5133b79d-047d-4552-8138-c77125c15d03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13327" - ], - "x-ms-correlation-request-id": [ - "711c7d15-d66b-4583-8346-0c84e6581d66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215547Z:711c7d15-d66b-4583-8346-0c84e6581d66" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a7fb602-fedf-45fb-ba36-1ba89b338109" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13326" - ], - "x-ms-correlation-request-id": [ - "6eb842c0-264d-4496-9907-fd0f2f74a279" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215548Z:6eb842c0-264d-4496-9907-fd0f2f74a279" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14cb8b12-46ca-44c5-ae9f-85f8005f4018" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13325" - ], - "x-ms-correlation-request-id": [ - "83bcc769-5a49-4078-bb30-23d7745e9445" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215548Z:83bcc769-5a49-4078-bb30-23d7745e9445" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a0b390b-066c-4e11-96a6-af882e7dd0cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13324" - ], - "x-ms-correlation-request-id": [ - "186c7b6a-5c10-4bfc-9acc-c358f3661c80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215548Z:186c7b6a-5c10-4bfc-9acc-c358f3661c80" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5ac60dc-1be6-4092-b99d-77c26dd3a46c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13323" - ], - "x-ms-correlation-request-id": [ - "82fd200c-336a-41d4-b740-c4368e4792c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215548Z:82fd200c-336a-41d4-b740-c4368e4792c6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98c225da-9cfa-4e73-9ed2-627339e756fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13322" - ], - "x-ms-correlation-request-id": [ - "94c2bf67-ebb2-48a3-961d-1e868c52b870" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215548Z:94c2bf67-ebb2-48a3-961d-1e868c52b870" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fec5d42f-ce07-48a2-b360-a9d80384cf65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13321" - ], - "x-ms-correlation-request-id": [ - "3ea7cd2c-fd5f-495c-8075-d3b4006d21f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215549Z:3ea7cd2c-fd5f-495c-8075-d3b4006d21f1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1447d85-12e9-46a5-833b-d56a29c820f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13320" - ], - "x-ms-correlation-request-id": [ - "e5818b88-adcd-453e-b898-4cca4de69517" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215549Z:e5818b88-adcd-453e-b898-4cca4de69517" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5f1cf0f-56b1-456a-b06c-7fd20c457d1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13319" - ], - "x-ms-correlation-request-id": [ - "504a25da-fb84-43d3-86e2-99aef321c13a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215549Z:504a25da-fb84-43d3-86e2-99aef321c13a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60730084-302a-4164-9616-4afcdfd8cde1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13318" - ], - "x-ms-correlation-request-id": [ - "696a0bac-569e-47e0-b903-0b5494fb0c31" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215549Z:696a0bac-569e-47e0-b903-0b5494fb0c31" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e47aaa3-e668-44b6-8aad-f25eebe4a79e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13317" - ], - "x-ms-correlation-request-id": [ - "68e4e2ac-0035-4109-948e-85c6000bdf9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215549Z:68e4e2ac-0035-4109-948e-85c6000bdf9d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1690eecd-acbb-409e-8c05-dea903a2e754" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13316" - ], - "x-ms-correlation-request-id": [ - "2cc4302f-b20e-4dc4-8cd8-e44026133a61" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215549Z:2cc4302f-b20e-4dc4-8cd8-e44026133a61" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40fddaf2-0f09-48c9-9f2e-31f5c49a28b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13315" - ], - "x-ms-correlation-request-id": [ - "6f2c0e87-322b-432e-9a1d-4fd9cd7e3b7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215550Z:6f2c0e87-322b-432e-9a1d-4fd9cd7e3b7a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db229f90-503b-4eb3-97b0-f0fa7ed36b1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13314" - ], - "x-ms-correlation-request-id": [ - "c10e3087-7dc6-4c1c-99fa-1918779c6007" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215550Z:c10e3087-7dc6-4c1c-99fa-1918779c6007" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "026dca9a-081f-4748-ab4c-d12fb1b04d58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13313" - ], - "x-ms-correlation-request-id": [ - "ce4c3864-da80-457c-b4a5-35d5f8ad10a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215550Z:ce4c3864-da80-457c-b4a5-35d5f8ad10a2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "09846c7f-af29-4337-95ab-ebad6db15dcd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13312" - ], - "x-ms-correlation-request-id": [ - "7581197a-1075-4049-b8d6-3187c890011d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215550Z:7581197a-1075-4049-b8d6-3187c890011d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f934011-58b2-4af5-9c69-a20c497895ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13311" - ], - "x-ms-correlation-request-id": [ - "4cc40195-18ca-4789-8022-ddf923601911" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215550Z:4cc40195-18ca-4789-8022-ddf923601911" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8b0a7d6-80f1-4a18-9449-0092a4c456fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13310" - ], - "x-ms-correlation-request-id": [ - "ea6997bf-9eee-4ed8-8775-c138a5749a54" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215551Z:ea6997bf-9eee-4ed8-8775-c138a5749a54" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6843a15-27da-4da4-907d-1a9cf55dd682" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13309" - ], - "x-ms-correlation-request-id": [ - "cdf4b0de-575c-4d17-867c-5deb4775bd30" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215551Z:cdf4b0de-575c-4d17-867c-5deb4775bd30" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25e6a65c-36c4-43fe-a219-33abadd6d42e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13308" - ], - "x-ms-correlation-request-id": [ - "f0676a4d-90db-4b57-a77d-71f2e7d42433" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215551Z:f0676a4d-90db-4b57-a77d-71f2e7d42433" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9fffa107-b82d-44e8-a0fd-0baa1498b7d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13307" - ], - "x-ms-correlation-request-id": [ - "f80d7974-bb32-4e02-9a2c-e2c7729d8e55" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215551Z:f80d7974-bb32-4e02-9a2c-e2c7729d8e55" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a65d2459-e21e-4ddc-835f-93ae4839c4a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13306" - ], - "x-ms-correlation-request-id": [ - "faac978f-37dc-41b3-934f-eac71d6899b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215552Z:faac978f-37dc-41b3-934f-eac71d6899b3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f9a5a67-df83-43ed-9e74-e4f51db50db5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13305" - ], - "x-ms-correlation-request-id": [ - "42f8608e-9d55-46f2-a347-da73b576f502" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215552Z:42f8608e-9d55-46f2-a347-da73b576f502" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f2236b7-3328-4ebb-af4a-3b675cbf60c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13304" - ], - "x-ms-correlation-request-id": [ - "db8b7c1d-0c92-40b6-bc2a-9ec102797d10" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215552Z:db8b7c1d-0c92-40b6-bc2a-9ec102797d10" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f468ff8-128b-4712-9e75-deb6d9eafbab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13303" - ], - "x-ms-correlation-request-id": [ - "5bf7548a-3a02-4e64-bd75-d6805e90c087" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215552Z:5bf7548a-3a02-4e64-bd75-d6805e90c087" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d08fef6-771a-409e-be37-95bbfa8c171d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13302" - ], - "x-ms-correlation-request-id": [ - "a878df1c-7aee-4052-bd0f-e027b89090b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215552Z:a878df1c-7aee-4052-bd0f-e027b89090b5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f3f2346-ac8c-42d5-b94a-1c916aa8d9c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13301" - ], - "x-ms-correlation-request-id": [ - "a2773eae-9117-4aaf-b45b-e383418a5efd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215552Z:a2773eae-9117-4aaf-b45b-e383418a5efd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6be02a97-6d0c-416f-b284-91005c1be2ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13300" - ], - "x-ms-correlation-request-id": [ - "56de48b1-4a04-45e7-9f6d-5fbc0dff635b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215553Z:56de48b1-4a04-45e7-9f6d-5fbc0dff635b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c11d30d-8419-461b-bdcd-aa12b457d157" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13299" - ], - "x-ms-correlation-request-id": [ - "1b6bec61-62aa-4be2-9373-1aaa271b6978" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215553Z:1b6bec61-62aa-4be2-9373-1aaa271b6978" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95fb0528-da03-474d-a924-9f2dc616585b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13298" - ], - "x-ms-correlation-request-id": [ - "16566f05-8a43-4679-82e3-23d61567d4a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215553Z:16566f05-8a43-4679-82e3-23d61567d4a2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49837225-7c08-4f6c-9bc9-fc503a76434b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13297" - ], - "x-ms-correlation-request-id": [ - "d83afcc6-1add-40d3-9637-7903c981bfa2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215553Z:d83afcc6-1add-40d3-9637-7903c981bfa2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cff89aea-f04c-4dda-8ea1-e473737dd9b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13296" - ], - "x-ms-correlation-request-id": [ - "54b75e64-b012-44a5-8e92-968f03b254fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215553Z:54b75e64-b012-44a5-8e92-968f03b254fd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c024a742-79dd-4219-a364-2f796fc60e88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13295" - ], - "x-ms-correlation-request-id": [ - "1d810e16-6b46-4f2d-9c62-ccc597cc109b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215553Z:1d810e16-6b46-4f2d-9c62-ccc597cc109b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63cd70cb-df54-47ec-8143-0834e9744591" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13294" - ], - "x-ms-correlation-request-id": [ - "d4958744-cb67-4184-9475-52b5b7e42ced" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215554Z:d4958744-cb67-4184-9475-52b5b7e42ced" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "50b18c42-defe-45db-8d76-539ec876751e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13293" - ], - "x-ms-correlation-request-id": [ - "d1be38ed-1938-4d55-acd1-d873699c158e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215554Z:d1be38ed-1938-4d55-acd1-d873699c158e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0967b356-f0b9-454e-a93e-7026c192c658" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13292" - ], - "x-ms-correlation-request-id": [ - "afbd8199-2256-4a59-b7f6-9554f93f45a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215554Z:afbd8199-2256-4a59-b7f6-9554f93f45a8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44f6c67a-86ca-4336-83ef-a7bcab858282" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13291" - ], - "x-ms-correlation-request-id": [ - "8a0b546e-ba77-4661-8b13-8f42196b4d94" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215554Z:8a0b546e-ba77-4661-8b13-8f42196b4d94" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c59ad237-8e52-464c-afbf-7ed3cf425b8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13290" - ], - "x-ms-correlation-request-id": [ - "3c1fc043-faf2-469b-9f7e-71d1b0f88c48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215554Z:3c1fc043-faf2-469b-9f7e-71d1b0f88c48" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9732eed3-2a0a-4595-b77d-8c7bfe009d0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13289" - ], - "x-ms-correlation-request-id": [ - "910b3996-697b-4d28-a75e-0833474776ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215554Z:910b3996-697b-4d28-a75e-0833474776ae" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f9a0514-706e-413b-be79-ac5548eec974" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13288" - ], - "x-ms-correlation-request-id": [ - "f22a51a2-3538-4c95-b012-603dc10f28c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215555Z:f22a51a2-3538-4c95-b012-603dc10f28c0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb12c80d-9ec5-4a4f-887e-b70eb3ca5cda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13287" - ], - "x-ms-correlation-request-id": [ - "81550254-01d5-4301-9b84-61e280e3432d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215555Z:81550254-01d5-4301-9b84-61e280e3432d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1cd0695-02c4-43f8-86b8-13a167ed2842" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13286" - ], - "x-ms-correlation-request-id": [ - "1f8b48f5-8c02-408c-b479-5c37fd465721" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215555Z:1f8b48f5-8c02-408c-b479-5c37fd465721" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0077386-a41b-4212-8223-dda55bbc0479" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13285" - ], - "x-ms-correlation-request-id": [ - "6818925b-3011-494f-bcf9-89e74f02b6e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215555Z:6818925b-3011-494f-bcf9-89e74f02b6e5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19fc4feb-52d6-46cf-b372-4c3af7ee7755" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13284" - ], - "x-ms-correlation-request-id": [ - "b069a6b7-b784-4980-a794-cfcfc6da5ff5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215555Z:b069a6b7-b784-4980-a794-cfcfc6da5ff5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76e6bb8a-ed90-4087-bcc0-6df5b407d531" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13283" - ], - "x-ms-correlation-request-id": [ - "38c114f4-bbef-4ef9-9d92-81dfc9516af5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215555Z:38c114f4-bbef-4ef9-9d92-81dfc9516af5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8b1da16-bce2-45a3-bce1-5b0a55a6aa2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13282" - ], - "x-ms-correlation-request-id": [ - "9fb667f6-1310-4ba3-8943-7469a5bee77a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215556Z:9fb667f6-1310-4ba3-8943-7469a5bee77a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "159c1a8b-dc5d-405e-8968-5939556aaa13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13281" - ], - "x-ms-correlation-request-id": [ - "75249798-70dd-4743-9201-1922bc302820" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215556Z:75249798-70dd-4743-9201-1922bc302820" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a6da0c1-3f4e-497a-9098-73f8d5313392" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13280" - ], - "x-ms-correlation-request-id": [ - "5229cd5a-0587-4a4a-b2b9-107a0df3f75d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215556Z:5229cd5a-0587-4a4a-b2b9-107a0df3f75d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19217dc8-abcc-4632-bccf-85fc401d4ead" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13279" - ], - "x-ms-correlation-request-id": [ - "a9c58935-1706-4220-b0e4-1bbdd5a88eef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215556Z:a9c58935-1706-4220-b0e4-1bbdd5a88eef" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4bbb8a79-c321-4a2e-8122-c3fde6227777" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13278" - ], - "x-ms-correlation-request-id": [ - "6d40c686-33a7-4e94-9e9c-f8b0ac310309" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215556Z:6d40c686-33a7-4e94-9e9c-f8b0ac310309" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b178d634-ff58-4ccc-856a-09bf4a39e444" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13277" - ], - "x-ms-correlation-request-id": [ - "2b326782-526c-4cad-b45f-48b8ba228cf5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215556Z:2b326782-526c-4cad-b45f-48b8ba228cf5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "495069a0-4417-4db4-bfdc-377fc8d6a379" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13276" - ], - "x-ms-correlation-request-id": [ - "c5fb61e6-a9b4-46d5-ae3e-f4e02dbc1d65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215557Z:c5fb61e6-a9b4-46d5-ae3e-f4e02dbc1d65" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48fbc906-ced3-4a8c-9300-05d865b014f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13275" - ], - "x-ms-correlation-request-id": [ - "7d0868bb-802d-4a80-8f62-dbb5647a15b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215557Z:7d0868bb-802d-4a80-8f62-dbb5647a15b1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc287511-8d56-4db0-98ac-249f4d37330e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13274" - ], - "x-ms-correlation-request-id": [ - "8f0ccdf3-5a9f-46de-ab8f-d74ca5b511ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215557Z:8f0ccdf3-5a9f-46de-ab8f-d74ca5b511ee" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "878bd351-5ddf-46e4-8d0b-0b980ff25a04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13273" - ], - "x-ms-correlation-request-id": [ - "2428e2ac-f6f5-4ea2-8dd3-ee26104530b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215557Z:2428e2ac-f6f5-4ea2-8dd3-ee26104530b4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc0cdcf2-75af-45c9-b8eb-1fb9b62b68bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13272" - ], - "x-ms-correlation-request-id": [ - "d5f42748-b613-4c41-bba7-31883c9d6b65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215557Z:d5f42748-b613-4c41-bba7-31883c9d6b65" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7296ceb3-5642-44c9-941b-36111ee30fdb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13271" - ], - "x-ms-correlation-request-id": [ - "c3d8c238-ae02-41c3-8735-c1c9fc51be80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215557Z:c3d8c238-ae02-41c3-8735-c1c9fc51be80" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81411d43-c7a7-4584-a189-7d012ca04a71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13270" - ], - "x-ms-correlation-request-id": [ - "d8150ef8-5eec-4764-a15a-50c366681ad1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215558Z:d8150ef8-5eec-4764-a15a-50c366681ad1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1bf6982d-b7b1-4dfc-9dec-8094f3326bd2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13269" - ], - "x-ms-correlation-request-id": [ - "beb207c1-79df-429c-8313-4c7d343bfcb3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215558Z:beb207c1-79df-429c-8313-4c7d343bfcb3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "15266cd5-25b7-4aea-b359-f24b86eb864a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13268" - ], - "x-ms-correlation-request-id": [ - "ad5a0fa9-f1dd-4f5a-91c1-13944ff26350" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215558Z:ad5a0fa9-f1dd-4f5a-91c1-13944ff26350" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52704ab6-0f33-4189-a96c-6e725bcc9590" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13267" - ], - "x-ms-correlation-request-id": [ - "1f868538-ebbc-4209-b546-64d4ffb23807" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215558Z:1f868538-ebbc-4209-b546-64d4ffb23807" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6940b87-94b3-4a0d-b9fe-96568fff1232" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13266" - ], - "x-ms-correlation-request-id": [ - "ec9d1632-df49-4b88-9f23-d8f7f444bc42" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215558Z:ec9d1632-df49-4b88-9f23-d8f7f444bc42" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "819df588-c68b-44c1-a2a7-f43ec0284c89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13265" - ], - "x-ms-correlation-request-id": [ - "af93f082-fa92-4dd7-a8cf-8a9627dbdfa5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215558Z:af93f082-fa92-4dd7-a8cf-8a9627dbdfa5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85c79ece-4530-469b-9aff-a68f4bedbf40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13264" - ], - "x-ms-correlation-request-id": [ - "51e0b769-6e5e-49a9-977a-3a7824942dcc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215559Z:51e0b769-6e5e-49a9-977a-3a7824942dcc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c64119f-3407-4d18-a993-9c236fcda8e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13263" - ], - "x-ms-correlation-request-id": [ - "809d0d7d-d8db-4167-9fed-2134b8a623af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215559Z:809d0d7d-d8db-4167-9fed-2134b8a623af" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ca3afa1-f2eb-4b0d-b45d-6456afd7deb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13262" - ], - "x-ms-correlation-request-id": [ - "5998a970-c097-4b1c-8109-2b57e350e593" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215559Z:5998a970-c097-4b1c-8109-2b57e350e593" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2439009c-d2f9-4dac-bc39-e837cd7fb807" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13261" - ], - "x-ms-correlation-request-id": [ - "eabc25b3-b2d2-461e-be29-8742e728fabf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215559Z:eabc25b3-b2d2-461e-be29-8742e728fabf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e399e1ac-8eee-4c71-b3fa-284d35302fbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13260" - ], - "x-ms-correlation-request-id": [ - "24fe3be1-f744-4cbd-86ad-6ec8f4db2c57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215559Z:24fe3be1-f744-4cbd-86ad-6ec8f4db2c57" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48769bcc-c6e0-404f-8668-2f2f401124a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13259" - ], - "x-ms-correlation-request-id": [ - "c85f7be3-69a6-453c-84ba-73a81ac7e8f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215559Z:c85f7be3-69a6-453c-84ba-73a81ac7e8f3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:55:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41693e57-3dbc-4fc0-bb01-6b7eebc872d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13258" - ], - "x-ms-correlation-request-id": [ - "d572550b-371c-4593-ae04-bac5382452ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215600Z:d572550b-371c-4593-ae04-bac5382452ae" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7675e3f-2b7c-4170-8b75-760481d333e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13257" - ], - "x-ms-correlation-request-id": [ - "c3f91573-6ae1-48ac-83cd-08e318f38197" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215600Z:c3f91573-6ae1-48ac-83cd-08e318f38197" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94860382-dfab-48d9-b693-33a96aba2b3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13256" - ], - "x-ms-correlation-request-id": [ - "1d052bd0-57f3-4249-a94d-a8eb2b32956c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215600Z:1d052bd0-57f3-4249-a94d-a8eb2b32956c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "701aee33-f8de-4189-92a4-dfba1c439912" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13255" - ], - "x-ms-correlation-request-id": [ - "6e5ff5f4-584f-43bb-9e60-c562d5eedcc3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215600Z:6e5ff5f4-584f-43bb-9e60-c562d5eedcc3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "afa679fb-784c-4dcc-8f23-7580f664857e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13254" - ], - "x-ms-correlation-request-id": [ - "41f9a8ab-9cde-4d31-86d5-0c02b984f490" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215600Z:41f9a8ab-9cde-4d31-86d5-0c02b984f490" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe11761f-f79f-411e-a83b-6f8071a3273d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13253" - ], - "x-ms-correlation-request-id": [ - "2acd043c-4aa8-4259-904d-cdcc3f633b7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215600Z:2acd043c-4aa8-4259-904d-cdcc3f633b7e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5a96ff3-8ae5-4d3c-9fdf-748bb91c094d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13252" - ], - "x-ms-correlation-request-id": [ - "ec1e79ba-67c5-4b80-be44-30f7c715d65d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215601Z:ec1e79ba-67c5-4b80-be44-30f7c715d65d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b76a1fcf-bad3-4b2d-abac-b98882802e7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13251" - ], - "x-ms-correlation-request-id": [ - "8dac5cba-e428-4fef-919b-080d16a8d57d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215601Z:8dac5cba-e428-4fef-919b-080d16a8d57d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05d0687b-0de5-40d0-8fc7-8e1deb383a76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13250" - ], - "x-ms-correlation-request-id": [ - "cd344cba-eaa3-495a-8aff-90ee9bacca12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215601Z:cd344cba-eaa3-495a-8aff-90ee9bacca12" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00e7200e-ae80-4eb6-98ef-66250486fea1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13249" - ], - "x-ms-correlation-request-id": [ - "11b8973a-266e-4065-9254-86ea5b62c8a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215601Z:11b8973a-266e-4065-9254-86ea5b62c8a6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95cc1d45-32bc-4624-853c-88ee42574645" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13248" - ], - "x-ms-correlation-request-id": [ - "8c6a0c22-c900-4219-887d-3453d387b4e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215601Z:8c6a0c22-c900-4219-887d-3453d387b4e2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3125473c-d020-4af4-92d4-1b14ac600fba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13247" - ], - "x-ms-correlation-request-id": [ - "87d952c1-0806-45f7-829f-ae85cbd003eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215601Z:87d952c1-0806-45f7-829f-ae85cbd003eb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "12043da0-be9b-424a-8d76-e3665d17d02d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13246" - ], - "x-ms-correlation-request-id": [ - "99658434-e348-4b19-b27c-acc4f994033c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215601Z:99658434-e348-4b19-b27c-acc4f994033c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33faac46-c0bc-4b24-8706-74c36df8b397" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13245" - ], - "x-ms-correlation-request-id": [ - "29e3a41d-dd51-4a40-9306-c0cebf9896ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215602Z:29e3a41d-dd51-4a40-9306-c0cebf9896ee" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f2a3357-58fd-4fe5-a68e-466e26df8894" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13244" - ], - "x-ms-correlation-request-id": [ - "82f51bb2-a136-4878-92fd-3565d42f59de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215602Z:82f51bb2-a136-4878-92fd-3565d42f59de" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17f8d93e-485d-4f4e-8e1e-35527349884e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13243" - ], - "x-ms-correlation-request-id": [ - "63ce6f3a-ea95-464e-87b1-4b9d758de485" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215602Z:63ce6f3a-ea95-464e-87b1-4b9d758de485" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad2b83ad-30bf-4172-96fb-0c17ffc1e860" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13242" - ], - "x-ms-correlation-request-id": [ - "a08d3933-1ddb-4a80-9c7f-85bd933ace9c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215602Z:a08d3933-1ddb-4a80-9c7f-85bd933ace9c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43b45a68-c635-4bfe-9869-cbdfbc01edb8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13241" - ], - "x-ms-correlation-request-id": [ - "2f3f796f-8529-4d2f-838b-ae1ac95c6a2f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215602Z:2f3f796f-8529-4d2f-838b-ae1ac95c6a2f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4878ef92-9387-4db5-bb46-dc5f307842d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13240" - ], - "x-ms-correlation-request-id": [ - "2b30ecf7-8e1d-42a8-8f74-8c3474287a91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215603Z:2b30ecf7-8e1d-42a8-8f74-8c3474287a91" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2bb2369e-e85c-4fa3-aba6-909da035800c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13239" - ], - "x-ms-correlation-request-id": [ - "eb8eb821-36e7-4c04-a416-2177d8c03beb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215603Z:eb8eb821-36e7-4c04-a416-2177d8c03beb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7fd58186-f44c-4e89-a6eb-75c179528978" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13238" - ], - "x-ms-correlation-request-id": [ - "c7e58129-4dd1-44ed-9a04-28b3b45736e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215603Z:c7e58129-4dd1-44ed-9a04-28b3b45736e1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "12938f15-cef7-4dd1-9b57-662267dee59c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13237" - ], - "x-ms-correlation-request-id": [ - "5c446852-d376-43c8-80ad-18ddf8c77a41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215603Z:5c446852-d376-43c8-80ad-18ddf8c77a41" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "416976c7-3406-46e0-bf4d-d082c86476f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13236" - ], - "x-ms-correlation-request-id": [ - "ab09a960-5e32-4f2c-b518-43670fd30a70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215603Z:ab09a960-5e32-4f2c-b518-43670fd30a70" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78d6a06e-232e-49a4-9919-74cfddd07090" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13235" - ], - "x-ms-correlation-request-id": [ - "1df5a92b-d7a6-4d10-9340-fff43f013cec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215604Z:1df5a92b-d7a6-4d10-9340-fff43f013cec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a6abb3c-d57e-45ad-b3b6-8f439f6cbe50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13234" - ], - "x-ms-correlation-request-id": [ - "98d80982-52a1-4061-99e9-95fb3eb7391e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215604Z:98d80982-52a1-4061-99e9-95fb3eb7391e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c3b8cf7-c687-423d-ab21-8cb5508f5eda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13233" - ], - "x-ms-correlation-request-id": [ - "829f86bf-3d87-4284-8f2b-598d1d73f448" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215604Z:829f86bf-3d87-4284-8f2b-598d1d73f448" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc7eeba5-b6de-4bbe-9ecf-3c73912b813e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13232" - ], - "x-ms-correlation-request-id": [ - "d20e8135-dfae-46b9-bd6a-baea15e5dd3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215604Z:d20e8135-dfae-46b9-bd6a-baea15e5dd3c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a6c1752-f3e7-469d-b897-8481383a0ef8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13231" - ], - "x-ms-correlation-request-id": [ - "cb14084d-835a-42bd-89e5-b01ff76b8685" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215604Z:cb14084d-835a-42bd-89e5-b01ff76b8685" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "484c9e79-a6f3-4e3c-afc4-74f1c5cafe90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13230" - ], - "x-ms-correlation-request-id": [ - "9d387b8e-45f3-4987-9c23-2d9ccc31a32b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215605Z:9d387b8e-45f3-4987-9c23-2d9ccc31a32b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a650bcd9-af95-483b-b1a3-bd75504968db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13229" - ], - "x-ms-correlation-request-id": [ - "92cf482a-2726-40c1-bd71-b5729ce096ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215605Z:92cf482a-2726-40c1-bd71-b5729ce096ac" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b6accc1-7cb6-4d12-89ec-75a9ecf01959" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13228" - ], - "x-ms-correlation-request-id": [ - "83f465cf-92a6-4ab8-8a5f-47b98c9b46a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215605Z:83f465cf-92a6-4ab8-8a5f-47b98c9b46a0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a13d3cb3-420e-49e1-ab71-ddbdb0637bea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13227" - ], - "x-ms-correlation-request-id": [ - "d646f974-1a6d-4974-8786-eab8017f6907" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215605Z:d646f974-1a6d-4974-8786-eab8017f6907" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0edcfbfb-5698-432b-ab96-fe8b93c3871e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13226" - ], - "x-ms-correlation-request-id": [ - "b474dcb9-b300-4cde-a238-80180a226400" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215605Z:b474dcb9-b300-4cde-a238-80180a226400" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8664ab19-8152-4ed3-b362-2c581f54451b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13225" - ], - "x-ms-correlation-request-id": [ - "88e3fd17-0cfa-4239-8c42-3db9ffd414f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215605Z:88e3fd17-0cfa-4239-8c42-3db9ffd414f3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86bbee5b-b5fe-47a4-8059-f822eea84d82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13224" - ], - "x-ms-correlation-request-id": [ - "a081d755-447d-495f-8586-2b7c4dbd6bc8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215605Z:a081d755-447d-495f-8586-2b7c4dbd6bc8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bb73d43-1733-4b8a-a117-2e35c40f9851" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13223" - ], - "x-ms-correlation-request-id": [ - "bf68e9dc-7406-41c1-8286-f6a50a369808" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215606Z:bf68e9dc-7406-41c1-8286-f6a50a369808" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b697c768-dad8-4b30-bad1-aaf6beb44c54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13222" - ], - "x-ms-correlation-request-id": [ - "08c4b8ef-e572-419d-ad1b-5c196cc3c225" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215606Z:08c4b8ef-e572-419d-ad1b-5c196cc3c225" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce8b8a9e-e246-4893-9196-53cd57f66c93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13221" - ], - "x-ms-correlation-request-id": [ - "1d00d8f0-ac18-401b-9509-3a123187dcb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215606Z:1d00d8f0-ac18-401b-9509-3a123187dcb9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bfc2712e-570a-4ba0-89ee-73c2a5e3bb28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13220" - ], - "x-ms-correlation-request-id": [ - "f1018c66-af6b-4617-be4f-8a0c066b29c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215606Z:f1018c66-af6b-4617-be4f-8a0c066b29c4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fedc641e-cf58-454a-a5d4-7596824e3688" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13219" - ], - "x-ms-correlation-request-id": [ - "7125124e-9423-4d1d-a06b-087ec4978d94" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215606Z:7125124e-9423-4d1d-a06b-087ec4978d94" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db1db891-86ab-4903-ad12-ba6151c3b1ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13218" - ], - "x-ms-correlation-request-id": [ - "85d8b44f-85ba-49f7-a0b0-9f45f26adb41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215606Z:85d8b44f-85ba-49f7-a0b0-9f45f26adb41" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea62f6f3-f847-49e0-a91d-09bd8c204980" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13217" - ], - "x-ms-correlation-request-id": [ - "ed61360f-e3c7-4689-8608-2c58dba52d13" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215607Z:ed61360f-e3c7-4689-8608-2c58dba52d13" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84ec9490-d83e-423f-be4a-7b83876aea7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13216" - ], - "x-ms-correlation-request-id": [ - "206710f6-3e62-46c9-a66a-e9c1260d10c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215607Z:206710f6-3e62-46c9-a66a-e9c1260d10c7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "148652df-1c5a-4328-9f53-511132ddd11a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13215" - ], - "x-ms-correlation-request-id": [ - "3349f448-cd60-4c29-80cd-f0a2e3418d9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215607Z:3349f448-cd60-4c29-80cd-f0a2e3418d9f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6714bc7-b6c6-4f96-9852-079fdb836539" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13214" - ], - "x-ms-correlation-request-id": [ - "7430ccd4-b0a6-4380-a87d-76e07848df78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215607Z:7430ccd4-b0a6-4380-a87d-76e07848df78" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f9efa8d-1538-45e0-b1c3-5bcfef056413" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13213" - ], - "x-ms-correlation-request-id": [ - "4e9cc20b-fe71-493b-b3e1-342614f4079a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215607Z:4e9cc20b-fe71-493b-b3e1-342614f4079a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44862e2c-27e0-43fc-80fb-3068fc979ebd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13212" - ], - "x-ms-correlation-request-id": [ - "f05a6b80-cab8-4ce9-98f9-8d9203a26afa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215607Z:f05a6b80-cab8-4ce9-98f9-8d9203a26afa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df71d196-8e01-4186-8a5a-85ca0a31c5e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13211" - ], - "x-ms-correlation-request-id": [ - "af1adc24-d375-4b05-bf0c-b3d9bc4ba2c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215608Z:af1adc24-d375-4b05-bf0c-b3d9bc4ba2c7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08db2d8d-7d27-400a-8cd9-ebea8f976725" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13210" - ], - "x-ms-correlation-request-id": [ - "857c1f61-fa77-44d2-b302-0a42c9e1e479" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215608Z:857c1f61-fa77-44d2-b302-0a42c9e1e479" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2381cb8c-6914-4ecb-b556-139ec72ea81d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13209" - ], - "x-ms-correlation-request-id": [ - "42397862-bc88-46c3-9860-514c1d5966bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215608Z:42397862-bc88-46c3-9860-514c1d5966bd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6dccc7ed-d690-4c66-b4c9-205e16e14688" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13208" - ], - "x-ms-correlation-request-id": [ - "eb4ee1a8-7894-4446-afb7-a9f191e87197" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215608Z:eb4ee1a8-7894-4446-afb7-a9f191e87197" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92163c41-d6d1-4460-8760-30a82c2009f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13207" - ], - "x-ms-correlation-request-id": [ - "bc70602f-fb73-450d-bc45-79bcfd9af23a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215608Z:bc70602f-fb73-450d-bc45-79bcfd9af23a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1d07876-8c43-40d2-9e07-23eb7579de36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13206" - ], - "x-ms-correlation-request-id": [ - "a92b83de-2daa-40e9-80ca-336b1fdcffd5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215609Z:a92b83de-2daa-40e9-80ca-336b1fdcffd5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "afaef7c0-e5a1-4b0e-b237-d0792bbfa12b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13205" - ], - "x-ms-correlation-request-id": [ - "3201e5d1-6d9a-488f-a30d-ab5208c82abc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215609Z:3201e5d1-6d9a-488f-a30d-ab5208c82abc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac76ec12-c44f-4f4e-91e8-d9a047fad1f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13204" - ], - "x-ms-correlation-request-id": [ - "6e313492-afc1-46fa-a9bb-671aa48f06d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215609Z:6e313492-afc1-46fa-a9bb-671aa48f06d4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e662064-2abb-46b5-8a7c-ec9dbf4a5d9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13203" - ], - "x-ms-correlation-request-id": [ - "5b3eceb8-0710-4fb5-b7ed-0e577fbb2c0a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215609Z:5b3eceb8-0710-4fb5-b7ed-0e577fbb2c0a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8542bbdf-e7cc-4374-a9d3-ea93bb41c37b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13202" - ], - "x-ms-correlation-request-id": [ - "0d03bf69-bdb8-4939-97bf-c9f14e0179aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215609Z:0d03bf69-bdb8-4939-97bf-c9f14e0179aa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de28aa4f-d278-4998-834a-a2781c09d6eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13201" - ], - "x-ms-correlation-request-id": [ - "0b15fc66-7a91-41f2-8069-82ba8916d56b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215609Z:0b15fc66-7a91-41f2-8069-82ba8916d56b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3785d6d7-bd2b-44eb-a75a-272d1b70960c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13200" - ], - "x-ms-correlation-request-id": [ - "0619cafa-7821-42d2-abc4-36487c8fbf5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215610Z:0619cafa-7821-42d2-abc4-36487c8fbf5a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c2af50b-a387-4646-afde-b5d0f05c9622" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13199" - ], - "x-ms-correlation-request-id": [ - "83e06173-5c3d-4ab2-a9db-a429a24411f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215610Z:83e06173-5c3d-4ab2-a9db-a429a24411f0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b445dc10-c5cf-4155-9c7d-270679405950" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13198" - ], - "x-ms-correlation-request-id": [ - "fb23fb4f-87b2-4a76-a6bc-157bfbffd5c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215610Z:fb23fb4f-87b2-4a76-a6bc-157bfbffd5c1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4df0d5b-593d-42da-8c91-b793dadf3442" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13197" - ], - "x-ms-correlation-request-id": [ - "711fea8b-47bf-4558-a1d9-bd930b0d7441" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215610Z:711fea8b-47bf-4558-a1d9-bd930b0d7441" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f3fc2a2-0c92-4dff-93f2-a1ae9e073976" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13196" - ], - "x-ms-correlation-request-id": [ - "23873813-08c4-409c-8dbe-19b19061ef7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215610Z:23873813-08c4-409c-8dbe-19b19061ef7a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1706debe-e9ae-4169-a25c-6f13cdc15c68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13195" - ], - "x-ms-correlation-request-id": [ - "8213a128-b14f-40ed-9f0e-31da255861e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215610Z:8213a128-b14f-40ed-9f0e-31da255861e8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b26607f7-8826-4b25-b517-0e161fd314e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13194" - ], - "x-ms-correlation-request-id": [ - "bb553ff0-fe9d-45ea-a43e-c72a73c4d895" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215611Z:bb553ff0-fe9d-45ea-a43e-c72a73c4d895" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b05c67d0-726a-4cfe-9b6b-704908561110" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13193" - ], - "x-ms-correlation-request-id": [ - "8cb6d1fc-8021-41ac-8d63-547f05abf9f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215611Z:8cb6d1fc-8021-41ac-8d63-547f05abf9f7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47c67322-efc6-45d7-ba2b-1df347e73e55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13192" - ], - "x-ms-correlation-request-id": [ - "6d80ce13-641d-450a-b651-d806dabc87d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215611Z:6d80ce13-641d-450a-b651-d806dabc87d2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6490da3a-d117-436f-8321-b14d3b181e1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13191" - ], - "x-ms-correlation-request-id": [ - "d6381e6a-a34e-4e72-871a-241d3a5b237c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215611Z:d6381e6a-a34e-4e72-871a-241d3a5b237c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d080e279-8f38-42c1-99ed-ac8159efced6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13190" - ], - "x-ms-correlation-request-id": [ - "b22f67a6-3e61-4f9c-975c-3419b3b9e666" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215611Z:b22f67a6-3e61-4f9c-975c-3419b3b9e666" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b04e3ae-2288-4150-9a33-3e9de90cc712" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13189" - ], - "x-ms-correlation-request-id": [ - "dd17b7cc-349d-49b0-ae8d-5ad22913ccbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215611Z:dd17b7cc-349d-49b0-ae8d-5ad22913ccbe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "abbf278c-ebe5-4526-9265-50c8a89326dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13188" - ], - "x-ms-correlation-request-id": [ - "d1aa09f2-a91f-401d-82fc-554f6daf3502" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215611Z:d1aa09f2-a91f-401d-82fc-554f6daf3502" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5685eb92-c209-4399-9420-5def578f2662" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13187" - ], - "x-ms-correlation-request-id": [ - "de42d5f8-baf7-40ca-9eb0-5b254a58fadf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215612Z:de42d5f8-baf7-40ca-9eb0-5b254a58fadf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2ffb1e7-92f9-476c-a96f-b8472f23238a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13186" - ], - "x-ms-correlation-request-id": [ - "f71c5f43-9725-4b85-b127-2f9cebe24be6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215612Z:f71c5f43-9725-4b85-b127-2f9cebe24be6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "628bd39a-8caf-4a36-9686-855a84698e5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13185" - ], - "x-ms-correlation-request-id": [ - "c174b77f-0e34-4f39-9d39-7f1af9f61d17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215612Z:c174b77f-0e34-4f39-9d39-7f1af9f61d17" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a6129a5-c5e4-4c4f-96de-8fe6842d352d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13184" - ], - "x-ms-correlation-request-id": [ - "e63b6fe8-9942-4503-9feb-cbd2364aa82c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215612Z:e63b6fe8-9942-4503-9feb-cbd2364aa82c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14f4d3c4-34fe-43b5-a0fc-4d7969551ca1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13183" - ], - "x-ms-correlation-request-id": [ - "86d24b4e-099e-4007-bb35-66235e486547" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215612Z:86d24b4e-099e-4007-bb35-66235e486547" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a91e8e09-37b4-4899-8425-107f89f96d25" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13182" - ], - "x-ms-correlation-request-id": [ - "ce138efc-84ea-4c51-aafa-065ec15fd4d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215612Z:ce138efc-84ea-4c51-aafa-065ec15fd4d0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a60aea4a-a642-484b-83ec-16f6ddb63bab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13181" - ], - "x-ms-correlation-request-id": [ - "0b3c6c21-6613-4ceb-97b2-33ea8eaff2c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215613Z:0b3c6c21-6613-4ceb-97b2-33ea8eaff2c6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54bca378-ff83-4888-8f45-5a685ff2b0a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13180" - ], - "x-ms-correlation-request-id": [ - "fd01d60b-9608-4b7e-b257-286e4ae52228" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215613Z:fd01d60b-9608-4b7e-b257-286e4ae52228" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a3e61dd-b802-4ddf-8a03-46d900fe9f50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13179" - ], - "x-ms-correlation-request-id": [ - "2891802f-3def-41f6-8557-bfcd410122c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215613Z:2891802f-3def-41f6-8557-bfcd410122c0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fbbdd667-291d-435b-9ea8-de9a961e4dcf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13178" - ], - "x-ms-correlation-request-id": [ - "116a05f7-2709-4c75-8b9a-96eb448541b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215613Z:116a05f7-2709-4c75-8b9a-96eb448541b6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d703d82e-0291-4022-a1dd-21d2480aa52d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13177" - ], - "x-ms-correlation-request-id": [ - "3e4cb486-6309-43d9-8add-1c36ac66680d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215613Z:3e4cb486-6309-43d9-8add-1c36ac66680d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01b7eae5-8ced-4683-9e44-757d0c936332" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13176" - ], - "x-ms-correlation-request-id": [ - "071c5076-9bf4-441b-8361-763f7f260b4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215613Z:071c5076-9bf4-441b-8361-763f7f260b4e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab860824-9b2f-4838-a67c-4499e95456ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13175" - ], - "x-ms-correlation-request-id": [ - "67650a09-3591-4f26-8665-677c1eb23a6a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215613Z:67650a09-3591-4f26-8665-677c1eb23a6a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a27cbcde-b641-40ed-b461-5979a4ffc165" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13174" - ], - "x-ms-correlation-request-id": [ - "edc5ca02-2fc7-49dd-8b8e-a69a2ec032ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215614Z:edc5ca02-2fc7-49dd-8b8e-a69a2ec032ad" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1426da2-1771-4653-958f-b5b6607ae7d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13173" - ], - "x-ms-correlation-request-id": [ - "b743370c-887d-4ecf-b129-e3e8ffe850a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215614Z:b743370c-887d-4ecf-b129-e3e8ffe850a2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30646566-b2a8-4543-87d2-430f549310be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13172" - ], - "x-ms-correlation-request-id": [ - "c13679bb-6d5f-4622-a0ab-e327dc9d1f17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215614Z:c13679bb-6d5f-4622-a0ab-e327dc9d1f17" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a20bc0cb-9b17-4323-9df8-5cd45d050caf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13171" - ], - "x-ms-correlation-request-id": [ - "ff06e5e8-693f-446c-8b94-a8af9f03fd93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215614Z:ff06e5e8-693f-446c-8b94-a8af9f03fd93" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f8583c6-2dcb-4531-af8c-878792d8466b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13170" - ], - "x-ms-correlation-request-id": [ - "da2cd43b-6f95-43bc-965d-5b6434b2bd77" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215614Z:da2cd43b-6f95-43bc-965d-5b6434b2bd77" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94258ef5-2329-4c65-a620-78ec65ca1737" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13169" - ], - "x-ms-correlation-request-id": [ - "b2e60175-6245-481f-b0c2-8b9c08c3efb4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215614Z:b2e60175-6245-481f-b0c2-8b9c08c3efb4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6eee6889-7b6e-4aab-a39e-f86863a32a9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13168" - ], - "x-ms-correlation-request-id": [ - "19868dc0-bd56-41b1-af63-279d7ae58fdf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215615Z:19868dc0-bd56-41b1-af63-279d7ae58fdf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9df5fc59-adbc-4676-bedd-fe54015797bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13167" - ], - "x-ms-correlation-request-id": [ - "54adbd8e-1d6a-4eb5-87ea-473daaac7c69" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215615Z:54adbd8e-1d6a-4eb5-87ea-473daaac7c69" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ea6a465-1da5-4b2c-b0bd-4e78bf225464" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13166" - ], - "x-ms-correlation-request-id": [ - "69ec1250-4ed2-43ff-bb96-be90d4027296" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215615Z:69ec1250-4ed2-43ff-bb96-be90d4027296" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9cf5d898-ed25-4e2b-9d57-f6c4467cfd97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13165" - ], - "x-ms-correlation-request-id": [ - "ad240dbc-7e39-45f9-a9c0-eb3fb61f9918" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215615Z:ad240dbc-7e39-45f9-a9c0-eb3fb61f9918" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62920bb3-5b2f-48fd-8261-5d30d742a6b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13164" - ], - "x-ms-correlation-request-id": [ - "61a0c0c9-eb9c-4959-b971-34213870ba38" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215615Z:61a0c0c9-eb9c-4959-b971-34213870ba38" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30c4a3b6-a0d6-4bc2-940f-7333ac8ce7cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13163" - ], - "x-ms-correlation-request-id": [ - "af0da7fa-0471-4fe8-a5c9-adbce9b72e95" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215615Z:af0da7fa-0471-4fe8-a5c9-adbce9b72e95" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f9d51b7-2cc3-4f8b-b0c9-dab12513504f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13162" - ], - "x-ms-correlation-request-id": [ - "94223368-b27d-42c9-92ca-035a329ff031" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215615Z:94223368-b27d-42c9-92ca-035a329ff031" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c054231b-7d03-4d81-8417-a846dc36692a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13161" - ], - "x-ms-correlation-request-id": [ - "0cd9fe90-8f38-4f15-abd8-db5072fe53af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215616Z:0cd9fe90-8f38-4f15-abd8-db5072fe53af" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d809238-d629-426f-8f41-a0199471cda1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13160" - ], - "x-ms-correlation-request-id": [ - "21ca3f02-2175-46d9-ac16-5bdaa8274bbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215616Z:21ca3f02-2175-46d9-ac16-5bdaa8274bbf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d39075bd-70f7-42e8-9a74-562a28011707" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13159" - ], - "x-ms-correlation-request-id": [ - "6b00f387-ee9c-4ce7-9399-a66b16d6950c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215616Z:6b00f387-ee9c-4ce7-9399-a66b16d6950c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8303269-bef6-4ae1-b61e-f7c897bbeb95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13158" - ], - "x-ms-correlation-request-id": [ - "305c58f0-0d83-445d-b6d3-7a991292ea64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215616Z:305c58f0-0d83-445d-b6d3-7a991292ea64" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69ed8728-cbc3-4833-bca7-c87db3e9fe17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13157" - ], - "x-ms-correlation-request-id": [ - "cb584af1-be87-4b88-a084-4788e7e8911c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215616Z:cb584af1-be87-4b88-a084-4788e7e8911c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f2bf694-49d1-4562-a084-2ffb707d6752" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13156" - ], - "x-ms-correlation-request-id": [ - "d67e4e14-5b0c-49ff-95e0-bcce3d31eda2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215617Z:d67e4e14-5b0c-49ff-95e0-bcce3d31eda2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d5a35f9-fca8-4c84-b840-72106615068b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13155" - ], - "x-ms-correlation-request-id": [ - "f854e0dd-9b7b-4acb-ae7d-fd3ddf12521e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215617Z:f854e0dd-9b7b-4acb-ae7d-fd3ddf12521e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5e02eeb-e538-4927-b0ff-2dcac92bbe59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13154" - ], - "x-ms-correlation-request-id": [ - "0ff18dbf-3c60-4e88-b5b2-ad84217195e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215617Z:0ff18dbf-3c60-4e88-b5b2-ad84217195e4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49d899ec-b7a5-4098-80b8-29cb6b820607" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13153" - ], - "x-ms-correlation-request-id": [ - "d42c44ef-0038-4264-a21c-b504f8de7c0b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215617Z:d42c44ef-0038-4264-a21c-b504f8de7c0b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1be1d57c-3c2b-4a25-bd48-09cc25f28353" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13152" - ], - "x-ms-correlation-request-id": [ - "face4c31-b5fd-4f9a-8a18-77e4ddcce91d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215617Z:face4c31-b5fd-4f9a-8a18-77e4ddcce91d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba96996f-eb17-4003-a0c4-4d16dd3856aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13151" - ], - "x-ms-correlation-request-id": [ - "144a1a5c-ac1c-4343-b8b1-4995da9b69aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215618Z:144a1a5c-ac1c-4343-b8b1-4995da9b69aa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdf1872b-77d7-47b2-93da-0e4578d68d1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13150" - ], - "x-ms-correlation-request-id": [ - "5eee243a-583f-4e66-92e5-ee8f6c958741" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215618Z:5eee243a-583f-4e66-92e5-ee8f6c958741" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "703ecea4-d6e0-4e07-a4ef-7d2ede3ac799" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13149" - ], - "x-ms-correlation-request-id": [ - "2d9c569c-27f7-4093-a768-6bc81a867d10" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215618Z:2d9c569c-27f7-4093-a768-6bc81a867d10" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fcbb99be-e9db-434a-b9a7-6fc9154c565f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13148" - ], - "x-ms-correlation-request-id": [ - "49bbafde-1459-4aad-925e-6eb1aab8524c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215618Z:49bbafde-1459-4aad-925e-6eb1aab8524c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7042ce0e-08f1-47ae-bf21-a138db9a3f9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13147" - ], - "x-ms-correlation-request-id": [ - "2082dbf8-a1d5-493f-bb82-f5614430dbe8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215618Z:2082dbf8-a1d5-493f-bb82-f5614430dbe8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54c51660-1944-4102-8af4-8079bb343365" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13146" - ], - "x-ms-correlation-request-id": [ - "0ba10bbe-72e0-43d4-b4f4-d4a4b91224e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215619Z:0ba10bbe-72e0-43d4-b4f4-d4a4b91224e9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c813d70-674a-46a6-ac70-350c90f4ec9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13145" - ], - "x-ms-correlation-request-id": [ - "ec84a2b2-f5f3-42bd-9fb8-91d0a8ffb1b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215619Z:ec84a2b2-f5f3-42bd-9fb8-91d0a8ffb1b2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95c66701-f1d1-498a-9e68-11eb4f4b0bc8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13144" - ], - "x-ms-correlation-request-id": [ - "34790a1b-ff80-4445-92df-0e510cf09f26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215619Z:34790a1b-ff80-4445-92df-0e510cf09f26" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2eb16b9-d168-4915-b0bb-d25daa11c49c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13143" - ], - "x-ms-correlation-request-id": [ - "5c516001-2a6f-4b24-ac08-260ab18d300e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215619Z:5c516001-2a6f-4b24-ac08-260ab18d300e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a971f205-a22a-49a1-b7b5-849839bd4e93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13142" - ], - "x-ms-correlation-request-id": [ - "d6b847ce-3436-48eb-a5ee-9121598de0df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215619Z:d6b847ce-3436-48eb-a5ee-9121598de0df" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae546056-70de-489d-b3a1-f78d0b2becf3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13141" - ], - "x-ms-correlation-request-id": [ - "88da6373-2b3a-4fae-a1b8-7a58d7b015b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215619Z:88da6373-2b3a-4fae-a1b8-7a58d7b015b4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d8828be-c65c-4c94-a84d-f02998617539" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13140" - ], - "x-ms-correlation-request-id": [ - "4f70dccd-05a9-4f58-a9e5-b216b5625de6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215619Z:4f70dccd-05a9-4f58-a9e5-b216b5625de6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d59efc7e-7b5e-4dce-92ed-3ca19be46156" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13139" - ], - "x-ms-correlation-request-id": [ - "88a566db-a214-49ed-9d41-e90c08be8bf7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215620Z:88a566db-a214-49ed-9d41-e90c08be8bf7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0af289a1-cc7f-4b9f-8f2c-722bd77759bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13138" - ], - "x-ms-correlation-request-id": [ - "32a8b88c-ccf6-4d73-af32-564a9609a85e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215620Z:32a8b88c-ccf6-4d73-af32-564a9609a85e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3071194f-2e40-44b1-bab1-2e08054659c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13137" - ], - "x-ms-correlation-request-id": [ - "2da1255c-229a-4db0-af59-3cd6c095bb8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215620Z:2da1255c-229a-4db0-af59-3cd6c095bb8a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9d9b1b4-a5ee-4da1-9bc2-06bdc1514312" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13136" - ], - "x-ms-correlation-request-id": [ - "e81cad98-4b82-4531-b909-2a8e990d2515" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215620Z:e81cad98-4b82-4531-b909-2a8e990d2515" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6361f41-747b-4cd1-b9e5-b8cdf108b339" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13135" - ], - "x-ms-correlation-request-id": [ - "626d513a-b675-4fbb-96dc-99e2dc5f29af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215620Z:626d513a-b675-4fbb-96dc-99e2dc5f29af" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e89338f-bc19-41e4-9799-4121002c329d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13134" - ], - "x-ms-correlation-request-id": [ - "b96fe926-42c6-46dd-a22b-3f4f2fe43bd9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215620Z:b96fe926-42c6-46dd-a22b-3f4f2fe43bd9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8baa54f9-ee95-4a50-b2a9-718a238375ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13133" - ], - "x-ms-correlation-request-id": [ - "37252beb-aa36-49cc-add6-6af20a38372e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215621Z:37252beb-aa36-49cc-add6-6af20a38372e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30a71011-2b06-425e-9a86-84b5b73fa3bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13132" - ], - "x-ms-correlation-request-id": [ - "bbdf79c2-a6b0-4ef1-ac8b-d624ff09b3e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215621Z:bbdf79c2-a6b0-4ef1-ac8b-d624ff09b3e4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a02aa6f-6946-4b43-9c4d-5ed0ea6e1176" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13131" - ], - "x-ms-correlation-request-id": [ - "db635377-90fa-46bf-b486-926220c62fcf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215621Z:db635377-90fa-46bf-b486-926220c62fcf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "936ec7dc-96f3-4816-8f3a-c688fe79f1e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13130" - ], - "x-ms-correlation-request-id": [ - "b409033c-1684-4259-8c4b-621a7ca8f061" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215621Z:b409033c-1684-4259-8c4b-621a7ca8f061" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3cc8ea19-4447-4589-bbdc-326da6145fdc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13129" - ], - "x-ms-correlation-request-id": [ - "912649af-6332-496d-9493-e456255e63bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215621Z:912649af-6332-496d-9493-e456255e63bb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ebdfaffb-7cbb-4c56-9821-056d910a41e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13128" - ], - "x-ms-correlation-request-id": [ - "360afb5e-2534-4685-8a0b-47e16e038d61" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215621Z:360afb5e-2534-4685-8a0b-47e16e038d61" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80b82be8-6f73-41ec-be38-112d257b76a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13127" - ], - "x-ms-correlation-request-id": [ - "d340b8f5-f6cf-4f01-851c-0222c5294afe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215621Z:d340b8f5-f6cf-4f01-851c-0222c5294afe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ca8400e-a58a-4793-9a62-fdd5b4a512b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13126" - ], - "x-ms-correlation-request-id": [ - "1bca58dc-a298-4617-87ad-a0fe6a94a62e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215622Z:1bca58dc-a298-4617-87ad-a0fe6a94a62e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aafedbfe-5ce2-4bc4-8393-24de3f84ba05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13125" - ], - "x-ms-correlation-request-id": [ - "b1ec34ca-e32f-47ca-89a0-66b3b9346fbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215622Z:b1ec34ca-e32f-47ca-89a0-66b3b9346fbe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a839c597-ec5c-4efa-a1f5-69127633912e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13124" - ], - "x-ms-correlation-request-id": [ - "4a8746fe-f5a7-450c-b51f-a864943a1cdf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215622Z:4a8746fe-f5a7-450c-b51f-a864943a1cdf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e532e0b-14bb-43a1-8a1f-66b2d1a9769d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13123" - ], - "x-ms-correlation-request-id": [ - "94e1ff56-3ee8-4c32-8bd8-c634136bf236" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215622Z:94e1ff56-3ee8-4c32-8bd8-c634136bf236" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ece10ebb-4caa-47e5-baf3-3781ac2c8a8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13122" - ], - "x-ms-correlation-request-id": [ - "ff28d3ad-9a5b-49a8-9c3c-12749188e3cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215622Z:ff28d3ad-9a5b-49a8-9c3c-12749188e3cc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "399979ad-32c3-46fe-a78c-d2a4bfc84780" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13121" - ], - "x-ms-correlation-request-id": [ - "63e54342-f883-4ec2-8feb-ad348aa586e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215622Z:63e54342-f883-4ec2-8feb-ad348aa586e7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cae15598-f2d6-4f2f-84ff-a64eb250b493" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13120" - ], - "x-ms-correlation-request-id": [ - "462a10c2-406a-41b1-8232-9afbfaa43765" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215623Z:462a10c2-406a-41b1-8232-9afbfaa43765" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5e422d9-2a17-405d-9b28-e24e154dc9d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13119" - ], - "x-ms-correlation-request-id": [ - "50cae426-db56-4ada-b000-c34578f84130" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215623Z:50cae426-db56-4ada-b000-c34578f84130" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f67e0e40-555e-4e44-ad6a-3488a1587a5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13118" - ], - "x-ms-correlation-request-id": [ - "5010ed10-636f-4bd9-b400-6f837090a0f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215623Z:5010ed10-636f-4bd9-b400-6f837090a0f1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77aa152f-b0f2-44ce-be20-1ea606b6e92e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13117" - ], - "x-ms-correlation-request-id": [ - "6afc949d-730d-40e3-9afb-60bc49f59d35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215623Z:6afc949d-730d-40e3-9afb-60bc49f59d35" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4d919c5-4282-49e0-ba70-7effa291b0ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13116" - ], - "x-ms-correlation-request-id": [ - "4578a6e4-9f9e-447c-a87e-dc58e4f06199" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215623Z:4578a6e4-9f9e-447c-a87e-dc58e4f06199" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2556e18-7f3c-4cf9-a183-e7472ea4ae93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13115" - ], - "x-ms-correlation-request-id": [ - "d035996f-7488-472a-a03e-61409f2561b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215623Z:d035996f-7488-472a-a03e-61409f2561b0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5abc1496-bcbf-43e5-874e-fee48cf53c43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13114" - ], - "x-ms-correlation-request-id": [ - "0142b41f-9edc-4f3e-bfbd-d923a68f27be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215624Z:0142b41f-9edc-4f3e-bfbd-d923a68f27be" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c559646-8e8f-4745-88f6-14a61f472b07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13113" - ], - "x-ms-correlation-request-id": [ - "81360d48-e791-4497-bc46-510d7e3c29aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215624Z:81360d48-e791-4497-bc46-510d7e3c29aa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dabff869-72e7-40f9-9b0c-53276e8e609d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13112" - ], - "x-ms-correlation-request-id": [ - "336d888e-5e33-40f8-bf2a-b96aefda23e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215624Z:336d888e-5e33-40f8-bf2a-b96aefda23e3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b3e2410-637e-435e-a7a0-52e0d1ab4a18" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13111" - ], - "x-ms-correlation-request-id": [ - "3e1cbe9b-bf71-4395-8ecf-447307a0abb0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215624Z:3e1cbe9b-bf71-4395-8ecf-447307a0abb0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19e7ac10-0665-4854-9a69-1d20878c85f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13110" - ], - "x-ms-correlation-request-id": [ - "75607082-9d30-4ad2-86e1-feec8240880d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215624Z:75607082-9d30-4ad2-86e1-feec8240880d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f174b4f-4b5c-4f76-bdeb-68810070d7b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13109" - ], - "x-ms-correlation-request-id": [ - "9d95120f-791f-4951-849e-0a6af2726463" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215624Z:9d95120f-791f-4951-849e-0a6af2726463" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "443b788f-0b42-4af4-a838-3195bbaaa836" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13108" - ], - "x-ms-correlation-request-id": [ - "857dfbe6-e435-4086-8743-65ad98867b29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215625Z:857dfbe6-e435-4086-8743-65ad98867b29" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0817fc95-e1d7-4dc0-8e8b-5229af48c64b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13107" - ], - "x-ms-correlation-request-id": [ - "95cf9947-f64c-4054-bc2b-1f3745c29aa1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215625Z:95cf9947-f64c-4054-bc2b-1f3745c29aa1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8584ea08-7268-49ad-bb9e-c5d141480b5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13106" - ], - "x-ms-correlation-request-id": [ - "90372527-a733-4abc-801a-bcfb75b197d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215625Z:90372527-a733-4abc-801a-bcfb75b197d7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9376a35-06fb-4ceb-b70a-c8942bb80f47" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13105" - ], - "x-ms-correlation-request-id": [ - "b3dabee3-f221-44ca-8a3e-5219cfc4b7b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215625Z:b3dabee3-f221-44ca-8a3e-5219cfc4b7b7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1732a0ab-3c60-4e8c-9485-dee61ceb8186" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13104" - ], - "x-ms-correlation-request-id": [ - "40b9fbd8-193c-488a-9f1d-1e1876588c53" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215625Z:40b9fbd8-193c-488a-9f1d-1e1876588c53" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f72618c7-210a-4b6d-b997-553bb6e5358a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13103" - ], - "x-ms-correlation-request-id": [ - "2d3759c6-b194-40e6-9b04-24f9fde1562d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215625Z:2d3759c6-b194-40e6-9b04-24f9fde1562d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1dcf810-21e6-4009-bbb6-c78dbb6be769" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13102" - ], - "x-ms-correlation-request-id": [ - "081480fc-8b3a-4618-802f-a38bbef994e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215626Z:081480fc-8b3a-4618-802f-a38bbef994e5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1068a9c9-749f-4a8b-a4b2-11f94d0d98de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13101" - ], - "x-ms-correlation-request-id": [ - "6e9e9b99-195f-43d8-b53b-7495d270819b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215626Z:6e9e9b99-195f-43d8-b53b-7495d270819b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9e1a2bb-df7b-4e0d-a5c1-7d29c3f5879d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13100" - ], - "x-ms-correlation-request-id": [ - "d556b44b-f8fd-4f1f-893c-bd57171ce79b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215626Z:d556b44b-f8fd-4f1f-893c-bd57171ce79b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20cc57f7-62f2-4491-98f7-7dd18757b6a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13099" - ], - "x-ms-correlation-request-id": [ - "2e441d50-cf75-46ca-8edc-ced5c7b20ea2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215626Z:2e441d50-cf75-46ca-8edc-ced5c7b20ea2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0862ee86-960e-4357-9e14-0bdf2f010e7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13098" - ], - "x-ms-correlation-request-id": [ - "db982124-b669-4c74-817d-2d7cdfc8cd46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215626Z:db982124-b669-4c74-817d-2d7cdfc8cd46" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1aa0b2c2-594b-4f8a-8a44-d76ef10b5027" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13097" - ], - "x-ms-correlation-request-id": [ - "5a279b80-9078-4a75-a45f-5cc102db1dc6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215626Z:5a279b80-9078-4a75-a45f-5cc102db1dc6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e94f9e6-5c5e-4c47-b87e-2912187adf36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13096" - ], - "x-ms-correlation-request-id": [ - "d773d1e1-3d81-4edc-a536-38f88ddf4e44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215627Z:d773d1e1-3d81-4edc-a536-38f88ddf4e44" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8620a1a4-51b4-412a-9e7e-f89d94dc94cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13095" - ], - "x-ms-correlation-request-id": [ - "c3112f0f-5ca3-4b32-9fa2-eb6a5b744544" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215627Z:c3112f0f-5ca3-4b32-9fa2-eb6a5b744544" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c6e0d0f-79e2-492b-90fb-b79c4f5c0441" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13094" - ], - "x-ms-correlation-request-id": [ - "e9f1b62d-deb5-4456-b93e-2a802b9b26ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215627Z:e9f1b62d-deb5-4456-b93e-2a802b9b26ac" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7433a32f-39d0-4c95-b3d2-1ffcdff8ab16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13093" - ], - "x-ms-correlation-request-id": [ - "01e7886e-a168-4068-96de-2b34b2e0c7e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215627Z:01e7886e-a168-4068-96de-2b34b2e0c7e7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdcbcf88-9c13-4d52-89a6-0c373191db7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13092" - ], - "x-ms-correlation-request-id": [ - "208bb430-53e4-4990-abe1-fa3a9cc410b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215627Z:208bb430-53e4-4990-abe1-fa3a9cc410b4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7753428c-bb1e-4df5-97d7-ad9c96f6680e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13091" - ], - "x-ms-correlation-request-id": [ - "e8003efb-34d7-4e5d-a298-9b6256bf9a99" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215627Z:e8003efb-34d7-4e5d-a298-9b6256bf9a99" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "27d8e826-eb83-43e5-9d8a-0c423df02409" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13090" - ], - "x-ms-correlation-request-id": [ - "b11b9709-4ab7-4be9-ba5f-bc9b9e22eb68" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215627Z:b11b9709-4ab7-4be9-ba5f-bc9b9e22eb68" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "21a3ddba-7b85-4773-99f0-93493524459d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13089" - ], - "x-ms-correlation-request-id": [ - "077c335e-0be8-4e34-8ebc-184dc7e34c02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215628Z:077c335e-0be8-4e34-8ebc-184dc7e34c02" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b853cf17-488e-49e7-acec-1929e94c0bab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13088" - ], - "x-ms-correlation-request-id": [ - "a95fd6fe-60e8-4d2c-aa75-de1fcd00e6f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215628Z:a95fd6fe-60e8-4d2c-aa75-de1fcd00e6f4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9478297-fac1-497e-ba88-af2e2aa25685" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13087" - ], - "x-ms-correlation-request-id": [ - "7c4d0cec-577c-4c13-b98f-2d4598ae8742" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215628Z:7c4d0cec-577c-4c13-b98f-2d4598ae8742" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a2c21e5-507b-46fb-a764-2601b9ea0ab7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13086" - ], - "x-ms-correlation-request-id": [ - "6543560e-acd5-46ea-8cc0-3d8d9a44f0dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215628Z:6543560e-acd5-46ea-8cc0-3d8d9a44f0dc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0fab130-432d-467a-9421-af9bdfcca18e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13085" - ], - "x-ms-correlation-request-id": [ - "9bce1cc5-1326-40ad-a9cd-c261d81d6873" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215628Z:9bce1cc5-1326-40ad-a9cd-c261d81d6873" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7eb6e9b0-ada4-49ab-a10e-8523f1bbfc02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13084" - ], - "x-ms-correlation-request-id": [ - "a03cbbd7-6519-4307-860c-3877ef0e7412" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215628Z:a03cbbd7-6519-4307-860c-3877ef0e7412" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c14764c-f5af-412c-8fa3-41cc75431d95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13083" - ], - "x-ms-correlation-request-id": [ - "394094ab-880d-4e37-bce3-91ec31f97e36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215628Z:394094ab-880d-4e37-bce3-91ec31f97e36" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c5dd5a3-6fd4-4a2a-b52b-9c189fd179eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13082" - ], - "x-ms-correlation-request-id": [ - "52c07477-b26c-4543-b07d-1986849d0dd3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215629Z:52c07477-b26c-4543-b07d-1986849d0dd3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "381b57bd-1a43-49d4-ae02-2e12526bbcaa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13081" - ], - "x-ms-correlation-request-id": [ - "895942cd-4c35-4655-85e2-7ad022107945" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215629Z:895942cd-4c35-4655-85e2-7ad022107945" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18620513-146e-48b5-bbc5-69359ab0dac6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13080" - ], - "x-ms-correlation-request-id": [ - "81708138-652b-4e63-a84c-0998d8be92f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215629Z:81708138-652b-4e63-a84c-0998d8be92f9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9011b04-7fbd-49ea-b7c2-5a3f88deb1ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13079" - ], - "x-ms-correlation-request-id": [ - "303a0fff-f3eb-4d1d-88f5-15fe55bf691a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215629Z:303a0fff-f3eb-4d1d-88f5-15fe55bf691a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ed991b2-af1f-4ea4-95fc-e9debe710c53" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13078" - ], - "x-ms-correlation-request-id": [ - "4d280704-c12c-43ee-a178-ebbb86da1e29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215629Z:4d280704-c12c-43ee-a178-ebbb86da1e29" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8350b2bf-5d36-417a-bc5c-4562219b90fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13077" - ], - "x-ms-correlation-request-id": [ - "f4220f0f-c0ed-41a5-8d1e-069a14f7f530" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215630Z:f4220f0f-c0ed-41a5-8d1e-069a14f7f530" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "55a77c21-25be-488a-b018-00d392457d06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13076" - ], - "x-ms-correlation-request-id": [ - "f6ceb76b-3466-4f8d-84e8-eb0c5e4d01b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215630Z:f6ceb76b-3466-4f8d-84e8-eb0c5e4d01b9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aae62301-0ade-4780-8e97-c501daab86a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13075" - ], - "x-ms-correlation-request-id": [ - "6a695a2a-7275-4a60-a377-d9d009cfac1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215630Z:6a695a2a-7275-4a60-a377-d9d009cfac1f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccac5607-ffc9-4135-9bf4-7c1d1e7205ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13074" - ], - "x-ms-correlation-request-id": [ - "bf9d06f3-4fe2-4635-a44c-d4b1393f265c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215630Z:bf9d06f3-4fe2-4635-a44c-d4b1393f265c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bec986e0-9b87-4802-bf38-64852bdedbe4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13073" - ], - "x-ms-correlation-request-id": [ - "509f5f64-94dc-4286-a259-9ed5897a8963" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215630Z:509f5f64-94dc-4286-a259-9ed5897a8963" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94aeefe6-544a-468c-9e0e-539640fefe24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13072" - ], - "x-ms-correlation-request-id": [ - "91bc6d45-3228-453d-82b7-98d019b981ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215630Z:91bc6d45-3228-453d-82b7-98d019b981ff" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "261f8b3e-ca45-4e4a-96c9-56aff096f68b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13071" - ], - "x-ms-correlation-request-id": [ - "9acab2bc-5935-43cc-8148-e38fbc9bb872" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215630Z:9acab2bc-5935-43cc-8148-e38fbc9bb872" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7fb0feb-d3f7-4727-9aca-e059efae6f49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13070" - ], - "x-ms-correlation-request-id": [ - "2b53cb2b-31ff-4177-859b-c36eec121d83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215631Z:2b53cb2b-31ff-4177-859b-c36eec121d83" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdb76c13-d60e-46b1-b119-0693f57f58c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13069" - ], - "x-ms-correlation-request-id": [ - "71e79b6a-a823-4bed-8121-f5ab44e09e02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215631Z:71e79b6a-a823-4bed-8121-f5ab44e09e02" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ea946e5-2c9f-4eb9-b285-582362903a52" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13068" - ], - "x-ms-correlation-request-id": [ - "9cc30e37-4462-4ace-b3db-61a35397c442" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215631Z:9cc30e37-4462-4ace-b3db-61a35397c442" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53e75bfe-aaa0-4892-9760-38cb32a28ce0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13067" - ], - "x-ms-correlation-request-id": [ - "79d0bbf0-9b51-465c-946c-58b9f6b64a7f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215631Z:79d0bbf0-9b51-465c-946c-58b9f6b64a7f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d00d84f-4d75-425f-83cf-db194492e62c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13066" - ], - "x-ms-correlation-request-id": [ - "01f0bb0e-1f3c-421f-b5e0-5ddc28ab90c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215631Z:01f0bb0e-1f3c-421f-b5e0-5ddc28ab90c6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ba7f297-0c46-4144-b002-532ade1a1089" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13065" - ], - "x-ms-correlation-request-id": [ - "d41f29b0-e98a-403e-9fb5-987c53cb00d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215631Z:d41f29b0-e98a-403e-9fb5-987c53cb00d6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56387901-0a00-4f03-af8e-44b2f6f6c253" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13064" - ], - "x-ms-correlation-request-id": [ - "653a5a5e-21ac-446e-80a3-11aa33b3dbbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215632Z:653a5a5e-21ac-446e-80a3-11aa33b3dbbf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a34b863-6050-4f04-b2d6-f136cf5fbf60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13063" - ], - "x-ms-correlation-request-id": [ - "cc2be728-dfc6-4db5-ab1d-a0e62ed9667e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215632Z:cc2be728-dfc6-4db5-ab1d-a0e62ed9667e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96cae554-afd8-423c-ae72-4ccfecace98a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13062" - ], - "x-ms-correlation-request-id": [ - "91a0fb10-28f5-449d-be51-b9c9067273c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215632Z:91a0fb10-28f5-449d-be51-b9c9067273c4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94c5d14b-e742-430c-b374-635c0d0bfee6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13061" - ], - "x-ms-correlation-request-id": [ - "c605d71a-a9aa-4a51-b3ea-5b786ea2c0b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215632Z:c605d71a-a9aa-4a51-b3ea-5b786ea2c0b4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37645d2c-846d-4259-b00e-a9a654d7e912" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13060" - ], - "x-ms-correlation-request-id": [ - "a19369b4-dd09-45f3-a3d9-500571a4e15e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215632Z:a19369b4-dd09-45f3-a3d9-500571a4e15e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "986af172-a5ba-4dc1-b26a-4881da4b548c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13059" - ], - "x-ms-correlation-request-id": [ - "cc8f325e-1f27-432d-9d5c-6e64b725dfa1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215632Z:cc8f325e-1f27-432d-9d5c-6e64b725dfa1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6940cd68-80ff-42f1-81b1-54bc05068d80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13058" - ], - "x-ms-correlation-request-id": [ - "22c6597c-b94a-494b-9973-29fab08c2e28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215632Z:22c6597c-b94a-494b-9973-29fab08c2e28" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4319a044-0268-436e-adbf-7879c199fc1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13057" - ], - "x-ms-correlation-request-id": [ - "d56ccbe5-bc86-4c19-9e59-e064376e9199" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215633Z:d56ccbe5-bc86-4c19-9e59-e064376e9199" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72470dd0-934c-4454-be6b-70ef5ae98aea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13056" - ], - "x-ms-correlation-request-id": [ - "6d18a3ec-c74f-48e2-9147-7eae3aca88e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215633Z:6d18a3ec-c74f-48e2-9147-7eae3aca88e1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9bfabf5-bb26-42ce-8a8e-bafbd22d8b4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13055" - ], - "x-ms-correlation-request-id": [ - "1111f073-de07-4d75-a299-bd3d243d2304" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215633Z:1111f073-de07-4d75-a299-bd3d243d2304" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ecd2941-6451-4e8f-830a-e5d7dbe2fcb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13054" - ], - "x-ms-correlation-request-id": [ - "b1278765-1e71-40f6-b910-0eb1e20eb33f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215633Z:b1278765-1e71-40f6-b910-0eb1e20eb33f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c70d54cf-a5b2-4411-b0df-e5da29c7fd1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13053" - ], - "x-ms-correlation-request-id": [ - "9508394e-6c20-4097-8004-5f936b30012a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215633Z:9508394e-6c20-4097-8004-5f936b30012a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36fa40ff-0bd9-41c0-9964-75935f84d881" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13052" - ], - "x-ms-correlation-request-id": [ - "baaa7737-92c0-4423-9ccf-8c4097d01f1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215633Z:baaa7737-92c0-4423-9ccf-8c4097d01f1a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da4a398f-2e5a-479e-9d91-38695f931968" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13051" - ], - "x-ms-correlation-request-id": [ - "6637773d-8a0e-45a9-829d-e8e202a3cefc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215634Z:6637773d-8a0e-45a9-829d-e8e202a3cefc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f60fcd17-8643-4676-bfb8-cc4725b1bda7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13050" - ], - "x-ms-correlation-request-id": [ - "716f8f78-0ab3-412f-b7d4-0b7c4a387891" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215634Z:716f8f78-0ab3-412f-b7d4-0b7c4a387891" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76ce17a9-3a37-4394-84a3-efca1c0d44e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13049" - ], - "x-ms-correlation-request-id": [ - "d5f7f2a8-06d7-487b-b80b-2582cc609b9b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215634Z:d5f7f2a8-06d7-487b-b80b-2582cc609b9b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f0fcb7d-c875-4824-abd1-2a0544f33952" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13048" - ], - "x-ms-correlation-request-id": [ - "c47f5856-f6d3-42db-9bed-e246d2905ef5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215634Z:c47f5856-f6d3-42db-9bed-e246d2905ef5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f560bc5e-c11c-4029-9ee7-d2468b87993e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13047" - ], - "x-ms-correlation-request-id": [ - "96ec7057-71bf-4a5f-933b-dc5367897bb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215634Z:96ec7057-71bf-4a5f-933b-dc5367897bb8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bfc3ffc-656f-419b-afb3-f653a43caa2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13046" - ], - "x-ms-correlation-request-id": [ - "ae2feb34-8529-40ca-ae0e-c75b021777d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215635Z:ae2feb34-8529-40ca-ae0e-c75b021777d1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fb5ba78-80ce-4c2a-a2a3-4df076285896" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13045" - ], - "x-ms-correlation-request-id": [ - "262e5653-3e77-4bc1-9550-071bfba0a7ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215635Z:262e5653-3e77-4bc1-9550-071bfba0a7ff" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0a749af-39fd-4417-99d2-038e533787ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13044" - ], - "x-ms-correlation-request-id": [ - "6c023d53-a654-45b9-a246-5c4f2de9a0a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215635Z:6c023d53-a654-45b9-a246-5c4f2de9a0a5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c917c8d9-643b-4333-9b00-9c02176d30eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13043" - ], - "x-ms-correlation-request-id": [ - "572d5a3e-5dfe-4e4d-af35-28941549a5d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215635Z:572d5a3e-5dfe-4e4d-af35-28941549a5d8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "edf54f49-3b36-497a-8244-e2d9459c02c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13042" - ], - "x-ms-correlation-request-id": [ - "c08a3aec-a3d3-4b5b-ba72-9627a10c2a4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215635Z:c08a3aec-a3d3-4b5b-ba72-9627a10c2a4b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "482cb1d6-269e-43f7-bd15-e14d3a77d0eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13041" - ], - "x-ms-correlation-request-id": [ - "a9ceeb54-8d0a-4903-a3b4-d999e0e60638" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215635Z:a9ceeb54-8d0a-4903-a3b4-d999e0e60638" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0c09b38b-93a8-4bb2-acde-b4bc8d80eddc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13040" - ], - "x-ms-correlation-request-id": [ - "4198a2a9-6f1c-45d9-93d5-f5972780451b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215636Z:4198a2a9-6f1c-45d9-93d5-f5972780451b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8464e30-6b38-4862-a3c3-452c5e4ba99c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13039" - ], - "x-ms-correlation-request-id": [ - "373de6e9-855f-4969-ab54-5b31f2674ea3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215636Z:373de6e9-855f-4969-ab54-5b31f2674ea3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "711911fe-71a2-4b8f-9e58-2cb16b3e7a19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13038" - ], - "x-ms-correlation-request-id": [ - "d4982a39-e487-4856-b8ae-3bab3991a06a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215636Z:d4982a39-e487-4856-b8ae-3bab3991a06a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c154b1f5-ab71-4e42-aa48-9ef9d9320462" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13037" - ], - "x-ms-correlation-request-id": [ - "c194986b-e4de-45e0-9870-4b486d464556" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215636Z:c194986b-e4de-45e0-9870-4b486d464556" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84c8d715-b5e1-4d64-ae5c-b010643a7150" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13036" - ], - "x-ms-correlation-request-id": [ - "674537dc-103c-45ae-b53d-25f04b4a0e50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215636Z:674537dc-103c-45ae-b53d-25f04b4a0e50" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "12a4ab40-e1cd-4452-91b7-fca6a0847737" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13035" - ], - "x-ms-correlation-request-id": [ - "668f0122-ae79-4334-b907-3000774825a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215637Z:668f0122-ae79-4334-b907-3000774825a1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc33e140-bbd2-49dc-a396-d190fbd55272" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13034" - ], - "x-ms-correlation-request-id": [ - "6eac2db3-9b3e-4582-82c5-b99f3958f6f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215637Z:6eac2db3-9b3e-4582-82c5-b99f3958f6f9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11531a80-255a-43b3-9dea-9ea1d86cd59a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13033" - ], - "x-ms-correlation-request-id": [ - "046d6862-3099-467e-9994-02385098da2b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215637Z:046d6862-3099-467e-9994-02385098da2b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb7e00bf-3e78-4489-b0c6-4791f9d75846" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13032" - ], - "x-ms-correlation-request-id": [ - "47d93993-b7bd-40a2-b570-0bd12e4f0c1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215637Z:47d93993-b7bd-40a2-b570-0bd12e4f0c1a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d66fab93-e789-485f-8980-68984c768e04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13031" - ], - "x-ms-correlation-request-id": [ - "15042520-ab63-4818-9387-82b8c78e6a4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215637Z:15042520-ab63-4818-9387-82b8c78e6a4c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a31754d7-1756-47de-81f0-fae2250bbde2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13030" - ], - "x-ms-correlation-request-id": [ - "7c893a02-bb7b-4aea-aeec-7558259ce92c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215637Z:7c893a02-bb7b-4aea-aeec-7558259ce92c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9271b96-caf2-49c1-847a-44db4dcb3b4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13029" - ], - "x-ms-correlation-request-id": [ - "3dca5610-71e8-4366-98cd-efe79a452964" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215637Z:3dca5610-71e8-4366-98cd-efe79a452964" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0bb96eb8-3af6-43ec-b0ec-31303e41b739" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13028" - ], - "x-ms-correlation-request-id": [ - "121cd04f-342d-47d2-a744-28c076390deb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215638Z:121cd04f-342d-47d2-a744-28c076390deb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00b38df0-20ec-4d73-94a9-e4aca40a6a58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13027" - ], - "x-ms-correlation-request-id": [ - "a0fea241-c6fc-4c3f-a1a3-fea224738325" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215638Z:a0fea241-c6fc-4c3f-a1a3-fea224738325" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d515f3ff-3a91-4b86-9299-4b59e75b0a3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13026" - ], - "x-ms-correlation-request-id": [ - "b15cdb57-aa82-4a5c-bca3-b78f27bcaf3a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215638Z:b15cdb57-aa82-4a5c-bca3-b78f27bcaf3a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98b92a17-adc6-43c8-aaa5-ebab3b28de4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13025" - ], - "x-ms-correlation-request-id": [ - "86fb7c17-9ce2-486a-807d-3fcaf45ce2e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215638Z:86fb7c17-9ce2-486a-807d-3fcaf45ce2e9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "435982b3-dd80-45c3-9736-529bd1e19481" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13024" - ], - "x-ms-correlation-request-id": [ - "4089187e-ec3e-4f15-87f8-2ec4dcccf8b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215638Z:4089187e-ec3e-4f15-87f8-2ec4dcccf8b6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "091caafd-ace8-4e60-a8f5-e6cff6d4de32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13023" - ], - "x-ms-correlation-request-id": [ - "3d3b1afd-42a7-4e8f-9f71-c6a44a26daf7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215639Z:3d3b1afd-42a7-4e8f-9f71-c6a44a26daf7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6da2ef58-9217-4b3e-836a-42c8f8a40044" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13022" - ], - "x-ms-correlation-request-id": [ - "449b4906-0252-44b3-9132-83658066e6ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215639Z:449b4906-0252-44b3-9132-83658066e6ec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53ce0054-01ba-4aa9-a5c0-56a8a0300088" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13021" - ], - "x-ms-correlation-request-id": [ - "6765d8b5-594f-4a49-970b-12a4d5dbedad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215639Z:6765d8b5-594f-4a49-970b-12a4d5dbedad" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f45b315c-d8e6-4050-9acf-6542e18d274a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13020" - ], - "x-ms-correlation-request-id": [ - "a20c8aa0-b583-4387-b0d6-c8b11a8c3610" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215639Z:a20c8aa0-b583-4387-b0d6-c8b11a8c3610" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b94574f-f137-4cb0-baee-824dfc5b0d08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13019" - ], - "x-ms-correlation-request-id": [ - "33fe2ed9-d9b9-4a83-9ebf-3988c452144f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215639Z:33fe2ed9-d9b9-4a83-9ebf-3988c452144f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18dc5379-0677-42ca-89ac-38775f2d221d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13018" - ], - "x-ms-correlation-request-id": [ - "a6c77daf-8b99-491d-b816-9ddfa5b1f759" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215639Z:a6c77daf-8b99-491d-b816-9ddfa5b1f759" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0be2fb14-cdce-4e63-9b3f-5026f8e623ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13017" - ], - "x-ms-correlation-request-id": [ - "3fe058d4-d840-47df-9906-85e085ada9e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215640Z:3fe058d4-d840-47df-9906-85e085ada9e5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f9c540d-bf58-4365-a382-182fb6962d3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13016" - ], - "x-ms-correlation-request-id": [ - "fb2ba4eb-8cd0-4e53-8bd0-9767604a3e39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215640Z:fb2ba4eb-8cd0-4e53-8bd0-9767604a3e39" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52516bd8-ca87-46b2-8758-797129bd04e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13015" - ], - "x-ms-correlation-request-id": [ - "2d283740-82eb-4491-8011-44eaa1d1a247" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215640Z:2d283740-82eb-4491-8011-44eaa1d1a247" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4ff7531-f894-476a-b17e-d3dfb7bcb939" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13014" - ], - "x-ms-correlation-request-id": [ - "2c1840af-325a-45fb-b2ba-775c99cb10a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215640Z:2c1840af-325a-45fb-b2ba-775c99cb10a2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6427fa56-754f-42c6-8419-8641ff642065" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13013" - ], - "x-ms-correlation-request-id": [ - "821ce196-7a09-40d4-8cd6-870722e6799e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215640Z:821ce196-7a09-40d4-8cd6-870722e6799e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52a3e4f2-cbff-4d58-8f0e-b8b71d3b6791" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13012" - ], - "x-ms-correlation-request-id": [ - "345c4390-1e6e-4686-a88d-4412346771af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215640Z:345c4390-1e6e-4686-a88d-4412346771af" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b4f563b-3b4f-4b17-a746-b505e179966a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13011" - ], - "x-ms-correlation-request-id": [ - "028f1250-723c-41da-86a2-a96ec44acc00" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215640Z:028f1250-723c-41da-86a2-a96ec44acc00" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b3ab208-a6b7-4e69-9236-06f0c450f807" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13010" - ], - "x-ms-correlation-request-id": [ - "203676ac-e908-4499-a8c5-1212bcdaef1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215641Z:203676ac-e908-4499-a8c5-1212bcdaef1e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51a477f7-04b7-4bc1-b8f0-a6a9114f2119" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13009" - ], - "x-ms-correlation-request-id": [ - "dd66cfdd-0b37-4d52-b3fa-a1f5dbe00e3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215641Z:dd66cfdd-0b37-4d52-b3fa-a1f5dbe00e3b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c626e9b8-8783-45e5-8075-013dd2423cd2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13008" - ], - "x-ms-correlation-request-id": [ - "97ecdfc2-04d7-4549-888e-ca29e38f9556" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215641Z:97ecdfc2-04d7-4549-888e-ca29e38f9556" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4610ead-e23f-415b-bbba-be4b9a5be4c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13007" - ], - "x-ms-correlation-request-id": [ - "5e711df3-93d2-4982-9f1e-c5b79ad46d39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215641Z:5e711df3-93d2-4982-9f1e-c5b79ad46d39" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d18e7dfa-0622-419f-826f-e0b34d0b11e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13006" - ], - "x-ms-correlation-request-id": [ - "e01bb973-1f03-483c-995d-8b609bb8609c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215641Z:e01bb973-1f03-483c-995d-8b609bb8609c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "265409a0-093a-47ec-b449-7a5b6e4d97fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13005" - ], - "x-ms-correlation-request-id": [ - "d9988b52-8391-47d8-b327-e03945e5a842" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215641Z:d9988b52-8391-47d8-b327-e03945e5a842" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d6e4495-8ff9-4659-bd43-ea09e48d9e2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13004" - ], - "x-ms-correlation-request-id": [ - "89abc924-c10b-42b7-b66e-733ba089bf19" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215641Z:89abc924-c10b-42b7-b66e-733ba089bf19" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42a61c60-073e-4aa1-98e9-d5e54d08f423" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13003" - ], - "x-ms-correlation-request-id": [ - "0ddf3d98-d258-4071-ba9f-60b12e6a731e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215642Z:0ddf3d98-d258-4071-ba9f-60b12e6a731e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60dfcc8d-6b12-4d35-8b5d-6f5cd49aabe9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13002" - ], - "x-ms-correlation-request-id": [ - "5c404e69-29fa-4d27-942b-35d2de9f6b6e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215642Z:5c404e69-29fa-4d27-942b-35d2de9f6b6e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c7bb94a-354c-41c0-86aa-ca4a46dab80d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13001" - ], - "x-ms-correlation-request-id": [ - "bb148c15-af37-429a-9ded-9d1a31932597" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215642Z:bb148c15-af37-429a-9ded-9d1a31932597" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "086819f8-c131-4ce0-98d0-1d985a90e727" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13000" - ], - "x-ms-correlation-request-id": [ - "67dde305-9fca-488d-acad-83d3d9dec915" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215642Z:67dde305-9fca-488d-acad-83d3d9dec915" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "27f7bdad-a92d-43a6-ad5a-00f9d3c4e5b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12999" - ], - "x-ms-correlation-request-id": [ - "71705fee-6fa2-4ab7-bc75-19e594b30b88" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215642Z:71705fee-6fa2-4ab7-bc75-19e594b30b88" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4f885b9-e7a1-40d9-8997-e99d1c79c72b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12998" - ], - "x-ms-correlation-request-id": [ - "e78712e9-60ac-4750-b3f5-0d1f47fa0c6a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215642Z:e78712e9-60ac-4750-b3f5-0d1f47fa0c6a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c4c6f88-9051-40fb-b107-33e71187eb16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12997" - ], - "x-ms-correlation-request-id": [ - "d6ed73ca-ba3c-4c64-b8ed-92c4a1f0510f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215643Z:d6ed73ca-ba3c-4c64-b8ed-92c4a1f0510f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0541eae6-a6b3-465c-9bab-e040a4d4991f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12996" - ], - "x-ms-correlation-request-id": [ - "5625b06c-0b14-4551-b3b2-a54ebe60596e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215643Z:5625b06c-0b14-4551-b3b2-a54ebe60596e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a9b29bb-6a35-404e-9ce6-79e54f56ce10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12995" - ], - "x-ms-correlation-request-id": [ - "36b01592-ec4b-4a21-a815-add50fb1af2f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215643Z:36b01592-ec4b-4a21-a815-add50fb1af2f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3cfb7b62-5572-4051-af39-f83522a3622b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12994" - ], - "x-ms-correlation-request-id": [ - "0f139156-e79f-47f6-b170-d5eeb1fece70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215643Z:0f139156-e79f-47f6-b170-d5eeb1fece70" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53c7ad56-a283-4cc0-a479-586f624492bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12993" - ], - "x-ms-correlation-request-id": [ - "2d9d892f-8a70-449c-8115-301acdf95773" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215643Z:2d9d892f-8a70-449c-8115-301acdf95773" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f937b0e-7b7b-48fd-9d75-257569ffe143" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12992" - ], - "x-ms-correlation-request-id": [ - "97cc9ac2-4507-418d-84b5-8c58bd5d21a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215643Z:97cc9ac2-4507-418d-84b5-8c58bd5d21a9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4bc7fb10-63e6-4f84-a054-4dc7e5ccf3a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12991" - ], - "x-ms-correlation-request-id": [ - "823579ab-15a9-4987-8691-666a0ee622fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215643Z:823579ab-15a9-4987-8691-666a0ee622fb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a279468-d11b-4a1d-9883-d6f3dfb53f50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12990" - ], - "x-ms-correlation-request-id": [ - "f9347c8d-2554-4ee4-8c72-50309780e7f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215644Z:f9347c8d-2554-4ee4-8c72-50309780e7f1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3f88a0a-784f-403e-9d88-42b30de2e0f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12989" - ], - "x-ms-correlation-request-id": [ - "311992af-7986-4fce-80f3-c465638f78c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215644Z:311992af-7986-4fce-80f3-c465638f78c9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d26a8461-3746-4b2d-b216-f3e9b158fcfa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12988" - ], - "x-ms-correlation-request-id": [ - "3c1df7e7-41d4-42d0-af84-246d54dcb94b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215644Z:3c1df7e7-41d4-42d0-af84-246d54dcb94b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "542f3c39-cfb1-4074-a255-7afd5c9273ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12987" - ], - "x-ms-correlation-request-id": [ - "5365a445-6c25-40fb-a659-c1e0b900de2a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215644Z:5365a445-6c25-40fb-a659-c1e0b900de2a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85cb8340-946b-4752-b37b-355fccb70f5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12986" - ], - "x-ms-correlation-request-id": [ - "9d7e73de-f007-43b2-863a-1a5b72c568b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215644Z:9d7e73de-f007-43b2-863a-1a5b72c568b7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fba0c8c3-a486-47df-95c2-2e6c2c7a6fa9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12985" - ], - "x-ms-correlation-request-id": [ - "1433a553-fd99-4793-a6b1-f3c7f203de11" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215644Z:1433a553-fd99-4793-a6b1-f3c7f203de11" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8eb75a0f-a124-445c-ba5a-76d28fd64c29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12984" - ], - "x-ms-correlation-request-id": [ - "8313209c-fe2e-4272-a0ca-757503bbba79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215645Z:8313209c-fe2e-4272-a0ca-757503bbba79" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ca60c7b-04d6-4e2c-a466-1400d856e8d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12983" - ], - "x-ms-correlation-request-id": [ - "eb22aae4-ee05-4c57-a714-df90ede6f1a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215645Z:eb22aae4-ee05-4c57-a714-df90ede6f1a6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a37fae79-9ee9-4f95-b082-8af443bfc6f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12982" - ], - "x-ms-correlation-request-id": [ - "b221ebca-db49-4893-a095-d7ce22665c41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215645Z:b221ebca-db49-4893-a095-d7ce22665c41" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83af7554-9410-4a58-8ccc-7dea399ae222" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12981" - ], - "x-ms-correlation-request-id": [ - "fd1453d3-b9be-4354-b60c-f0fea55f7183" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215645Z:fd1453d3-b9be-4354-b60c-f0fea55f7183" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d00e1dc-27b8-442c-8b50-ae9f5d17306b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12980" - ], - "x-ms-correlation-request-id": [ - "fcfdedcc-9a4b-4895-9b5c-9f57a75964da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215645Z:fcfdedcc-9a4b-4895-9b5c-9f57a75964da" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7fb157a3-ca8a-4420-b154-f190158283b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12979" - ], - "x-ms-correlation-request-id": [ - "7844e9ce-16b9-4bf6-bbc2-680806779f87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215645Z:7844e9ce-16b9-4bf6-bbc2-680806779f87" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4bb9523-306b-4c2b-b8a5-142573edf25c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12978" - ], - "x-ms-correlation-request-id": [ - "dcfeddb7-00b3-48a3-8b34-38f788664bf0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215646Z:dcfeddb7-00b3-48a3-8b34-38f788664bf0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3710a374-4af9-4218-bd41-d2b9f5f66d84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12977" - ], - "x-ms-correlation-request-id": [ - "beddebdc-2fef-4713-a787-f57755c81c22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215646Z:beddebdc-2fef-4713-a787-f57755c81c22" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a9fa6974-6764-4152-9772-ab0e3fb6568b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12976" - ], - "x-ms-correlation-request-id": [ - "d0bc7b33-88e3-4c3b-924b-dfea56df7806" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215646Z:d0bc7b33-88e3-4c3b-924b-dfea56df7806" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95c2b992-734b-48a3-a0f1-e6017b1e9fc0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12975" - ], - "x-ms-correlation-request-id": [ - "5ba74b4d-9b30-4874-93a2-c9ebc8d6773f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215646Z:5ba74b4d-9b30-4874-93a2-c9ebc8d6773f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a27172a-a949-433d-9567-a2f126199c77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12974" - ], - "x-ms-correlation-request-id": [ - "41c7e65f-de1f-47d2-8fd4-323dcd2cd993" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215646Z:41c7e65f-de1f-47d2-8fd4-323dcd2cd993" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "34daccfa-ac16-47a2-8b17-f7be427ecec4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12973" - ], - "x-ms-correlation-request-id": [ - "18a29120-25ec-45ad-a4f8-4c0abf78b7a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215646Z:18a29120-25ec-45ad-a4f8-4c0abf78b7a7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d92f05f-255b-4daf-8a90-5c6af74e5eaa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12972" - ], - "x-ms-correlation-request-id": [ - "02b4b27f-af3c-44eb-a840-1a5a853ca23e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215647Z:02b4b27f-af3c-44eb-a840-1a5a853ca23e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "560daeeb-5fca-421c-a734-e3ed0888998c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12971" - ], - "x-ms-correlation-request-id": [ - "2d3b2534-f772-4f67-9abc-f7f4bb3a3d5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215647Z:2d3b2534-f772-4f67-9abc-f7f4bb3a3d5a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "acda10e6-b422-4067-b835-d2e45511b895" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12970" - ], - "x-ms-correlation-request-id": [ - "0f8cc8d7-e812-46be-a348-dcecb870395d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215647Z:0f8cc8d7-e812-46be-a348-dcecb870395d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccff85f9-fb3d-4355-a3e5-2acc7d767c12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12969" - ], - "x-ms-correlation-request-id": [ - "d255cec5-c462-4c64-a04c-59e92a21416c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215647Z:d255cec5-c462-4c64-a04c-59e92a21416c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8acebbf7-1178-43de-9f52-128dca737814" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12968" - ], - "x-ms-correlation-request-id": [ - "8dd9691c-5023-4d57-aca5-21c50750cc6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215647Z:8dd9691c-5023-4d57-aca5-21c50750cc6c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7ad1065-a587-4cde-88e2-b1b5c6ac2dc7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12967" - ], - "x-ms-correlation-request-id": [ - "ee7ed9ca-a043-45aa-9405-a40f5ff3f1a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215647Z:ee7ed9ca-a043-45aa-9405-a40f5ff3f1a0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa8ce8f3-d1ad-464b-a58b-bbee37b7128c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12966" - ], - "x-ms-correlation-request-id": [ - "1b5da11c-6ee3-4988-bcad-51aaaf82eef5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215648Z:1b5da11c-6ee3-4988-bcad-51aaaf82eef5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "15d76646-917d-4091-bfbf-8b37c32373ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12965" - ], - "x-ms-correlation-request-id": [ - "bcd5552a-5630-4e79-95df-926ec8c0f9d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215648Z:bcd5552a-5630-4e79-95df-926ec8c0f9d7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee4cf008-9b96-4325-a4c3-8e3be418d2d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12964" - ], - "x-ms-correlation-request-id": [ - "03b27a77-236a-4fa3-86d9-d80ef55990a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215648Z:03b27a77-236a-4fa3-86d9-d80ef55990a3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "998dd75f-2d98-4b8d-8234-573ed67d960f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12963" - ], - "x-ms-correlation-request-id": [ - "eff313e2-038c-4361-b701-393e2ab4046b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215648Z:eff313e2-038c-4361-b701-393e2ab4046b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c040ee67-54af-47db-91a9-4f4da3940566" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12962" - ], - "x-ms-correlation-request-id": [ - "08eb0734-219f-42f6-8741-f12a717e2c30" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215648Z:08eb0734-219f-42f6-8741-f12a717e2c30" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "482ad397-609b-41e2-8e7d-91fc2e179f0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12961" - ], - "x-ms-correlation-request-id": [ - "613e069b-d743-4caa-8248-03230a94700b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215649Z:613e069b-d743-4caa-8248-03230a94700b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3800b1f7-ddf7-4d9f-bc90-5ecc97036acc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12960" - ], - "x-ms-correlation-request-id": [ - "f519802b-ddb7-46cd-91e6-3569ae36e858" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215649Z:f519802b-ddb7-46cd-91e6-3569ae36e858" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73fa45f9-2c05-4a73-95f9-c8c63dc06ca4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12959" - ], - "x-ms-correlation-request-id": [ - "3145bcac-a98a-4522-b301-1895dfe9f941" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215649Z:3145bcac-a98a-4522-b301-1895dfe9f941" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9291b947-3abd-4a77-9aff-bd1cdf4fe101" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12958" - ], - "x-ms-correlation-request-id": [ - "9643183a-9001-4c3f-b6d6-5722d31bf831" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215649Z:9643183a-9001-4c3f-b6d6-5722d31bf831" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fedb56be-19e2-45f7-b0f7-547f5ba55764" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12957" - ], - "x-ms-correlation-request-id": [ - "0a2012d9-cb77-4996-a0e7-f1b0057c01fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215649Z:0a2012d9-cb77-4996-a0e7-f1b0057c01fe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1715664-39ee-4534-b35a-140eeb8df51b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12956" - ], - "x-ms-correlation-request-id": [ - "c14f3ec6-7496-496b-a29b-4dbf82d613a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215649Z:c14f3ec6-7496-496b-a29b-4dbf82d613a8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d4543be-5f94-4270-a45a-f9eb00c1e29b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12955" - ], - "x-ms-correlation-request-id": [ - "20997915-4a05-4a99-b344-f91c0f1d6a9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215650Z:20997915-4a05-4a99-b344-f91c0f1d6a9d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ffae51e-eb23-4f9d-aef2-ffe2cc9fac10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12954" - ], - "x-ms-correlation-request-id": [ - "3a21d1bd-8203-4517-a613-57027328232b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215650Z:3a21d1bd-8203-4517-a613-57027328232b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "937ae8f4-975e-4248-8eee-fc1f28f3bd60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12953" - ], - "x-ms-correlation-request-id": [ - "7fb96e49-ed37-4919-a242-da39f4c26731" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215650Z:7fb96e49-ed37-4919-a242-da39f4c26731" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a3bc974-1039-4653-b6bb-c26bc60163cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12952" - ], - "x-ms-correlation-request-id": [ - "262fd6c0-df1c-4855-947c-b24c7718b2d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215650Z:262fd6c0-df1c-4855-947c-b24c7718b2d3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "460c5d50-6cca-4a91-85ea-b38debe44071" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12951" - ], - "x-ms-correlation-request-id": [ - "edf8988c-2492-45f3-99e7-cd67998dbff7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215650Z:edf8988c-2492-45f3-99e7-cd67998dbff7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22e2c8f7-14c2-4f66-bbe9-edf8bdc96f4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12950" - ], - "x-ms-correlation-request-id": [ - "1f503eb1-2f26-458e-8836-4887842d60a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215651Z:1f503eb1-2f26-458e-8836-4887842d60a6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7824031-ce86-40e4-bc75-bd1bd1ca781e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12949" - ], - "x-ms-correlation-request-id": [ - "37e463d4-e7bf-4bd0-a0ba-4d81120637d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215651Z:37e463d4-e7bf-4bd0-a0ba-4d81120637d4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "978cb91f-9d72-481a-86b7-523f0199e702" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12948" - ], - "x-ms-correlation-request-id": [ - "3b341b46-3852-4cd4-91a7-7c2769de0ca8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215651Z:3b341b46-3852-4cd4-91a7-7c2769de0ca8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3c6578b3-22ea-4556-b6d9-12bc3e4fb904" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12947" - ], - "x-ms-correlation-request-id": [ - "75b56e8f-f068-4fab-bd83-0af67b6fb0b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215651Z:75b56e8f-f068-4fab-bd83-0af67b6fb0b7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84c15a64-b503-413a-a8e7-ddd243688022" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12946" - ], - "x-ms-correlation-request-id": [ - "c902f4d6-6f99-4698-9739-76ba2c8ecb52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215651Z:c902f4d6-6f99-4698-9739-76ba2c8ecb52" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "550217a0-bcb2-43d5-b310-4e85b127837d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12945" - ], - "x-ms-correlation-request-id": [ - "7d857fe5-83ca-41a3-9ac2-1577c245e85a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215652Z:7d857fe5-83ca-41a3-9ac2-1577c245e85a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5048a18-e07b-4833-b14c-b70a12d11048" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12944" - ], - "x-ms-correlation-request-id": [ - "7fcd504e-f07b-4863-8879-cefefad37d99" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215652Z:7fcd504e-f07b-4863-8879-cefefad37d99" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a99b0c41-9c5f-4baf-a878-d2a706479106" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12943" - ], - "x-ms-correlation-request-id": [ - "76759e72-0c61-407f-9662-6c22488d2d40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215652Z:76759e72-0c61-407f-9662-6c22488d2d40" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf192d4b-17e1-41d7-ab99-f4a95a1f1aef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12942" - ], - "x-ms-correlation-request-id": [ - "afc9eb7c-02d4-4f1f-87d5-28b3ecaf6c9e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215652Z:afc9eb7c-02d4-4f1f-87d5-28b3ecaf6c9e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f9273fc-51d1-47ab-a0f5-55d8a438fd96" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12941" - ], - "x-ms-correlation-request-id": [ - "a366114e-4bec-48e3-945f-36f9835cb400" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215652Z:a366114e-4bec-48e3-945f-36f9835cb400" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "179b186d-3a7e-4d98-b9bb-863bab5b9516" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12940" - ], - "x-ms-correlation-request-id": [ - "bfe7b2b0-a934-47b2-a06c-2ad80714edfb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215652Z:bfe7b2b0-a934-47b2-a06c-2ad80714edfb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cbfdb9a1-5805-4704-b37c-2a9e2612d289" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12939" - ], - "x-ms-correlation-request-id": [ - "794309c5-8d66-4372-a1cb-3c0a2afb48ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215652Z:794309c5-8d66-4372-a1cb-3c0a2afb48ee" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5cec8db3-e5e9-4e8a-9ab4-54a1606950ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12938" - ], - "x-ms-correlation-request-id": [ - "e049d730-3caa-4c15-98ea-33fc0fe77642" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215653Z:e049d730-3caa-4c15-98ea-33fc0fe77642" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01a63c3b-e3d7-4000-9f8b-c4e5aa86c157" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12937" - ], - "x-ms-correlation-request-id": [ - "eeae82a5-6847-4315-85a3-6570e20837ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215653Z:eeae82a5-6847-4315-85a3-6570e20837ec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b82957c5-e3aa-43e5-9e3d-1fc2c5af0f29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12936" - ], - "x-ms-correlation-request-id": [ - "8a784c04-2a86-46f1-9f8d-91e1810fb7a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215653Z:8a784c04-2a86-46f1-9f8d-91e1810fb7a3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6393b40-6c37-4383-bde6-c29e62da3625" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12935" - ], - "x-ms-correlation-request-id": [ - "f77ada2b-c018-4ac6-8fce-eea848e8eb6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215653Z:f77ada2b-c018-4ac6-8fce-eea848e8eb6c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20263a38-4c06-4424-9cfb-4c141ac60032" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12934" - ], - "x-ms-correlation-request-id": [ - "4a008e4a-2d69-4c84-95a4-53f78609707e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215653Z:4a008e4a-2d69-4c84-95a4-53f78609707e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d64f4102-b27d-4256-a078-7ffb5881a816" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12933" - ], - "x-ms-correlation-request-id": [ - "f7a67d81-9ad7-40f8-9ee2-843acf5e8c51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215654Z:f7a67d81-9ad7-40f8-9ee2-843acf5e8c51" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36bf1429-a4e4-4800-8fe7-aabf526f429e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12932" - ], - "x-ms-correlation-request-id": [ - "c7757ae8-8d4a-4718-a53f-d1e9b5566094" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215654Z:c7757ae8-8d4a-4718-a53f-d1e9b5566094" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f52633bd-b8e9-4d0b-8680-afcfd4e92677" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12931" - ], - "x-ms-correlation-request-id": [ - "4711c3bb-78b0-453c-9c57-2057c76fc0c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215654Z:4711c3bb-78b0-453c-9c57-2057c76fc0c6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6cd5623-e228-4dee-81d4-17099b4e4dcb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12930" - ], - "x-ms-correlation-request-id": [ - "ac8a3de7-4f3f-4c0c-b2d4-fd7a3b0e0642" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215654Z:ac8a3de7-4f3f-4c0c-b2d4-fd7a3b0e0642" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be0e8314-9c20-4237-8229-644f51b20d37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12929" - ], - "x-ms-correlation-request-id": [ - "0a4b467b-0623-449f-8fb5-7cc1b2bd3013" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215654Z:0a4b467b-0623-449f-8fb5-7cc1b2bd3013" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44bbd1c2-1710-400e-b786-b8a9505d8874" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12928" - ], - "x-ms-correlation-request-id": [ - "ae519b58-cb2c-4614-bf5f-8fc12066ec4d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215655Z:ae519b58-cb2c-4614-bf5f-8fc12066ec4d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "190a45c9-73d4-4c70-99ec-50739f0554bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12927" - ], - "x-ms-correlation-request-id": [ - "7e53f199-d8b7-4db5-83e6-4e5affad4b1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215655Z:7e53f199-d8b7-4db5-83e6-4e5affad4b1b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c4d44d7a-9f7b-4558-a164-a0e9110bb182" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12926" - ], - "x-ms-correlation-request-id": [ - "af148485-4bba-4066-ae91-2b34beaf99ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215655Z:af148485-4bba-4066-ae91-2b34beaf99ae" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47b9f5fa-6e14-4b3a-86af-3cb27c1ae197" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12925" - ], - "x-ms-correlation-request-id": [ - "1531e5e1-cd80-41d2-82c7-e6e7b03ac6b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215655Z:1531e5e1-cd80-41d2-82c7-e6e7b03ac6b9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a578267f-b4b0-4c0f-85e6-b87fc37f2bae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12924" - ], - "x-ms-correlation-request-id": [ - "9e35f2ea-490c-41b1-8296-ba19a52ac902" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215655Z:9e35f2ea-490c-41b1-8296-ba19a52ac902" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76eb61ea-2a25-4d90-82a3-47a5c10c8131" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12923" - ], - "x-ms-correlation-request-id": [ - "be31c3de-3da6-44cf-b6ed-d33ec19629ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215655Z:be31c3de-3da6-44cf-b6ed-d33ec19629ce" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f63b473-85aa-483b-bb32-8f2b805c1f48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12922" - ], - "x-ms-correlation-request-id": [ - "4e670d9c-f5f6-4258-aa01-1d6b33c83476" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215656Z:4e670d9c-f5f6-4258-aa01-1d6b33c83476" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe1495d9-3e08-4e5a-a6f5-fbb73903be74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12921" - ], - "x-ms-correlation-request-id": [ - "027ce2e0-953b-4fb2-92e3-f6fe62f26bc0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215656Z:027ce2e0-953b-4fb2-92e3-f6fe62f26bc0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e042af3-ae80-4b87-9881-4c715b1a9a6b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12920" - ], - "x-ms-correlation-request-id": [ - "db914036-7992-4a1b-baee-9c68de7bc76e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215656Z:db914036-7992-4a1b-baee-9c68de7bc76e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c482e8d3-4e32-4eb7-aa58-3b9d7c10bc5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12919" - ], - "x-ms-correlation-request-id": [ - "bb22adf8-9931-41e5-b633-0febd8a12fe2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215656Z:bb22adf8-9931-41e5-b633-0febd8a12fe2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "198a398a-270a-476e-ae54-c016d0b301a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12918" - ], - "x-ms-correlation-request-id": [ - "c8e6232c-67ba-469d-90b4-7f4de16b18fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215656Z:c8e6232c-67ba-469d-90b4-7f4de16b18fc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1eaee67d-9a97-492c-b808-afa236803005" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12917" - ], - "x-ms-correlation-request-id": [ - "954d81f5-f099-4a3b-b413-330caa58e2f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215657Z:954d81f5-f099-4a3b-b413-330caa58e2f3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0773136c-893a-4c18-9016-33d482e5d6a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12916" - ], - "x-ms-correlation-request-id": [ - "89ed43c0-0629-4366-9c46-e2e95f12505f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215657Z:89ed43c0-0629-4366-9c46-e2e95f12505f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "abe17ac5-cbbd-41ef-ae93-33e7688627e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12915" - ], - "x-ms-correlation-request-id": [ - "2574b1c1-fc88-474e-b4ae-305e262c696a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215657Z:2574b1c1-fc88-474e-b4ae-305e262c696a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39fb9c2e-a0c5-4e8a-ba75-f6553dd9cda6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12914" - ], - "x-ms-correlation-request-id": [ - "8b45b8cf-4a19-4fed-85f1-2313dc2d0a94" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215657Z:8b45b8cf-4a19-4fed-85f1-2313dc2d0a94" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "012963cb-9aa8-41e0-bea6-b28d0712f3c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12913" - ], - "x-ms-correlation-request-id": [ - "8a745ee5-d170-48aa-8029-d797008d5d34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215657Z:8a745ee5-d170-48aa-8029-d797008d5d34" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11736bae-b3b3-459d-a3ef-2fdb2c840bc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12912" - ], - "x-ms-correlation-request-id": [ - "07865847-fd66-4b33-b9f4-9b251f62d477" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215658Z:07865847-fd66-4b33-b9f4-9b251f62d477" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4af23aef-8f73-40ab-b351-4263da40e02e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12911" - ], - "x-ms-correlation-request-id": [ - "ab3bd9ef-16db-42fb-ac01-cd8f2c1b9822" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215658Z:ab3bd9ef-16db-42fb-ac01-cd8f2c1b9822" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a1ad786-f7f7-43e2-857c-2e6a51835f6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12910" - ], - "x-ms-correlation-request-id": [ - "883064b9-1df7-4c36-bbfb-e5ffadf35fdd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215658Z:883064b9-1df7-4c36-bbfb-e5ffadf35fdd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04aa292f-9c4b-4e63-811f-c2548dbf3191" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12909" - ], - "x-ms-correlation-request-id": [ - "341d716e-608c-474f-92a2-56e394ae4acd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215658Z:341d716e-608c-474f-92a2-56e394ae4acd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7b9b290-a2a3-41d8-b772-d624b92ca9f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12908" - ], - "x-ms-correlation-request-id": [ - "d9d09731-9643-42bf-8659-1c679b7dc01c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215658Z:d9d09731-9643-42bf-8659-1c679b7dc01c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f699bd9f-56db-4b78-9bbe-812febfe408b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12907" - ], - "x-ms-correlation-request-id": [ - "35960e0b-38fe-45e8-b4b0-c446cddc52a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215659Z:35960e0b-38fe-45e8-b4b0-c446cddc52a3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10307e37-0b3c-4829-8625-fcb27b91db1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12906" - ], - "x-ms-correlation-request-id": [ - "23d8d0a0-8995-465a-9c38-1f97ccae2f69" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215659Z:23d8d0a0-8995-465a-9c38-1f97ccae2f69" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dbb0b3c1-f56c-4d49-8872-1041d219d3a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12905" - ], - "x-ms-correlation-request-id": [ - "5634fd35-ceb5-437f-b2d1-97d56715dc6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215659Z:5634fd35-ceb5-437f-b2d1-97d56715dc6d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0572fc8-1bd4-4259-b54b-ff61bc0f77d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12904" - ], - "x-ms-correlation-request-id": [ - "3320e2b2-2060-4953-829b-0d9a78dd6a7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215659Z:3320e2b2-2060-4953-829b-0d9a78dd6a7a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ef63888-4a99-4b32-ad19-62dc819c7bd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12903" - ], - "x-ms-correlation-request-id": [ - "6292df60-da3b-4397-a7a4-c4a79221e9fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215659Z:6292df60-da3b-4397-a7a4-c4a79221e9fb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "038e96a4-5c48-40aa-b343-7110196187b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12902" - ], - "x-ms-correlation-request-id": [ - "379d4ec6-15eb-429d-adf4-e707618c0258" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215659Z:379d4ec6-15eb-429d-adf4-e707618c0258" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7eb199ae-0bea-4417-95a5-dd44976ed59d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12901" - ], - "x-ms-correlation-request-id": [ - "2aa5c289-a3e2-4678-80c7-698ce637655b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215700Z:2aa5c289-a3e2-4678-80c7-698ce637655b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72065ba9-ae39-49ac-ae00-ccaa61ffff12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12900" - ], - "x-ms-correlation-request-id": [ - "4468c847-a753-4468-a6dd-b588dde168e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215700Z:4468c847-a753-4468-a6dd-b588dde168e5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:56:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "631c5afa-89eb-497e-a5cf-fcfaef7eb8a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12899" - ], - "x-ms-correlation-request-id": [ - "ded07a07-38c3-4f63-ae6f-deaa514c3384" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215700Z:ded07a07-38c3-4f63-ae6f-deaa514c3384" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13ccc2b5-a7a7-4fb2-8022-5d72dc863fe9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12898" - ], - "x-ms-correlation-request-id": [ - "6b3b87b4-9658-490d-93bd-1ec63a9d802a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215700Z:6b3b87b4-9658-490d-93bd-1ec63a9d802a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1096be96-7710-4c17-941d-6924d443d05d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12897" - ], - "x-ms-correlation-request-id": [ - "dbe38177-a372-475b-a6ca-f4c206bdff27" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215700Z:dbe38177-a372-475b-a6ca-f4c206bdff27" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bdf16a2-576d-42e3-917b-ef94c914be78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12896" - ], - "x-ms-correlation-request-id": [ - "45478382-0fb2-4d80-af81-d11d32f65f86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215701Z:45478382-0fb2-4d80-af81-d11d32f65f86" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52e4112a-f9f4-4997-9692-ec6c98d12b68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12895" - ], - "x-ms-correlation-request-id": [ - "bec9f87f-0c77-440e-ad83-6891f6ef4cfb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215701Z:bec9f87f-0c77-440e-ad83-6891f6ef4cfb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13175e2a-3b32-4c11-9b6f-d06d52d13ec2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12894" - ], - "x-ms-correlation-request-id": [ - "3afe0dbc-def9-4768-803e-11665e3b44e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215701Z:3afe0dbc-def9-4768-803e-11665e3b44e0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "beca591f-6f41-4e84-8b08-2f52437824c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12893" - ], - "x-ms-correlation-request-id": [ - "e8019a9e-34a7-4c63-bc07-bbdcf362553a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215701Z:e8019a9e-34a7-4c63-bc07-bbdcf362553a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf9b363f-14ab-4067-8c5d-1388fab9255a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12892" - ], - "x-ms-correlation-request-id": [ - "4284e2a7-6d6e-4b74-a522-280c98893309" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215701Z:4284e2a7-6d6e-4b74-a522-280c98893309" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1022c00b-0b3d-418d-8391-e06e09897dd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12891" - ], - "x-ms-correlation-request-id": [ - "7ebf65a1-516c-467f-875b-fa186a7705ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215701Z:7ebf65a1-516c-467f-875b-fa186a7705ef" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ff59bf6-b4aa-4374-857c-8833390641c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12890" - ], - "x-ms-correlation-request-id": [ - "e0e9c8fd-5608-4ab3-9ee1-8945b435afef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215701Z:e0e9c8fd-5608-4ab3-9ee1-8945b435afef" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25e75133-fc1e-4613-a77e-c7ff25d196ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12889" - ], - "x-ms-correlation-request-id": [ - "5372518c-1e01-41ca-b115-83f25a998098" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215702Z:5372518c-1e01-41ca-b115-83f25a998098" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b840b8a-6dd6-43b8-86e0-fa048c117cfb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12888" - ], - "x-ms-correlation-request-id": [ - "e3c3c76f-af3b-4507-ad16-1f73bd7ed4aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215702Z:e3c3c76f-af3b-4507-ad16-1f73bd7ed4aa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c4efc46-1133-4348-88a3-18a61bb97c7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12887" - ], - "x-ms-correlation-request-id": [ - "da7b8693-1fb1-4781-9112-df5fe513a2f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215702Z:da7b8693-1fb1-4781-9112-df5fe513a2f8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3137c119-7a23-4288-81bd-9f4e19a57d43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12886" - ], - "x-ms-correlation-request-id": [ - "47c3d4ba-69ce-445a-a6fe-b93a6bd06cdd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215702Z:47c3d4ba-69ce-445a-a6fe-b93a6bd06cdd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1daefe8a-2f7d-47f5-8976-8ef9d6624285" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12885" - ], - "x-ms-correlation-request-id": [ - "7d0df66b-a650-4aa7-b4a7-6007eb90fc77" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215702Z:7d0df66b-a650-4aa7-b4a7-6007eb90fc77" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea594f7c-b285-4027-b64a-892e1bc78b97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12884" - ], - "x-ms-correlation-request-id": [ - "c6e6b511-7b6f-49d3-88d4-de470bc44e3f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215703Z:c6e6b511-7b6f-49d3-88d4-de470bc44e3f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c015df0b-7d12-490a-9b70-991db9d44664" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12883" - ], - "x-ms-correlation-request-id": [ - "3324ab07-6d98-453b-a9c6-3e3ce549e55d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215703Z:3324ab07-6d98-453b-a9c6-3e3ce549e55d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f327de6-0892-4682-aa22-7bd2a295feab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12882" - ], - "x-ms-correlation-request-id": [ - "bad94987-fcae-43e0-be58-a590b281fa2d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215703Z:bad94987-fcae-43e0-be58-a590b281fa2d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8e4d6de-f85b-4b64-9f5a-e00b28072630" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12881" - ], - "x-ms-correlation-request-id": [ - "9dec34e3-103a-40f2-9f48-5e3ac2534797" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215703Z:9dec34e3-103a-40f2-9f48-5e3ac2534797" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d71c810d-d8c8-4398-b1b3-1cfd9038442d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12880" - ], - "x-ms-correlation-request-id": [ - "ecd3d093-f358-4bb4-ac86-7008a24b70a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215703Z:ecd3d093-f358-4bb4-ac86-7008a24b70a6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "130b9721-4959-4246-a29b-fb540effc61b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12879" - ], - "x-ms-correlation-request-id": [ - "d41813b8-877a-45b7-8002-6bb639269075" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215704Z:d41813b8-877a-45b7-8002-6bb639269075" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d145f37-295d-4723-8067-10666402ab5f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12878" - ], - "x-ms-correlation-request-id": [ - "a8488909-77da-409d-b046-2d00e389f63b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215704Z:a8488909-77da-409d-b046-2d00e389f63b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d7d4712-26f8-46ae-8db3-634f39bf219d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12877" - ], - "x-ms-correlation-request-id": [ - "c1c58d9d-892b-42e6-8d49-4e32dccb9729" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215704Z:c1c58d9d-892b-42e6-8d49-4e32dccb9729" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0aa994da-8d01-4e9c-9432-e8cc2eddf691" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12876" - ], - "x-ms-correlation-request-id": [ - "6acc8e37-b8ab-4d4a-9ec9-093feb8f99b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215704Z:6acc8e37-b8ab-4d4a-9ec9-093feb8f99b2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1920467-d7f4-4a3b-8a26-41d75e29472b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12875" - ], - "x-ms-correlation-request-id": [ - "ae600729-4c09-4e7a-8b19-142f5efbe814" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215704Z:ae600729-4c09-4e7a-8b19-142f5efbe814" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b93ecdd-19ab-44f7-85a7-ff6d41f84e80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12874" - ], - "x-ms-correlation-request-id": [ - "60dba6cc-132b-4d9e-b1e1-c8ebdb6c40fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215705Z:60dba6cc-132b-4d9e-b1e1-c8ebdb6c40fb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "077139f0-e088-4d04-a68e-5eb83ea1a32e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12873" - ], - "x-ms-correlation-request-id": [ - "45a23154-deb1-405a-8b19-1121c3f6a9ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215705Z:45a23154-deb1-405a-8b19-1121c3f6a9ee" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54e1234e-3cd1-4628-a861-bdbdf76d4a11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12872" - ], - "x-ms-correlation-request-id": [ - "b62b9ab5-3193-4716-b94e-59219c620dc1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215705Z:b62b9ab5-3193-4716-b94e-59219c620dc1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f3fed8b-9a39-4ab4-a34a-1a31f822045c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12871" - ], - "x-ms-correlation-request-id": [ - "fd3c665e-d3d3-4061-8682-aa126cfe839b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215705Z:fd3c665e-d3d3-4061-8682-aa126cfe839b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2bfe42d5-3de4-4666-8aeb-cda482f2d7bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12870" - ], - "x-ms-correlation-request-id": [ - "89363435-3349-410f-8a03-d42310fdb548" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215705Z:89363435-3349-410f-8a03-d42310fdb548" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "612ba483-4c63-4285-bc6b-7c5bea1d2368" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12869" - ], - "x-ms-correlation-request-id": [ - "db9436a3-b47b-4e6b-a0ee-e50756386b3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215705Z:db9436a3-b47b-4e6b-a0ee-e50756386b3d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a09fc427-a7bf-4d38-a85e-877c037ad02e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12868" - ], - "x-ms-correlation-request-id": [ - "0b097b9f-c548-4086-9d5d-7b92614a1ade" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215705Z:0b097b9f-c548-4086-9d5d-7b92614a1ade" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65aa483f-3674-4667-b863-e995233bfc20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12867" - ], - "x-ms-correlation-request-id": [ - "cd39909d-7ad1-46ee-bc0a-f1bf071d63eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215706Z:cd39909d-7ad1-46ee-bc0a-f1bf071d63eb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e11b3f5b-479d-4a2c-8c56-0525ead8b009" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12866" - ], - "x-ms-correlation-request-id": [ - "b3c05d61-84c7-40c5-bdf2-b9231f582947" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215706Z:b3c05d61-84c7-40c5-bdf2-b9231f582947" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1d6bdf0-179e-40f7-ab3f-91799990fe97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12865" - ], - "x-ms-correlation-request-id": [ - "dfda89d5-5f76-4312-8ef8-6735b3cf9615" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215706Z:dfda89d5-5f76-4312-8ef8-6735b3cf9615" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9394d5db-7447-43dd-8ff8-ced5ad0d3ca5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12864" - ], - "x-ms-correlation-request-id": [ - "acf71458-7dde-466d-9453-2ee6527d3d72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215706Z:acf71458-7dde-466d-9453-2ee6527d3d72" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b5b08e2-c7e4-4d93-83b2-547b36c44b09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12863" - ], - "x-ms-correlation-request-id": [ - "20dca878-5acd-4ef8-863b-4cfcc956ba74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215706Z:20dca878-5acd-4ef8-863b-4cfcc956ba74" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0df54857-84ad-4e2f-88fc-5fbb5f452eee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12862" - ], - "x-ms-correlation-request-id": [ - "71e12dfc-faff-4af3-ab89-b1333ef9ec9c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215706Z:71e12dfc-faff-4af3-ab89-b1333ef9ec9c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ed8fdc8-e94a-44e1-87f3-0ed789b88532" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12861" - ], - "x-ms-correlation-request-id": [ - "e4b98300-bb32-4893-9f04-7aac6d4f11cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215707Z:e4b98300-bb32-4893-9f04-7aac6d4f11cb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f1fcec9-2bc3-475f-8a3f-d2b52d40edbf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12860" - ], - "x-ms-correlation-request-id": [ - "696c3830-d34d-4494-9f6e-7ee827d94ab6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215707Z:696c3830-d34d-4494-9f6e-7ee827d94ab6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f657b04a-1e4c-4446-84f6-4b8022ff4da4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12859" - ], - "x-ms-correlation-request-id": [ - "4f4e5621-8acc-4cf8-9c24-0169681175d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215707Z:4f4e5621-8acc-4cf8-9c24-0169681175d2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90ef4461-5048-41b1-b2c8-f56b3990dfe7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12858" - ], - "x-ms-correlation-request-id": [ - "7da74144-6162-4dfa-a25f-1ddfb7250477" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215707Z:7da74144-6162-4dfa-a25f-1ddfb7250477" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b66b0f3e-d12c-4743-b45f-45354c3c3c36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12857" - ], - "x-ms-correlation-request-id": [ - "35bc8ace-1b28-4c27-a97f-0ad5057af288" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215707Z:35bc8ace-1b28-4c27-a97f-0ad5057af288" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98b01764-fd55-44e7-b72a-8fea0364b6a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12856" - ], - "x-ms-correlation-request-id": [ - "4d3ee37d-c3bb-4438-8eee-35507ae7f2e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215707Z:4d3ee37d-c3bb-4438-8eee-35507ae7f2e1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04e394bb-d8d1-491a-b912-cbe9c96f857e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12855" - ], - "x-ms-correlation-request-id": [ - "50042674-ffc0-4a38-94cf-b2c012703d82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215708Z:50042674-ffc0-4a38-94cf-b2c012703d82" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "744900d3-b44a-4dc1-8010-51cf4eb69197" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12854" - ], - "x-ms-correlation-request-id": [ - "6db51560-965b-4c22-965f-4ebd0b49e1d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215708Z:6db51560-965b-4c22-965f-4ebd0b49e1d6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8d49873-d10e-4705-9356-97e1374d6724" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12853" - ], - "x-ms-correlation-request-id": [ - "75d9c69c-212f-4e85-9a19-f513b6afa332" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215708Z:75d9c69c-212f-4e85-9a19-f513b6afa332" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0c57a9b-3812-4dcb-9944-158cddd2c084" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12852" - ], - "x-ms-correlation-request-id": [ - "ec520193-61e3-4e00-84b0-f58c64c0af87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215708Z:ec520193-61e3-4e00-84b0-f58c64c0af87" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f9891d8-8e56-409c-b560-8311b6dafde5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12851" - ], - "x-ms-correlation-request-id": [ - "52264dae-b46a-4545-8f4b-08b039bd7bcc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215708Z:52264dae-b46a-4545-8f4b-08b039bd7bcc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "257e5f12-8eb2-4b6a-b255-b85c3a040fd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12850" - ], - "x-ms-correlation-request-id": [ - "fa6ce311-00cd-415a-bdc5-659880460da5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215708Z:fa6ce311-00cd-415a-bdc5-659880460da5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f371fd93-73cf-4029-85ee-eb5c3c4198ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12849" - ], - "x-ms-correlation-request-id": [ - "6b1e9d0a-6ef6-428b-9901-73a605b4d74e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215709Z:6b1e9d0a-6ef6-428b-9901-73a605b4d74e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff499467-d82f-4e12-bdbd-b006e424ef6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12848" - ], - "x-ms-correlation-request-id": [ - "4636bc9d-16b9-4e07-b42d-85ce6d30870f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215709Z:4636bc9d-16b9-4e07-b42d-85ce6d30870f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "910cf34c-2abe-4742-8f44-d974742263f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12847" - ], - "x-ms-correlation-request-id": [ - "b1e415ee-a791-4ab2-85a0-aab1ba26ca4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215709Z:b1e415ee-a791-4ab2-85a0-aab1ba26ca4b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e799113-473a-497c-933a-0a0b98d3c33d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12846" - ], - "x-ms-correlation-request-id": [ - "a9638433-043a-4af5-aed4-60c134d9be3f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215709Z:a9638433-043a-4af5-aed4-60c134d9be3f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79df4793-1da9-46ce-b952-0f5fad2b97c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12845" - ], - "x-ms-correlation-request-id": [ - "f8ab0c2d-d339-4cd4-a7b4-35672f325881" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215709Z:f8ab0c2d-d339-4cd4-a7b4-35672f325881" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f059fb33-02a5-41fe-afeb-8bfa43e89cce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12844" - ], - "x-ms-correlation-request-id": [ - "0c03e045-f992-4668-bf9c-2d1a060783fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215709Z:0c03e045-f992-4668-bf9c-2d1a060783fb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96780a43-4737-4a7b-b1ae-be1b48fec2c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12843" - ], - "x-ms-correlation-request-id": [ - "0389809c-a746-4a7d-a95f-b7cccaa884fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215709Z:0389809c-a746-4a7d-a95f-b7cccaa884fb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2cbbbd71-80a3-4462-947d-8e410d52a35d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12842" - ], - "x-ms-correlation-request-id": [ - "f918f25d-aca9-46c4-a58a-3438bf6a098d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215710Z:f918f25d-aca9-46c4-a58a-3438bf6a098d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aebf027c-13b3-4174-bbed-2985ffe74092" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12841" - ], - "x-ms-correlation-request-id": [ - "addbac09-b2a2-40ab-9caf-1688cb29cb56" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215710Z:addbac09-b2a2-40ab-9caf-1688cb29cb56" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68a310b2-7793-4909-be16-71a435ca271e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12840" - ], - "x-ms-correlation-request-id": [ - "621dd520-7609-47de-b4ac-cdd826f5c24e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215710Z:621dd520-7609-47de-b4ac-cdd826f5c24e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04cb2705-9d6d-4ae4-96a2-00ac4df6a8a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12839" - ], - "x-ms-correlation-request-id": [ - "69d79698-c076-492a-a33a-710977cbe9ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215710Z:69d79698-c076-492a-a33a-710977cbe9ab" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56b4ed24-0c78-4f2a-a5c1-7afef851bf72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12838" - ], - "x-ms-correlation-request-id": [ - "f29c4199-58c6-4eb3-98c2-ae8dca2df613" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215710Z:f29c4199-58c6-4eb3-98c2-ae8dca2df613" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "266db5f6-831e-4c6d-b7ab-d2a3c7cd0fd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12837" - ], - "x-ms-correlation-request-id": [ - "01bf877b-10fc-49f8-9fe2-6843aeb007a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215710Z:01bf877b-10fc-49f8-9fe2-6843aeb007a4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f97ee97-d02c-46f2-b7b0-98f072c0df38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12836" - ], - "x-ms-correlation-request-id": [ - "8d553c5f-56dc-4dcf-9950-8b30154ebb13" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215711Z:8d553c5f-56dc-4dcf-9950-8b30154ebb13" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06488fba-74f7-45ff-b0a7-18db6341ab27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12835" - ], - "x-ms-correlation-request-id": [ - "3073a165-5fc6-4f33-86b2-e79c7a48bea8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215711Z:3073a165-5fc6-4f33-86b2-e79c7a48bea8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8de51fb2-7e42-41c0-9871-f5ce4285a7de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12834" - ], - "x-ms-correlation-request-id": [ - "db6149bc-6cc5-4458-bc21-cf0f41e776a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215711Z:db6149bc-6cc5-4458-bc21-cf0f41e776a7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "252b054c-97e9-4f68-bda8-579c9f7f6b66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12833" - ], - "x-ms-correlation-request-id": [ - "5b471914-cbd9-4682-ba1c-9abbfe171ae2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215711Z:5b471914-cbd9-4682-ba1c-9abbfe171ae2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4895a4ed-ac27-4f73-9258-faaff0dc8c33" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12832" - ], - "x-ms-correlation-request-id": [ - "5601d065-fbfc-4c78-8efc-5e755c2cdf30" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215711Z:5601d065-fbfc-4c78-8efc-5e755c2cdf30" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed6f2ba7-665b-41b0-bdee-7c278b5dc23f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12831" - ], - "x-ms-correlation-request-id": [ - "ff04b357-22c9-4945-90bc-454e51f3dbe2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215711Z:ff04b357-22c9-4945-90bc-454e51f3dbe2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8f0da67-d9ae-4ea2-bb53-0a70a4a6e8af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12830" - ], - "x-ms-correlation-request-id": [ - "95fa3b1b-67df-4d90-b125-2277e6f59d72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215712Z:95fa3b1b-67df-4d90-b125-2277e6f59d72" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "534ec749-1926-4b37-a055-b468cdc9c9e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12829" - ], - "x-ms-correlation-request-id": [ - "12dfb170-94c6-4d9a-8e1e-c95291c022c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215712Z:12dfb170-94c6-4d9a-8e1e-c95291c022c1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b69d8db8-c2d2-4761-b53f-d9a5da9ddc61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12828" - ], - "x-ms-correlation-request-id": [ - "d7e7ea74-76d9-428f-bf26-a48873bcd49a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215712Z:d7e7ea74-76d9-428f-bf26-a48873bcd49a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52b9a689-a2cd-4565-9fe2-e70e380b24c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12827" - ], - "x-ms-correlation-request-id": [ - "72093438-d36a-4638-ac99-822c36e57077" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215712Z:72093438-d36a-4638-ac99-822c36e57077" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4e2f92a-41ed-4303-bb51-ffdf6b812273" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12826" - ], - "x-ms-correlation-request-id": [ - "520f0ba6-474e-4744-924a-5e7d22a48146" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215712Z:520f0ba6-474e-4744-924a-5e7d22a48146" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "429672b7-bbc3-470d-90c5-7a1d5919f72f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12825" - ], - "x-ms-correlation-request-id": [ - "19f243ef-bb2d-41df-832f-5dd344f35d32" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215712Z:19f243ef-bb2d-41df-832f-5dd344f35d32" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "928333fe-8175-4402-a808-f9c7b533bef5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12824" - ], - "x-ms-correlation-request-id": [ - "31fa77c1-064d-4e32-bda3-e6ca45928e05" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215712Z:31fa77c1-064d-4e32-bda3-e6ca45928e05" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "028fdf7a-16ee-44da-b9f5-46bea44d8a7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12823" - ], - "x-ms-correlation-request-id": [ - "72c50229-2955-4a28-be65-6cf05f4ef859" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215713Z:72c50229-2955-4a28-be65-6cf05f4ef859" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20dd03b9-8b7c-4f48-8995-458bc5ec42ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12822" - ], - "x-ms-correlation-request-id": [ - "c1983640-07d8-4430-8878-0050f08df177" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215713Z:c1983640-07d8-4430-8878-0050f08df177" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "871bc07c-85f3-4d8b-8c7c-df21c9e42514" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12821" - ], - "x-ms-correlation-request-id": [ - "38bae077-350c-4be1-b66f-76722df479d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215713Z:38bae077-350c-4be1-b66f-76722df479d5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5715a93-55e8-4c8f-897f-02050497b2a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12820" - ], - "x-ms-correlation-request-id": [ - "01412cb2-5d1d-437f-9676-20f6ddd8d3b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215713Z:01412cb2-5d1d-437f-9676-20f6ddd8d3b8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f60defaa-b0a7-495d-89a6-49801867396b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12819" - ], - "x-ms-correlation-request-id": [ - "11159ae4-7338-441d-b8bb-f404a451c8cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215713Z:11159ae4-7338-441d-b8bb-f404a451c8cf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e991c1a-9574-4356-85a9-5c59201979ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12818" - ], - "x-ms-correlation-request-id": [ - "1cab9a07-2637-472f-bd08-e81c0ccb76b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215714Z:1cab9a07-2637-472f-bd08-e81c0ccb76b1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8690667c-29cb-4b28-ab2d-3ca69478eeb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12817" - ], - "x-ms-correlation-request-id": [ - "7d0e4d95-0562-494a-a4f7-46e8d12ca684" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215714Z:7d0e4d95-0562-494a-a4f7-46e8d12ca684" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17bc6756-e796-4f6b-9967-541e34eb4cfe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12816" - ], - "x-ms-correlation-request-id": [ - "82dae7eb-6763-47e3-bd18-b160f874b710" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215714Z:82dae7eb-6763-47e3-bd18-b160f874b710" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f5a4cd8-37d5-4be8-9e62-9d380067ff12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12815" - ], - "x-ms-correlation-request-id": [ - "fcddd797-f512-4f2c-8431-5b9bce2584b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215714Z:fcddd797-f512-4f2c-8431-5b9bce2584b5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c646163d-7dd8-44a3-9458-e179c5c0991d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12814" - ], - "x-ms-correlation-request-id": [ - "bd60d55c-372d-4103-b063-05f30a405249" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215714Z:bd60d55c-372d-4103-b063-05f30a405249" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4dee469f-eef0-4790-b26f-37571f8241dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12813" - ], - "x-ms-correlation-request-id": [ - "b4ec0580-43ac-4908-ae34-1e9c2c6a0429" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215715Z:b4ec0580-43ac-4908-ae34-1e9c2c6a0429" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa5adad5-d2bd-4ce3-83f5-f0cd8b47c582" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12812" - ], - "x-ms-correlation-request-id": [ - "c1511003-6c0a-46ce-99ea-94844ed7ceba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215715Z:c1511003-6c0a-46ce-99ea-94844ed7ceba" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa819e45-c0b2-43a1-b272-d8a5a1803ce1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12811" - ], - "x-ms-correlation-request-id": [ - "8ae5e0c8-dfe6-4caa-9867-757b1af76022" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215715Z:8ae5e0c8-dfe6-4caa-9867-757b1af76022" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b2af44a-5cbe-48d1-bbd5-126809ce1408" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12810" - ], - "x-ms-correlation-request-id": [ - "f73cd969-7d08-4bbe-bd7d-0de9e07a5f9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215715Z:f73cd969-7d08-4bbe-bd7d-0de9e07a5f9a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe18f802-ced6-4899-b9a8-007172a4864f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12809" - ], - "x-ms-correlation-request-id": [ - "9d3e960e-9332-47e4-ba54-52da8ab62128" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215716Z:9d3e960e-9332-47e4-ba54-52da8ab62128" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b872b60a-ae64-499c-acbc-2e0cd457e4c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12808" - ], - "x-ms-correlation-request-id": [ - "5f954e21-2211-4401-98ce-fa6f0184c6dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215716Z:5f954e21-2211-4401-98ce-fa6f0184c6dc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0a3a82c-8a13-4db1-9c7b-44c5a49f45cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12807" - ], - "x-ms-correlation-request-id": [ - "c6e20a21-36a3-427e-af97-e5b9fd0cf7c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215716Z:c6e20a21-36a3-427e-af97-e5b9fd0cf7c8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0385c348-279d-4187-afdb-236f2b503ae6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12806" - ], - "x-ms-correlation-request-id": [ - "479483ef-ec24-4a97-b8c9-601c245c8774" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215716Z:479483ef-ec24-4a97-b8c9-601c245c8774" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1cd4cfda-b919-475a-9fd5-8691df130563" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12805" - ], - "x-ms-correlation-request-id": [ - "184c1966-4b49-4319-836e-70a66ee5b13f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215716Z:184c1966-4b49-4319-836e-70a66ee5b13f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4056a0f-afb6-41b7-a92f-778cff10bc21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12804" - ], - "x-ms-correlation-request-id": [ - "d2dbcc5c-d21b-4ac5-86f4-21e7e5a291e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215716Z:d2dbcc5c-d21b-4ac5-86f4-21e7e5a291e3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85234f87-8250-4982-a230-bb1633353fbb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12803" - ], - "x-ms-correlation-request-id": [ - "28cb4f79-1d5c-4287-825c-0dfbc41a449f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215717Z:28cb4f79-1d5c-4287-825c-0dfbc41a449f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c81b233b-7dd5-450e-b4ce-ecac04c5a5b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12802" - ], - "x-ms-correlation-request-id": [ - "49acd752-0373-4eb7-8196-a30389a78a4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215717Z:49acd752-0373-4eb7-8196-a30389a78a4e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "729096df-ef84-437f-9121-62883f277b86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12801" - ], - "x-ms-correlation-request-id": [ - "a0f3aa1d-9b61-4923-aacd-5fa6a5220127" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215717Z:a0f3aa1d-9b61-4923-aacd-5fa6a5220127" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91a81366-39b5-440d-899b-f2151552e223" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12800" - ], - "x-ms-correlation-request-id": [ - "bccd35c1-5dca-4114-a4df-54dfafda63f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215717Z:bccd35c1-5dca-4114-a4df-54dfafda63f8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c62681ff-6986-41b4-a1c3-b24497fe745c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12799" - ], - "x-ms-correlation-request-id": [ - "99f5ae78-26a2-4a1c-a3d0-3423c0d540a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215717Z:99f5ae78-26a2-4a1c-a3d0-3423c0d540a9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bfa2e09d-12ed-45ea-b10a-f251f797e8b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12798" - ], - "x-ms-correlation-request-id": [ - "d9e41a35-cf02-42f7-8c9a-f9997329fc20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215717Z:d9e41a35-cf02-42f7-8c9a-f9997329fc20" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ffcc49d-cda0-40ea-a2f8-c3cbb2ea5f4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12797" - ], - "x-ms-correlation-request-id": [ - "6ede0f54-bd54-443c-baca-cf6c761965c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215717Z:6ede0f54-bd54-443c-baca-cf6c761965c4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd8c40bd-1f11-439e-945f-5f4a207838a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12796" - ], - "x-ms-correlation-request-id": [ - "000f8142-e2dd-45b5-bc26-def3c951af7f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215718Z:000f8142-e2dd-45b5-bc26-def3c951af7f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a62fdb45-1c26-4042-8aec-59a411e2cc79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12795" - ], - "x-ms-correlation-request-id": [ - "08cc06f7-b3f2-4041-8e80-15fd662c1d2a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215718Z:08cc06f7-b3f2-4041-8e80-15fd662c1d2a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6733cbc-4596-4ed9-be9b-a24caa6ae945" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12794" - ], - "x-ms-correlation-request-id": [ - "27f444ab-a2b2-48dc-ab2e-50cbcf019a9e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215718Z:27f444ab-a2b2-48dc-ab2e-50cbcf019a9e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56de0579-ad32-42d6-b3c3-aa8a2d0c8902" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12793" - ], - "x-ms-correlation-request-id": [ - "be83ad72-230e-43e7-9cd9-5e69f732d6d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215718Z:be83ad72-230e-43e7-9cd9-5e69f732d6d9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b1793f1-dc61-43db-952a-940134ada194" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12792" - ], - "x-ms-correlation-request-id": [ - "58d49a65-5fa7-4115-8b9d-9033ee0b56f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215718Z:58d49a65-5fa7-4115-8b9d-9033ee0b56f6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5d2880a-5241-460a-8c65-76c8b043a1f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12791" - ], - "x-ms-correlation-request-id": [ - "f8186599-1c64-4662-be62-a4cf8f35d85c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215718Z:f8186599-1c64-4662-be62-a4cf8f35d85c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be9f10de-5f21-445d-b138-9e1ed1c0a2f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12790" - ], - "x-ms-correlation-request-id": [ - "b97a0e59-b026-4e86-a6e7-495f80c547bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215719Z:b97a0e59-b026-4e86-a6e7-495f80c547bf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1463d8eb-c79e-4872-b89e-3a2fc5415171" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12789" - ], - "x-ms-correlation-request-id": [ - "64778c49-9dce-4e00-bbe7-ae5c39b3d08e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215719Z:64778c49-9dce-4e00-bbe7-ae5c39b3d08e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d35d14ee-7740-4d4a-85c7-e9aefaf85fa9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12788" - ], - "x-ms-correlation-request-id": [ - "8688cd27-c8f6-4ab2-b9f6-476ddecc61a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215719Z:8688cd27-c8f6-4ab2-b9f6-476ddecc61a2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11204335-fa16-4bdd-bc71-e9b86315ffeb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12787" - ], - "x-ms-correlation-request-id": [ - "90dc6ce5-f989-46eb-bfa6-2ab40fb7dcee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215719Z:90dc6ce5-f989-46eb-bfa6-2ab40fb7dcee" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "987c5c25-2c86-4faa-9f40-df566e3f8bbd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12786" - ], - "x-ms-correlation-request-id": [ - "3ac34a3e-0cb5-421d-b6b6-2450da28a5aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215719Z:3ac34a3e-0cb5-421d-b6b6-2450da28a5aa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb4b6a78-ed00-4022-97aa-ec9be17863e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12785" - ], - "x-ms-correlation-request-id": [ - "32d65420-f592-48b4-a843-f25175cbe37f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215720Z:32d65420-f592-48b4-a843-f25175cbe37f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ead0e56-7074-4d42-a2b7-a71558c4e73a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12784" - ], - "x-ms-correlation-request-id": [ - "2ff62a7a-047e-469c-b43a-907684a04909" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215720Z:2ff62a7a-047e-469c-b43a-907684a04909" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f53409c7-aa86-4586-b169-042e7c943aa8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12783" - ], - "x-ms-correlation-request-id": [ - "e541428c-ec2b-4633-bec3-1e47a14a6f8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215720Z:e541428c-ec2b-4633-bec3-1e47a14a6f8f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59e68c38-0a7a-4496-920e-d08e3f2dbbe8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12782" - ], - "x-ms-correlation-request-id": [ - "1f739af7-77b1-4543-a28d-d7517e312ccf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215720Z:1f739af7-77b1-4543-a28d-d7517e312ccf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75b80b86-182e-44dc-9d0c-ef8cab6fb43c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12781" - ], - "x-ms-correlation-request-id": [ - "6bf71f30-ad5b-49ba-8a27-60cf81ac5ced" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215721Z:6bf71f30-ad5b-49ba-8a27-60cf81ac5ced" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "639b8fec-eda1-4f42-9518-6aaf1f1ba441" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12780" - ], - "x-ms-correlation-request-id": [ - "8119cd78-7b6c-473a-a075-0ef6d7c4e775" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215721Z:8119cd78-7b6c-473a-a075-0ef6d7c4e775" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "804dd573-d619-4cc1-89b1-a55cba21c979" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12779" - ], - "x-ms-correlation-request-id": [ - "2fb5d461-ed70-42cb-b784-3d5aa6b38e3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215721Z:2fb5d461-ed70-42cb-b784-3d5aa6b38e3c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3d7d146-99e9-4cc0-9823-681e67fa6f09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12778" - ], - "x-ms-correlation-request-id": [ - "5fb552d9-df5d-4afa-9dd7-d64a05ad01e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215721Z:5fb552d9-df5d-4afa-9dd7-d64a05ad01e4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35d4f789-8fea-4daf-8cf3-8c3a96cbdc63" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12777" - ], - "x-ms-correlation-request-id": [ - "dfac8aa8-a3f2-4489-aa59-80cf8185b9ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215721Z:dfac8aa8-a3f2-4489-aa59-80cf8185b9ef" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0bcdebf2-fec9-4d62-b721-cd3eb39f4e25" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12776" - ], - "x-ms-correlation-request-id": [ - "7fbde6fb-5725-4abe-8f7d-072d146087b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215722Z:7fbde6fb-5725-4abe-8f7d-072d146087b3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1bdf776-8f9f-4e8e-a9c9-2a9a4df74624" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12775" - ], - "x-ms-correlation-request-id": [ - "88c2fabe-9049-4867-a7c3-7109eea00855" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215722Z:88c2fabe-9049-4867-a7c3-7109eea00855" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9bf4231-5526-4d00-ac26-6675c87aa827" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12774" - ], - "x-ms-correlation-request-id": [ - "3351d521-4693-4fb1-b2dd-73a0874f350b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215722Z:3351d521-4693-4fb1-b2dd-73a0874f350b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "09a0db3d-a0d8-4b39-ab23-0f4a088259fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12773" - ], - "x-ms-correlation-request-id": [ - "7d051b57-6f00-4a2c-8101-402fa33655d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215722Z:7d051b57-6f00-4a2c-8101-402fa33655d6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65f56d2d-4d6b-4806-b5bc-46c60fca4121" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12772" - ], - "x-ms-correlation-request-id": [ - "839676cd-0b36-4863-b398-afde39db4ff8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215722Z:839676cd-0b36-4863-b398-afde39db4ff8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8b70bbb-a7c7-4ab6-827d-82f83258f40b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12771" - ], - "x-ms-correlation-request-id": [ - "b478c9cf-39f2-4834-9350-6b65e8813283" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215723Z:b478c9cf-39f2-4834-9350-6b65e8813283" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94d0d363-833a-4514-8810-ce8ba96b013f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12770" - ], - "x-ms-correlation-request-id": [ - "0b417545-2809-44bc-b9ea-efc7d4437648" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215723Z:0b417545-2809-44bc-b9ea-efc7d4437648" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "680c99c4-7ccd-4948-9f48-b1e34c5f2e4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12769" - ], - "x-ms-correlation-request-id": [ - "4d5a7137-bcf0-433d-b82d-ed24707feef5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215723Z:4d5a7137-bcf0-433d-b82d-ed24707feef5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce12d226-77b6-49ef-80a0-51e1259e1791" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12768" - ], - "x-ms-correlation-request-id": [ - "e1d8449e-8aef-44f7-b78e-699474cb87a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215723Z:e1d8449e-8aef-44f7-b78e-699474cb87a2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0083f8e4-124b-486e-850d-db65d6adab1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12767" - ], - "x-ms-correlation-request-id": [ - "3ba4cf1e-42ec-49fb-9d15-aad76a761404" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215723Z:3ba4cf1e-42ec-49fb-9d15-aad76a761404" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "922a1739-b749-45d5-a98a-48636f183708" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12766" - ], - "x-ms-correlation-request-id": [ - "ccaf8da8-6599-4843-88d9-b618180b31f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215723Z:ccaf8da8-6599-4843-88d9-b618180b31f3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eefdb0bc-9dba-4559-9749-9fa14e927bea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12765" - ], - "x-ms-correlation-request-id": [ - "fbd03ea6-f54b-4fe2-bb36-e10bdecd18c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215724Z:fbd03ea6-f54b-4fe2-bb36-e10bdecd18c6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce5f3adf-358c-41d9-9277-f13d8c60ca5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12764" - ], - "x-ms-correlation-request-id": [ - "f2b5cd5c-ae3a-4121-9b27-b22cec85f896" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215724Z:f2b5cd5c-ae3a-4121-9b27-b22cec85f896" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5a1a67b-e248-4d01-9780-6bc966510e90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12763" - ], - "x-ms-correlation-request-id": [ - "6fcc0f32-2011-4ad2-8a2d-6f33f2c72f58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215724Z:6fcc0f32-2011-4ad2-8a2d-6f33f2c72f58" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad517b15-7ba6-45c3-a289-aee06c889ccb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12762" - ], - "x-ms-correlation-request-id": [ - "5528f3e0-b10a-438d-9147-c76e07bb4fe3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215724Z:5528f3e0-b10a-438d-9147-c76e07bb4fe3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aff93f04-6fc5-43e6-ba7b-624bd44d98eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12761" - ], - "x-ms-correlation-request-id": [ - "f92b7603-9c5c-4bf9-8b1e-2ac39b383929" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215724Z:f92b7603-9c5c-4bf9-8b1e-2ac39b383929" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "022ba5b8-1e36-402d-ac4d-2cf2d109a380" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12760" - ], - "x-ms-correlation-request-id": [ - "96b2e2f8-0490-45df-a715-b774a71982b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215725Z:96b2e2f8-0490-45df-a715-b774a71982b3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c7840813-5538-49e2-b60b-5e6c8ed5f981" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12759" - ], - "x-ms-correlation-request-id": [ - "82a8eb47-5d94-4d4b-826a-b30f62e20c8b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215725Z:82a8eb47-5d94-4d4b-826a-b30f62e20c8b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29c05a49-39ed-4596-92e4-15eddf0601a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12758" - ], - "x-ms-correlation-request-id": [ - "23a72fe6-0100-4dfb-b040-af933a23a553" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215725Z:23a72fe6-0100-4dfb-b040-af933a23a553" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5429d219-d505-4ff1-8a88-2a3fb3481699" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12757" - ], - "x-ms-correlation-request-id": [ - "eaf3c53c-f090-4530-bacb-0c0e66d16bc5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215725Z:eaf3c53c-f090-4530-bacb-0c0e66d16bc5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75a9bc27-2f7e-47f9-86de-4e8c30cacc3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12756" - ], - "x-ms-correlation-request-id": [ - "66826a78-29aa-461a-be22-596161809c03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215725Z:66826a78-29aa-461a-be22-596161809c03" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8eb87968-bf00-437d-8da1-8144c69c5b52" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12755" - ], - "x-ms-correlation-request-id": [ - "09c4a786-6c41-4f13-9ce0-095ba7d8689f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215725Z:09c4a786-6c41-4f13-9ce0-095ba7d8689f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "07c38b18-db68-4504-a85a-97ca1a6b894a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12754" - ], - "x-ms-correlation-request-id": [ - "81d2a594-2dd9-4941-81af-df6ac69cf08b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215726Z:81d2a594-2dd9-4941-81af-df6ac69cf08b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c0c1596-b71a-4e1d-80d2-e05e82318e43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12753" - ], - "x-ms-correlation-request-id": [ - "edfdea9f-fedf-4694-bcfe-35c60591bbd8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215726Z:edfdea9f-fedf-4694-bcfe-35c60591bbd8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf381fa6-4584-4214-95de-faa6098c9ef1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12752" - ], - "x-ms-correlation-request-id": [ - "99a0af82-29e8-4e3b-978b-2f027922a17c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215726Z:99a0af82-29e8-4e3b-978b-2f027922a17c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57cc9263-c8fd-4328-a34c-cb4adb85670c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12751" - ], - "x-ms-correlation-request-id": [ - "ca8edc83-735c-45ef-947b-b1afb98dc753" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215726Z:ca8edc83-735c-45ef-947b-b1afb98dc753" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1ecedc3-4cde-4258-b501-02793bc3515c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12750" - ], - "x-ms-correlation-request-id": [ - "a3df7707-60ae-494a-a09f-df517e196bf2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215726Z:a3df7707-60ae-494a-a09f-df517e196bf2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a73024b-7654-450b-bb51-f8be4707081f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12749" - ], - "x-ms-correlation-request-id": [ - "9f8a7626-25e9-4e75-a1e9-cefdccd89f2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215727Z:9f8a7626-25e9-4e75-a1e9-cefdccd89f2e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab738167-4120-4223-8843-511af536b00e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12748" - ], - "x-ms-correlation-request-id": [ - "0cb5e564-33c7-4dab-ac55-d5bcedf150da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215727Z:0cb5e564-33c7-4dab-ac55-d5bcedf150da" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fdc66594-4cf9-4533-a247-ec42d2235d6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12747" - ], - "x-ms-correlation-request-id": [ - "a106e497-969a-4e95-91af-6992d48fbc01" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215727Z:a106e497-969a-4e95-91af-6992d48fbc01" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c96d027b-4eab-4e39-a8e7-359fe0775a6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12746" - ], - "x-ms-correlation-request-id": [ - "0bf6f182-19f6-4176-9e72-2fb708407560" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215727Z:0bf6f182-19f6-4176-9e72-2fb708407560" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9103db1-2c8b-4b58-a84d-b423a4ff6d27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12745" - ], - "x-ms-correlation-request-id": [ - "cdc51da2-6aae-4305-8923-56b38cffb644" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215727Z:cdc51da2-6aae-4305-8923-56b38cffb644" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a026856f-3d14-4ed0-8518-d0c456115bb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12744" - ], - "x-ms-correlation-request-id": [ - "212d92a0-6078-4686-85f4-75fea56bfc76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215727Z:212d92a0-6078-4686-85f4-75fea56bfc76" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bcf4d9c9-cd20-4bb6-a646-af66f6198d8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12743" - ], - "x-ms-correlation-request-id": [ - "75b32594-74ab-409a-81a4-9f70cfbae71a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215728Z:75b32594-74ab-409a-81a4-9f70cfbae71a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4624575-da65-474f-8827-f0f2e836106c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12742" - ], - "x-ms-correlation-request-id": [ - "cb69fc3b-0d32-4b32-acd9-beb5f13cc970" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215728Z:cb69fc3b-0d32-4b32-acd9-beb5f13cc970" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "974038d0-82f4-483a-a0a5-fcb75640d125" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12741" - ], - "x-ms-correlation-request-id": [ - "098f2f4e-411e-4507-880b-ebc9baf1e547" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215728Z:098f2f4e-411e-4507-880b-ebc9baf1e547" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82230bf2-a727-4971-9384-0fcf4f843922" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12740" - ], - "x-ms-correlation-request-id": [ - "3f4f14d9-34f8-422a-ab72-bc76c6194c2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215728Z:3f4f14d9-34f8-422a-ab72-bc76c6194c2e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44a82f57-51b3-41aa-b4d8-fea5ab243661" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12739" - ], - "x-ms-correlation-request-id": [ - "086326f7-213d-4f1c-942f-666b5d8e3be2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215728Z:086326f7-213d-4f1c-942f-666b5d8e3be2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ec71623-c598-4b0e-9b3b-06214c0e4525" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12738" - ], - "x-ms-correlation-request-id": [ - "787c18d3-3750-4b49-b5c4-bf643f7b3191" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215729Z:787c18d3-3750-4b49-b5c4-bf643f7b3191" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e979a91c-6fa6-451b-904d-01ff66502e02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12737" - ], - "x-ms-correlation-request-id": [ - "d4eb7fc4-0afb-4626-96cd-3e933edc22c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215729Z:d4eb7fc4-0afb-4626-96cd-3e933edc22c6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c88bfccc-6cd1-4785-a97c-4c2f524fe3f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12736" - ], - "x-ms-correlation-request-id": [ - "f01cbb10-c1a3-487d-971c-b96e5981c006" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215729Z:f01cbb10-c1a3-487d-971c-b96e5981c006" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1ede7ff-78da-45c1-a89b-a3acfa1a5e0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12735" - ], - "x-ms-correlation-request-id": [ - "a72379ed-1c73-4115-9e13-5c92b96d0b80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215729Z:a72379ed-1c73-4115-9e13-5c92b96d0b80" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "edb6d603-06ac-4c9d-aba7-b4967c9b1a0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12734" - ], - "x-ms-correlation-request-id": [ - "669529f5-7990-496b-acf6-f3e45259084d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215729Z:669529f5-7990-496b-acf6-f3e45259084d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "50256213-2819-4bb2-a7a0-15717d057547" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12733" - ], - "x-ms-correlation-request-id": [ - "6f2a0bc8-7047-41eb-be30-0b286166f469" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215729Z:6f2a0bc8-7047-41eb-be30-0b286166f469" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7877e163-afb8-4cd6-8d70-37609fcdaaea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12732" - ], - "x-ms-correlation-request-id": [ - "fbcf3a9b-ae36-42b1-bc40-850503ecc9fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215730Z:fbcf3a9b-ae36-42b1-bc40-850503ecc9fa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8561796c-826b-4cdf-9ab8-740517d0891a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12731" - ], - "x-ms-correlation-request-id": [ - "05b2c2f1-516a-4f4e-bd95-b6a272fa9f37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215730Z:05b2c2f1-516a-4f4e-bd95-b6a272fa9f37" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51a98e88-f313-4dcd-858c-432e7d4a40ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12730" - ], - "x-ms-correlation-request-id": [ - "3ede4d42-8c4d-4dad-b8f0-e00023c07f2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215730Z:3ede4d42-8c4d-4dad-b8f0-e00023c07f2e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc25fd98-8e18-471a-960d-c6e32ef4319a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12729" - ], - "x-ms-correlation-request-id": [ - "9198af21-0742-4081-a1b0-d4eb0307d4b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215730Z:9198af21-0742-4081-a1b0-d4eb0307d4b0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc5da5f1-e1d6-4aaf-a941-da9f1e34f5a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12728" - ], - "x-ms-correlation-request-id": [ - "6a767591-5493-47de-a3d2-1ebf84f7afe9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215731Z:6a767591-5493-47de-a3d2-1ebf84f7afe9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cdc7031d-4138-482d-9314-09ad0909c959" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12727" - ], - "x-ms-correlation-request-id": [ - "36457d26-db8b-40b4-8d77-efead55537c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215731Z:36457d26-db8b-40b4-8d77-efead55537c0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90813a47-cfff-4814-8e47-8c12c7bed3a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12726" - ], - "x-ms-correlation-request-id": [ - "c9c24c61-9c74-4c50-93ef-a1abd9e5b833" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215731Z:c9c24c61-9c74-4c50-93ef-a1abd9e5b833" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37ed2340-0d04-4683-87e3-e901ab5b74b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12725" - ], - "x-ms-correlation-request-id": [ - "b8ae8473-79eb-4ddb-b7e2-97f08dd2bed1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215731Z:b8ae8473-79eb-4ddb-b7e2-97f08dd2bed1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e6d1155-98e7-4700-9374-d13e38e4f959" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12724" - ], - "x-ms-correlation-request-id": [ - "3793d057-99b9-4581-86bc-456d1aeae27f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215731Z:3793d057-99b9-4581-86bc-456d1aeae27f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3a369d5-8079-4d9b-a172-0eae4e38c966" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12723" - ], - "x-ms-correlation-request-id": [ - "71329804-9abf-4b2c-9975-d638493cdab0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215731Z:71329804-9abf-4b2c-9975-d638493cdab0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "332f726a-2c77-4009-83b1-bd9ed8e279c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12722" - ], - "x-ms-correlation-request-id": [ - "de96983f-7d3b-4eb1-b033-9f234d3f047f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215732Z:de96983f-7d3b-4eb1-b033-9f234d3f047f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b9dd496b-7ab4-4ec2-97ad-afec7ae631b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12721" - ], - "x-ms-correlation-request-id": [ - "561a9062-9fb5-4ed9-999c-a73ba73f1f46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215732Z:561a9062-9fb5-4ed9-999c-a73ba73f1f46" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "919c08ef-371d-4030-946a-9b4ae5002625" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12720" - ], - "x-ms-correlation-request-id": [ - "7a04a32b-7c69-4b6f-8904-3038bc1b4ede" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215732Z:7a04a32b-7c69-4b6f-8904-3038bc1b4ede" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc4328ad-a15f-4c4c-ad3e-bc500d80b95b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12719" - ], - "x-ms-correlation-request-id": [ - "5ab50bf1-ea9f-44ef-a2cf-2b325566be5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215732Z:5ab50bf1-ea9f-44ef-a2cf-2b325566be5a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d9becd9-ae84-4ffd-b75e-dd240c6f723b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12718" - ], - "x-ms-correlation-request-id": [ - "eda3ceb3-6ff6-4bf7-a152-5a24fb0a213f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215733Z:eda3ceb3-6ff6-4bf7-a152-5a24fb0a213f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b53e7311-a797-4588-8f86-edae5b32c0d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12717" - ], - "x-ms-correlation-request-id": [ - "d36f1579-c1dc-49cd-9374-3282d91dbda3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215733Z:d36f1579-c1dc-49cd-9374-3282d91dbda3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "366c6593-ae9a-45d1-a01b-a685b977d2a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12716" - ], - "x-ms-correlation-request-id": [ - "7704346f-071d-41b3-b64c-6b5258bd950a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215733Z:7704346f-071d-41b3-b64c-6b5258bd950a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a7a1987-1892-43aa-9017-9913aa706e58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12715" - ], - "x-ms-correlation-request-id": [ - "aec5bc43-3a5c-4b4f-9d43-f0e68047ae11" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215733Z:aec5bc43-3a5c-4b4f-9d43-f0e68047ae11" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2365cc9b-fbb2-4d8c-8e30-bb970419283e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12714" - ], - "x-ms-correlation-request-id": [ - "5496293f-1480-47ac-819f-e2274f8976ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215733Z:5496293f-1480-47ac-819f-e2274f8976ff" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5569f67a-3ea5-4744-b24d-7801fe579c94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12713" - ], - "x-ms-correlation-request-id": [ - "9cafe8d9-a95c-4eae-a6ae-bfc40ad64a16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215734Z:9cafe8d9-a95c-4eae-a6ae-bfc40ad64a16" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4cfb9ce-3a91-4b04-9f21-dad75d2ffc40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12712" - ], - "x-ms-correlation-request-id": [ - "708e7488-88e8-45fa-a454-3f70e0451d3f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215734Z:708e7488-88e8-45fa-a454-3f70e0451d3f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20abea37-e746-4795-a7d4-10ac9c41a3d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12711" - ], - "x-ms-correlation-request-id": [ - "98b677b7-b854-4add-a813-49893982edc3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215734Z:98b677b7-b854-4add-a813-49893982edc3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf9c515a-6cb0-41f9-8736-a5066207c649" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12710" - ], - "x-ms-correlation-request-id": [ - "944ffdf4-b3cc-4fde-8f8e-7c38aa8a8558" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215734Z:944ffdf4-b3cc-4fde-8f8e-7c38aa8a8558" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9cb4127-9242-44d9-812b-2a7d91b0ad10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12709" - ], - "x-ms-correlation-request-id": [ - "b984b7bd-c56c-4a56-8080-8d813f91ae6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215734Z:b984b7bd-c56c-4a56-8080-8d813f91ae6d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "58cd032c-b694-4785-a40b-6d35e1861ca9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12708" - ], - "x-ms-correlation-request-id": [ - "b7277113-add1-4e81-a58e-f273e0323265" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215734Z:b7277113-add1-4e81-a58e-f273e0323265" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eae5a753-49de-491f-9673-5c99429cda2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12707" - ], - "x-ms-correlation-request-id": [ - "f6fbacbf-d630-403d-a2bb-407c351f9e1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215735Z:f6fbacbf-d630-403d-a2bb-407c351f9e1f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51ed19c8-1bfb-4bb9-8b79-84d4d66aeced" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12706" - ], - "x-ms-correlation-request-id": [ - "a31be37f-181e-4da0-800d-ea57eefeed88" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215735Z:a31be37f-181e-4da0-800d-ea57eefeed88" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d2d42c4-7a0f-4c32-a4b6-48eb6d60d11f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12705" - ], - "x-ms-correlation-request-id": [ - "592b26dc-c2df-429b-b444-94b12b76e449" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215735Z:592b26dc-c2df-429b-b444-94b12b76e449" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3daa17d8-466b-4d3e-843a-7ce6a19c7d88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12704" - ], - "x-ms-correlation-request-id": [ - "354f0168-5308-477e-8047-cea281d57b82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215735Z:354f0168-5308-477e-8047-cea281d57b82" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a431581e-810b-4702-b367-cc289149371a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12703" - ], - "x-ms-correlation-request-id": [ - "95b8a0a0-871a-4129-9e53-9d0188e6dc21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215736Z:95b8a0a0-871a-4129-9e53-9d0188e6dc21" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "021047de-7759-444e-ac8b-cda3777f8456" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12702" - ], - "x-ms-correlation-request-id": [ - "5b09f6f3-5b99-478d-8b90-7b18aae26935" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215736Z:5b09f6f3-5b99-478d-8b90-7b18aae26935" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d86ea76-0c77-442f-9230-15bec6bf7ce1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12701" - ], - "x-ms-correlation-request-id": [ - "cc3000ac-0abe-4bea-84a6-151cb30a9bae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215736Z:cc3000ac-0abe-4bea-84a6-151cb30a9bae" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2317592a-96cf-41d9-a26b-5ac3cf114b1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12700" - ], - "x-ms-correlation-request-id": [ - "ee56b4f8-4ec3-4126-986c-f8c795330cf1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215736Z:ee56b4f8-4ec3-4126-986c-f8c795330cf1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7b8e4e6-f5ad-466c-b524-82f5b9cbf250" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12699" - ], - "x-ms-correlation-request-id": [ - "48f7c57c-267a-46c4-a27e-fe702793572b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215736Z:48f7c57c-267a-46c4-a27e-fe702793572b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62bff08d-2456-4031-a353-88469ad4c88b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12698" - ], - "x-ms-correlation-request-id": [ - "a62d01c7-d975-495c-b1a8-9df62b61a535" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215736Z:a62d01c7-d975-495c-b1a8-9df62b61a535" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3cd42ef8-b00a-4088-8c50-9efc811646a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12697" - ], - "x-ms-correlation-request-id": [ - "066b3487-a0ed-4880-98d2-ff792d2972f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215737Z:066b3487-a0ed-4880-98d2-ff792d2972f0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9abc0087-d542-4a55-a157-3f6580412de5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12696" - ], - "x-ms-correlation-request-id": [ - "f27bd993-c6d2-4acf-b57b-c4a6002c7f5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215737Z:f27bd993-c6d2-4acf-b57b-c4a6002c7f5d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf52fb22-e369-4236-9858-096bf06f452d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12695" - ], - "x-ms-correlation-request-id": [ - "d05b586f-5756-48ae-884e-799a41dcbb7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215737Z:d05b586f-5756-48ae-884e-799a41dcbb7a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eeaff298-136a-4350-8a76-bd6739af2b7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12694" - ], - "x-ms-correlation-request-id": [ - "3daf41c1-76f7-4065-a588-6d8a0ca55279" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215737Z:3daf41c1-76f7-4065-a588-6d8a0ca55279" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61480a50-00b6-471e-bb2a-75871ca9df08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12693" - ], - "x-ms-correlation-request-id": [ - "d126648b-b0d2-4c35-ab54-9aaa8e250ed8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215737Z:d126648b-b0d2-4c35-ab54-9aaa8e250ed8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "871b65de-18a4-4b49-b045-4b1bc0bc6284" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12692" - ], - "x-ms-correlation-request-id": [ - "a4a6b9ec-b4f1-478c-810b-f5e3c97c8cd8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215738Z:a4a6b9ec-b4f1-478c-810b-f5e3c97c8cd8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8adf0465-6f02-4134-b5ca-c177f923502a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12691" - ], - "x-ms-correlation-request-id": [ - "54d6e316-8eb6-4fd6-b2b5-28c28155e06b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215738Z:54d6e316-8eb6-4fd6-b2b5-28c28155e06b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef59948e-0ce9-4532-9a1c-3a4325a5142c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12690" - ], - "x-ms-correlation-request-id": [ - "8b3be656-82fb-41fb-8910-04dca986703e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215738Z:8b3be656-82fb-41fb-8910-04dca986703e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1d66980-6dda-424a-9371-561da8d51fbd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12689" - ], - "x-ms-correlation-request-id": [ - "15c979f7-e786-48f8-ad11-0bb3e97027d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215738Z:15c979f7-e786-48f8-ad11-0bb3e97027d2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2db84cd-c042-4b0d-b8c6-4b53d77fe2b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12688" - ], - "x-ms-correlation-request-id": [ - "92b46110-f551-4f41-a636-ca6517396d5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215739Z:92b46110-f551-4f41-a636-ca6517396d5d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e5f30ef-8d0d-4137-b835-3a0abbd3f751" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12687" - ], - "x-ms-correlation-request-id": [ - "e4b3dbef-dad7-4d6b-9b2a-2483625eaba9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215739Z:e4b3dbef-dad7-4d6b-9b2a-2483625eaba9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "943b111e-6364-42fe-9ef9-39e5b0773428" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12686" - ], - "x-ms-correlation-request-id": [ - "400f819f-df10-4f23-bb63-643e609c353a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215739Z:400f819f-df10-4f23-bb63-643e609c353a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89052d9a-9462-46eb-b1db-d81a81ba703f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12685" - ], - "x-ms-correlation-request-id": [ - "982bb7aa-02dd-4b9c-b525-28ca3137fc7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215739Z:982bb7aa-02dd-4b9c-b525-28ca3137fc7a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42f3652a-0797-4ad6-8cc0-cfb1a410eb7f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12684" - ], - "x-ms-correlation-request-id": [ - "e2709d10-a770-4e13-9135-5ceab0d3e6a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215739Z:e2709d10-a770-4e13-9135-5ceab0d3e6a1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86eb33da-8376-4a9f-8fed-6c7c4a74a2f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12683" - ], - "x-ms-correlation-request-id": [ - "83987864-4dac-4594-9470-fd65db03a413" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215739Z:83987864-4dac-4594-9470-fd65db03a413" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5980be7b-e56c-43b8-b995-7b655f85144c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12682" - ], - "x-ms-correlation-request-id": [ - "c83caa66-07f9-42a3-a2a5-4027709fc3e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215740Z:c83caa66-07f9-42a3-a2a5-4027709fc3e9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b63d0d6-c722-4dc1-a8f6-2b032dbd975b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12681" - ], - "x-ms-correlation-request-id": [ - "07fcb847-7b80-4646-9936-dba7920deea4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215740Z:07fcb847-7b80-4646-9936-dba7920deea4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e56f6db2-de6d-497b-8c22-4ab1c735ed84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12680" - ], - "x-ms-correlation-request-id": [ - "a7ebe291-2962-4d25-ace2-9e1c9439c53c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215740Z:a7ebe291-2962-4d25-ace2-9e1c9439c53c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7825445e-49d3-42e7-9708-aef2859c82ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12679" - ], - "x-ms-correlation-request-id": [ - "b4ce56af-76f6-45df-a1f4-7bbd0a21d3f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215740Z:b4ce56af-76f6-45df-a1f4-7bbd0a21d3f2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "179bd45b-9dee-4d33-ac42-66ec809aabc8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12678" - ], - "x-ms-correlation-request-id": [ - "8af23794-5025-4ba6-ba47-e1e6b95d9d05" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215740Z:8af23794-5025-4ba6-ba47-e1e6b95d9d05" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d68e6fc-1471-4172-9b78-de633943c1c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12677" - ], - "x-ms-correlation-request-id": [ - "a0f818a9-3f34-4fa9-aa59-fed263beeb3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215741Z:a0f818a9-3f34-4fa9-aa59-fed263beeb3b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da52629f-e8d0-4e2b-b706-ae06fbea5cf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12676" - ], - "x-ms-correlation-request-id": [ - "9a208652-999e-4c07-8e75-3c803e882138" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215741Z:9a208652-999e-4c07-8e75-3c803e882138" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24982b71-1e98-4087-82a8-c3ae2a9d1ed6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12675" - ], - "x-ms-correlation-request-id": [ - "10519bcb-0b5d-4b16-b6e3-f16792452072" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215741Z:10519bcb-0b5d-4b16-b6e3-f16792452072" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "58be3390-7998-4207-b7f9-d5b7b2fe438b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12674" - ], - "x-ms-correlation-request-id": [ - "5d22ac44-0e11-4f4f-a749-661c52ef850d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215741Z:5d22ac44-0e11-4f4f-a749-661c52ef850d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5f78069-e998-4ba1-abe7-915d15f36cad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12673" - ], - "x-ms-correlation-request-id": [ - "a12f3b33-7470-41a2-8593-c392b5127bef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215741Z:a12f3b33-7470-41a2-8593-c392b5127bef" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "798061b0-79cc-4756-b043-1f9982437d67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12672" - ], - "x-ms-correlation-request-id": [ - "b428006d-8d29-412c-a1cf-777e3e9a0451" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215741Z:b428006d-8d29-412c-a1cf-777e3e9a0451" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee61d116-35bd-4ad0-a1c2-4a0dbe95d178" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12671" - ], - "x-ms-correlation-request-id": [ - "b89f235d-050d-4fdd-8241-1c580241d6d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215742Z:b89f235d-050d-4fdd-8241-1c580241d6d2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "381dbee8-e3d8-47ad-830a-b803eaedb075" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12670" - ], - "x-ms-correlation-request-id": [ - "295c1541-e5e6-40d6-9072-83ba7c760892" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215742Z:295c1541-e5e6-40d6-9072-83ba7c760892" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "55ba6fe0-b16a-4d94-afcd-21bc54fd5e21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12669" - ], - "x-ms-correlation-request-id": [ - "29d528f3-7f97-4199-ac92-e20b4f9f16df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215742Z:29d528f3-7f97-4199-ac92-e20b4f9f16df" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ec571a4-1b33-4315-b10c-1b11c8924b01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12668" - ], - "x-ms-correlation-request-id": [ - "c84ac893-5477-4f59-825e-2b6cfcbd1141" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215742Z:c84ac893-5477-4f59-825e-2b6cfcbd1141" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be0077a5-bc97-402e-9428-2558dd091c2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12667" - ], - "x-ms-correlation-request-id": [ - "39b869f4-2636-4375-ad26-3873ea88f6cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215742Z:39b869f4-2636-4375-ad26-3873ea88f6cf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9518eec0-c054-44d8-88cf-1146d1dd44bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12666" - ], - "x-ms-correlation-request-id": [ - "6b4e40ed-845f-482f-a63a-49423fc50b50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215742Z:6b4e40ed-845f-482f-a63a-49423fc50b50" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3ac82eb-514d-4366-8843-5387004730f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12665" - ], - "x-ms-correlation-request-id": [ - "ce51ca5f-9487-4522-93f2-44a485ac1389" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215743Z:ce51ca5f-9487-4522-93f2-44a485ac1389" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e9a63c5-66b0-471d-b70d-820ddf06c705" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12664" - ], - "x-ms-correlation-request-id": [ - "7793f02f-d432-4c10-8a6b-45dfd1583efe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215743Z:7793f02f-d432-4c10-8a6b-45dfd1583efe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "afe2c741-a52b-4c6c-9b70-036aa19c02e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12663" - ], - "x-ms-correlation-request-id": [ - "d5b93fb9-472c-4054-a879-703392560df9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215743Z:d5b93fb9-472c-4054-a879-703392560df9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49d47828-1101-4c75-9912-42fbcac24eaf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12662" - ], - "x-ms-correlation-request-id": [ - "be4b2d83-b740-4532-a946-1c0d1c4823af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215743Z:be4b2d83-b740-4532-a946-1c0d1c4823af" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "298225da-3231-4c53-a583-e5d77f427d1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12661" - ], - "x-ms-correlation-request-id": [ - "8e51ae96-01d0-447f-bba2-de88655538b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215743Z:8e51ae96-01d0-447f-bba2-de88655538b8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8607f87-fa83-41ab-8022-b8d1a484f59f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12660" - ], - "x-ms-correlation-request-id": [ - "524efc8d-b520-4104-b832-d51075c2d61f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215743Z:524efc8d-b520-4104-b832-d51075c2d61f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a8d49d8-01f1-494c-ab7e-79577440f5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12659" - ], - "x-ms-correlation-request-id": [ - "4d0d892d-8235-4a28-afb2-080fe7043b98" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215743Z:4d0d892d-8235-4a28-afb2-080fe7043b98" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "26ca6528-604d-4096-921b-64bc97726ff5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12658" - ], - "x-ms-correlation-request-id": [ - "496202d3-25eb-4a4b-a477-60ae6a590b38" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215744Z:496202d3-25eb-4a4b-a477-60ae6a590b38" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "948ffe27-45f4-476d-b149-44067485d843" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12657" - ], - "x-ms-correlation-request-id": [ - "af16f645-8949-42aa-a6da-6ce73a138020" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215744Z:af16f645-8949-42aa-a6da-6ce73a138020" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dbbf9039-7a57-4b21-8a80-ada23c8a7d27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12656" - ], - "x-ms-correlation-request-id": [ - "7c64f70f-9c48-47c2-a874-94a5610a88dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215744Z:7c64f70f-9c48-47c2-a874-94a5610a88dc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a61450b-c1f1-4e67-a144-d33b3cc620a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12655" - ], - "x-ms-correlation-request-id": [ - "2aaab211-2b1a-4079-b4d2-a2c60b66fe6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215744Z:2aaab211-2b1a-4079-b4d2-a2c60b66fe6f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05148421-ac43-4385-b5b6-e7d67e4c0696" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12654" - ], - "x-ms-correlation-request-id": [ - "1c08e0ae-4cc5-46a5-9558-2d4f59d37550" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215744Z:1c08e0ae-4cc5-46a5-9558-2d4f59d37550" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eeec4558-132f-496e-a553-9ec665d71971" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12653" - ], - "x-ms-correlation-request-id": [ - "24dc2143-78a6-4e2e-acd0-43843c6129c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215745Z:24dc2143-78a6-4e2e-acd0-43843c6129c0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "34a8a8c0-50ca-43ae-ac54-c9f7a14a1dea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12652" - ], - "x-ms-correlation-request-id": [ - "aabfcad3-67fc-40db-a5b1-e0afecc33e49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215745Z:aabfcad3-67fc-40db-a5b1-e0afecc33e49" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "138f76df-4296-46e6-a2ee-251f7fc8cf12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12651" - ], - "x-ms-correlation-request-id": [ - "4cf88271-04b6-4e08-a302-19eed8004554" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215745Z:4cf88271-04b6-4e08-a302-19eed8004554" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9fc46d66-a982-4552-a7f9-c8470ddf5865" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12650" - ], - "x-ms-correlation-request-id": [ - "ff0eeb82-2345-4681-8e3c-02efe486f7f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215745Z:ff0eeb82-2345-4681-8e3c-02efe486f7f1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc5db213-4f89-4075-8443-43642e1a381b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12649" - ], - "x-ms-correlation-request-id": [ - "b1683a26-fac7-48c5-b686-d2ea7231b6b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215745Z:b1683a26-fac7-48c5-b686-d2ea7231b6b4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f32b6c3d-255e-40dd-94ac-cfed0aa8087f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12648" - ], - "x-ms-correlation-request-id": [ - "d5c1df4e-d43a-45ea-9869-37be48471beb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215746Z:d5c1df4e-d43a-45ea-9869-37be48471beb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20943480-b86e-416a-ab92-a8700b7f8093" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12647" - ], - "x-ms-correlation-request-id": [ - "b20a664c-c8ce-4e26-a3e9-3755c4913bec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215746Z:b20a664c-c8ce-4e26-a3e9-3755c4913bec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24020065-40ca-4cfc-a13c-634f0d82e09a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12646" - ], - "x-ms-correlation-request-id": [ - "1301f3d2-eed5-4695-a383-57a12860c1f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215746Z:1301f3d2-eed5-4695-a383-57a12860c1f3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dceddb9b-98f7-4ddf-93bb-30721aa0a676" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12645" - ], - "x-ms-correlation-request-id": [ - "19788ece-ab6f-40e1-9946-318d97c62679" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215746Z:19788ece-ab6f-40e1-9946-318d97c62679" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1240da6-1b0a-493d-91fd-b78c406dfbfa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12644" - ], - "x-ms-correlation-request-id": [ - "04e7150a-9325-44d0-b643-b24f2548f51c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215746Z:04e7150a-9325-44d0-b643-b24f2548f51c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "847acf47-2e14-40a4-ad50-844c0480442b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12643" - ], - "x-ms-correlation-request-id": [ - "f5b7d82c-e007-423b-9cdc-05b6b1d108f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215746Z:f5b7d82c-e007-423b-9cdc-05b6b1d108f4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e489ccd6-32b1-4709-909e-8831c05b1d41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12642" - ], - "x-ms-correlation-request-id": [ - "5f654618-9b08-489d-8627-84b8be48b4c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215747Z:5f654618-9b08-489d-8627-84b8be48b4c0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ca87796-1a5d-4058-b732-ff6066dd2746" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12641" - ], - "x-ms-correlation-request-id": [ - "dd73d914-c2e5-42c6-aa9b-526bddff7ba8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215747Z:dd73d914-c2e5-42c6-aa9b-526bddff7ba8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d70f65a3-e88b-4442-8788-2d28d37b97a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12640" - ], - "x-ms-correlation-request-id": [ - "a2c90926-6629-40b7-98c1-2cae9c6ae87e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215747Z:a2c90926-6629-40b7-98c1-2cae9c6ae87e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b59e092-22d0-46f1-b676-93ec5ea8cb78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12639" - ], - "x-ms-correlation-request-id": [ - "799fe50e-faa3-4f90-be7a-5a43517246b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215747Z:799fe50e-faa3-4f90-be7a-5a43517246b9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89aaa47a-39c1-4478-923f-9949a0bef610" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12638" - ], - "x-ms-correlation-request-id": [ - "e44a83fe-3400-47b1-94f3-b0f63b23db18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215747Z:e44a83fe-3400-47b1-94f3-b0f63b23db18" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00fa642d-dfe2-4f70-b4ba-c7390184380c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12637" - ], - "x-ms-correlation-request-id": [ - "469543a9-ea21-4f76-9ad4-b76184f98cd2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215747Z:469543a9-ea21-4f76-9ad4-b76184f98cd2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "abac996e-64a1-41e5-9144-f0b12a5b0325" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12636" - ], - "x-ms-correlation-request-id": [ - "c53dacca-eb68-4a64-a125-b2dd4a832716" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215748Z:c53dacca-eb68-4a64-a125-b2dd4a832716" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19665cec-decd-40cc-a1c8-6d1e00f02d76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12635" - ], - "x-ms-correlation-request-id": [ - "2f705586-ea45-40ae-8732-ee7d29786623" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215748Z:2f705586-ea45-40ae-8732-ee7d29786623" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f87f7a25-3d01-49a8-bcbb-990c0d0585a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12634" - ], - "x-ms-correlation-request-id": [ - "badc61b7-7ced-4226-a1e0-77e6a17cca9c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215748Z:badc61b7-7ced-4226-a1e0-77e6a17cca9c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f142621-30d4-45fe-907e-4dbc265aedbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12633" - ], - "x-ms-correlation-request-id": [ - "46694a13-1e60-42dd-8660-76d0d1132c37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215748Z:46694a13-1e60-42dd-8660-76d0d1132c37" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea2d0a86-403c-4056-b920-56d606eb0eb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12632" - ], - "x-ms-correlation-request-id": [ - "68d39794-b605-4211-83b9-86f46ef5bc08" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215748Z:68d39794-b605-4211-83b9-86f46ef5bc08" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2cd1c232-318e-4ca6-b4de-dc0746d5821f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12631" - ], - "x-ms-correlation-request-id": [ - "bb799c1b-8ab0-472f-9eb8-afc16e3b0dfa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215748Z:bb799c1b-8ab0-472f-9eb8-afc16e3b0dfa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a2a6ae1b-616e-47bf-8027-c72f80affcd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12630" - ], - "x-ms-correlation-request-id": [ - "a9469637-daba-4281-8a37-d93739630764" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215749Z:a9469637-daba-4281-8a37-d93739630764" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6cb3b81a-774a-4034-9308-80be8b825346" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12629" - ], - "x-ms-correlation-request-id": [ - "005c16a4-4353-4556-af33-108a7c1846a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215749Z:005c16a4-4353-4556-af33-108a7c1846a1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d1a9d84-81af-4719-ab34-32b8c24b7993" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12628" - ], - "x-ms-correlation-request-id": [ - "2eb3f9a6-5ae9-4ca5-9ee7-1b5301b408f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215749Z:2eb3f9a6-5ae9-4ca5-9ee7-1b5301b408f8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92517d0f-3d89-4439-acf7-00316198e572" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12627" - ], - "x-ms-correlation-request-id": [ - "83db4489-c784-4a8a-998d-c2974699d89b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215749Z:83db4489-c784-4a8a-998d-c2974699d89b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be101b5f-8f9a-496d-8cec-247f385da7b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12626" - ], - "x-ms-correlation-request-id": [ - "dcfbea8f-d703-4b89-a658-7b0f175e72b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215749Z:dcfbea8f-d703-4b89-a658-7b0f175e72b2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "068ff528-abaa-4c8d-85d9-dbc747f95339" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12625" - ], - "x-ms-correlation-request-id": [ - "92ee4132-7cbd-4bb0-b1bb-93c21a61a666" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215750Z:92ee4132-7cbd-4bb0-b1bb-93c21a61a666" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65b22535-ffc1-4631-a002-72b271f45d0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12624" - ], - "x-ms-correlation-request-id": [ - "c0a3579e-967d-4a79-890e-dad2720df43d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215750Z:c0a3579e-967d-4a79-890e-dad2720df43d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c14e5ca5-ad93-4ac1-8f97-295a11e9e15a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12623" - ], - "x-ms-correlation-request-id": [ - "9eb0d962-481c-4a6b-a27a-c63a824145fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215750Z:9eb0d962-481c-4a6b-a27a-c63a824145fc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c726873a-bdd5-46c2-8630-20dc4502086a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12622" - ], - "x-ms-correlation-request-id": [ - "cd3c926b-1e15-43ad-83b9-ab040f3d29d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215750Z:cd3c926b-1e15-43ad-83b9-ab040f3d29d6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7fa292f9-e196-4911-8c1d-fa828d3a8043" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12621" - ], - "x-ms-correlation-request-id": [ - "b0b243e1-6f34-4d77-aebd-6c1fa1a24178" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215750Z:b0b243e1-6f34-4d77-aebd-6c1fa1a24178" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca716d2a-5496-4274-b716-3993e74af382" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12620" - ], - "x-ms-correlation-request-id": [ - "b6a5ff5e-79f0-4456-a140-9294a92a340d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215750Z:b6a5ff5e-79f0-4456-a140-9294a92a340d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9569445c-002d-403a-ac18-125914701d92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12619" - ], - "x-ms-correlation-request-id": [ - "ed0769c8-eec7-4987-885d-778bfdd19218" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215751Z:ed0769c8-eec7-4987-885d-778bfdd19218" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86375aba-1d7d-44d9-9e6d-ee5bb8661de7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12618" - ], - "x-ms-correlation-request-id": [ - "7304cc25-5051-4bf0-b9f6-58fba2124a1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215751Z:7304cc25-5051-4bf0-b9f6-58fba2124a1c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f3d461f-c830-4aa0-9ee7-f47c1247359a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12617" - ], - "x-ms-correlation-request-id": [ - "6f193cbc-1a6d-48a3-b89a-3c195a95075a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215751Z:6f193cbc-1a6d-48a3-b89a-3c195a95075a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48340fa4-0504-481d-9c3d-a3297bf32009" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12616" - ], - "x-ms-correlation-request-id": [ - "123b280f-0381-48d0-80d6-532af0ae9a85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215751Z:123b280f-0381-48d0-80d6-532af0ae9a85" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "adad3720-bf6e-46f8-8e78-217015a8a57c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12615" - ], - "x-ms-correlation-request-id": [ - "5f4ffb69-acfb-489d-9212-63f6f74b9faf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215751Z:5f4ffb69-acfb-489d-9212-63f6f74b9faf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "afcbfd5c-3a4a-406c-9a45-9c36b7009c42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12614" - ], - "x-ms-correlation-request-id": [ - "0ebbd53a-82fb-4902-b873-197140388545" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215751Z:0ebbd53a-82fb-4902-b873-197140388545" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eaa39868-e451-4021-8c43-0e0f99fd7684" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12613" - ], - "x-ms-correlation-request-id": [ - "97680273-3a1c-4e27-a0c0-0ad9d99e5c2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215752Z:97680273-3a1c-4e27-a0c0-0ad9d99e5c2e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b3222a5f-1a5f-4c0e-906e-9e605e15d432" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12612" - ], - "x-ms-correlation-request-id": [ - "4d1b038b-bccb-4412-8312-39f8ae037cf5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215752Z:4d1b038b-bccb-4412-8312-39f8ae037cf5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c254687-5c20-471e-b2d0-48d41ddce800" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12611" - ], - "x-ms-correlation-request-id": [ - "56a49641-5349-4340-a6fe-d4ae15ec1951" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215752Z:56a49641-5349-4340-a6fe-d4ae15ec1951" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6554d731-4a42-4af1-9a07-68ccab9ff8ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12610" - ], - "x-ms-correlation-request-id": [ - "497be362-9b94-4b88-8926-898832c55203" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215752Z:497be362-9b94-4b88-8926-898832c55203" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "09030d34-8359-4768-acde-8b5bde934603" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12609" - ], - "x-ms-correlation-request-id": [ - "7cccbc8a-1dd4-49a5-8e17-63d1a52300af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215752Z:7cccbc8a-1dd4-49a5-8e17-63d1a52300af" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1dd28ab3-b9a6-45f2-8cce-c8c903bf514b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12608" - ], - "x-ms-correlation-request-id": [ - "9320ba3a-39dc-4004-90bf-ec702b2bebec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215752Z:9320ba3a-39dc-4004-90bf-ec702b2bebec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "398b8271-808d-4f25-a693-ae7b59eb7a78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12607" - ], - "x-ms-correlation-request-id": [ - "37a492f4-66bd-4422-820c-52500d83bcce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215753Z:37a492f4-66bd-4422-820c-52500d83bcce" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa158511-b5a8-45c9-b8d6-46a4ccbe88a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12606" - ], - "x-ms-correlation-request-id": [ - "46e6e237-98b1-4ef2-a868-8a156cdead3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215753Z:46e6e237-98b1-4ef2-a868-8a156cdead3c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a2e6882-c355-40f1-b1b9-0bbaf9276da4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12605" - ], - "x-ms-correlation-request-id": [ - "6e8c3e43-5c78-4d30-b40c-c1340979bddf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215753Z:6e8c3e43-5c78-4d30-b40c-c1340979bddf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91cfbcba-f99a-46d3-b56a-5a96d5dc7c22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12604" - ], - "x-ms-correlation-request-id": [ - "3b2bf7cb-4bc0-459a-874d-69c5b14aa4dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215753Z:3b2bf7cb-4bc0-459a-874d-69c5b14aa4dc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94715d52-f557-4b81-b2bd-fc4425ad2b86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12603" - ], - "x-ms-correlation-request-id": [ - "2ba4f043-68d8-4e91-8c89-206dad8e6e66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215753Z:2ba4f043-68d8-4e91-8c89-206dad8e6e66" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac760345-bb84-4482-9a9f-31f605c88e95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12602" - ], - "x-ms-correlation-request-id": [ - "c7c6a450-482e-4b78-b8ba-6682ffce9841" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215754Z:c7c6a450-482e-4b78-b8ba-6682ffce9841" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67d18d5e-2047-4380-b128-02550cebb6ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12601" - ], - "x-ms-correlation-request-id": [ - "6b1a00c4-c519-4b83-9c6d-3a54425b8a44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215754Z:6b1a00c4-c519-4b83-9c6d-3a54425b8a44" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70860192-76dd-4bdb-b97b-e7cea243602c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12600" - ], - "x-ms-correlation-request-id": [ - "17614ceb-6c5e-4c8b-a67d-7638350919b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215754Z:17614ceb-6c5e-4c8b-a67d-7638350919b8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82e49520-f6ce-4ad3-aa97-b81ad89a7b82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12599" - ], - "x-ms-correlation-request-id": [ - "c68709a2-bdf7-4f41-a158-7daf1481f6ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215754Z:c68709a2-bdf7-4f41-a158-7daf1481f6ee" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "974d6e63-6341-4445-addb-b22e2e60d21f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12598" - ], - "x-ms-correlation-request-id": [ - "12d9a9f7-37c6-4201-af40-71c0d6b3b9d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215754Z:12d9a9f7-37c6-4201-af40-71c0d6b3b9d1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a9994cf5-561d-4cb8-aa6f-f6239a070f20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12597" - ], - "x-ms-correlation-request-id": [ - "be1ae0fb-e0ba-4db4-aeed-922d59983ca1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215754Z:be1ae0fb-e0ba-4db4-aeed-922d59983ca1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3e5db70-13e0-49ea-a4b8-6064eb57bec0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12596" - ], - "x-ms-correlation-request-id": [ - "fc8ec7e7-d9bc-4469-82a5-d15d0122c6f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215754Z:fc8ec7e7-d9bc-4469-82a5-d15d0122c6f6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ca6ac91-1423-477a-a692-d61a7f9f8040" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12595" - ], - "x-ms-correlation-request-id": [ - "0f34b4c1-d99f-4570-95a8-b17095147c71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215755Z:0f34b4c1-d99f-4570-95a8-b17095147c71" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a61b7ac-772f-4a29-b564-f3b7f244a30c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12594" - ], - "x-ms-correlation-request-id": [ - "422a076f-c5d9-45ac-a64e-810052f94ea8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215755Z:422a076f-c5d9-45ac-a64e-810052f94ea8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bd9df7e9-40f2-4b61-a2e1-94233eb6021f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12593" - ], - "x-ms-correlation-request-id": [ - "b04e9414-1c81-4bf7-8e06-cfef28f6bcad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215755Z:b04e9414-1c81-4bf7-8e06-cfef28f6bcad" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3052cd15-bbb7-4f3d-8489-be36a35626a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12592" - ], - "x-ms-correlation-request-id": [ - "09f940ce-87f8-4227-82f9-bf13b3166998" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215755Z:09f940ce-87f8-4227-82f9-bf13b3166998" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1336ef52-f2fb-43db-81b5-f30cdb9905f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12591" - ], - "x-ms-correlation-request-id": [ - "bf18e6e0-20ac-4da7-a01b-7c002d6bb8e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215755Z:bf18e6e0-20ac-4da7-a01b-7c002d6bb8e7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87a7b96b-3066-4d52-9fa4-c8b8c73dab0a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12590" - ], - "x-ms-correlation-request-id": [ - "cbadb22e-d82f-473e-8489-2c8ce71b29c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215755Z:cbadb22e-d82f-473e-8489-2c8ce71b29c8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43e651af-68e6-404c-8f15-519c5ddb6fe5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12589" - ], - "x-ms-correlation-request-id": [ - "fc487ad8-1dd0-42c5-a554-f7e35f95b14f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215756Z:fc487ad8-1dd0-42c5-a554-f7e35f95b14f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca88560e-74b6-4bae-9caf-6ed08afdc650" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12588" - ], - "x-ms-correlation-request-id": [ - "72ec6795-55ea-4fc5-9093-18a9e0f2ea16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215756Z:72ec6795-55ea-4fc5-9093-18a9e0f2ea16" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a5d46c5-cf5d-473d-83b6-94e3edc117b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12587" - ], - "x-ms-correlation-request-id": [ - "89651c6d-4d32-4042-b6e6-51cbc8a801b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215756Z:89651c6d-4d32-4042-b6e6-51cbc8a801b7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79f9dad6-d574-4d07-b8ba-ceac0e76e68c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12586" - ], - "x-ms-correlation-request-id": [ - "20c0d2d2-fb6c-4527-91fc-567335865c8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215756Z:20c0d2d2-fb6c-4527-91fc-567335865c8d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7db15d3f-c80a-4aa8-92b2-1e46d0a0b15a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12585" - ], - "x-ms-correlation-request-id": [ - "161ac6b3-bbfd-41a5-b842-7075ac844959" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215756Z:161ac6b3-bbfd-41a5-b842-7075ac844959" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da2e5adb-eeec-4c11-b04e-4bfba3fe9bed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12584" - ], - "x-ms-correlation-request-id": [ - "200a2acf-8d13-4dd9-bde7-d87e0933d48c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215756Z:200a2acf-8d13-4dd9-bde7-d87e0933d48c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d64a0a2-27c2-4327-b45d-042129f5a79c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12583" - ], - "x-ms-correlation-request-id": [ - "57c1598a-fc33-4628-a5de-1bda0aed9dd4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215757Z:57c1598a-fc33-4628-a5de-1bda0aed9dd4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "66b5eaa2-9764-4bdb-8a4b-c756bc33b946" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12582" - ], - "x-ms-correlation-request-id": [ - "fa71017d-a99c-4fa2-af19-1d44d73f91e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215757Z:fa71017d-a99c-4fa2-af19-1d44d73f91e7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ed461e1-2beb-45d9-bb4a-7e5dd2054105" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12581" - ], - "x-ms-correlation-request-id": [ - "1bb85a43-be57-47cb-90b8-70ee996b32c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215757Z:1bb85a43-be57-47cb-90b8-70ee996b32c9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdf5b73b-6004-4e02-b96e-63c79814da8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12580" - ], - "x-ms-correlation-request-id": [ - "4d7d36a5-bea3-4ca7-b302-f0d327812c8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215757Z:4d7d36a5-bea3-4ca7-b302-f0d327812c8a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c4fe3e0b-e10c-4151-8610-81f90c6f23e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12579" - ], - "x-ms-correlation-request-id": [ - "29ed5b30-9904-4bb9-aa48-9e8865e6cabf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215757Z:29ed5b30-9904-4bb9-aa48-9e8865e6cabf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e75510e-9c09-4568-9331-085c6f057bf6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12578" - ], - "x-ms-correlation-request-id": [ - "c77d12b9-04f3-42b4-b46a-84baac3f3d17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215757Z:c77d12b9-04f3-42b4-b46a-84baac3f3d17" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7dfef904-df18-4899-a301-f23fbda373da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12577" - ], - "x-ms-correlation-request-id": [ - "4b707807-4422-40dc-bb6d-cac5cfe05ad4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215757Z:4b707807-4422-40dc-bb6d-cac5cfe05ad4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db4906bd-ef18-4d11-b2e5-b8faa967c402" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12576" - ], - "x-ms-correlation-request-id": [ - "ce77eba7-b41e-4841-ad47-fc0f7f8e4a30" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215758Z:ce77eba7-b41e-4841-ad47-fc0f7f8e4a30" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4331a6fc-7ca8-4411-b0fa-e917c1f87d2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12575" - ], - "x-ms-correlation-request-id": [ - "33355100-f737-4031-a7a0-cb0df634f4eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215758Z:33355100-f737-4031-a7a0-cb0df634f4eb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38ab07ab-a38b-420b-adf5-2f44b58c8380" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12574" - ], - "x-ms-correlation-request-id": [ - "11982d7f-c115-453e-9373-d0e897baea25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215758Z:11982d7f-c115-453e-9373-d0e897baea25" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c2fac01-1479-4825-8f3c-419b859006d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12573" - ], - "x-ms-correlation-request-id": [ - "dd63ad70-8155-438b-bdb8-c1a9208cf8dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215758Z:dd63ad70-8155-438b-bdb8-c1a9208cf8dd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "123e44bc-50df-4bec-91a8-c7e53ae60fc9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12572" - ], - "x-ms-correlation-request-id": [ - "363cc1db-ba04-4ee2-b9a0-0d33b87e380b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215758Z:363cc1db-ba04-4ee2-b9a0-0d33b87e380b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b97e51fb-5e32-4bd4-91e1-3105d273a3b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12571" - ], - "x-ms-correlation-request-id": [ - "108e90fc-e8b4-4348-9157-16a49d8eec67" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215758Z:108e90fc-e8b4-4348-9157-16a49d8eec67" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a8f9f8d-db93-4091-91f8-e7448e7adb8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12570" - ], - "x-ms-correlation-request-id": [ - "b643e859-9f03-4b92-91b6-9a1b851aff70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215758Z:b643e859-9f03-4b92-91b6-9a1b851aff70" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e95d99af-211d-416d-85ab-aa46dffe29f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12569" - ], - "x-ms-correlation-request-id": [ - "bb5e3bc1-6fb2-4fe5-9130-8c5e2ba68aec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215759Z:bb5e3bc1-6fb2-4fe5-9130-8c5e2ba68aec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52ab467b-ef50-4b70-80e0-d23a384b76bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12568" - ], - "x-ms-correlation-request-id": [ - "33d8f204-19c2-406f-85df-f199a49035cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215759Z:33d8f204-19c2-406f-85df-f199a49035cd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "beef914a-8253-4956-81a0-7498154e6c29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12567" - ], - "x-ms-correlation-request-id": [ - "8ded86c5-6a64-414d-8d9a-b72bc0249f49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215759Z:8ded86c5-6a64-414d-8d9a-b72bc0249f49" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79fc8f71-4cb4-420a-84e2-2f233db99c5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12566" - ], - "x-ms-correlation-request-id": [ - "413bc993-892e-4e96-87af-24feafee8be1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215759Z:413bc993-892e-4e96-87af-24feafee8be1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fdaafd8e-40d2-40fc-a1ff-2f26da03119a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12565" - ], - "x-ms-correlation-request-id": [ - "ebc25116-c161-4b33-b8f0-08f7532a2ced" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215759Z:ebc25116-c161-4b33-b8f0-08f7532a2ced" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1762e8ee-9675-4733-a0ad-06f77ffe0488" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12564" - ], - "x-ms-correlation-request-id": [ - "86c266cf-f8fb-4a77-913d-4c4870e3886d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215800Z:86c266cf-f8fb-4a77-913d-4c4870e3886d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04285d21-8f05-4f4b-b331-b6da0c810582" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12563" - ], - "x-ms-correlation-request-id": [ - "51ce170a-0609-4ef6-8af5-dc1cd10d144b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215800Z:51ce170a-0609-4ef6-8af5-dc1cd10d144b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "201d52a5-e83e-4d0f-b317-047d9db2e141" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12562" - ], - "x-ms-correlation-request-id": [ - "995fef99-7eda-4b38-8ee1-b0f447bfb885" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215800Z:995fef99-7eda-4b38-8ee1-b0f447bfb885" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f66726e0-f9fc-4bfb-966d-4fce95f109d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12561" - ], - "x-ms-correlation-request-id": [ - "5b017fb1-b3cf-4d0b-9253-bc146827777b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215800Z:5b017fb1-b3cf-4d0b-9253-bc146827777b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:57:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c7161206-4d32-4f7f-9462-ca7b18b43eb8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12560" - ], - "x-ms-correlation-request-id": [ - "0698c161-4c1a-4612-bbef-d11023828c23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215800Z:0698c161-4c1a-4612-bbef-d11023828c23" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d40b5fbf-f4a7-4145-8cf1-37ea90f83e89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12559" - ], - "x-ms-correlation-request-id": [ - "df007996-da29-45c8-8f07-3c8197bfa233" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215800Z:df007996-da29-45c8-8f07-3c8197bfa233" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9057cfbc-bec4-40f3-850e-7eb0c1e957c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12558" - ], - "x-ms-correlation-request-id": [ - "3982791a-84c0-4222-b4bd-e2725467f0d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215801Z:3982791a-84c0-4222-b4bd-e2725467f0d5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "078ef579-e26a-4f79-b19e-65aad48f1194" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12557" - ], - "x-ms-correlation-request-id": [ - "40d95120-8e50-4c28-9401-f487dec0245c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215801Z:40d95120-8e50-4c28-9401-f487dec0245c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3739ee64-7b71-4adc-90cf-c8fa68580b08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12556" - ], - "x-ms-correlation-request-id": [ - "ef8eb374-adc8-4ff1-901b-e5d0dbe564fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215801Z:ef8eb374-adc8-4ff1-901b-e5d0dbe564fb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f58bd637-34fa-4946-a0c4-aa3b34dba923" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12555" - ], - "x-ms-correlation-request-id": [ - "a26cbe68-479d-47a2-86f4-4476b295d7e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215801Z:a26cbe68-479d-47a2-86f4-4476b295d7e9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ace06667-3f61-439a-b09d-7849c85e7ff3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12554" - ], - "x-ms-correlation-request-id": [ - "d77b6f11-1098-47c0-a7b6-8764b49aa412" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215801Z:d77b6f11-1098-47c0-a7b6-8764b49aa412" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dcd202e8-e0b4-4359-9fba-ce7d9cb0a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12553" - ], - "x-ms-correlation-request-id": [ - "e20dd1a7-a197-4961-a3bb-29e3ad8d79fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215801Z:e20dd1a7-a197-4961-a3bb-29e3ad8d79fa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74f7d6bb-b56d-496f-ac73-0b97ea3d4e8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12552" - ], - "x-ms-correlation-request-id": [ - "02faf8e6-616f-4d0c-b1ae-bf00f7e071a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215802Z:02faf8e6-616f-4d0c-b1ae-bf00f7e071a0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a17bba3-4d7e-464d-bfb4-ebfcbc9e75ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12551" - ], - "x-ms-correlation-request-id": [ - "8a20c37d-b5d6-4120-9b1a-88f2f468fdf2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215802Z:8a20c37d-b5d6-4120-9b1a-88f2f468fdf2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cdf43ea9-83cf-4374-b2cb-7adb84c45168" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12550" - ], - "x-ms-correlation-request-id": [ - "5780ca53-28ec-4c02-9300-d3f1dd73935a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215802Z:5780ca53-28ec-4c02-9300-d3f1dd73935a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "710a316e-61bb-4a6a-aabb-5e967845312b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12549" - ], - "x-ms-correlation-request-id": [ - "20ca0593-2142-41a0-9615-1f64878982c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215802Z:20ca0593-2142-41a0-9615-1f64878982c1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3901f0b-2f80-4b0a-a6dd-33b1237ab402" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12548" - ], - "x-ms-correlation-request-id": [ - "f13063fb-f834-40ae-b328-206aebf42087" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215803Z:f13063fb-f834-40ae-b328-206aebf42087" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a03475e-ce54-4beb-b487-69efceaf3ce1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12547" - ], - "x-ms-correlation-request-id": [ - "c719e10f-d6ca-4f20-8185-b02671bb7a63" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215803Z:c719e10f-d6ca-4f20-8185-b02671bb7a63" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7989b3f2-73aa-4302-a726-35a6706972a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12546" - ], - "x-ms-correlation-request-id": [ - "9a34b965-bc81-4370-89d6-16c7e54b65ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215803Z:9a34b965-bc81-4370-89d6-16c7e54b65ef" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a63d7b3-04a0-4e69-b1a2-2b1f80ba750b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12545" - ], - "x-ms-correlation-request-id": [ - "3df8345e-1745-45d8-95d5-280185af0544" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215803Z:3df8345e-1745-45d8-95d5-280185af0544" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0c2339d-00fc-4940-9139-10bafcabbbc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12544" - ], - "x-ms-correlation-request-id": [ - "c8c7837b-9176-4866-8d77-2c2b16cf9cac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215803Z:c8c7837b-9176-4866-8d77-2c2b16cf9cac" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "329b2a5d-4ee3-4269-b51a-b3075c489329" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12543" - ], - "x-ms-correlation-request-id": [ - "b66205fc-ec6c-48bf-afe8-54310f819e1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215803Z:b66205fc-ec6c-48bf-afe8-54310f819e1a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bcc33fb5-5b4e-4bb4-a119-621552667c12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12542" - ], - "x-ms-correlation-request-id": [ - "0329ef94-0479-4e1e-8890-34848913e457" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215803Z:0329ef94-0479-4e1e-8890-34848913e457" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be216b10-bf15-4f55-8480-2c525fd2c91b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12541" - ], - "x-ms-correlation-request-id": [ - "454be01d-130d-416b-874f-6e4827bae943" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215804Z:454be01d-130d-416b-874f-6e4827bae943" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3f6a8fe-243d-4b5a-a19e-66b2009e7099" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12540" - ], - "x-ms-correlation-request-id": [ - "6a1501a7-946f-4b53-a82d-5b6b61ba4229" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215804Z:6a1501a7-946f-4b53-a82d-5b6b61ba4229" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f24a2c1b-00b2-4623-9b77-77d0e0e073ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12539" - ], - "x-ms-correlation-request-id": [ - "e4b109b0-b610-4fb7-b96a-de28e5f0c237" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215804Z:e4b109b0-b610-4fb7-b96a-de28e5f0c237" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d74e0c6b-88fa-439c-a200-fb97b0cd52ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12538" - ], - "x-ms-correlation-request-id": [ - "eb41e18a-9782-4859-8328-73c09d27c067" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215804Z:eb41e18a-9782-4859-8328-73c09d27c067" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8b6a8a4-041d-483a-8753-f09a0cad4ab3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12537" - ], - "x-ms-correlation-request-id": [ - "d8362565-b401-447c-8028-6bf9b58bf7ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215804Z:d8362565-b401-447c-8028-6bf9b58bf7ac" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7212e732-792b-4336-8755-da1d50432377" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12536" - ], - "x-ms-correlation-request-id": [ - "4b54d15c-9f3e-4a41-af2c-3bc0260b6ff1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215804Z:4b54d15c-9f3e-4a41-af2c-3bc0260b6ff1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "876d7b71-e1cb-4137-828c-5fae54325f2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12535" - ], - "x-ms-correlation-request-id": [ - "b79cab6c-4a8a-4a83-baf4-0bf11b6c5822" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215805Z:b79cab6c-4a8a-4a83-baf4-0bf11b6c5822" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "272c8edf-cbbb-488f-8f48-24116325e23e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12534" - ], - "x-ms-correlation-request-id": [ - "ea857063-695d-450e-8e9c-f8e3d77860b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215805Z:ea857063-695d-450e-8e9c-f8e3d77860b0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd3e046d-4e47-449d-af3c-3c71155d6130" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12533" - ], - "x-ms-correlation-request-id": [ - "362c0140-3385-4870-afad-8fb1cb9fbb80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215805Z:362c0140-3385-4870-afad-8fb1cb9fbb80" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f294e973-6ea2-4695-967b-0c46056ac3fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12532" - ], - "x-ms-correlation-request-id": [ - "047817bf-67f2-45a4-8444-394fec7c0b58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215805Z:047817bf-67f2-45a4-8444-394fec7c0b58" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab970d5f-51e0-48e9-b39c-b3044ddd5e59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12531" - ], - "x-ms-correlation-request-id": [ - "94ba1417-36d9-46e7-b86e-6ce246395ee4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215805Z:94ba1417-36d9-46e7-b86e-6ce246395ee4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b27ca8a1-59b2-431a-9a4f-fbeb652dbd08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12530" - ], - "x-ms-correlation-request-id": [ - "30c24d24-4cf5-4fb1-be36-9879d8184e1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215805Z:30c24d24-4cf5-4fb1-be36-9879d8184e1f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf0ecaca-1bfe-4aab-8dab-04a7437339c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12529" - ], - "x-ms-correlation-request-id": [ - "6706fbcf-d782-45a7-b4d3-46338633ae66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215806Z:6706fbcf-d782-45a7-b4d3-46338633ae66" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a2e574ac-7d4f-4760-a4d4-88768d1c6481" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12528" - ], - "x-ms-correlation-request-id": [ - "edcd6e45-0621-466e-8951-6ad08c11822b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215806Z:edcd6e45-0621-466e-8951-6ad08c11822b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bd91182d-12ec-4ca6-94fb-8ba43d3b3171" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12527" - ], - "x-ms-correlation-request-id": [ - "6802a446-f768-4817-bf1b-4936c4140a4d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215806Z:6802a446-f768-4817-bf1b-4936c4140a4d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b1a2d52-edbb-4501-8968-dd32bc3a49f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12526" - ], - "x-ms-correlation-request-id": [ - "e485125e-0d44-4529-8807-9473eacc5e23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215806Z:e485125e-0d44-4529-8807-9473eacc5e23" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8eeca8b3-3701-4758-a516-b45385693c16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12525" - ], - "x-ms-correlation-request-id": [ - "2f30a6a9-8581-43db-b9b3-d6ea91b6a80a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215806Z:2f30a6a9-8581-43db-b9b3-d6ea91b6a80a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7caf4cb5-d686-4371-a878-0656efce83cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12524" - ], - "x-ms-correlation-request-id": [ - "d67dd2c3-0933-4212-aceb-b2642b1e3e26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215806Z:d67dd2c3-0933-4212-aceb-b2642b1e3e26" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9d1f380-22ee-45ce-891c-bbb41afb701a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12523" - ], - "x-ms-correlation-request-id": [ - "11eb7010-dda0-485a-b502-2f278c995d62" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215806Z:11eb7010-dda0-485a-b502-2f278c995d62" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b15f2513-63c1-4fc0-a9b0-26cc50815949" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12522" - ], - "x-ms-correlation-request-id": [ - "9673d3b0-0733-4cf6-a5b1-eaa9d975b998" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215807Z:9673d3b0-0733-4cf6-a5b1-eaa9d975b998" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3767139d-db79-4434-be8b-5b274c7b82b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12521" - ], - "x-ms-correlation-request-id": [ - "71ad20ba-bfc6-4890-be7a-c5d569ee119c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215807Z:71ad20ba-bfc6-4890-be7a-c5d569ee119c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f48d88dc-f10d-4138-870d-03213d5bfe0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12520" - ], - "x-ms-correlation-request-id": [ - "de293b5c-1cc0-429d-a5a6-744e1eefe03a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215807Z:de293b5c-1cc0-429d-a5a6-744e1eefe03a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c9aa9e5-c759-4b41-a302-e4f930d2d9cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12519" - ], - "x-ms-correlation-request-id": [ - "e62a6f36-f15f-4e24-9f04-5e89d3aefc7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215807Z:e62a6f36-f15f-4e24-9f04-5e89d3aefc7a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35563dc8-b604-493e-b357-2f8916c24fc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12518" - ], - "x-ms-correlation-request-id": [ - "c533ebe7-7eda-4425-bb59-c762ad95920d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215807Z:c533ebe7-7eda-4425-bb59-c762ad95920d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e63ce17e-98e1-4dc6-98a4-f78cd5eb5376" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12517" - ], - "x-ms-correlation-request-id": [ - "c5774c7f-1d0a-464a-8335-8b8a06bd64b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215808Z:c5774c7f-1d0a-464a-8335-8b8a06bd64b2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "887df8f1-fe0b-4477-a349-09a06258ba41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12516" - ], - "x-ms-correlation-request-id": [ - "045b7f05-3d91-42a3-b0a3-297e89189cb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215808Z:045b7f05-3d91-42a3-b0a3-297e89189cb9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1b4062f-5de4-472d-80f0-eb8b4eefa8b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12515" - ], - "x-ms-correlation-request-id": [ - "885ba660-ce1e-434b-896e-db85acbcc7f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215808Z:885ba660-ce1e-434b-896e-db85acbcc7f0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "515e7f43-1331-4c1f-b126-9d41d9cbfd44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12514" - ], - "x-ms-correlation-request-id": [ - "935b3602-c4c0-40c2-a4f8-709514ae6f78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215808Z:935b3602-c4c0-40c2-a4f8-709514ae6f78" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86a8b8e3-2117-43cc-a4b7-de3ee49c9d1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12513" - ], - "x-ms-correlation-request-id": [ - "f43022f0-60e5-4298-a55b-e91f2560849f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215808Z:f43022f0-60e5-4298-a55b-e91f2560849f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b86a17c8-0cd9-467c-b22a-b2938e7127fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12512" - ], - "x-ms-correlation-request-id": [ - "73d30e0a-8126-4a49-a709-10ed54d04007" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215808Z:73d30e0a-8126-4a49-a709-10ed54d04007" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c43ceee-6226-4f2a-bd7a-4ce9910fa969" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12511" - ], - "x-ms-correlation-request-id": [ - "a062c445-818a-406d-aedc-ab7542f621ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215809Z:a062c445-818a-406d-aedc-ab7542f621ab" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb72be79-1d40-4e39-bd7f-7ac3eddba065" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12510" - ], - "x-ms-correlation-request-id": [ - "fd524fdb-109b-4ea4-b875-2c42ee29d3c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215809Z:fd524fdb-109b-4ea4-b875-2c42ee29d3c1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ab0297b-e007-4440-87b4-27e04f0e96ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12509" - ], - "x-ms-correlation-request-id": [ - "b8e33059-0ceb-4c1b-97a8-3ffbe7b9c57b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215809Z:b8e33059-0ceb-4c1b-97a8-3ffbe7b9c57b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a78de545-02a3-4387-8536-6919499367e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12508" - ], - "x-ms-correlation-request-id": [ - "21e66c06-b8a0-4883-af15-d919be4f4c2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215809Z:21e66c06-b8a0-4883-af15-d919be4f4c2e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8920819-281b-4a30-826a-35c5f7d43802" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12507" - ], - "x-ms-correlation-request-id": [ - "59b423c7-e2b8-4339-a0dd-0dc25eb122f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215809Z:59b423c7-e2b8-4339-a0dd-0dc25eb122f9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e489499b-9b41-48b9-a315-034fbaeb7bae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12506" - ], - "x-ms-correlation-request-id": [ - "0dbcb07f-14ac-4b5c-a4ea-5a6f26e5b7a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215809Z:0dbcb07f-14ac-4b5c-a4ea-5a6f26e5b7a1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b90cdd0e-d49c-4b83-9484-3c6248005564" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12505" - ], - "x-ms-correlation-request-id": [ - "bbe10e29-aa7a-4f6b-a479-8a89f87f2519" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215810Z:bbe10e29-aa7a-4f6b-a479-8a89f87f2519" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cbd64c07-54ef-4cbb-a05c-d50f2c38004b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12504" - ], - "x-ms-correlation-request-id": [ - "457894fd-a9b2-44f4-9c34-2a7d08bdcdad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215810Z:457894fd-a9b2-44f4-9c34-2a7d08bdcdad" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b20980d4-bd81-48c2-b0b5-2b5b252d29a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12503" - ], - "x-ms-correlation-request-id": [ - "43e0c280-cff9-465c-81cf-c7da02891cc7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215810Z:43e0c280-cff9-465c-81cf-c7da02891cc7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b87b49b-f5c8-484c-aba9-8ecf686936cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12502" - ], - "x-ms-correlation-request-id": [ - "99cfea09-fc1a-4b0e-be9a-21e856366739" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215810Z:99cfea09-fc1a-4b0e-be9a-21e856366739" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca783fea-ed3e-4707-b2de-e3dab6b73687" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12501" - ], - "x-ms-correlation-request-id": [ - "3230c4a1-5a6c-4621-b55c-8d6f9495885b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215810Z:3230c4a1-5a6c-4621-b55c-8d6f9495885b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8ba7083-f1d0-412e-8e9a-7d3cda1cb9a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12500" - ], - "x-ms-correlation-request-id": [ - "bddde0aa-2835-4c3f-b6f5-deee14ad8793" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215811Z:bddde0aa-2835-4c3f-b6f5-deee14ad8793" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d9e9ea8-3dac-4359-ba2a-5ffc9922ed9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12499" - ], - "x-ms-correlation-request-id": [ - "6b267e13-dcbb-4ef6-8a05-005cf5bf9261" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215811Z:6b267e13-dcbb-4ef6-8a05-005cf5bf9261" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6be796ec-64e7-4fa5-8a99-6d369737de9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12498" - ], - "x-ms-correlation-request-id": [ - "926259bd-497d-4c24-bbf8-ac68cf50c551" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215811Z:926259bd-497d-4c24-bbf8-ac68cf50c551" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e61ad522-6f95-4cc7-a221-238d3cb965d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12497" - ], - "x-ms-correlation-request-id": [ - "93be2e41-8757-4e65-aeb1-5ca5e5ede4fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215811Z:93be2e41-8757-4e65-aeb1-5ca5e5ede4fe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82440b76-b1dd-4e80-91ec-e26af2b3db9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12496" - ], - "x-ms-correlation-request-id": [ - "2dc392f8-5033-484f-bab2-593ce4221c04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215811Z:2dc392f8-5033-484f-bab2-593ce4221c04" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56070cb2-4a25-4fd9-9a71-9f467ce92d1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12495" - ], - "x-ms-correlation-request-id": [ - "0858eb2f-954d-41e2-8453-91749816b5e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215812Z:0858eb2f-954d-41e2-8453-91749816b5e6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3fc505c4-7d06-413b-8974-03044878ebb8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12494" - ], - "x-ms-correlation-request-id": [ - "cef5c6d0-77e1-4d8e-89fb-d86229a9d768" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215812Z:cef5c6d0-77e1-4d8e-89fb-d86229a9d768" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0da25fb9-c331-4165-a800-70e9683797be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12493" - ], - "x-ms-correlation-request-id": [ - "add0b24a-5d17-45bd-bd6e-93745c9372ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215812Z:add0b24a-5d17-45bd-bd6e-93745c9372ce" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bfb2b34b-5f2e-4463-8eb0-247d343ce770" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12492" - ], - "x-ms-correlation-request-id": [ - "933f5993-3caa-4832-af07-a51670811275" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215812Z:933f5993-3caa-4832-af07-a51670811275" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0a51587-5258-4903-a8cc-dcb620c8058d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12491" - ], - "x-ms-correlation-request-id": [ - "6bca8d88-6490-4ae4-a148-af325a3b7bc2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215812Z:6bca8d88-6490-4ae4-a148-af325a3b7bc2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d6e3840-8951-443f-886e-1ef4c4a76a8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12490" - ], - "x-ms-correlation-request-id": [ - "d47d4068-0a8d-43e8-974f-bc74dc6182ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215813Z:d47d4068-0a8d-43e8-974f-bc74dc6182ef" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "980a2897-746f-4288-91de-65c6066845ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12489" - ], - "x-ms-correlation-request-id": [ - "8eb488a0-6f21-4558-b5af-d3d6f342752f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215813Z:8eb488a0-6f21-4558-b5af-d3d6f342752f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86b5b111-ac59-493c-9358-9d28e6d137f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12488" - ], - "x-ms-correlation-request-id": [ - "e6487478-21c5-492e-93c0-820e3887dfb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215813Z:e6487478-21c5-492e-93c0-820e3887dfb8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4fb6b7b1-9d7f-4e52-a8cf-a27c5b09802a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12487" - ], - "x-ms-correlation-request-id": [ - "f784bc59-59c6-4c14-b485-b2b39d3fc066" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215813Z:f784bc59-59c6-4c14-b485-b2b39d3fc066" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11a12d6f-a3e8-40b9-8b04-74905f509627" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12486" - ], - "x-ms-correlation-request-id": [ - "d21e63f3-f598-4177-945c-97daa3619360" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215813Z:d21e63f3-f598-4177-945c-97daa3619360" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7b77a82-663d-4acd-8e52-301a3a4f682d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12485" - ], - "x-ms-correlation-request-id": [ - "dca08cf9-eb87-4550-9bea-5d5ac413732f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215813Z:dca08cf9-eb87-4550-9bea-5d5ac413732f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f59188f-bc66-4f6c-aaaa-7d707f818d8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12484" - ], - "x-ms-correlation-request-id": [ - "bd99df51-fa9f-4c35-a24e-4545a0999432" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215813Z:bd99df51-fa9f-4c35-a24e-4545a0999432" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a14455f3-0cf2-46ef-b054-a5e382aaa27a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12483" - ], - "x-ms-correlation-request-id": [ - "6e75afe4-8d30-433d-a2a2-23a25503442a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215814Z:6e75afe4-8d30-433d-a2a2-23a25503442a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc255130-9b45-4133-b71a-607e73638842" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12482" - ], - "x-ms-correlation-request-id": [ - "e67155a9-8340-482a-8f8c-9016176780bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215814Z:e67155a9-8340-482a-8f8c-9016176780bb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f8896bf-efdd-4e62-b4a4-435cb1220e6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12481" - ], - "x-ms-correlation-request-id": [ - "fbf761b9-abd8-45cf-ab3f-a3e9a1b192b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215814Z:fbf761b9-abd8-45cf-ab3f-a3e9a1b192b8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93536716-2c83-4463-97df-a52afbb7682f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12480" - ], - "x-ms-correlation-request-id": [ - "d14863f6-c469-42e8-9740-9b54de0ecc20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215814Z:d14863f6-c469-42e8-9740-9b54de0ecc20" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2010895d-7fe0-41eb-b9df-53d06abe7c80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12479" - ], - "x-ms-correlation-request-id": [ - "11877e3a-ebe1-4a77-b352-6957fef931a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215814Z:11877e3a-ebe1-4a77-b352-6957fef931a0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b6579fd-ea31-4b16-ad48-cd93c18eda81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12478" - ], - "x-ms-correlation-request-id": [ - "a236ceff-264a-4157-8f46-a6e91b25729e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215815Z:a236ceff-264a-4157-8f46-a6e91b25729e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2e228a9-bebe-4c71-8f8f-b048e58c624b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12477" - ], - "x-ms-correlation-request-id": [ - "eefd7751-2746-4ca8-83c5-2322894d2bef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215815Z:eefd7751-2746-4ca8-83c5-2322894d2bef" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33c698ac-fcea-4b68-934c-6ba162f82ad1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12476" - ], - "x-ms-correlation-request-id": [ - "554b188a-834b-46a7-8630-46c50357feb0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215815Z:554b188a-834b-46a7-8630-46c50357feb0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a83d5388-145d-4e0c-90d3-732a82bf25ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12475" - ], - "x-ms-correlation-request-id": [ - "fc5f9bc1-531b-4cd3-b418-c424e82ed918" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215815Z:fc5f9bc1-531b-4cd3-b418-c424e82ed918" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2adf7a3e-8b17-4a4d-a8f2-174e63b10a36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12474" - ], - "x-ms-correlation-request-id": [ - "984190cc-522b-4577-bc20-18991ad2d0c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215815Z:984190cc-522b-4577-bc20-18991ad2d0c2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd754640-10f8-45a9-bd86-8664b826200b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12473" - ], - "x-ms-correlation-request-id": [ - "33946314-d400-425f-8b25-b456c8dd5346" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215815Z:33946314-d400-425f-8b25-b456c8dd5346" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b77d732a-df94-40b5-b8df-a08c3609b5f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12472" - ], - "x-ms-correlation-request-id": [ - "fdc2b922-f252-4d9d-a58f-dbadc7252a88" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215816Z:fdc2b922-f252-4d9d-a58f-dbadc7252a88" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1472098-18e5-40e4-9f1c-cd76c47e3e69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12471" - ], - "x-ms-correlation-request-id": [ - "e27e6d7d-0b92-48b2-a5c2-d17e3712a7c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215816Z:e27e6d7d-0b92-48b2-a5c2-d17e3712a7c2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6654966-aa7e-48e4-afec-41b30f378e33" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12470" - ], - "x-ms-correlation-request-id": [ - "6791b607-9218-4d7f-bf37-111cc1cfcf77" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215816Z:6791b607-9218-4d7f-bf37-111cc1cfcf77" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d52b53a-f3f6-45e8-8462-ad609163c3e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12469" - ], - "x-ms-correlation-request-id": [ - "674a56c8-3fc7-40dd-a231-eca922d3809b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215816Z:674a56c8-3fc7-40dd-a231-eca922d3809b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68a55deb-87ed-49eb-b53e-c55af6af177e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12468" - ], - "x-ms-correlation-request-id": [ - "9b14a6e2-6019-4bf8-8a02-f1aa9bf0ec19" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215816Z:9b14a6e2-6019-4bf8-8a02-f1aa9bf0ec19" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "878e05a1-a37e-4ea1-b3f7-99f8f49a95c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12467" - ], - "x-ms-correlation-request-id": [ - "6f4d7212-3c35-4b0c-8cd7-7caa7958434e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215817Z:6f4d7212-3c35-4b0c-8cd7-7caa7958434e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0204d69-d174-4ee2-9fcc-c890a8c5e27d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12466" - ], - "x-ms-correlation-request-id": [ - "657f8628-5714-459b-b2d1-1208c59df7a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215817Z:657f8628-5714-459b-b2d1-1208c59df7a2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e954a364-ffcd-4016-bef4-3b09209ebb46" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12465" - ], - "x-ms-correlation-request-id": [ - "2fcd8c80-eed8-4b71-8f11-8a2641b98b8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215817Z:2fcd8c80-eed8-4b71-8f11-8a2641b98b8e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6336e3fc-d888-4ddc-a226-97d9a55b8c3e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12464" - ], - "x-ms-correlation-request-id": [ - "1346cb8b-2fee-4df4-9a74-92e3b0583688" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215817Z:1346cb8b-2fee-4df4-9a74-92e3b0583688" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ec89c9b-c4d6-48fa-892d-8a6bc33a2f33" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12463" - ], - "x-ms-correlation-request-id": [ - "72d2ca03-ba51-4c8d-8e87-4de52df5a157" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215817Z:72d2ca03-ba51-4c8d-8e87-4de52df5a157" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65cabe49-1ea2-44d5-a6ed-9271afe2b839" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12462" - ], - "x-ms-correlation-request-id": [ - "8b0be729-eb2b-471b-8abb-1a1db45fdc5c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215817Z:8b0be729-eb2b-471b-8abb-1a1db45fdc5c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e9d427d-c18f-41cc-b7de-9b03c9e6155a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12461" - ], - "x-ms-correlation-request-id": [ - "cd85ce75-972b-4a98-905a-1aa6d90d890c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215817Z:cd85ce75-972b-4a98-905a-1aa6d90d890c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a9168dba-8975-4517-a1b6-703bab6c55a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12460" - ], - "x-ms-correlation-request-id": [ - "a05305b6-7488-47d6-a3eb-f2580a07495d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215818Z:a05305b6-7488-47d6-a3eb-f2580a07495d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "376d4e20-2bde-428e-bbe5-d0349d12f878" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12459" - ], - "x-ms-correlation-request-id": [ - "650e12fa-b167-46f3-a876-addf2ed8cf36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215818Z:650e12fa-b167-46f3-a876-addf2ed8cf36" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "635a2a68-22ec-4115-a450-cd8a45b14d89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12458" - ], - "x-ms-correlation-request-id": [ - "ba517186-470d-4f70-b722-e3f44f0da1d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215818Z:ba517186-470d-4f70-b722-e3f44f0da1d7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "400c4b67-a5c3-448b-aa44-0db0b861c254" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12457" - ], - "x-ms-correlation-request-id": [ - "ed187466-fd99-42e9-bc20-92efa9f49290" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215818Z:ed187466-fd99-42e9-bc20-92efa9f49290" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e06cbc9-fd80-453d-a9bb-91314557f9ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12456" - ], - "x-ms-correlation-request-id": [ - "13358f7c-3a4e-4af9-87f7-004c9a1bd56f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215818Z:13358f7c-3a4e-4af9-87f7-004c9a1bd56f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "64814f32-3582-48f8-952e-9ebd80cf06ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12455" - ], - "x-ms-correlation-request-id": [ - "5b03ba75-d210-4ed9-ac0c-792ba642aa27" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215818Z:5b03ba75-d210-4ed9-ac0c-792ba642aa27" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7513caee-f693-4823-82a2-c044612cad47" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12454" - ], - "x-ms-correlation-request-id": [ - "4d6a16ab-9595-49ed-ad4a-bbc0832d91d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215819Z:4d6a16ab-9595-49ed-ad4a-bbc0832d91d2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e765508a-c762-454c-8abd-f96397bc16a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12453" - ], - "x-ms-correlation-request-id": [ - "766134c4-0d15-4e05-a317-7d620176bc83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215819Z:766134c4-0d15-4e05-a317-7d620176bc83" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d8ed874-e453-422a-a836-39fab1ef0997" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12452" - ], - "x-ms-correlation-request-id": [ - "905504ed-f973-468b-b8f3-bc47010f7d86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215819Z:905504ed-f973-468b-b8f3-bc47010f7d86" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0f3ae4d-9dcb-4c02-ad2f-cfeba1e0c277" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12451" - ], - "x-ms-correlation-request-id": [ - "32b06917-2d52-424c-8517-d0e348217ed2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215819Z:32b06917-2d52-424c-8517-d0e348217ed2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad69cbbd-06ed-429a-8053-8f560f8c72a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12450" - ], - "x-ms-correlation-request-id": [ - "351faa2d-f2f7-4178-9bfc-bc2a30f5a308" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215819Z:351faa2d-f2f7-4178-9bfc-bc2a30f5a308" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d05fc4a-f394-4b66-a90e-12aac61b7d33" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12449" - ], - "x-ms-correlation-request-id": [ - "5efd3db4-2273-46e3-aca5-0ed253792759" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215819Z:5efd3db4-2273-46e3-aca5-0ed253792759" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7a1a048-2189-41e9-9534-9e1c0079fc94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12448" - ], - "x-ms-correlation-request-id": [ - "a9a316ae-aae8-4d0e-8516-19649de57dc1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215820Z:a9a316ae-aae8-4d0e-8516-19649de57dc1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d28a0b0-2338-4677-b18c-8cc01b879ae5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12447" - ], - "x-ms-correlation-request-id": [ - "bea53e49-6321-41f3-a54b-6f056dcc633d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215820Z:bea53e49-6321-41f3-a54b-6f056dcc633d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0c22db76-da7b-440f-a958-1fe9ffcea3ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12446" - ], - "x-ms-correlation-request-id": [ - "d964c846-03f9-4ea6-be69-48e4a07073d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215820Z:d964c846-03f9-4ea6-be69-48e4a07073d3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6d72595-329a-4e17-8d6a-6364aeb5590a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12445" - ], - "x-ms-correlation-request-id": [ - "431a009a-b8eb-49e1-a1a3-0d5cee91dd3f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215820Z:431a009a-b8eb-49e1-a1a3-0d5cee91dd3f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16c48c13-fc12-41e6-91bd-5c931a1c1ba2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12444" - ], - "x-ms-correlation-request-id": [ - "124f0836-6fae-4973-9e1d-9c614a76f0ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215820Z:124f0836-6fae-4973-9e1d-9c614a76f0ce" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1069d1b-2d36-4be3-9a03-f6a724d24156" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12443" - ], - "x-ms-correlation-request-id": [ - "884dfed3-ad24-4a22-af78-29a6e9b9d459" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215820Z:884dfed3-ad24-4a22-af78-29a6e9b9d459" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fd566ed-3829-4e6e-88c6-b7cc4b6309ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12442" - ], - "x-ms-correlation-request-id": [ - "ef554f77-f5b7-4a66-ad94-ea0e33c16bf7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215820Z:ef554f77-f5b7-4a66-ad94-ea0e33c16bf7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a39b574e-46f5-49bc-9c07-15db527fd3a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12441" - ], - "x-ms-correlation-request-id": [ - "0ad816e0-b54e-4eba-a692-e56fc3f7992f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215821Z:0ad816e0-b54e-4eba-a692-e56fc3f7992f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1d98920-64c4-4593-9e14-0d630870600a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12440" - ], - "x-ms-correlation-request-id": [ - "d7fd9be4-e0a7-4542-b3b0-b4bd1237c6c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215821Z:d7fd9be4-e0a7-4542-b3b0-b4bd1237c6c2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05c83319-4335-4fb4-b83c-db4aa581795e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12439" - ], - "x-ms-correlation-request-id": [ - "51a963ee-19e1-47fc-8ae5-7a271720e26f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215821Z:51a963ee-19e1-47fc-8ae5-7a271720e26f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b4031e2-5f45-498a-980b-4f5194d8d877" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12438" - ], - "x-ms-correlation-request-id": [ - "e7f5310c-137b-45bd-a02d-9330acae236d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215821Z:e7f5310c-137b-45bd-a02d-9330acae236d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e1186dc-7789-4cec-8445-5f02c6805569" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12437" - ], - "x-ms-correlation-request-id": [ - "963c91b8-42da-416e-93ad-dc4c52834383" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215821Z:963c91b8-42da-416e-93ad-dc4c52834383" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c780f62c-6816-46fb-ba45-e957f01128b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12436" - ], - "x-ms-correlation-request-id": [ - "2c6b3212-caf1-4edc-9958-4137d97442b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215821Z:2c6b3212-caf1-4edc-9958-4137d97442b6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ffceac0b-2cd2-4076-916a-79d1180c4867" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12435" - ], - "x-ms-correlation-request-id": [ - "7e36f98e-e7d0-45bb-9f16-3599f45d86eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215822Z:7e36f98e-e7d0-45bb-9f16-3599f45d86eb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5733b91f-dda9-44b8-adb8-abf3ebb18b71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12434" - ], - "x-ms-correlation-request-id": [ - "0117f08e-e7b3-4f67-88bd-c6b87b671c54" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215822Z:0117f08e-e7b3-4f67-88bd-c6b87b671c54" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19976c8b-5dd4-4072-afc4-c12ec7099ef8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12433" - ], - "x-ms-correlation-request-id": [ - "eea9550f-a273-47c7-8eb2-928aba7e716a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215822Z:eea9550f-a273-47c7-8eb2-928aba7e716a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "604bcd67-eaf4-4d64-b8fc-883ac3cace95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12432" - ], - "x-ms-correlation-request-id": [ - "c5371f07-0b30-4e00-a22a-cbdf0d4db3cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215822Z:c5371f07-0b30-4e00-a22a-cbdf0d4db3cc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae7bdf4d-052e-43d0-a8a0-a7e6669cd0f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12431" - ], - "x-ms-correlation-request-id": [ - "b4849c76-c4d1-4489-9bfc-235304a11fa9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215822Z:b4849c76-c4d1-4489-9bfc-235304a11fa9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "094d799b-5c60-4c4c-8a08-ac4492794099" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12430" - ], - "x-ms-correlation-request-id": [ - "1cd49c72-fdab-4dee-88d8-cab96ddb9305" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215822Z:1cd49c72-fdab-4dee-88d8-cab96ddb9305" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ad017e4-5c65-443b-b783-03defe54c866" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12429" - ], - "x-ms-correlation-request-id": [ - "f0d392b1-0f71-4f52-8d3b-86fd026cd7cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215823Z:f0d392b1-0f71-4f52-8d3b-86fd026cd7cc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b9135fe8-e908-4ef6-90cc-79eb76f8e9d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12428" - ], - "x-ms-correlation-request-id": [ - "3a98f369-908b-491c-9f94-45e098b294a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215823Z:3a98f369-908b-491c-9f94-45e098b294a6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f65108a-0246-48ff-bb31-c2e87a86f77d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12427" - ], - "x-ms-correlation-request-id": [ - "863112cf-2f05-4e0b-8846-316bf12328de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215823Z:863112cf-2f05-4e0b-8846-316bf12328de" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42cb7d37-ffb8-4463-906a-90a13013abc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12426" - ], - "x-ms-correlation-request-id": [ - "8bdb0db7-8c54-484f-b38c-13c4309492b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215823Z:8bdb0db7-8c54-484f-b38c-13c4309492b1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f70c6c5-8830-4f8d-bf44-b4944dc316c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12425" - ], - "x-ms-correlation-request-id": [ - "6192e738-868c-4ff6-b079-12df4a3b4508" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215823Z:6192e738-868c-4ff6-b079-12df4a3b4508" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad432933-ceb8-4eee-851d-54ed5d51c34b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12424" - ], - "x-ms-correlation-request-id": [ - "6d485822-2a01-4181-b800-10c3d2ca0d97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215823Z:6d485822-2a01-4181-b800-10c3d2ca0d97" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40700c60-7091-4fa9-a026-f49eefe0eab3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12423" - ], - "x-ms-correlation-request-id": [ - "9cf160a6-256b-4c5e-88e5-f9b4ecca2bcf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215823Z:9cf160a6-256b-4c5e-88e5-f9b4ecca2bcf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e1467ab-ab48-4de4-bfff-512dd2a2dc07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12422" - ], - "x-ms-correlation-request-id": [ - "4a222320-9a7e-425a-a325-5c9408cff705" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215824Z:4a222320-9a7e-425a-a325-5c9408cff705" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9713300-bd38-4920-8c97-ab7b962ca0c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12421" - ], - "x-ms-correlation-request-id": [ - "b0af0063-8f4b-482f-b89f-caef25caa550" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215824Z:b0af0063-8f4b-482f-b89f-caef25caa550" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ccebeb5-0b29-4d81-836b-db70fcdf7b55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12420" - ], - "x-ms-correlation-request-id": [ - "46945007-5fa9-48f4-970f-2d550d4153c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215824Z:46945007-5fa9-48f4-970f-2d550d4153c9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76f66a0e-6d2b-4f87-95d3-e8fd516b7687" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12419" - ], - "x-ms-correlation-request-id": [ - "004ba42e-e22b-4743-bc44-82625e0014bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215824Z:004ba42e-e22b-4743-bc44-82625e0014bb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0c9c3fb1-830e-437c-b3ae-b28f81e5109f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12418" - ], - "x-ms-correlation-request-id": [ - "c995f663-61b5-429c-a0ab-0604ae7ade6e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215824Z:c995f663-61b5-429c-a0ab-0604ae7ade6e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4bd4753c-3301-4bb1-94d1-2396eef904ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12417" - ], - "x-ms-correlation-request-id": [ - "7c70015a-c48c-45f0-a62e-624b3b353162" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215824Z:7c70015a-c48c-45f0-a62e-624b3b353162" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bfc5c6a-b1ad-41c1-93e4-4428d2ccb2a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12416" - ], - "x-ms-correlation-request-id": [ - "f8d55a31-af28-4bfb-b161-adc02e4bb3cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215824Z:f8d55a31-af28-4bfb-b161-adc02e4bb3cc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a63972d-8178-4f71-a846-7d2c6e19a6a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12415" - ], - "x-ms-correlation-request-id": [ - "b1ebbfd1-b40b-4630-879a-a6eafe4a7053" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215825Z:b1ebbfd1-b40b-4630-879a-a6eafe4a7053" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e024962-84d5-44d5-86c0-4d09aa69430d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12414" - ], - "x-ms-correlation-request-id": [ - "309a316b-82c2-48fa-9cac-b9c4c85baea2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215825Z:309a316b-82c2-48fa-9cac-b9c4c85baea2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ab61a35-22ae-43a4-a40f-1d2d9f993e93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12413" - ], - "x-ms-correlation-request-id": [ - "06aaf8f9-e4ab-4e98-a54e-0a8e9baadd93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215825Z:06aaf8f9-e4ab-4e98-a54e-0a8e9baadd93" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c340a95-41f1-4fb2-a206-9182132a1bb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12412" - ], - "x-ms-correlation-request-id": [ - "2b6fe79e-5945-4f90-b749-2ecd0e476a46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215825Z:2b6fe79e-5945-4f90-b749-2ecd0e476a46" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7fb961df-9aa4-4deb-ae5a-5695020dff57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12411" - ], - "x-ms-correlation-request-id": [ - "68c51e78-4aef-4e17-a21b-bcd4e55799c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215825Z:68c51e78-4aef-4e17-a21b-bcd4e55799c8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6989d01-9857-416d-9377-2e7af65b6a15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12410" - ], - "x-ms-correlation-request-id": [ - "0b764e3a-c491-4ade-9b58-a51f4f04c4b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215825Z:0b764e3a-c491-4ade-9b58-a51f4f04c4b6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a62d2c7-d8d8-4746-bcbe-7eacd7a49fef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12409" - ], - "x-ms-correlation-request-id": [ - "a0615d27-498d-42bc-9f1b-1bf917638ad2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215826Z:a0615d27-498d-42bc-9f1b-1bf917638ad2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "167533f6-b4ef-43cc-bf84-c94bfe674116" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12408" - ], - "x-ms-correlation-request-id": [ - "825ca865-be83-4d23-9b0c-e7a56296d617" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215826Z:825ca865-be83-4d23-9b0c-e7a56296d617" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "848e2213-92e4-4b4e-b55d-0994204e7462" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12407" - ], - "x-ms-correlation-request-id": [ - "e57b294c-5325-4bb1-a8f1-1f79724aaca6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215826Z:e57b294c-5325-4bb1-a8f1-1f79724aaca6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98a61649-56b4-4419-be1b-b136ad5f3a78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12406" - ], - "x-ms-correlation-request-id": [ - "9a9dca8e-290c-4b6a-8f71-4b6270a37079" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215826Z:9a9dca8e-290c-4b6a-8f71-4b6270a37079" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17770d1a-5bad-4f51-b00f-f026ad7e94d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12405" - ], - "x-ms-correlation-request-id": [ - "a4f77c76-3a6c-4623-8616-db2b4f15cb2b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215826Z:a4f77c76-3a6c-4623-8616-db2b4f15cb2b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44d5e49c-5390-4ed0-849c-0d1177e8207d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12404" - ], - "x-ms-correlation-request-id": [ - "5dc7b548-b981-4609-a6d8-9828f21ac7e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215826Z:5dc7b548-b981-4609-a6d8-9828f21ac7e3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eae843af-24f4-43f7-87c6-e22020bfed5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12403" - ], - "x-ms-correlation-request-id": [ - "95d0d401-2aad-410e-9b00-4f767169c65b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215827Z:95d0d401-2aad-410e-9b00-4f767169c65b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "896baeae-0756-4690-b46b-034bc1189dd7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12402" - ], - "x-ms-correlation-request-id": [ - "be77a1d2-9aab-4895-8f54-9d6b870f3f6a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215827Z:be77a1d2-9aab-4895-8f54-9d6b870f3f6a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f666be1-22db-4bd1-9d15-e69c14478dc4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12401" - ], - "x-ms-correlation-request-id": [ - "03b57c5c-e7c9-4f96-bad8-8aee69253623" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215827Z:03b57c5c-e7c9-4f96-bad8-8aee69253623" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a4e5c71-e912-4f3f-bf60-ebb779bdf271" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12400" - ], - "x-ms-correlation-request-id": [ - "3aae344f-4d14-46da-80b0-fe721e8ad01d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215827Z:3aae344f-4d14-46da-80b0-fe721e8ad01d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9bec601-573a-4dcb-966e-1a0b0c4a48b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12399" - ], - "x-ms-correlation-request-id": [ - "67b195fc-87dd-41e7-98ad-840110ae1caf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215827Z:67b195fc-87dd-41e7-98ad-840110ae1caf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3b2b589-324e-448d-9361-5753c9437f23" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12398" - ], - "x-ms-correlation-request-id": [ - "7b0a5e0c-8d8c-40a9-8a9f-d9d1d223cfd2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215827Z:7b0a5e0c-8d8c-40a9-8a9f-d9d1d223cfd2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78dc09d2-4da4-430f-91e2-190af4e050fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12397" - ], - "x-ms-correlation-request-id": [ - "ddb5bf68-cabb-4a28-9a6c-6a1b0b17f8c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215828Z:ddb5bf68-cabb-4a28-9a6c-6a1b0b17f8c1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1bcdac5e-1858-4b46-bd82-977b9bd87c68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12396" - ], - "x-ms-correlation-request-id": [ - "801e9f20-61be-4e66-bff4-9e2f21e979e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215828Z:801e9f20-61be-4e66-bff4-9e2f21e979e2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc803c29-d7e8-432a-b41f-676db9698bed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12395" - ], - "x-ms-correlation-request-id": [ - "e494691e-5ed5-4ebc-b68d-b829bf964720" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215828Z:e494691e-5ed5-4ebc-b68d-b829bf964720" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c139140a-7957-458b-b8d6-1130aa41a26c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12394" - ], - "x-ms-correlation-request-id": [ - "c9e54908-9168-4dfe-b45e-67d2c20fdad7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215828Z:c9e54908-9168-4dfe-b45e-67d2c20fdad7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc78f016-8410-4d29-8a0a-b79ddb63fb3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12393" - ], - "x-ms-correlation-request-id": [ - "4245a4b3-7d60-4aec-9949-17fbd4bc4f83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215828Z:4245a4b3-7d60-4aec-9949-17fbd4bc4f83" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1cbd332c-4182-4568-b62d-8961520d249a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12392" - ], - "x-ms-correlation-request-id": [ - "f2071a07-54e4-468a-b671-0a4a94a6450c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215828Z:f2071a07-54e4-468a-b671-0a4a94a6450c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "202903ad-40da-43c5-8605-45469676bf7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12391" - ], - "x-ms-correlation-request-id": [ - "beab6423-6df0-4ebd-8836-a12d4e4fba98" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215829Z:beab6423-6df0-4ebd-8836-a12d4e4fba98" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd87686d-eb42-4609-9e53-5e36b9b57bd4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12390" - ], - "x-ms-correlation-request-id": [ - "f3271fef-3aa0-427d-8589-ca29d3d2ca93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215829Z:f3271fef-3aa0-427d-8589-ca29d3d2ca93" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b92d403-f39f-4dfb-88f5-5c7804d3583d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12389" - ], - "x-ms-correlation-request-id": [ - "f407ee83-814e-4560-9454-e1347842e8c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215829Z:f407ee83-814e-4560-9454-e1347842e8c4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb392a1c-9331-47ee-9e88-a16c1f3bd306" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12388" - ], - "x-ms-correlation-request-id": [ - "63734e5b-f802-417e-bc32-cf63e0dee0c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215829Z:63734e5b-f802-417e-bc32-cf63e0dee0c5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ec8b463-98ce-42cb-a4b0-ec5cfe882212" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12387" - ], - "x-ms-correlation-request-id": [ - "dbe11bc6-1222-454d-9980-736638f7a1ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215829Z:dbe11bc6-1222-454d-9980-736638f7a1ef" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da9815e3-5d9a-45c9-a774-bb5978a16f7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12386" - ], - "x-ms-correlation-request-id": [ - "401f229e-c35c-4312-8350-ed47bae4a7fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215829Z:401f229e-c35c-4312-8350-ed47bae4a7fe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1f8c46f-4ae3-46c2-9f8f-24db1804dabd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12385" - ], - "x-ms-correlation-request-id": [ - "52579061-ac36-447e-b457-d0794c4750da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215829Z:52579061-ac36-447e-b457-d0794c4750da" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71ea685f-2611-408a-8ce9-c13a9fa6783d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12384" - ], - "x-ms-correlation-request-id": [ - "84a9df55-50cf-4253-ae9d-b6fe92289184" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215830Z:84a9df55-50cf-4253-ae9d-b6fe92289184" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2fd6360-135e-42a9-a7c7-6149a4d5b9e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12383" - ], - "x-ms-correlation-request-id": [ - "6aa2c37f-dfac-4446-8f74-0dee8dd941c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215830Z:6aa2c37f-dfac-4446-8f74-0dee8dd941c7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22035c9b-9ee3-4aeb-be2c-3d2491b454a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12382" - ], - "x-ms-correlation-request-id": [ - "f31389f2-2774-4e77-a52b-0179c18dc60b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215830Z:f31389f2-2774-4e77-a52b-0179c18dc60b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e897363-4737-407a-a26e-dd49c55bb3cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12381" - ], - "x-ms-correlation-request-id": [ - "80ddcb51-2f52-4ab2-8fc3-7da51424331a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215830Z:80ddcb51-2f52-4ab2-8fc3-7da51424331a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b387b641-a123-4676-bfde-91eca3621e07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12380" - ], - "x-ms-correlation-request-id": [ - "589a5a80-4b85-4326-9d1d-05bdd5c59e1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215830Z:589a5a80-4b85-4326-9d1d-05bdd5c59e1c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0eb4e3fd-1fe7-4755-a984-8cf587f781be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12379" - ], - "x-ms-correlation-request-id": [ - "8a0ecc25-6438-4e3b-99e3-a16e788d31b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215830Z:8a0ecc25-6438-4e3b-99e3-a16e788d31b3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b56f5085-2148-4ec7-b311-f01674ec4b1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12378" - ], - "x-ms-correlation-request-id": [ - "dd980c0a-aca8-49f9-995a-03b81f6e9e3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215831Z:dd980c0a-aca8-49f9-995a-03b81f6e9e3c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "288e55a5-2e46-4e3d-a4d3-952eca6ade24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12377" - ], - "x-ms-correlation-request-id": [ - "566b1c37-9a96-4619-b77f-30df22633588" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215831Z:566b1c37-9a96-4619-b77f-30df22633588" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47820593-bf1e-4628-98d3-3e44667af549" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12376" - ], - "x-ms-correlation-request-id": [ - "73228c3b-e9fe-41dd-a89b-05011a5a40a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215831Z:73228c3b-e9fe-41dd-a89b-05011a5a40a6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "126beef4-60ed-45d0-9cec-9d646afe9634" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12375" - ], - "x-ms-correlation-request-id": [ - "52dc8350-45ce-4963-b608-1e40316367e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215831Z:52dc8350-45ce-4963-b608-1e40316367e9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ca6877b-fc79-4cc4-b902-fb3e7671e445" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12374" - ], - "x-ms-correlation-request-id": [ - "050bd489-8ebd-42cc-9353-67e53b7fd4a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215831Z:050bd489-8ebd-42cc-9353-67e53b7fd4a2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cca053a5-c349-4d75-b183-837925de980e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12373" - ], - "x-ms-correlation-request-id": [ - "53a32a49-83f6-42e2-88af-22769430ded5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215831Z:53a32a49-83f6-42e2-88af-22769430ded5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b09c092-f5a4-4c01-9328-bd116975472a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12372" - ], - "x-ms-correlation-request-id": [ - "d2227bbb-7031-45a6-8e6f-57f00be41a43" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215832Z:d2227bbb-7031-45a6-8e6f-57f00be41a43" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "606cf7a9-2fa7-4363-8d4a-b39972285c0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12371" - ], - "x-ms-correlation-request-id": [ - "237bda45-d3e6-4e28-873a-7fc486e85b89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215832Z:237bda45-d3e6-4e28-873a-7fc486e85b89" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cee7cc08-dfb1-4b69-80ad-1ae1a01c0b16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12370" - ], - "x-ms-correlation-request-id": [ - "fae888d3-ab15-4023-8352-fad8d0c77864" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215832Z:fae888d3-ab15-4023-8352-fad8d0c77864" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f71a602-1ed2-453d-8743-e5f97947cba9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12369" - ], - "x-ms-correlation-request-id": [ - "c4c99af1-0807-43a3-afdd-dc83cb28bd1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215832Z:c4c99af1-0807-43a3-afdd-dc83cb28bd1a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "924a8556-7dcd-4620-8c65-6e34ecec36fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12368" - ], - "x-ms-correlation-request-id": [ - "8f7116ba-f4f3-4748-b461-b30565ac2f24" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215832Z:8f7116ba-f4f3-4748-b461-b30565ac2f24" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eef35684-3701-40d8-a7a3-b56088535af9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12367" - ], - "x-ms-correlation-request-id": [ - "6b9ebcde-d30a-48be-a478-4565152679cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215832Z:6b9ebcde-d30a-48be-a478-4565152679cd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "408a882e-2675-44d1-a2e0-36b84c19a586" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12366" - ], - "x-ms-correlation-request-id": [ - "06be6540-fad0-4d10-b05a-7cc06d224b7c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215832Z:06be6540-fad0-4d10-b05a-7cc06d224b7c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d958433-fc5b-4ab6-b924-dffc1e70b010" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12365" - ], - "x-ms-correlation-request-id": [ - "1211be4e-fb2d-4b34-b130-f2d79dc85e8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215833Z:1211be4e-fb2d-4b34-b130-f2d79dc85e8a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae57f515-616f-4433-8266-9705b964d42b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12364" - ], - "x-ms-correlation-request-id": [ - "33eae67e-d19e-476c-8d64-10af82c7c0b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215833Z:33eae67e-d19e-476c-8d64-10af82c7c0b6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1b7de9f-76e4-40a0-8fe0-0e8595704386" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12363" - ], - "x-ms-correlation-request-id": [ - "aa293b2c-649f-4a1c-8f92-b85a5a38e07d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215833Z:aa293b2c-649f-4a1c-8f92-b85a5a38e07d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73f62675-c3ad-415d-b254-e1659dcdae63" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12362" - ], - "x-ms-correlation-request-id": [ - "2b69f615-e253-4f30-bf12-9960e57a930f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215833Z:2b69f615-e253-4f30-bf12-9960e57a930f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79b1d833-72c3-4a5e-8ddc-637eb712ca6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12361" - ], - "x-ms-correlation-request-id": [ - "34743491-ef34-4c87-9217-df29d656e657" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215833Z:34743491-ef34-4c87-9217-df29d656e657" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d391aab-f1a9-4897-a291-ee8371c2eb88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12360" - ], - "x-ms-correlation-request-id": [ - "12e8bc21-94be-4172-9b0d-fedca0c06c61" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215833Z:12e8bc21-94be-4172-9b0d-fedca0c06c61" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ada4242-ae8a-44c0-8ed2-4e026277ee13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12359" - ], - "x-ms-correlation-request-id": [ - "66d8ece3-f0c5-4f9e-a6d5-170b15f4d1c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215834Z:66d8ece3-f0c5-4f9e-a6d5-170b15f4d1c9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5fdd00b-bc6a-4782-a095-478ad39306c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12358" - ], - "x-ms-correlation-request-id": [ - "f8dddaae-c930-46ac-bc89-0596f5b46a80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215834Z:f8dddaae-c930-46ac-bc89-0596f5b46a80" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de2b92ca-9eed-4314-b236-337dd54d130b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12357" - ], - "x-ms-correlation-request-id": [ - "5f267dd9-cb71-4b89-b1e1-189995ac14c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215834Z:5f267dd9-cb71-4b89-b1e1-189995ac14c5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8e677e72-2c85-4b7b-9d45-f8a0a5376d4f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12356" - ], - "x-ms-correlation-request-id": [ - "6e283d1e-ae80-40ad-9c65-17db89a89ba0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215834Z:6e283d1e-ae80-40ad-9c65-17db89a89ba0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69383f9b-0c7e-4cc1-bed8-3cd15a797b96" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12355" - ], - "x-ms-correlation-request-id": [ - "8e8041fd-5ac9-466e-a9c3-ebd045555427" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215834Z:8e8041fd-5ac9-466e-a9c3-ebd045555427" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac8780ce-3149-4b6a-9e85-4bcd1b28f0be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12354" - ], - "x-ms-correlation-request-id": [ - "99f8b8fc-c1e9-4197-b27b-a713345e3d29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215834Z:99f8b8fc-c1e9-4197-b27b-a713345e3d29" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8dab10db-06c8-4777-9851-7b02fe97807b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12353" - ], - "x-ms-correlation-request-id": [ - "0626a067-13dd-447f-a796-13fc41f33d0b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215834Z:0626a067-13dd-447f-a796-13fc41f33d0b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69c447b8-a5e2-4946-ad22-df71968cb390" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12352" - ], - "x-ms-correlation-request-id": [ - "fa413143-41b6-4e30-9494-1622afb4fae2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215835Z:fa413143-41b6-4e30-9494-1622afb4fae2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "821ae86e-ff25-4b3f-8364-8714bcd9f0a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12351" - ], - "x-ms-correlation-request-id": [ - "64be3998-ae67-4caf-a235-1ed8d9d411aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215835Z:64be3998-ae67-4caf-a235-1ed8d9d411aa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ad6fe99-8d55-48f4-b7ab-ef6f2a48c433" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12350" - ], - "x-ms-correlation-request-id": [ - "16e210cd-bd4d-4d63-b809-624ebde24c75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215835Z:16e210cd-bd4d-4d63-b809-624ebde24c75" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de5e0037-d379-47c5-b558-d38106bfa862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12349" - ], - "x-ms-correlation-request-id": [ - "a7fcd63b-30d8-493c-a157-4224dca5678d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215835Z:a7fcd63b-30d8-493c-a157-4224dca5678d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce02f2fd-4fa3-4d63-9e87-c2f537a1c21d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12348" - ], - "x-ms-correlation-request-id": [ - "704a371b-d278-4559-81f1-9e6838dc2051" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215835Z:704a371b-d278-4559-81f1-9e6838dc2051" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ca18dec-5ffe-4c5f-8b33-fe494331357c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12347" - ], - "x-ms-correlation-request-id": [ - "d475ae57-2bc7-4b7d-8702-e6f7c6ef0a5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215835Z:d475ae57-2bc7-4b7d-8702-e6f7c6ef0a5a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b2856f1-f7c9-4725-90b7-19ccd3c6c80e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12346" - ], - "x-ms-correlation-request-id": [ - "d7c2f4e9-8f2a-47ff-a976-ddc939d6b530" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215835Z:d7c2f4e9-8f2a-47ff-a976-ddc939d6b530" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7b12a0f-ecad-471a-9e46-9f1a186c2b82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12345" - ], - "x-ms-correlation-request-id": [ - "bec3aa7a-9651-4a12-889b-bc9f6443fa8b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215836Z:bec3aa7a-9651-4a12-889b-bc9f6443fa8b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69281171-cc34-4eb6-a13f-fd7df5dba9e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12344" - ], - "x-ms-correlation-request-id": [ - "b38d18cc-578d-47c8-a670-76387a6a4506" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215836Z:b38d18cc-578d-47c8-a670-76387a6a4506" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f56f87a9-0e6c-4392-ae9c-697dc67816b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12343" - ], - "x-ms-correlation-request-id": [ - "7252ab91-70cb-4745-bb5c-dcaa41ec6b07" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215836Z:7252ab91-70cb-4745-bb5c-dcaa41ec6b07" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42a8a3b8-8882-47cb-8173-177cc64a939e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12342" - ], - "x-ms-correlation-request-id": [ - "5914f98b-d203-4de5-963a-ba390082244f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215836Z:5914f98b-d203-4de5-963a-ba390082244f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c25587b-f3ac-4917-8853-74e1e9361202" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12341" - ], - "x-ms-correlation-request-id": [ - "2fa9ff41-a996-4663-ab77-72066b5bf16b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215836Z:2fa9ff41-a996-4663-ab77-72066b5bf16b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5db3f9f-e6a4-4817-85c5-181a69d836e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12340" - ], - "x-ms-correlation-request-id": [ - "ff8443f8-c614-490a-848d-83f91bcf3354" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215836Z:ff8443f8-c614-490a-848d-83f91bcf3354" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7df187c6-ba9c-4dc1-ba8e-fe904a1c66da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12339" - ], - "x-ms-correlation-request-id": [ - "cb32a48a-8a1c-41ad-ab67-b4868ec73b44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215837Z:cb32a48a-8a1c-41ad-ab67-b4868ec73b44" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f621f4d-cc4c-4d02-9c6f-65bc206f1b9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12338" - ], - "x-ms-correlation-request-id": [ - "ad9a0e53-98be-4a59-ba07-623f196ac575" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215837Z:ad9a0e53-98be-4a59-ba07-623f196ac575" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb78ee30-1df5-4424-96e2-0edca6f1be90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12337" - ], - "x-ms-correlation-request-id": [ - "894ee52e-d2f2-4151-909f-b9926e1a8cb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215837Z:894ee52e-d2f2-4151-909f-b9926e1a8cb9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3a73b64-b41e-4cf5-977a-ec5fa2cdacf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12336" - ], - "x-ms-correlation-request-id": [ - "7bbe5a09-7d69-4efe-a61c-8e0b4ada4916" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215837Z:7bbe5a09-7d69-4efe-a61c-8e0b4ada4916" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b647f515-33eb-4939-a3e4-845911087d54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12335" - ], - "x-ms-correlation-request-id": [ - "6f60d994-7ac0-44ec-89b0-f2d58c537ed0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215838Z:6f60d994-7ac0-44ec-89b0-f2d58c537ed0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5863ebbf-ad7e-410a-bf9c-7a72b45d3e96" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12334" - ], - "x-ms-correlation-request-id": [ - "9fbda2f7-109d-4ad1-9a2b-4650ef803a16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215838Z:9fbda2f7-109d-4ad1-9a2b-4650ef803a16" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d3d7c33-9c65-4962-b080-0056a4ac9999" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12333" - ], - "x-ms-correlation-request-id": [ - "dc069dc1-fbc3-4b68-a15b-3d6c05aab711" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215838Z:dc069dc1-fbc3-4b68-a15b-3d6c05aab711" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf2e3d46-5a30-4402-ab96-244af85d5779" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12332" - ], - "x-ms-correlation-request-id": [ - "9e6e9194-2c4b-4e61-93f2-abbeb7bc664d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215838Z:9e6e9194-2c4b-4e61-93f2-abbeb7bc664d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6097802-2050-45ff-8f95-ed989d9b4a94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12331" - ], - "x-ms-correlation-request-id": [ - "ca6006f1-1302-4f05-8879-dc66566df0cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215838Z:ca6006f1-1302-4f05-8879-dc66566df0cc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c259921-2708-4e70-99d7-0aad84f4461a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12330" - ], - "x-ms-correlation-request-id": [ - "9df7bc02-8976-4629-a1c9-e627224c8107" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215838Z:9df7bc02-8976-4629-a1c9-e627224c8107" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9bbd6393-b4f4-408e-9cd1-d83972244b73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12329" - ], - "x-ms-correlation-request-id": [ - "f907c25d-6021-4c2c-ba67-9596f6c3db0a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215838Z:f907c25d-6021-4c2c-ba67-9596f6c3db0a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a5c5500-0058-464d-b8fe-3ef200a6aec6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12328" - ], - "x-ms-correlation-request-id": [ - "991295a7-6e2a-4dee-b922-c9ca973ca5ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215839Z:991295a7-6e2a-4dee-b922-c9ca973ca5ad" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f40bbe5c-43ee-418d-9731-691dd099648b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12327" - ], - "x-ms-correlation-request-id": [ - "c7cb85e6-afb0-4920-a590-0f60853a95cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215839Z:c7cb85e6-afb0-4920-a590-0f60853a95cf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9efb4b6c-3792-4f5b-9d88-dec2b01bc2ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12326" - ], - "x-ms-correlation-request-id": [ - "e64bb7a5-573f-4fc5-b414-27ecf02411a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215839Z:e64bb7a5-573f-4fc5-b414-27ecf02411a7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "469959c8-7cc0-428c-84ee-8d6e2cd3f94d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12325" - ], - "x-ms-correlation-request-id": [ - "37febcb4-cfb5-44d7-95f0-933be3efd4c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215839Z:37febcb4-cfb5-44d7-95f0-933be3efd4c1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "793f49e4-fbe2-41c1-ab0b-182d23c10e53" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12324" - ], - "x-ms-correlation-request-id": [ - "c44160b2-0595-4d59-bad0-fdba89cc5351" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215839Z:c44160b2-0595-4d59-bad0-fdba89cc5351" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a99396c-4e60-4dd9-b718-b5e03fe6a936" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12323" - ], - "x-ms-correlation-request-id": [ - "1a682fc0-6a12-491f-bd99-64c760d92c0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215839Z:1a682fc0-6a12-491f-bd99-64c760d92c0d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "530cfe20-4f6a-4b03-aec2-d2fc88957ed4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12322" - ], - "x-ms-correlation-request-id": [ - "93031004-5d92-4924-acf2-955b1773409a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215840Z:93031004-5d92-4924-acf2-955b1773409a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3cd0687e-951f-4924-948f-ac824d149cf9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12321" - ], - "x-ms-correlation-request-id": [ - "a283856c-3eeb-4f5c-9ad4-5d9c60f8b179" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215840Z:a283856c-3eeb-4f5c-9ad4-5d9c60f8b179" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fcfc2d6f-f78f-4f69-9518-66c10d612d9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12320" - ], - "x-ms-correlation-request-id": [ - "0d06fc56-5e3f-477b-86fa-7a230f6a786a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215840Z:0d06fc56-5e3f-477b-86fa-7a230f6a786a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "094d5546-5614-41a5-a6fc-4330dd1bd4da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12319" - ], - "x-ms-correlation-request-id": [ - "247d33d2-af73-4c43-9134-98702be2e26d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215840Z:247d33d2-af73-4c43-9134-98702be2e26d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74f386df-f797-4b5a-95fe-73d23c5fbd29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12318" - ], - "x-ms-correlation-request-id": [ - "06223308-b183-4377-b782-9dbcd1bfc3ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215840Z:06223308-b183-4377-b782-9dbcd1bfc3ec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5166c33a-0714-4331-8406-4ec7f020f5f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12317" - ], - "x-ms-correlation-request-id": [ - "17ae01f6-7a74-45b9-bc7d-bab9fa6925e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215840Z:17ae01f6-7a74-45b9-bc7d-bab9fa6925e1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c84f48d6-2087-40c4-b4af-95b7a607df1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12316" - ], - "x-ms-correlation-request-id": [ - "91cf7741-4db8-48c2-b0f1-ecc10990babc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215841Z:91cf7741-4db8-48c2-b0f1-ecc10990babc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d35d54d-19d7-499f-a368-c752e571265e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12315" - ], - "x-ms-correlation-request-id": [ - "8912cbd3-4fcd-4749-a30e-40604aadde33" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215841Z:8912cbd3-4fcd-4749-a30e-40604aadde33" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ce548ee-ac54-4a9a-b691-17bc209cc244" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12314" - ], - "x-ms-correlation-request-id": [ - "2866c685-ff8b-4c72-9624-d21f2c1437e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215841Z:2866c685-ff8b-4c72-9624-d21f2c1437e7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43701e1d-978f-4096-8a55-387555075195" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12313" - ], - "x-ms-correlation-request-id": [ - "84becb04-e35f-4002-8edf-612af006fe21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215841Z:84becb04-e35f-4002-8edf-612af006fe21" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91346bd4-3d57-4de6-8bf9-8e603600d4bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12312" - ], - "x-ms-correlation-request-id": [ - "a4801f9c-a7b7-4c3e-bafb-503faa093a46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215841Z:a4801f9c-a7b7-4c3e-bafb-503faa093a46" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74326b3b-1ed7-4998-b7ba-ea356a6fab0a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12311" - ], - "x-ms-correlation-request-id": [ - "9566c38d-c23f-47bf-9dba-edc5d1c341fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215841Z:9566c38d-c23f-47bf-9dba-edc5d1c341fd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36a9c9e5-018a-4770-b3d8-ea78299107aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12310" - ], - "x-ms-correlation-request-id": [ - "ba450a8f-489c-4e50-b2ba-f1bc17f1665f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215842Z:ba450a8f-489c-4e50-b2ba-f1bc17f1665f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "12f9c190-c21d-4ba6-b7a2-20d59a1eda78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12309" - ], - "x-ms-correlation-request-id": [ - "2e32ad86-995c-4d96-8837-c5c6554e8d0a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215842Z:2e32ad86-995c-4d96-8837-c5c6554e8d0a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85a59e23-7a72-4bac-a808-6a8070984f7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12308" - ], - "x-ms-correlation-request-id": [ - "f8cf8d28-2a04-455d-9938-c761863b465f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215842Z:f8cf8d28-2a04-455d-9938-c761863b465f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e38b9591-64b4-4cc8-8509-23aba58ec676" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12307" - ], - "x-ms-correlation-request-id": [ - "8bdcec6d-bbe8-4945-8f5b-b41498389c50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215842Z:8bdcec6d-bbe8-4945-8f5b-b41498389c50" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5aecfb2c-b013-4eec-9090-725d84362d11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12306" - ], - "x-ms-correlation-request-id": [ - "95064589-3869-4439-9aa1-c47cf2c59e2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215842Z:95064589-3869-4439-9aa1-c47cf2c59e2e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb2bf467-b4ca-493b-9cbe-4a03fc300f30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12305" - ], - "x-ms-correlation-request-id": [ - "b25f91ec-6351-4615-a1d0-1ce0ba590625" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215843Z:b25f91ec-6351-4615-a1d0-1ce0ba590625" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46abb873-06c9-43bb-941e-35fae458e1d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12304" - ], - "x-ms-correlation-request-id": [ - "499f126f-dd1e-4c1c-8b43-4094ce3905eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215843Z:499f126f-dd1e-4c1c-8b43-4094ce3905eb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "790152c8-0708-4235-8583-c803aa85e1f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12303" - ], - "x-ms-correlation-request-id": [ - "02aefcf7-1606-4781-9b6a-f9ebaa0da830" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215843Z:02aefcf7-1606-4781-9b6a-f9ebaa0da830" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f7030a2-4574-4644-a581-089e7a7928df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12302" - ], - "x-ms-correlation-request-id": [ - "953ccca9-cd9e-4bcd-b67c-edf99ee4cbfe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215843Z:953ccca9-cd9e-4bcd-b67c-edf99ee4cbfe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04134e0f-30d8-4d87-b15e-9960a4e5c792" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12301" - ], - "x-ms-correlation-request-id": [ - "1cb146b6-ed77-4647-800b-3d8555f89bd4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215843Z:1cb146b6-ed77-4647-800b-3d8555f89bd4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7315bbd8-ae0c-4e34-b27c-7a171b3dd217" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12300" - ], - "x-ms-correlation-request-id": [ - "1100a3a7-2d9e-4a41-b535-4efc022ff9f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215843Z:1100a3a7-2d9e-4a41-b535-4efc022ff9f6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63474c01-8f09-4c18-8bac-e08dbd5b1c60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12299" - ], - "x-ms-correlation-request-id": [ - "c0d15280-0a3f-4f4d-b32e-4c972a5d5ece" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215843Z:c0d15280-0a3f-4f4d-b32e-4c972a5d5ece" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "778d917b-21eb-451e-b1d5-cd78895b3280" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12298" - ], - "x-ms-correlation-request-id": [ - "e9ff9146-2349-4035-a2eb-3b4827d6f577" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215843Z:e9ff9146-2349-4035-a2eb-3b4827d6f577" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5ba3706-1728-4547-87dc-9c9ea982ab12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12297" - ], - "x-ms-correlation-request-id": [ - "306226cc-d1d1-4f7e-aaa8-7d9e7b300bb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215844Z:306226cc-d1d1-4f7e-aaa8-7d9e7b300bb1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30badac1-2719-4404-b528-2f4913401054" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12296" - ], - "x-ms-correlation-request-id": [ - "0cdd49e5-2aa6-4db9-8bfe-afe27b409475" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215844Z:0cdd49e5-2aa6-4db9-8bfe-afe27b409475" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17d57f79-ae54-4fa1-ab32-5b90522535fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12295" - ], - "x-ms-correlation-request-id": [ - "5a8dba85-a7f4-4853-88ce-6e78004fc47e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215844Z:5a8dba85-a7f4-4853-88ce-6e78004fc47e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a145921b-7c57-47c1-b49c-9126f0eaffb8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12294" - ], - "x-ms-correlation-request-id": [ - "f408dc42-1956-432c-9066-4d99317caec8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215844Z:f408dc42-1956-432c-9066-4d99317caec8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "544b6ec2-3719-4a89-b911-aa451f9b2509" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12293" - ], - "x-ms-correlation-request-id": [ - "1b812ca7-d215-4a60-aa82-1799cb39f447" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215844Z:1b812ca7-d215-4a60-aa82-1799cb39f447" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "133d4e2a-d964-4587-9539-7771cb10726e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12292" - ], - "x-ms-correlation-request-id": [ - "eedb2ac6-c83d-46aa-8f13-397a7434f149" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215844Z:eedb2ac6-c83d-46aa-8f13-397a7434f149" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "548293f7-c4cd-468d-828d-985682ff657c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12291" - ], - "x-ms-correlation-request-id": [ - "51461574-f805-4dd5-82be-bfaa3aafab3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215845Z:51461574-f805-4dd5-82be-bfaa3aafab3b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7335671-bd51-4fe0-bad6-3a3fd4c2d353" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12290" - ], - "x-ms-correlation-request-id": [ - "ffe34ac0-75f7-4be0-b58a-7b908e15da84" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215845Z:ffe34ac0-75f7-4be0-b58a-7b908e15da84" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33822f0c-fde8-4291-8ca3-9a77ce1365f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12289" - ], - "x-ms-correlation-request-id": [ - "445dfa8b-bb3d-424c-9e1c-a5bb5458b13e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215845Z:445dfa8b-bb3d-424c-9e1c-a5bb5458b13e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "acad64ed-6a6e-4b24-ac98-aed7670737b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12288" - ], - "x-ms-correlation-request-id": [ - "b3db20d0-6d92-4431-ab23-5bc17542cd0a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215845Z:b3db20d0-6d92-4431-ab23-5bc17542cd0a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3a97ccb-01ce-4fcc-87fe-d51583d9cc35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12287" - ], - "x-ms-correlation-request-id": [ - "cdd4fc97-0518-427a-a382-dd765cd31bf5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215845Z:cdd4fc97-0518-427a-a382-dd765cd31bf5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fdb9dbb7-814e-44cb-aa02-6fa5621e6909" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12286" - ], - "x-ms-correlation-request-id": [ - "198c19a9-1f32-4d9a-aa6e-c06f65d8520c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215845Z:198c19a9-1f32-4d9a-aa6e-c06f65d8520c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ecee1ec2-481f-4d24-8f7a-3addcaada2bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12285" - ], - "x-ms-correlation-request-id": [ - "dd779cb9-80fc-4918-81c0-2ad0087f4909" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215845Z:dd779cb9-80fc-4918-81c0-2ad0087f4909" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae5a8022-ca77-4140-a8af-29b4a2de085f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12284" - ], - "x-ms-correlation-request-id": [ - "08435a7e-8e8e-48ef-876c-a5f7f3037636" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215845Z:08435a7e-8e8e-48ef-876c-a5f7f3037636" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0fee458d-ccd9-45d8-920c-b4fcb68a5e25" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12283" - ], - "x-ms-correlation-request-id": [ - "44b68540-17d7-4285-b073-45523ae6dcde" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215846Z:44b68540-17d7-4285-b073-45523ae6dcde" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22849068-a7ed-4e1e-82db-79b83c120f70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12282" - ], - "x-ms-correlation-request-id": [ - "bc0005ce-e6c8-443a-86a3-8515d5ee6d79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215846Z:bc0005ce-e6c8-443a-86a3-8515d5ee6d79" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ffbddb6-9c45-46dd-b196-f499e9e15fbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12281" - ], - "x-ms-correlation-request-id": [ - "1cd4d25d-1baa-4862-ba22-7e6f2dcc8b7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215846Z:1cd4d25d-1baa-4862-ba22-7e6f2dcc8b7e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52a9d901-2a28-4177-b018-ee4c0989bf1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12280" - ], - "x-ms-correlation-request-id": [ - "bc9284b4-c569-40e7-9502-dbe9a8001dd0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215846Z:bc9284b4-c569-40e7-9502-dbe9a8001dd0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6f83c10-b8ed-4123-88c5-866c68794d1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12279" - ], - "x-ms-correlation-request-id": [ - "b5e7cdf5-8353-4e01-b671-e925e629a0a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215846Z:b5e7cdf5-8353-4e01-b671-e925e629a0a2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb5d6f5c-15ee-4493-93c2-7af3347db10b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12278" - ], - "x-ms-correlation-request-id": [ - "2d96e96c-501c-4583-ad82-213ebc3f2a9e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215847Z:2d96e96c-501c-4583-ad82-213ebc3f2a9e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97a9c283-d538-4ba6-a482-8ff624616798" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12277" - ], - "x-ms-correlation-request-id": [ - "41338286-3a83-4751-a6f0-d85d287aa4bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215847Z:41338286-3a83-4751-a6f0-d85d287aa4bd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19f2d854-8001-4531-a16d-1c852f672058" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12276" - ], - "x-ms-correlation-request-id": [ - "1922784d-2045-4c7a-aae0-8d5eca33faa3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215847Z:1922784d-2045-4c7a-aae0-8d5eca33faa3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c222de8a-785f-4ac8-861e-e900ec3b10f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12275" - ], - "x-ms-correlation-request-id": [ - "f8445cae-c6e5-4fe8-8ac5-9b8b44a76e76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215847Z:f8445cae-c6e5-4fe8-8ac5-9b8b44a76e76" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "639d4321-c2ed-4a9d-b1ab-e8ac8a8232bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12274" - ], - "x-ms-correlation-request-id": [ - "f5c718ef-a4f1-43f6-aa89-fb29c666cb3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215847Z:f5c718ef-a4f1-43f6-aa89-fb29c666cb3e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e29cdf0-a099-4817-8256-e757aafc14b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12273" - ], - "x-ms-correlation-request-id": [ - "fce64005-149d-4ef1-b3b3-b9718d0cb639" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215847Z:fce64005-149d-4ef1-b3b3-b9718d0cb639" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f0ffda6-4c21-45cf-979c-bca2412ded44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12272" - ], - "x-ms-correlation-request-id": [ - "01481b9e-5751-4138-a217-ca45cb5e0a24" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215848Z:01481b9e-5751-4138-a217-ca45cb5e0a24" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a2a75946-eee2-4642-b4f6-3d082b94f143" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12271" - ], - "x-ms-correlation-request-id": [ - "8e6e694b-d09a-4a75-82e5-81b1e1ef4390" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215848Z:8e6e694b-d09a-4a75-82e5-81b1e1ef4390" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f338727-0d66-4711-9fed-a1dff8cd2b68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12270" - ], - "x-ms-correlation-request-id": [ - "20d544eb-4f6c-4266-a844-2966588bbc57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215848Z:20d544eb-4f6c-4266-a844-2966588bbc57" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b2baa02-1d65-4fa7-8416-c1348cd1b1ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12269" - ], - "x-ms-correlation-request-id": [ - "c2fce24d-fd8e-4b06-979e-1e379c5d1704" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215848Z:c2fce24d-fd8e-4b06-979e-1e379c5d1704" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b0b0e21-8b12-468e-9318-9a5475a4dfa0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12268" - ], - "x-ms-correlation-request-id": [ - "b1f910d5-05cf-414a-bcf1-ce967f848780" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215848Z:b1f910d5-05cf-414a-bcf1-ce967f848780" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "743b80fc-3651-4f40-828b-1e5c4ce956f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12267" - ], - "x-ms-correlation-request-id": [ - "fc2287aa-4a6f-48f9-b338-848f68e33596" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215849Z:fc2287aa-4a6f-48f9-b338-848f68e33596" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77e7712e-bd40-4b5e-854e-8f951eed7a11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12266" - ], - "x-ms-correlation-request-id": [ - "42467c10-ba54-404d-8d7b-b01cb9de44a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215849Z:42467c10-ba54-404d-8d7b-b01cb9de44a2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49a2b165-343e-4947-968e-2cc84c96a61e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12265" - ], - "x-ms-correlation-request-id": [ - "ee988c2d-16e5-4033-8600-0767efdb1f86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215849Z:ee988c2d-16e5-4033-8600-0767efdb1f86" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "114cb44f-29d5-4d8e-a8f4-17ef3ebfcf87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12264" - ], - "x-ms-correlation-request-id": [ - "006b5018-073c-4d47-9f21-b12bb8329284" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215849Z:006b5018-073c-4d47-9f21-b12bb8329284" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "736c6ef3-4542-48a6-a073-60206cc0f88e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12263" - ], - "x-ms-correlation-request-id": [ - "b3ba631f-3520-4990-9f61-8472e928455e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215849Z:b3ba631f-3520-4990-9f61-8472e928455e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0b40b13-c782-4a7a-a7f3-7d9dd028a3f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12262" - ], - "x-ms-correlation-request-id": [ - "9c842eb9-5545-4dc5-bfeb-575d2a183033" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215850Z:9c842eb9-5545-4dc5-bfeb-575d2a183033" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a967515-00f3-47c8-8f66-26cc9998bad3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12261" - ], - "x-ms-correlation-request-id": [ - "ce8e5010-a8c3-40a5-8384-08133799d05c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215850Z:ce8e5010-a8c3-40a5-8384-08133799d05c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5fc9926-3393-4ede-aed8-0b78ca94248c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12260" - ], - "x-ms-correlation-request-id": [ - "0d46e91b-119e-4635-b705-0dd428b76a96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215850Z:0d46e91b-119e-4635-b705-0dd428b76a96" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "468b50d6-9adb-4979-bb9e-8dd10a437460" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12259" - ], - "x-ms-correlation-request-id": [ - "6cb9d77e-529e-4db6-9246-61e00fad1b34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215850Z:6cb9d77e-529e-4db6-9246-61e00fad1b34" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b2966e7-96ed-4892-a6b4-b8d4dd59b638" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12258" - ], - "x-ms-correlation-request-id": [ - "d116e812-51ec-4d04-b83f-12648a26b4a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215850Z:d116e812-51ec-4d04-b83f-12648a26b4a1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40749b24-0550-4f63-8288-89d983510e14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12257" - ], - "x-ms-correlation-request-id": [ - "2af37914-512e-4895-b52f-cb2b0d6bb195" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215851Z:2af37914-512e-4895-b52f-cb2b0d6bb195" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13ab368a-f963-4ee4-9108-c72964ab19e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12256" - ], - "x-ms-correlation-request-id": [ - "e3c98358-673a-457d-a1b7-68b063d7a914" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215851Z:e3c98358-673a-457d-a1b7-68b063d7a914" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc3a7ac6-bbf4-4e41-b5a2-54883f42111a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12255" - ], - "x-ms-correlation-request-id": [ - "3d84b23e-a42f-458f-b1c9-27eae1e5a174" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215851Z:3d84b23e-a42f-458f-b1c9-27eae1e5a174" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba9f84c0-cc6d-4dcb-b3a7-c9c20f9e6403" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12254" - ], - "x-ms-correlation-request-id": [ - "da025685-bbf8-4882-8a5e-c686fdfe1cf6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215851Z:da025685-bbf8-4882-8a5e-c686fdfe1cf6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79b32075-53a8-4323-9b0d-a86502c17409" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12253" - ], - "x-ms-correlation-request-id": [ - "a9cefa5d-2845-4db4-8275-5a166b7de3de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215852Z:a9cefa5d-2845-4db4-8275-5a166b7de3de" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed51f78b-cd54-46d8-9364-9f3d9335268e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12252" - ], - "x-ms-correlation-request-id": [ - "282e6950-0462-4e27-9b01-b47dee7c4340" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215852Z:282e6950-0462-4e27-9b01-b47dee7c4340" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c221e603-0154-431a-9ef9-01d336e1e533" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12251" - ], - "x-ms-correlation-request-id": [ - "e2af6664-652b-4b05-a09f-bd595654665b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215852Z:e2af6664-652b-4b05-a09f-bd595654665b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca17e12e-96fc-4b73-9398-dbe330adc689" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12250" - ], - "x-ms-correlation-request-id": [ - "70dbbe4c-6531-4367-8f01-af8b9019898e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215853Z:70dbbe4c-6531-4367-8f01-af8b9019898e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dcee1c80-f6bc-4516-a0ea-0be611c94033" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12249" - ], - "x-ms-correlation-request-id": [ - "88f7d91b-4a60-46b9-923b-9bfba2cd2309" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215853Z:88f7d91b-4a60-46b9-923b-9bfba2cd2309" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "358ee5b7-93ef-49aa-bd5c-533cb3e9d75e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12248" - ], - "x-ms-correlation-request-id": [ - "1cc687e1-2271-435e-bd5b-70ec57a14777" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215853Z:1cc687e1-2271-435e-bd5b-70ec57a14777" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "864ff1c6-f910-449c-93f3-9c66e91c716a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12247" - ], - "x-ms-correlation-request-id": [ - "e46c697e-ae45-4f84-93ac-b3d738e41057" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215853Z:e46c697e-ae45-4f84-93ac-b3d738e41057" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0821579-3c5c-4a23-aeaa-c1c3c7f26b09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12246" - ], - "x-ms-correlation-request-id": [ - "82de9052-03cc-4e1e-bda8-457cea4a440b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215854Z:82de9052-03cc-4e1e-bda8-457cea4a440b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b27cbcb-4a81-447b-9265-6799c9ec3a0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12245" - ], - "x-ms-correlation-request-id": [ - "008d73f5-5129-48ce-a0d1-ef3670119526" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215854Z:008d73f5-5129-48ce-a0d1-ef3670119526" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ebe7451e-4440-45b4-8c14-8186093ad637" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12244" - ], - "x-ms-correlation-request-id": [ - "41ac1bef-1296-4f4c-9fed-e250a7db3267" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215854Z:41ac1bef-1296-4f4c-9fed-e250a7db3267" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c2c27bcd-c07d-4e62-a4c2-e0282e5e5440" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12243" - ], - "x-ms-correlation-request-id": [ - "9686ab1a-99cd-4e14-ae30-daeff5408aff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215854Z:9686ab1a-99cd-4e14-ae30-daeff5408aff" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "acefeeee-3ec7-4cce-8f8a-70637368e48a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12242" - ], - "x-ms-correlation-request-id": [ - "f5e25f69-78ac-4173-bac8-b66abbd3a123" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215855Z:f5e25f69-78ac-4173-bac8-b66abbd3a123" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2265056-9cf3-4420-9c30-f7c6d8eb4745" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12241" - ], - "x-ms-correlation-request-id": [ - "00679415-2e7b-4685-81bc-eb3fa23ad666" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215855Z:00679415-2e7b-4685-81bc-eb3fa23ad666" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d518bb34-5045-4402-a306-16ad31d861c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12240" - ], - "x-ms-correlation-request-id": [ - "3006a9cf-056a-49f3-8a8d-1b8b44ca741d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215855Z:3006a9cf-056a-49f3-8a8d-1b8b44ca741d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "719cc515-d305-4183-93df-118e232807f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12239" - ], - "x-ms-correlation-request-id": [ - "9acc1910-a20d-4173-96ab-9c497b271b66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215855Z:9acc1910-a20d-4173-96ab-9c497b271b66" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a9e1dbf8-32cd-444d-a5a5-7b408a203cdd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12238" - ], - "x-ms-correlation-request-id": [ - "517c898b-ea6f-4f44-a850-1d6f50ec70df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215855Z:517c898b-ea6f-4f44-a850-1d6f50ec70df" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94cc2883-13f2-4f54-8986-3c53c9747f20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12237" - ], - "x-ms-correlation-request-id": [ - "019c56d1-07dc-4de0-a489-6c95fa7b1b28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215855Z:019c56d1-07dc-4de0-a489-6c95fa7b1b28" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0371090c-d00d-4a00-994f-d51600e01148" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12236" - ], - "x-ms-correlation-request-id": [ - "3ad33aba-a1e9-47a3-a1e8-586751e6364f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215856Z:3ad33aba-a1e9-47a3-a1e8-586751e6364f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90fadeb8-e114-4cfe-9867-d80b51a01024" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12235" - ], - "x-ms-correlation-request-id": [ - "5eb3448a-984c-4e18-abff-b588c1ca6fe2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215856Z:5eb3448a-984c-4e18-abff-b588c1ca6fe2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "253f09d5-7327-4840-aea5-1790df6e6682" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12234" - ], - "x-ms-correlation-request-id": [ - "058f4f18-3d91-455f-9e93-300f8a1721bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215856Z:058f4f18-3d91-455f-9e93-300f8a1721bd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fbc71658-f5f0-4955-be2d-e21932696093" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12233" - ], - "x-ms-correlation-request-id": [ - "30d926fa-b365-4ac1-9217-181aab7ee905" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215856Z:30d926fa-b365-4ac1-9217-181aab7ee905" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ca0344a-cc98-48ce-a952-df651402d687" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12232" - ], - "x-ms-correlation-request-id": [ - "737b3ebd-453e-4ba8-934d-a4c5c63fc8c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215857Z:737b3ebd-453e-4ba8-934d-a4c5c63fc8c1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b21d19e-7a46-4527-bfbb-f8eb63ea73b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12231" - ], - "x-ms-correlation-request-id": [ - "d6a636df-d314-4479-b082-541035d47ca1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215857Z:d6a636df-d314-4479-b082-541035d47ca1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a854877-6b01-4c1e-b578-7d77cc21ce93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12230" - ], - "x-ms-correlation-request-id": [ - "667ad0df-5918-4d2e-90a6-cf90f119dc77" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215857Z:667ad0df-5918-4d2e-90a6-cf90f119dc77" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3c9fc64-8898-4b15-a508-414f96f05e2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12229" - ], - "x-ms-correlation-request-id": [ - "2a29ccf5-da15-4d61-830f-34f64d7276fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215857Z:2a29ccf5-da15-4d61-830f-34f64d7276fb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bd2c99b0-84fd-4e9d-96af-a2858092027f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12228" - ], - "x-ms-correlation-request-id": [ - "3a300d1a-679d-46da-ab64-ba47fde2551d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215857Z:3a300d1a-679d-46da-ab64-ba47fde2551d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d46fe86-d831-481a-b045-e90e84c458e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12227" - ], - "x-ms-correlation-request-id": [ - "0e966866-6e00-436b-b3aa-0e3e967c248b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215857Z:0e966866-6e00-436b-b3aa-0e3e967c248b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cbbf6c15-7f14-43f3-9a7e-0fd66c81f254" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12226" - ], - "x-ms-correlation-request-id": [ - "c889668d-5655-4768-9848-7093ed83110d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215857Z:c889668d-5655-4768-9848-7093ed83110d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6271244e-f658-4058-a225-1f5c06da9570" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12225" - ], - "x-ms-correlation-request-id": [ - "6f6b5835-08fb-443e-965d-3d8dc5a95f91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215858Z:6f6b5835-08fb-443e-965d-3d8dc5a95f91" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7e6ca47-ce71-4216-be85-3410a68d91c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12224" - ], - "x-ms-correlation-request-id": [ - "b4a69a1b-7018-40cc-a02c-57e95701c69a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215858Z:b4a69a1b-7018-40cc-a02c-57e95701c69a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3e96c91a-5e22-485b-81c5-2f955d27390d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12223" - ], - "x-ms-correlation-request-id": [ - "df93e053-c6d5-409a-a02b-82821cee871e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215858Z:df93e053-c6d5-409a-a02b-82821cee871e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38a80d96-2426-41e7-b418-0126361ad60c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12222" - ], - "x-ms-correlation-request-id": [ - "3368e3ba-b453-4f77-af43-23aff6f8be6b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215858Z:3368e3ba-b453-4f77-af43-23aff6f8be6b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccf61026-6ed4-4132-a26d-56b35e55cb90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12221" - ], - "x-ms-correlation-request-id": [ - "a274d4f2-12ef-4709-9c52-2a0dcb176a8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215858Z:a274d4f2-12ef-4709-9c52-2a0dcb176a8a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff086dfe-e495-4bfb-85b9-66b893801f43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12220" - ], - "x-ms-correlation-request-id": [ - "014ac663-4cd4-479b-8428-8fcb28d813bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215858Z:014ac663-4cd4-479b-8428-8fcb28d813bf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb8aee0b-1976-4f45-bb89-cc777692083c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12219" - ], - "x-ms-correlation-request-id": [ - "6891513f-5136-41f9-acec-809cff884f35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215859Z:6891513f-5136-41f9-acec-809cff884f35" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b15d7c64-de25-47be-a4a2-8dfb54f5f2e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12218" - ], - "x-ms-correlation-request-id": [ - "89a2c855-5c58-4e35-aae5-4dd145efb220" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215859Z:89a2c855-5c58-4e35-aae5-4dd145efb220" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b80bf0d1-2cb3-4a60-afb9-f78eadbf1d11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12217" - ], - "x-ms-correlation-request-id": [ - "22d9ef1c-41a6-4ac7-999a-86ae96c51ca1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215859Z:22d9ef1c-41a6-4ac7-999a-86ae96c51ca1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29aea528-4481-45bd-af23-b6f34d6bda7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12216" - ], - "x-ms-correlation-request-id": [ - "b7664f5c-b82d-4e53-9779-3260dd680384" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215859Z:b7664f5c-b82d-4e53-9779-3260dd680384" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "808e09e6-d6a7-4dcd-805f-379d3a2b8a16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12215" - ], - "x-ms-correlation-request-id": [ - "4c0d5554-e1d2-42ae-a705-f778c34ad168" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215859Z:4c0d5554-e1d2-42ae-a705-f778c34ad168" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3fa6c549-700b-4461-aaf8-1a0db31b5554" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12214" - ], - "x-ms-correlation-request-id": [ - "db6e6f9f-d151-4864-9d72-02759deb3abd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215859Z:db6e6f9f-d151-4864-9d72-02759deb3abd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ef6f068-1c9d-4e87-8f6d-3c97d03e44c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12213" - ], - "x-ms-correlation-request-id": [ - "f8fd6a6f-9528-4477-8119-b2911565d29f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215900Z:f8fd6a6f-9528-4477-8119-b2911565d29f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "534cb589-30d8-4fb0-8cf4-851e52ed5e63" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12212" - ], - "x-ms-correlation-request-id": [ - "84a33319-d0da-4e44-be3d-b61452a161a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215900Z:84a33319-d0da-4e44-be3d-b61452a161a6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8540a0f3-88da-4aac-ab20-db9fde8d0e44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12211" - ], - "x-ms-correlation-request-id": [ - "ccb039e1-4d13-489e-bb2e-ebaaad0c54ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215900Z:ccb039e1-4d13-489e-bb2e-ebaaad0c54ac" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d890f0e3-4f22-4f9e-be69-51b202ef5c57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12210" - ], - "x-ms-correlation-request-id": [ - "5907bbc6-b8b6-47ba-a3f3-465ce36286b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215900Z:5907bbc6-b8b6-47ba-a3f3-465ce36286b2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0420c7f0-29a5-481b-8ae6-7cff071acc5d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12209" - ], - "x-ms-correlation-request-id": [ - "89cd7e41-ab35-4f42-bd57-5814fd736d34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215900Z:89cd7e41-ab35-4f42-bd57-5814fd736d34" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c82a8b79-45ba-46b4-8979-f08c15460434" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12208" - ], - "x-ms-correlation-request-id": [ - "059cf5f7-9683-47c9-90b4-122a92d5bb25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215900Z:059cf5f7-9683-47c9-90b4-122a92d5bb25" - ], - "Date": [ - "Tue, 29 Aug 2017 21:58:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee8ccf93-b874-437d-bbc8-23f03fc1abe5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12207" - ], - "x-ms-correlation-request-id": [ - "f26c5286-5ed8-49b7-82dd-9ce706af81ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215901Z:f26c5286-5ed8-49b7-82dd-9ce706af81ec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f6cd4a6-3903-4b91-a99d-9f684663ede7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12206" - ], - "x-ms-correlation-request-id": [ - "65f21c9a-8e91-4f85-9ed2-f9f90ae106fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215901Z:65f21c9a-8e91-4f85-9ed2-f9f90ae106fd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f68052e1-78a1-4c24-af7b-d54f5070575f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12205" - ], - "x-ms-correlation-request-id": [ - "b4cba4b1-cbc5-4e63-afc1-f7c4de39a1f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215901Z:b4cba4b1-cbc5-4e63-afc1-f7c4de39a1f3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bd37d4bb-5008-484f-aea9-e83c3610c3d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12204" - ], - "x-ms-correlation-request-id": [ - "18d53526-c1bf-4e2b-a578-67516ac40c8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215901Z:18d53526-c1bf-4e2b-a578-67516ac40c8d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e5fb6ba-25f2-4d7b-a5b8-942145eab601" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12203" - ], - "x-ms-correlation-request-id": [ - "8f6aed25-0be3-4a88-b052-b767f613a092" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215901Z:8f6aed25-0be3-4a88-b052-b767f613a092" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "21e25b2f-06cf-4c6e-ab52-7b03c34bf424" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12202" - ], - "x-ms-correlation-request-id": [ - "6bf3cda9-ffd3-4141-aabb-ea1297b2ac0a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215901Z:6bf3cda9-ffd3-4141-aabb-ea1297b2ac0a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33fb45db-b5c0-447d-beb5-d79879c4e354" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12201" - ], - "x-ms-correlation-request-id": [ - "29dac1b6-f1d7-4252-8e79-e112ef8f5cf4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215902Z:29dac1b6-f1d7-4252-8e79-e112ef8f5cf4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d41192a7-2725-43a4-b3f5-4b5eed4aab0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12200" - ], - "x-ms-correlation-request-id": [ - "a1ea0e26-922d-4571-847e-40a8f3f62ea3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215902Z:a1ea0e26-922d-4571-847e-40a8f3f62ea3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b82cec8e-40c4-4638-a553-e61b7a91b550" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12199" - ], - "x-ms-correlation-request-id": [ - "738b9176-87d9-4f88-b11a-f0c04b8a1808" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215902Z:738b9176-87d9-4f88-b11a-f0c04b8a1808" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ecb76125-7e51-43b6-b2d0-d53025bdc7a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12198" - ], - "x-ms-correlation-request-id": [ - "292b15fc-e817-4968-8569-dcfb3ba4c596" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215902Z:292b15fc-e817-4968-8569-dcfb3ba4c596" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d54e99e-ef8d-49c9-bdf2-fdf0b930fd16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12197" - ], - "x-ms-correlation-request-id": [ - "ee2ea2b7-90ec-466d-a914-74100ada6782" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215902Z:ee2ea2b7-90ec-466d-a914-74100ada6782" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "351d5d52-f81a-4c08-89b8-c095354f956a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12196" - ], - "x-ms-correlation-request-id": [ - "c4183656-8b34-4522-89df-afc286563060" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215902Z:c4183656-8b34-4522-89df-afc286563060" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0735cbd9-1460-4f75-b354-5bbe5a7de125" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12195" - ], - "x-ms-correlation-request-id": [ - "01b5ef1d-9199-42bb-ab55-b92207d0a17e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215902Z:01b5ef1d-9199-42bb-ab55-b92207d0a17e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2009ad41-5eb9-44b4-a15f-388e3207a1b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12194" - ], - "x-ms-correlation-request-id": [ - "f05385e6-831e-4205-8985-3b1d5c21bdcb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215903Z:f05385e6-831e-4205-8985-3b1d5c21bdcb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79a20761-6280-4a83-947c-53fcf12fb26f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12193" - ], - "x-ms-correlation-request-id": [ - "9787a1bb-d773-42c2-ac25-f4f116762a7d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215903Z:9787a1bb-d773-42c2-ac25-f4f116762a7d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79ceaddb-fb17-4c4b-aa31-95c5e9f74144" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12192" - ], - "x-ms-correlation-request-id": [ - "a529f945-620f-466e-9f32-c63795a26a9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215903Z:a529f945-620f-466e-9f32-c63795a26a9a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc00052f-6b76-47e4-a7f4-5533eea07a84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12191" - ], - "x-ms-correlation-request-id": [ - "afd45d9c-5891-4d57-a436-83f8b505214a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215903Z:afd45d9c-5891-4d57-a436-83f8b505214a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d475a18-47b5-4964-bbc8-3452fe2a1aff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12190" - ], - "x-ms-correlation-request-id": [ - "253e0460-44e2-4b97-9ada-f2709b233e85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215903Z:253e0460-44e2-4b97-9ada-f2709b233e85" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f9fb96b-fb18-4661-b3fb-b642840663b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12189" - ], - "x-ms-correlation-request-id": [ - "26af45ce-b7a2-4d61-acdb-484eead7282b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215904Z:26af45ce-b7a2-4d61-acdb-484eead7282b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6aefa74f-e0a1-4010-8b4e-ee6e1cfa2cdf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12188" - ], - "x-ms-correlation-request-id": [ - "8b719ac5-6bb9-400d-bd34-94e5e4ea9346" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215904Z:8b719ac5-6bb9-400d-bd34-94e5e4ea9346" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2da8c40-b7f7-4d80-a2ad-c4f65963b0ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12187" - ], - "x-ms-correlation-request-id": [ - "7cddb05d-3622-4fc2-a339-cca9609e3985" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215904Z:7cddb05d-3622-4fc2-a339-cca9609e3985" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d7448ce-7b47-430f-b8f7-1fb9d319495a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12186" - ], - "x-ms-correlation-request-id": [ - "bdb70f09-e85d-44b3-924a-81774b2d2d4f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215904Z:bdb70f09-e85d-44b3-924a-81774b2d2d4f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe8229af-2332-462c-b6ed-12292a73898d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12185" - ], - "x-ms-correlation-request-id": [ - "9f5d44f3-a87e-4a7b-8631-81e69e2e852e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215904Z:9f5d44f3-a87e-4a7b-8631-81e69e2e852e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8db2b68-4801-4bca-93b1-2bf8e7fa93da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12184" - ], - "x-ms-correlation-request-id": [ - "852a43bb-e0e9-43ed-ac4c-253201fec3c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215904Z:852a43bb-e0e9-43ed-ac4c-253201fec3c6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a00cedf-2544-46dd-a525-18605a2226bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12183" - ], - "x-ms-correlation-request-id": [ - "48a866e7-ee13-48f1-a16b-2c6a39c3d043" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215905Z:48a866e7-ee13-48f1-a16b-2c6a39c3d043" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0291e24d-96a9-457a-bbf1-2fe308402adc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12182" - ], - "x-ms-correlation-request-id": [ - "f4ed1fb1-8b06-4d6d-a411-bd2ec82409a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215905Z:f4ed1fb1-8b06-4d6d-a411-bd2ec82409a8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33498c97-03a0-4312-9faf-4d78a45fa026" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12181" - ], - "x-ms-correlation-request-id": [ - "1785f5bc-79ca-4fae-8f2f-ba4f870ad094" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215905Z:1785f5bc-79ca-4fae-8f2f-ba4f870ad094" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83705534-0763-42fc-bbb9-03be43384f1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12180" - ], - "x-ms-correlation-request-id": [ - "b80113df-b459-4814-9dce-1e5484ac875f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215905Z:b80113df-b459-4814-9dce-1e5484ac875f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "878b6319-00f2-4c30-99ee-24f116920cb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12179" - ], - "x-ms-correlation-request-id": [ - "a21fc168-78cc-43b9-a860-5600a58d94a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215905Z:a21fc168-78cc-43b9-a860-5600a58d94a3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c91bb3b6-a5fe-4357-8586-b43915a08647" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12178" - ], - "x-ms-correlation-request-id": [ - "e315c487-4566-4a28-acec-a6cd8036729c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215905Z:e315c487-4566-4a28-acec-a6cd8036729c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b3f031e-3c42-49d9-b9ed-91c53b29de2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12177" - ], - "x-ms-correlation-request-id": [ - "314353a3-6b41-4f30-95ad-f7f58f97d695" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215906Z:314353a3-6b41-4f30-95ad-f7f58f97d695" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ac0040b-55c8-42a6-b7e5-0ae79ff31156" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12176" - ], - "x-ms-correlation-request-id": [ - "f4b3f76f-b290-41ce-8dc2-5313235e1616" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215906Z:f4b3f76f-b290-41ce-8dc2-5313235e1616" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a87157c-4fe4-4ea2-a31c-c5293db0db67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12175" - ], - "x-ms-correlation-request-id": [ - "a21a5bac-0a7d-4c9e-9b1f-2cf597bb20b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215906Z:a21a5bac-0a7d-4c9e-9b1f-2cf597bb20b3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c6ed8ff-14f9-482a-849b-e2157aa81ffb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12174" - ], - "x-ms-correlation-request-id": [ - "9c47dc3b-f10b-4f12-9317-220cf4a5ab3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215906Z:9c47dc3b-f10b-4f12-9317-220cf4a5ab3e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad384167-f6bf-4e4d-83d4-2b0285a470e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12173" - ], - "x-ms-correlation-request-id": [ - "ae116950-509c-485f-b5b7-202133ee5335" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215906Z:ae116950-509c-485f-b5b7-202133ee5335" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80ca065e-503a-4264-80a6-a035709e91a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12172" - ], - "x-ms-correlation-request-id": [ - "76e00cc8-ff16-4ec5-8324-b2863238b596" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215907Z:76e00cc8-ff16-4ec5-8324-b2863238b596" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd879e66-4a53-4893-b3cc-5a90e49ebcbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12171" - ], - "x-ms-correlation-request-id": [ - "92975b3c-208d-42a4-8221-e3c5014ba717" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215907Z:92975b3c-208d-42a4-8221-e3c5014ba717" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1493e1de-2f4d-4f83-913b-762870d1b354" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12170" - ], - "x-ms-correlation-request-id": [ - "81fb00af-5a23-417f-88d3-1216638af7b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215907Z:81fb00af-5a23-417f-88d3-1216638af7b1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "960ba5b4-96af-455e-8734-9bd4d4b07e7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12169" - ], - "x-ms-correlation-request-id": [ - "2dfb9fff-4eb1-4a04-89f0-aa2658b3a021" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215907Z:2dfb9fff-4eb1-4a04-89f0-aa2658b3a021" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "446c26cd-db23-44fe-9ce9-0f995e4b3e99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12168" - ], - "x-ms-correlation-request-id": [ - "6b85014e-db7e-400d-8820-7b39ea8e7c6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215907Z:6b85014e-db7e-400d-8820-7b39ea8e7c6c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "801fa339-fdd9-4b49-9d8d-51b602a2490a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12167" - ], - "x-ms-correlation-request-id": [ - "3636ce69-85be-4802-a8bf-9b1b214f952f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215907Z:3636ce69-85be-4802-a8bf-9b1b214f952f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "26d81d48-6d52-4780-b260-ba50ebc4ffbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12166" - ], - "x-ms-correlation-request-id": [ - "dc8e09f2-e277-4e94-bf8d-92d483385ed6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215907Z:dc8e09f2-e277-4e94-bf8d-92d483385ed6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "764278ea-f664-44b0-91b3-fee3d111f203" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12165" - ], - "x-ms-correlation-request-id": [ - "cc1c5b39-c699-4807-91df-3608ae6f631c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215908Z:cc1c5b39-c699-4807-91df-3608ae6f631c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c77383b-5ca4-41fa-a7bc-3b4151d01334" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12164" - ], - "x-ms-correlation-request-id": [ - "8154dfbb-7d97-4182-ab60-cf333741f6c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215908Z:8154dfbb-7d97-4182-ab60-cf333741f6c8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d40a070-6f32-40cc-9521-795b8474e5f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12163" - ], - "x-ms-correlation-request-id": [ - "ccc44cd2-2591-4768-ad00-67d1778fd65b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215908Z:ccc44cd2-2591-4768-ad00-67d1778fd65b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ee99892-a2ab-4c59-88c3-ebd2cf673500" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12162" - ], - "x-ms-correlation-request-id": [ - "888262c0-5746-4020-955a-94ae67b7514e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215908Z:888262c0-5746-4020-955a-94ae67b7514e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0bbf857-dfe9-4c5c-becb-dfb495de0881" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12161" - ], - "x-ms-correlation-request-id": [ - "700e71b5-1b85-4ddd-9f5c-7cf1760e423f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215908Z:700e71b5-1b85-4ddd-9f5c-7cf1760e423f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e52ae240-d5ea-4577-8ca3-8a55de95bf68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12160" - ], - "x-ms-correlation-request-id": [ - "39cff199-a335-4fb4-af23-b91ef5b10ce0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215908Z:39cff199-a335-4fb4-af23-b91ef5b10ce0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5db4494-2500-4925-a921-72881563f1fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12159" - ], - "x-ms-correlation-request-id": [ - "0113ee2a-0f6c-4beb-8d73-df47357bc23f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215909Z:0113ee2a-0f6c-4beb-8d73-df47357bc23f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39fd373e-59b5-4f66-aac9-7d2cac0c5441" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12158" - ], - "x-ms-correlation-request-id": [ - "50c574d6-fe5c-4718-a05c-03c50a77d0bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215909Z:50c574d6-fe5c-4718-a05c-03c50a77d0bd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9353edb3-a2bf-46a4-8da4-10bca51476b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12157" - ], - "x-ms-correlation-request-id": [ - "362ce261-99da-4004-9f8b-7dacabb78891" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215909Z:362ce261-99da-4004-9f8b-7dacabb78891" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5198d60-7031-49ac-a29e-74b2a73f4f22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12156" - ], - "x-ms-correlation-request-id": [ - "b2312b19-6e09-4876-a3f9-fed463246e4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215909Z:b2312b19-6e09-4876-a3f9-fed463246e4a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30b3f9a9-4110-4d56-874c-cf683a1b9a0a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12155" - ], - "x-ms-correlation-request-id": [ - "877ba845-6028-46e6-93a4-a24fb4633e0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215909Z:877ba845-6028-46e6-93a4-a24fb4633e0c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "765eb287-d244-4d18-8da3-2083ef2d7a5d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12154" - ], - "x-ms-correlation-request-id": [ - "b7d70597-9d39-4a16-839f-73683e7a4519" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215909Z:b7d70597-9d39-4a16-839f-73683e7a4519" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8ae53b8-a000-415c-a9f6-ba0c5e221cf0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12153" - ], - "x-ms-correlation-request-id": [ - "1575ca48-0854-4725-9e72-7c86c4ff7c73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215910Z:1575ca48-0854-4725-9e72-7c86c4ff7c73" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1576e2ca-ea46-4ad2-88b9-98006794260d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12152" - ], - "x-ms-correlation-request-id": [ - "911a40f0-b79d-4195-b8fe-63dd0d9a9213" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215910Z:911a40f0-b79d-4195-b8fe-63dd0d9a9213" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f36daa4-f351-40e4-abf5-c151ea85c40d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12151" - ], - "x-ms-correlation-request-id": [ - "e994682a-7116-43f8-a979-bc7528f61f83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215910Z:e994682a-7116-43f8-a979-bc7528f61f83" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9fcaccda-0cec-4284-8e3d-2393198987c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12150" - ], - "x-ms-correlation-request-id": [ - "3eeb46be-10b0-40ca-b377-c42b60f0b301" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215910Z:3eeb46be-10b0-40ca-b377-c42b60f0b301" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f280fe6-1ca1-4d3e-9649-9cff96f2f268" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12149" - ], - "x-ms-correlation-request-id": [ - "beb7ed40-a5bf-4a1c-910b-d50c014fd8ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215910Z:beb7ed40-a5bf-4a1c-910b-d50c014fd8ab" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16349b39-d9cc-47af-bae3-5327337ef227" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12148" - ], - "x-ms-correlation-request-id": [ - "c34fe4ea-817c-408a-b520-2793a9212659" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215910Z:c34fe4ea-817c-408a-b520-2793a9212659" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "306c48fd-2636-4039-90be-1695c75a1cbb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12147" - ], - "x-ms-correlation-request-id": [ - "c366be12-7ecb-4181-b376-f148fe61c23d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215911Z:c366be12-7ecb-4181-b376-f148fe61c23d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dad7380a-f46f-4aa4-861d-8ee2f9000553" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12146" - ], - "x-ms-correlation-request-id": [ - "2121cee1-a30c-4057-a2b6-09d76508702c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215911Z:2121cee1-a30c-4057-a2b6-09d76508702c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c775b691-5d72-4779-9e7f-544d0a830f61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12145" - ], - "x-ms-correlation-request-id": [ - "0fd4b3b6-8f00-46f4-b252-d0d6ae6f4ab8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215911Z:0fd4b3b6-8f00-46f4-b252-d0d6ae6f4ab8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83d889f8-c466-4914-9bbd-3eb8e93e02f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12144" - ], - "x-ms-correlation-request-id": [ - "fbcd3aaa-a6d1-4a3e-a754-f54fb22d1d9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215911Z:fbcd3aaa-a6d1-4a3e-a754-f54fb22d1d9d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5bacdbf-9b7b-4e9e-bc02-4caacdab55d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12143" - ], - "x-ms-correlation-request-id": [ - "b0aca3ac-7fec-4997-b8c3-ba6e19b8d527" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215911Z:b0aca3ac-7fec-4997-b8c3-ba6e19b8d527" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17519e42-9e38-4019-bcd5-f1f9af4b8f9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12142" - ], - "x-ms-correlation-request-id": [ - "32b83974-3f27-4e66-ba16-b6342bf4441e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215911Z:32b83974-3f27-4e66-ba16-b6342bf4441e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8ecacbb-fe13-4f7b-9bab-f87205626a10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12141" - ], - "x-ms-correlation-request-id": [ - "e0735db1-acf3-4ad2-b085-f9786ba39693" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215911Z:e0735db1-acf3-4ad2-b085-f9786ba39693" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81017bfe-d221-4368-807f-70b57ee2f9df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12140" - ], - "x-ms-correlation-request-id": [ - "b824567c-8c8a-4780-bc0d-4ad273d8d8c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215912Z:b824567c-8c8a-4780-bc0d-4ad273d8d8c2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "484ab619-90f1-4a17-89a7-fc81a15db2a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12139" - ], - "x-ms-correlation-request-id": [ - "240fff4f-810a-4cbf-a24c-e56a7549ddeb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215912Z:240fff4f-810a-4cbf-a24c-e56a7549ddeb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61b586fd-94e5-4bd1-a083-0c879b17618f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12138" - ], - "x-ms-correlation-request-id": [ - "618634b3-6f04-42b2-8f3c-a3ce6396e431" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215912Z:618634b3-6f04-42b2-8f3c-a3ce6396e431" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14c4d4af-1961-4911-8b60-837932735c9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12137" - ], - "x-ms-correlation-request-id": [ - "f63ce01f-1f25-4540-917b-4de210682d8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215912Z:f63ce01f-1f25-4540-917b-4de210682d8d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "359b1102-9cba-4f09-ad7d-6f536c1575e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12136" - ], - "x-ms-correlation-request-id": [ - "ba478c7a-54eb-4a61-8fd9-2e5172d0046b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215912Z:ba478c7a-54eb-4a61-8fd9-2e5172d0046b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "acf9d674-99f9-4439-9dbd-1dc29e12a9a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12135" - ], - "x-ms-correlation-request-id": [ - "b2cc5429-255c-4b7e-b007-f833896bc852" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215912Z:b2cc5429-255c-4b7e-b007-f833896bc852" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d47c75f-ac18-4947-936b-12e79e8920d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12134" - ], - "x-ms-correlation-request-id": [ - "f734c81d-7949-40b8-a3be-6f1021f472c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215913Z:f734c81d-7949-40b8-a3be-6f1021f472c5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "603c715a-2e6c-46a1-bd47-468d00bbc503" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12133" - ], - "x-ms-correlation-request-id": [ - "ea1730ae-0733-4779-82e0-1d5b641664dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215913Z:ea1730ae-0733-4779-82e0-1d5b641664dd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2e3ab01-4fc0-4409-b438-988666e670af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12132" - ], - "x-ms-correlation-request-id": [ - "27abed99-f446-4207-8fe0-8178ba8827ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215913Z:27abed99-f446-4207-8fe0-8178ba8827ca" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c85f49a0-894b-4d31-8d61-52a6999db94b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12131" - ], - "x-ms-correlation-request-id": [ - "4399038b-7184-4eb0-9254-a5beef2d9e3f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215913Z:4399038b-7184-4eb0-9254-a5beef2d9e3f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b44bc00-4187-43be-a12f-73df85d77d63" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12130" - ], - "x-ms-correlation-request-id": [ - "f0223b0d-f81e-415c-a760-6c9f255acc16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215913Z:f0223b0d-f81e-415c-a760-6c9f255acc16" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "266e9fdd-3fe5-4142-a915-31d02041ac1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12129" - ], - "x-ms-correlation-request-id": [ - "23a4ea29-10a6-4833-9339-3b257a4e6d54" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215914Z:23a4ea29-10a6-4833-9339-3b257a4e6d54" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a6fc1e3-33ab-4060-aa94-9d923754e922" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12128" - ], - "x-ms-correlation-request-id": [ - "563e96ee-390b-4dcc-b637-2f8a76a274f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215914Z:563e96ee-390b-4dcc-b637-2f8a76a274f5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4ebb2b7-102d-4c11-99c1-0c2b4a151af2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12127" - ], - "x-ms-correlation-request-id": [ - "3f6e58ea-4c1c-4aac-8e59-8f288f8db3a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215914Z:3f6e58ea-4c1c-4aac-8e59-8f288f8db3a0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d06ef340-7dd7-42a3-bd32-c142bd8824ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12126" - ], - "x-ms-correlation-request-id": [ - "840ad1e5-69b6-4910-9084-184594049000" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215914Z:840ad1e5-69b6-4910-9084-184594049000" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "133c128f-7dd8-470f-858f-66312de4ea94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12125" - ], - "x-ms-correlation-request-id": [ - "62c9d4da-71ca-4a0e-8be8-77fc38853478" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215914Z:62c9d4da-71ca-4a0e-8be8-77fc38853478" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "307b5c61-b402-44fe-9c4d-ccce7cfd636d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12124" - ], - "x-ms-correlation-request-id": [ - "ea693865-f0c2-4da6-a6c1-8387a55b56f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215914Z:ea693865-f0c2-4da6-a6c1-8387a55b56f9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6d3b3ea-4b75-4602-bce0-0f0e32f04bb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12123" - ], - "x-ms-correlation-request-id": [ - "8e105365-39d2-4298-b855-e2820a4f0e50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215915Z:8e105365-39d2-4298-b855-e2820a4f0e50" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23d89035-1a07-48cf-b7fb-9813df3d165a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12122" - ], - "x-ms-correlation-request-id": [ - "69ae7756-a247-4bcb-a2eb-d03a852d96f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215915Z:69ae7756-a247-4bcb-a2eb-d03a852d96f1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f5b5df0-de5a-4add-857e-caed4f4aedd4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12121" - ], - "x-ms-correlation-request-id": [ - "ff6c584e-bdd0-426c-9160-747ad7da6f05" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215915Z:ff6c584e-bdd0-426c-9160-747ad7da6f05" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2bd7248e-3a95-4359-836d-a98495bba00a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12120" - ], - "x-ms-correlation-request-id": [ - "99bd3fb6-8bab-40cb-901e-cbff2360bc64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215915Z:99bd3fb6-8bab-40cb-901e-cbff2360bc64" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83aa3f04-ce9b-4380-a893-b50934d759c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12119" - ], - "x-ms-correlation-request-id": [ - "7e048c05-467c-4698-b7d7-b1fb0bdd5330" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215915Z:7e048c05-467c-4698-b7d7-b1fb0bdd5330" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "083a4e42-ca8f-45ec-920c-01c64eb4e5e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12118" - ], - "x-ms-correlation-request-id": [ - "738c3d36-96f2-4d08-9190-84e27b8b7aec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215915Z:738c3d36-96f2-4d08-9190-84e27b8b7aec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad44b121-4ccc-4a79-89b7-56578fd63f91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12117" - ], - "x-ms-correlation-request-id": [ - "9875ffb0-0334-48c7-8a9b-23a555cf97ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215916Z:9875ffb0-0334-48c7-8a9b-23a555cf97ad" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5466496d-c833-4da5-9025-e3d30e0c97e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12116" - ], - "x-ms-correlation-request-id": [ - "b1f5aa5e-f44f-4678-a7cb-cd0fa3ae118f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215916Z:b1f5aa5e-f44f-4678-a7cb-cd0fa3ae118f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "860a5b76-f922-431c-ba29-96195adf1548" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12115" - ], - "x-ms-correlation-request-id": [ - "3b7ae633-b5f0-44fe-8a33-a5017b34ba8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215916Z:3b7ae633-b5f0-44fe-8a33-a5017b34ba8e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "779f3986-dca8-459b-9587-6c6fb4466595" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12114" - ], - "x-ms-correlation-request-id": [ - "cc187517-a74f-41a3-8991-4ec0fbbfdcdb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215916Z:cc187517-a74f-41a3-8991-4ec0fbbfdcdb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "166877c1-2a63-4d74-a752-55186a86fe4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12113" - ], - "x-ms-correlation-request-id": [ - "5c351d37-9943-4ce7-904d-c57f6917a28b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215916Z:5c351d37-9943-4ce7-904d-c57f6917a28b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fae254ac-a910-4155-86eb-23cb9d0a9c2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12112" - ], - "x-ms-correlation-request-id": [ - "4c45c8ea-925b-4bb8-969b-fecd39733a17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215916Z:4c45c8ea-925b-4bb8-969b-fecd39733a17" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "55860bca-a6be-4f8c-aeb5-8a087504ce75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12111" - ], - "x-ms-correlation-request-id": [ - "0251dfd5-9f03-4758-b5d0-e03286b8bd35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215916Z:0251dfd5-9f03-4758-b5d0-e03286b8bd35" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be9a6780-a711-4927-a54f-08289f94aec6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12110" - ], - "x-ms-correlation-request-id": [ - "271feeb3-cffb-4131-b947-1871d0b3702d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215917Z:271feeb3-cffb-4131-b947-1871d0b3702d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b0da0ab-07e7-4162-957c-47e52b95c8d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12109" - ], - "x-ms-correlation-request-id": [ - "3701258d-2e7b-4823-a92b-c94aaf32cdbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215917Z:3701258d-2e7b-4823-a92b-c94aaf32cdbe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e54f95c9-b186-4907-ae17-844fdbd31416" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12108" - ], - "x-ms-correlation-request-id": [ - "efc1a518-33ed-4b0b-a04e-3741fbc4378f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215917Z:efc1a518-33ed-4b0b-a04e-3741fbc4378f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "694d1bba-4ca3-4e95-b8c2-9d6998ee3b78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12107" - ], - "x-ms-correlation-request-id": [ - "2d36530b-f8ef-4039-bb69-0009cece7257" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215917Z:2d36530b-f8ef-4039-bb69-0009cece7257" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7773a6f-3b34-4974-8179-7b6c12342552" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12106" - ], - "x-ms-correlation-request-id": [ - "fa888bdc-346f-4459-a245-1dcb44bfaa72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215917Z:fa888bdc-346f-4459-a245-1dcb44bfaa72" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "586a77a5-77c5-49f9-8f5c-1b727ea48e23" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12105" - ], - "x-ms-correlation-request-id": [ - "ec93b806-9322-4dab-8e4d-fef73e17811a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215918Z:ec93b806-9322-4dab-8e4d-fef73e17811a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fba99e3c-f820-4dc1-be86-069fe06825bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12104" - ], - "x-ms-correlation-request-id": [ - "e4f9751f-bb38-487b-857d-3c87b8ffa115" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215918Z:e4f9751f-bb38-487b-857d-3c87b8ffa115" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dadc553a-1829-4c1f-a563-e870d5999774" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12103" - ], - "x-ms-correlation-request-id": [ - "c394a08a-f51f-4e2e-89dc-150643202ecc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215918Z:c394a08a-f51f-4e2e-89dc-150643202ecc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6cdb836-052d-4af9-bf05-c80a70afec68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12102" - ], - "x-ms-correlation-request-id": [ - "8cfb49fb-77c9-4821-854b-1ebe2655a6c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215918Z:8cfb49fb-77c9-4821-854b-1ebe2655a6c0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b1f32be-cdab-4281-9b45-f5dbb22c4edc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12101" - ], - "x-ms-correlation-request-id": [ - "35df4e11-dd47-4a39-ad45-0f21051253ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215919Z:35df4e11-dd47-4a39-ad45-0f21051253ab" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca91de2a-496c-4dfd-a141-32201049b1c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12100" - ], - "x-ms-correlation-request-id": [ - "13d05f9e-799f-42c9-abdb-1d0fd8dc5ada" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215919Z:13d05f9e-799f-42c9-abdb-1d0fd8dc5ada" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9bf0f5d4-3918-4a44-ba35-347bb1377264" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12099" - ], - "x-ms-correlation-request-id": [ - "2298d891-bb67-447c-b7b0-96f65bce57f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215919Z:2298d891-bb67-447c-b7b0-96f65bce57f0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49436309-cfcd-4651-a4a2-fef9e15bc5e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12098" - ], - "x-ms-correlation-request-id": [ - "1f45ad1c-bf38-47eb-a11a-7b2dfdf9d523" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215919Z:1f45ad1c-bf38-47eb-a11a-7b2dfdf9d523" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0b4c8e7-4f71-47bc-a9fa-0254430fe2e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12097" - ], - "x-ms-correlation-request-id": [ - "7ec5b52a-8ced-4cb3-b086-406929f2a92b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215919Z:7ec5b52a-8ced-4cb3-b086-406929f2a92b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62649696-7bc1-4905-9bdd-d7366de4adce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12096" - ], - "x-ms-correlation-request-id": [ - "19b8afaf-3204-4665-b99f-abe046934bb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215920Z:19b8afaf-3204-4665-b99f-abe046934bb1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6fc55f91-5b7f-4191-ad7f-72e46f636a58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12095" - ], - "x-ms-correlation-request-id": [ - "980c56bc-3786-4f6f-b72f-a335902dc17d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215920Z:980c56bc-3786-4f6f-b72f-a335902dc17d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9db490d0-3f87-4037-8e84-a52c84fff03c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12094" - ], - "x-ms-correlation-request-id": [ - "d4684063-22ee-466a-abdf-45df5486a498" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215920Z:d4684063-22ee-466a-abdf-45df5486a498" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3d6a230-b1af-4dc2-859b-30263409e574" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12093" - ], - "x-ms-correlation-request-id": [ - "8895d1e5-dc58-4961-a3bd-fd86cc71d8de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215920Z:8895d1e5-dc58-4961-a3bd-fd86cc71d8de" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "493c9c1a-45aa-440a-be40-8d3ea7f230b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12092" - ], - "x-ms-correlation-request-id": [ - "4c021c28-907e-4f5a-81bb-d36acaaaeb5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215920Z:4c021c28-907e-4f5a-81bb-d36acaaaeb5d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2fd50886-187c-493c-8e83-49db99aec611" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12091" - ], - "x-ms-correlation-request-id": [ - "99593578-52d0-48e4-a177-4611fc08ba6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215920Z:99593578-52d0-48e4-a177-4611fc08ba6d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fbfc78d8-0f4f-4af4-b195-9714153f20c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12090" - ], - "x-ms-correlation-request-id": [ - "9f54675c-88ad-4805-8a3f-cace21d3b260" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215921Z:9f54675c-88ad-4805-8a3f-cace21d3b260" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd71c927-4abc-4d0e-9b58-192ca38dc221" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12089" - ], - "x-ms-correlation-request-id": [ - "29f3b538-a1ec-4157-b117-69cea698858f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215921Z:29f3b538-a1ec-4157-b117-69cea698858f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8eb57ede-0255-4936-9a8e-b3fba7a17b3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12088" - ], - "x-ms-correlation-request-id": [ - "0f920054-ff89-4690-b0f6-e4ada93ed941" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215921Z:0f920054-ff89-4690-b0f6-e4ada93ed941" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52ab14dc-8d85-4815-bcac-43bc80dd1016" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12087" - ], - "x-ms-correlation-request-id": [ - "bf076dc3-84b3-4251-922b-8e6cd721cab1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215921Z:bf076dc3-84b3-4251-922b-8e6cd721cab1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6c8bc80-afbf-4094-9805-03726d2f320a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12086" - ], - "x-ms-correlation-request-id": [ - "d5534d1b-66b5-4bd1-a1f6-2f0fd6322f68" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215921Z:d5534d1b-66b5-4bd1-a1f6-2f0fd6322f68" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f9c7692-5ee7-43aa-b551-7a9713806913" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12085" - ], - "x-ms-correlation-request-id": [ - "93500727-090c-43cc-b05f-75f8ce7a27d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215921Z:93500727-090c-43cc-b05f-75f8ce7a27d8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bde6dcd-74e7-4495-adbd-6031ef379fe2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12084" - ], - "x-ms-correlation-request-id": [ - "8804d4db-285a-4c19-9973-a0ccbdf0ce8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215922Z:8804d4db-285a-4c19-9973-a0ccbdf0ce8c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e8743db-670b-47e9-944b-3dafedc896b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12083" - ], - "x-ms-correlation-request-id": [ - "a4eef8d4-c882-4720-91a0-b57f5bbd5e0e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215922Z:a4eef8d4-c882-4720-91a0-b57f5bbd5e0e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bcb08fc6-be55-4636-9d6f-7dfd8cfd6e51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12082" - ], - "x-ms-correlation-request-id": [ - "1ea9d5e7-d40f-45e0-8b0c-ce7f58c22574" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215922Z:1ea9d5e7-d40f-45e0-8b0c-ce7f58c22574" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3f78005-65e5-4c79-8b33-bd822261b90c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12081" - ], - "x-ms-correlation-request-id": [ - "0150ccb0-6e15-42c8-bad8-493122c7a608" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215922Z:0150ccb0-6e15-42c8-bad8-493122c7a608" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ca3c96c-f16f-44e2-a22e-bf9bb3cb8432" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12080" - ], - "x-ms-correlation-request-id": [ - "b1c69ca9-4e5c-441d-9b0f-05bcb12fa088" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215922Z:b1c69ca9-4e5c-441d-9b0f-05bcb12fa088" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b39383b-43ed-43d8-aea3-5b6c2725c0fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12079" - ], - "x-ms-correlation-request-id": [ - "f7984844-78b7-4ab4-8808-c0cafb5f6446" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215922Z:f7984844-78b7-4ab4-8808-c0cafb5f6446" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5370291c-46c3-4df5-a6da-f31c39b55281" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12078" - ], - "x-ms-correlation-request-id": [ - "cee7f070-c468-4562-bc48-5daac2ae2b77" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215923Z:cee7f070-c468-4562-bc48-5daac2ae2b77" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2887d437-30ab-4f5c-9d8d-752c9c9d23f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12077" - ], - "x-ms-correlation-request-id": [ - "310beeb7-11cf-4c61-b96f-90e46c706eb0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215923Z:310beeb7-11cf-4c61-b96f-90e46c706eb0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "58e9e8bc-d09c-43c3-b8c3-3c8b3026b3be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12076" - ], - "x-ms-correlation-request-id": [ - "6a65367d-615f-49c1-a64b-4ca22602dccf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215923Z:6a65367d-615f-49c1-a64b-4ca22602dccf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "399b3833-3987-472a-96a4-6336000c6ec9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12075" - ], - "x-ms-correlation-request-id": [ - "444863ed-bd62-463b-adff-56b3bb76c7c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215923Z:444863ed-bd62-463b-adff-56b3bb76c7c3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b3b00a29-a78b-4ea1-b035-38c78fad48a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12074" - ], - "x-ms-correlation-request-id": [ - "3da02e75-c751-49cf-8581-f005898524e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215923Z:3da02e75-c751-49cf-8581-f005898524e4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b9f82ed-bd5b-431f-b47c-9eefbd5d9f89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12073" - ], - "x-ms-correlation-request-id": [ - "13209b37-74e6-464f-b8d6-d97b48e2b976" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215923Z:13209b37-74e6-464f-b8d6-d97b48e2b976" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "50d8f4a0-dcb7-4182-b89a-1869548b16de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12072" - ], - "x-ms-correlation-request-id": [ - "46326ced-d222-46a4-a764-7d2452eb1e64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215923Z:46326ced-d222-46a4-a764-7d2452eb1e64" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf16433c-ff5b-4be1-bfdf-13a75b319646" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12071" - ], - "x-ms-correlation-request-id": [ - "4950f189-7e15-415a-bf49-d75d49accb4f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215924Z:4950f189-7e15-415a-bf49-d75d49accb4f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c4bb4d48-6bfc-4469-a206-2c11c9fc3373" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12070" - ], - "x-ms-correlation-request-id": [ - "5ae14a6a-5904-4c9b-87a7-6e121322d1a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215924Z:5ae14a6a-5904-4c9b-87a7-6e121322d1a1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5451957e-98ff-4796-b4b5-ed1e7238a564" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12069" - ], - "x-ms-correlation-request-id": [ - "708f851e-ceed-4456-9f60-c99577714c4f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215924Z:708f851e-ceed-4456-9f60-c99577714c4f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71e94ed6-5251-41f0-9b65-44c147e7548c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12068" - ], - "x-ms-correlation-request-id": [ - "2345b3ea-7d0b-4444-b29e-47a82cecf728" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215924Z:2345b3ea-7d0b-4444-b29e-47a82cecf728" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d865e2f5-7a04-4cb6-81cb-89de18bd58f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12067" - ], - "x-ms-correlation-request-id": [ - "6dfb3cca-89b0-466b-97e3-4b74a2386097" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215924Z:6dfb3cca-89b0-466b-97e3-4b74a2386097" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94120712-5cc9-43bc-be36-18fd9bdde304" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12066" - ], - "x-ms-correlation-request-id": [ - "0006f6ab-b212-4e55-91ae-ad22699a829c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215924Z:0006f6ab-b212-4e55-91ae-ad22699a829c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97705f90-690d-438e-9f85-429bd4c5b696" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12065" - ], - "x-ms-correlation-request-id": [ - "74609fa7-a066-4945-8965-b358ff8a5223" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215925Z:74609fa7-a066-4945-8965-b358ff8a5223" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "269fc85e-2466-449c-a295-968df649ef42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12064" - ], - "x-ms-correlation-request-id": [ - "37a08991-5dde-48b4-ab25-59c43d630f48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215925Z:37a08991-5dde-48b4-ab25-59c43d630f48" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c0f7d27-22fb-4abd-8af4-c2690b60b674" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12063" - ], - "x-ms-correlation-request-id": [ - "ad51bdef-70a0-43af-a2b8-ee5c64bce2b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215925Z:ad51bdef-70a0-43af-a2b8-ee5c64bce2b9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9c03e3a-f691-4f55-b645-1502834a8530" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12062" - ], - "x-ms-correlation-request-id": [ - "73993906-4757-4788-9b51-ecfce64aaa78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215925Z:73993906-4757-4788-9b51-ecfce64aaa78" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1707ae88-f88b-48f1-90df-8cded7cad9da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12061" - ], - "x-ms-correlation-request-id": [ - "a92c7f48-7434-46af-9f6e-842ad715dd2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215925Z:a92c7f48-7434-46af-9f6e-842ad715dd2c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d486d03-49d8-42bc-afd8-0ee77bd6e21c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12060" - ], - "x-ms-correlation-request-id": [ - "4a04c08a-fedc-4318-81b4-3c97355e46ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215925Z:4a04c08a-fedc-4318-81b4-3c97355e46ed" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdec16a3-5ee7-4cb4-b9cb-3433e139831a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12059" - ], - "x-ms-correlation-request-id": [ - "66b26f37-9fa8-45fd-8b63-ddf15574cbfa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215926Z:66b26f37-9fa8-45fd-8b63-ddf15574cbfa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "390276d5-6742-4046-95bb-25786b96b88f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12058" - ], - "x-ms-correlation-request-id": [ - "e0c29a43-dab2-49b5-a8ef-906a0c252244" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215926Z:e0c29a43-dab2-49b5-a8ef-906a0c252244" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d206cfa-cf23-4ae2-9b32-146227f0b6aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12057" - ], - "x-ms-correlation-request-id": [ - "91aceeb2-bbb5-4c48-968c-9de4bba5bf9b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215926Z:91aceeb2-bbb5-4c48-968c-9de4bba5bf9b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0cfbbf6b-ea98-436a-ae3f-687e0a29c259" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12056" - ], - "x-ms-correlation-request-id": [ - "441a02f7-52c4-446e-a65b-499ab682dc5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215926Z:441a02f7-52c4-446e-a65b-499ab682dc5e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cab5e1a3-6a08-4c4c-9299-27da22fcb3a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12055" - ], - "x-ms-correlation-request-id": [ - "f04a28f8-a816-4fb0-9cdd-4dd16a32f17f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215926Z:f04a28f8-a816-4fb0-9cdd-4dd16a32f17f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2d74811-1e69-4116-b1e7-17acc8759d29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12054" - ], - "x-ms-correlation-request-id": [ - "ff851b12-3ec5-4693-a06b-53001176ad09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215926Z:ff851b12-3ec5-4693-a06b-53001176ad09" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80b06b98-fa2a-488d-a546-1b279378c21e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12053" - ], - "x-ms-correlation-request-id": [ - "c8f2588a-4aca-4059-8fc6-f48d428958aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215926Z:c8f2588a-4aca-4059-8fc6-f48d428958aa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb0a9df0-087c-489b-a2b1-5c309c214b1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12052" - ], - "x-ms-correlation-request-id": [ - "09e7d30e-d6de-4abb-b70c-713e17bbad23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215927Z:09e7d30e-d6de-4abb-b70c-713e17bbad23" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccccd060-efe0-4eec-ae91-bfe84c423c7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12051" - ], - "x-ms-correlation-request-id": [ - "81ef4dd4-56a9-431d-ac8e-91a914f2dad5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215927Z:81ef4dd4-56a9-431d-ac8e-91a914f2dad5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "15e75320-1207-4769-9fe5-ebb1801a73b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12050" - ], - "x-ms-correlation-request-id": [ - "d741863e-1557-47d1-baf3-6fc2b7f339bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215927Z:d741863e-1557-47d1-baf3-6fc2b7f339bf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94a96dfb-4d10-4f6b-babf-6e3fbe87f5b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12049" - ], - "x-ms-correlation-request-id": [ - "e08dbfb6-eb53-4ec8-b5e2-530963dea355" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215927Z:e08dbfb6-eb53-4ec8-b5e2-530963dea355" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77f96065-db13-428d-a3b9-6d55064a757d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12048" - ], - "x-ms-correlation-request-id": [ - "dc305c71-8e49-43b7-b342-7794fe26bbee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215927Z:dc305c71-8e49-43b7-b342-7794fe26bbee" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "959df601-d58e-4b1f-83cb-9815db20ead5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12047" - ], - "x-ms-correlation-request-id": [ - "0135654c-b1f2-4671-86ef-35d20b8f4fcf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215928Z:0135654c-b1f2-4671-86ef-35d20b8f4fcf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f73ffc73-1eba-4540-98dd-e7af56ff3c28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12046" - ], - "x-ms-correlation-request-id": [ - "96fccc4c-39ec-4b3c-a387-f9e6a557be2b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215928Z:96fccc4c-39ec-4b3c-a387-f9e6a557be2b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5db30659-56f8-4cb7-9c5f-5e0e197d6ae1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12045" - ], - "x-ms-correlation-request-id": [ - "1016fe8a-ea11-4414-9e5f-d459f69adbfe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215928Z:1016fe8a-ea11-4414-9e5f-d459f69adbfe" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5a6e051-47ef-4668-b62c-40823fe30a41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12044" - ], - "x-ms-correlation-request-id": [ - "93fc6702-8e71-47d3-9645-6d3169d6160d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215928Z:93fc6702-8e71-47d3-9645-6d3169d6160d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc5ce99c-1a4d-4ec9-9a9a-5364a8c02613" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12043" - ], - "x-ms-correlation-request-id": [ - "0721aa2d-e4bc-4188-a11b-dd1753da9790" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215928Z:0721aa2d-e4bc-4188-a11b-dd1753da9790" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6423b8d9-e62d-4171-8a6e-a872af2ef46b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12042" - ], - "x-ms-correlation-request-id": [ - "41f164a3-5afc-4fbf-bfb9-8de1d35efc03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215929Z:41f164a3-5afc-4fbf-bfb9-8de1d35efc03" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de2daa8c-8c72-42ae-9341-2cafba18a48b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12041" - ], - "x-ms-correlation-request-id": [ - "99917670-de72-48a0-a668-a935be9375b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215929Z:99917670-de72-48a0-a668-a935be9375b1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf7a4bcd-396e-4428-9cd3-249477d33263" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12040" - ], - "x-ms-correlation-request-id": [ - "0a6e1a43-76f7-4314-a45d-93f66d3ce5f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215929Z:0a6e1a43-76f7-4314-a45d-93f66d3ce5f8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2938c58-5668-4601-8ec7-5527d674443f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12039" - ], - "x-ms-correlation-request-id": [ - "e6cf48a4-f83e-46eb-84b5-5a3f42c0233a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215929Z:e6cf48a4-f83e-46eb-84b5-5a3f42c0233a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d8121f2-748d-42f5-b7d0-0342050d18b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12038" - ], - "x-ms-correlation-request-id": [ - "9ba623a7-0ba0-4d71-bd37-d63334473398" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215929Z:9ba623a7-0ba0-4d71-bd37-d63334473398" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "09d511e9-881e-4242-a5ad-2e31960f76e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12037" - ], - "x-ms-correlation-request-id": [ - "05427e49-3fd0-41de-97e4-a8c3c9c72ad3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215929Z:05427e49-3fd0-41de-97e4-a8c3c9c72ad3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94433acb-3c8e-42d0-90bf-cc6acf55aff7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12036" - ], - "x-ms-correlation-request-id": [ - "76e8f657-db12-41ca-b7f2-cff97aa7a5c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215930Z:76e8f657-db12-41ca-b7f2-cff97aa7a5c2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee2e554f-f1c5-4fed-bb48-5928e05c1417" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12035" - ], - "x-ms-correlation-request-id": [ - "0cda3060-cbe6-463c-ad8d-083527a106f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215930Z:0cda3060-cbe6-463c-ad8d-083527a106f6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0c6d3ad-ccd6-4e82-b0eb-3cf68408ce60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12034" - ], - "x-ms-correlation-request-id": [ - "fb40bfc0-08e2-4301-9a47-ee2cea1373fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215930Z:fb40bfc0-08e2-4301-9a47-ee2cea1373fd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8738a9d-0b3d-4157-b188-27f43a43a6bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12033" - ], - "x-ms-correlation-request-id": [ - "7e374577-a024-41f7-92cc-c9a477381f47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215930Z:7e374577-a024-41f7-92cc-c9a477381f47" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bec168ae-e51c-4333-8540-17d27a6a7fa0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12032" - ], - "x-ms-correlation-request-id": [ - "9e65827f-7737-447a-87d8-6a8a172764b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215930Z:9e65827f-7737-447a-87d8-6a8a172764b8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31716ade-982b-41d1-8ba3-15f9ef9372da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12031" - ], - "x-ms-correlation-request-id": [ - "057b320c-1f27-4e06-9e79-01bd3de18a99" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215930Z:057b320c-1f27-4e06-9e79-01bd3de18a99" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d30766b0-9c64-4aaf-83e6-c31ac635c1fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12030" - ], - "x-ms-correlation-request-id": [ - "f3ae901a-24a8-4253-afd3-a8a64408003e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215930Z:f3ae901a-24a8-4253-afd3-a8a64408003e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08a44e35-8564-4511-a3c8-c79efe2f538e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12029" - ], - "x-ms-correlation-request-id": [ - "dd4e88f5-ec95-43d6-a1db-d469e4e560af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215931Z:dd4e88f5-ec95-43d6-a1db-d469e4e560af" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b79ae3da-397d-4fac-b218-8a135b27f8d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12028" - ], - "x-ms-correlation-request-id": [ - "803b5cb9-6858-4dab-8737-6018c9f2e037" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215931Z:803b5cb9-6858-4dab-8737-6018c9f2e037" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "12daf4d3-c125-4826-b6e2-6315ae1b4292" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12027" - ], - "x-ms-correlation-request-id": [ - "d403cec7-5679-43d1-b25d-cc9e10514eeb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215931Z:d403cec7-5679-43d1-b25d-cc9e10514eeb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03a0a854-0d6d-4bd8-b38d-e9def5e3fb1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12026" - ], - "x-ms-correlation-request-id": [ - "b3ef51c3-9cbe-4eb6-b8f2-82ac16d1fd3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215931Z:b3ef51c3-9cbe-4eb6-b8f2-82ac16d1fd3e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b18760d-4755-4e40-9f88-caa7e0c8bb49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12025" - ], - "x-ms-correlation-request-id": [ - "cc77ca49-8169-411a-8c51-17f3d92b8b95" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215931Z:cc77ca49-8169-411a-8c51-17f3d92b8b95" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02a679a0-9f2c-4dca-98ce-8634acd8cfbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12024" - ], - "x-ms-correlation-request-id": [ - "cad00af5-05c7-41e3-b6ee-be285ee3aa93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215931Z:cad00af5-05c7-41e3-b6ee-be285ee3aa93" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1de7397-3e82-4704-9eab-6360218cc35d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12023" - ], - "x-ms-correlation-request-id": [ - "5708c4e0-e77d-4cf9-b4d4-6885d4305dc4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215932Z:5708c4e0-e77d-4cf9-b4d4-6885d4305dc4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab801655-0a21-4b31-a7ac-d8da6fe91b7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12022" - ], - "x-ms-correlation-request-id": [ - "3cf76747-d414-42a2-b56d-b1886ea7d0ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215932Z:3cf76747-d414-42a2-b56d-b1886ea7d0ad" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9fd8e62c-05ea-4c6e-9c22-1fbbed4d506c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12021" - ], - "x-ms-correlation-request-id": [ - "4d0ba13c-9bc6-4dc5-8daf-2354756cb6cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215932Z:4d0ba13c-9bc6-4dc5-8daf-2354756cb6cc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "440ff18c-a216-4961-8f67-ad69f6e722ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12020" - ], - "x-ms-correlation-request-id": [ - "43c01875-3748-4f66-97b8-aede8397befd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215932Z:43c01875-3748-4f66-97b8-aede8397befd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "686ce601-22fb-4179-842c-968486b34676" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12019" - ], - "x-ms-correlation-request-id": [ - "524a0e95-d42f-4d03-9a14-843c5722a970" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215932Z:524a0e95-d42f-4d03-9a14-843c5722a970" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e15788c4-3db1-4d5a-8cbf-ea438243944c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12018" - ], - "x-ms-correlation-request-id": [ - "f6884d49-e2e2-47eb-91c5-175d276e3f5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215933Z:f6884d49-e2e2-47eb-91c5-175d276e3f5e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08c37526-30f4-415a-80e1-6b22fd0fd509" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12017" - ], - "x-ms-correlation-request-id": [ - "312909dd-2514-4ec4-8ed9-f0253d9c20ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215933Z:312909dd-2514-4ec4-8ed9-f0253d9c20ad" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c131733c-bf9a-494d-b50b-141030ac06e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12016" - ], - "x-ms-correlation-request-id": [ - "6aec873b-fda6-4c39-bf4f-78fb700658ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215933Z:6aec873b-fda6-4c39-bf4f-78fb700658ea" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e4062df-1a95-4a0f-9bf4-49521f18cd6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12015" - ], - "x-ms-correlation-request-id": [ - "002551f3-a0f7-4ce5-ab12-1f303258a602" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215933Z:002551f3-a0f7-4ce5-ab12-1f303258a602" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2df0670f-2375-4d42-b059-1a298b9023e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12014" - ], - "x-ms-correlation-request-id": [ - "c38270b7-fe98-4413-aaee-9843b5d7ab84" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215933Z:c38270b7-fe98-4413-aaee-9843b5d7ab84" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48cb1ac9-58bf-49bc-b55f-c5a7dcc9d0ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12013" - ], - "x-ms-correlation-request-id": [ - "3be8df64-bb36-4bcd-aaf2-9306af223659" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215933Z:3be8df64-bb36-4bcd-aaf2-9306af223659" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4b9e1d3-35ce-458e-99aa-78d6b7cacc92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12012" - ], - "x-ms-correlation-request-id": [ - "cf80bf47-d632-4f93-83df-07c71ffff9c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215934Z:cf80bf47-d632-4f93-83df-07c71ffff9c2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac7d0877-a002-48d9-aca1-eebb8cc78096" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12011" - ], - "x-ms-correlation-request-id": [ - "fb35f032-0a70-480c-a613-e3b97f42b70c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215934Z:fb35f032-0a70-480c-a613-e3b97f42b70c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ab820bf-a037-40f0-9261-dc14e07dbf7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12010" - ], - "x-ms-correlation-request-id": [ - "b3e09b74-e219-46a4-9295-3b4abb36da6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215934Z:b3e09b74-e219-46a4-9295-3b4abb36da6d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2be96d08-849b-480e-bdca-0eafa3ff9b20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12009" - ], - "x-ms-correlation-request-id": [ - "6d36f4a6-c9c7-450d-b174-e4711e45a242" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215934Z:6d36f4a6-c9c7-450d-b174-e4711e45a242" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6145c7c-de32-4d49-a306-53abf5c3820c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12008" - ], - "x-ms-correlation-request-id": [ - "2c09853e-ffa8-4de1-ae65-5cdce410ca06" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215934Z:2c09853e-ffa8-4de1-ae65-5cdce410ca06" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56e9efa1-46db-4e31-ab71-4d80a3bbf417" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12007" - ], - "x-ms-correlation-request-id": [ - "553504f8-b1d7-436e-8353-6362c7cbfc3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215934Z:553504f8-b1d7-436e-8353-6362c7cbfc3c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1254a4e5-2817-4a4c-be82-2b937de7707b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12006" - ], - "x-ms-correlation-request-id": [ - "8bcf6588-40bb-4995-ab58-6296a61e1963" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215934Z:8bcf6588-40bb-4995-ab58-6296a61e1963" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fcf78527-5b5c-4443-a514-8af14931ffac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12005" - ], - "x-ms-correlation-request-id": [ - "1ae9f85c-1800-4369-ba21-01d770bb6f3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215934Z:1ae9f85c-1800-4369-ba21-01d770bb6f3e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0c8347e-eeb5-4fa5-b5a0-f81427131b0a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12004" - ], - "x-ms-correlation-request-id": [ - "449e44aa-ec85-4692-b2e4-82cc8051f935" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215935Z:449e44aa-ec85-4692-b2e4-82cc8051f935" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f5fcbb2-62e7-4c90-826c-ec26a4cc32f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12003" - ], - "x-ms-correlation-request-id": [ - "8a810eee-8723-45bf-9ba5-80a0e7028f3a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215935Z:8a810eee-8723-45bf-9ba5-80a0e7028f3a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "855cbc06-bb58-430c-9bc1-cc6962a6c66e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12002" - ], - "x-ms-correlation-request-id": [ - "30009c3c-6312-4b1a-b61e-8e53f12a7e60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215935Z:30009c3c-6312-4b1a-b61e-8e53f12a7e60" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c0216c2-b942-494c-8511-b846e0cb5969" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12001" - ], - "x-ms-correlation-request-id": [ - "809015e4-34a8-4e54-a051-015df49c99a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215935Z:809015e4-34a8-4e54-a051-015df49c99a5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61911703-336b-4623-816e-862d2db6022a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12000" - ], - "x-ms-correlation-request-id": [ - "f35bf070-34d2-4af9-a7c1-9922d2f387a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215935Z:f35bf070-34d2-4af9-a7c1-9922d2f387a9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b201e4f-b408-4adc-948c-8586b1ecea4f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "48dbee17-9c68-4a8b-ac5b-81be84bda58c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215936Z:48dbee17-9c68-4a8b-ac5b-81be84bda58c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e296fc14-6ad1-4ac0-9b67-121f8ff5e052" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "d8d18fa5-d075-47ba-a51a-109b3162be1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215936Z:d8d18fa5-d075-47ba-a51a-109b3162be1e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0dd26ae2-0a10-4319-9478-08e55b97251f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "a06a3573-5fd8-4a88-aec0-aaadca5f5a70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215936Z:a06a3573-5fd8-4a88-aec0-aaadca5f5a70" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48ef1339-7299-4eeb-9807-d0d2737eb468" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "fa029e16-b8ea-43cf-a10a-e35b6599a864" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215936Z:fa029e16-b8ea-43cf-a10a-e35b6599a864" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7c5b062-9053-498b-a2fb-90a0dcc5c8e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "4789ae5c-ba36-4b89-a9bf-a836aed52327" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215936Z:4789ae5c-ba36-4b89-a9bf-a836aed52327" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a57256aa-1837-4b63-a2fc-df654f6195e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "db107959-62b5-4798-bddd-a65b1f58157b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215936Z:db107959-62b5-4798-bddd-a65b1f58157b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11964997-e6e2-4bf4-96c9-aaca92af176e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "0e78fd3c-acd5-4339-a6dd-579803ef803d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215937Z:0e78fd3c-acd5-4339-a6dd-579803ef803d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b63c5165-658b-4a75-8a16-28a82d7a01c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-correlation-request-id": [ - "4fa5bdb4-0af1-4a4c-aea9-813a60e34240" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215937Z:4fa5bdb4-0af1-4a4c-aea9-813a60e34240" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a3147ad-9c17-4dec-9416-995ac180a4c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-correlation-request-id": [ - "ebade274-5a2a-4fb0-8c3f-cbaf32d206a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215937Z:ebade274-5a2a-4fb0-8c3f-cbaf32d206a7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96ec6ef0-0f54-47a0-852d-da2c522c4ef1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-correlation-request-id": [ - "53394de0-3894-4719-ada0-58fa51c67b35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215937Z:53394de0-3894-4719-ada0-58fa51c67b35" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fca93dfd-2633-4a7b-8b09-ee2ee391fa7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-correlation-request-id": [ - "64c09a16-9313-4f17-8844-5f86df2a54af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215937Z:64c09a16-9313-4f17-8844-5f86df2a54af" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "12654a12-141b-451e-80ae-234007fdab6d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-correlation-request-id": [ - "beb29929-7789-465e-8a44-0ddf1f265a22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215938Z:beb29929-7789-465e-8a44-0ddf1f265a22" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b326cd4-bfc4-4e0f-a7aa-e1156d3b65b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-correlation-request-id": [ - "fb147cf6-4c81-49ac-a443-b394e0eeeff2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215938Z:fb147cf6-4c81-49ac-a443-b394e0eeeff2" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e9be30e4-fb89-42eb-a945-3215a773d716" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-correlation-request-id": [ - "58845b4b-e3a9-4dbb-b542-32d77e2267f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215938Z:58845b4b-e3a9-4dbb-b542-32d77e2267f1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60d71488-15ce-4c2d-ac63-5652e0dfd23c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-correlation-request-id": [ - "0da76da4-8350-4568-91d6-d2f86df859f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215938Z:0da76da4-8350-4568-91d6-d2f86df859f1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3946091-29ce-4406-8960-e272289463f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-correlation-request-id": [ - "318ab6f7-d0ad-4662-9947-ec8d2c44d17d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215938Z:318ab6f7-d0ad-4662-9947-ec8d2c44d17d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6f4a3f7-ed27-4ed8-a332-ec32af29d382" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-correlation-request-id": [ - "b894479e-beeb-4f5a-9044-6646bac7d399" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215938Z:b894479e-beeb-4f5a-9044-6646bac7d399" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "911467ee-c73e-4490-9fa9-e0a31712118f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-correlation-request-id": [ - "6710ed4e-1ea7-4080-abeb-abbfa3367414" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215939Z:6710ed4e-1ea7-4080-abeb-abbfa3367414" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0937cb96-1800-40ec-b3b3-2135b9c59fba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-correlation-request-id": [ - "75264602-d223-4cf5-85d3-25b1ae05871f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215939Z:75264602-d223-4cf5-85d3-25b1ae05871f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "538c3698-ea5a-439a-8613-8a8a722b4c3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-correlation-request-id": [ - "a6d53e82-ef22-4d4c-8526-8baa75e3ad77" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215939Z:a6d53e82-ef22-4d4c-8526-8baa75e3ad77" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ec46b889-d2cd-4617-95d5-00a44eb9811f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-correlation-request-id": [ - "b6b0a527-0153-48ae-857f-b0ba0973aa20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215940Z:b6b0a527-0153-48ae-857f-b0ba0973aa20" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e5fba40-5ba7-4c49-8d57-c70356da1821" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-correlation-request-id": [ - "8767782f-9060-437d-a1be-e3c75869059b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215940Z:8767782f-9060-437d-a1be-e3c75869059b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a3aac7a-b932-4829-8c23-636f6bc6f510" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-correlation-request-id": [ - "18008362-7fea-4f91-8771-86f3e75eb7a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215940Z:18008362-7fea-4f91-8771-86f3e75eb7a6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8469dd2-e90e-4864-a338-25619224120c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-correlation-request-id": [ - "3e33d75f-b4e8-4812-88ee-4e6e520da4a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215940Z:3e33d75f-b4e8-4812-88ee-4e6e520da4a9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d19a226b-c511-4284-ae72-3beaa1be411a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-correlation-request-id": [ - "fb84b036-8d87-4545-b846-9c2ab2e763bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215941Z:fb84b036-8d87-4545-b846-9c2ab2e763bd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc491f1c-69a7-44b9-825c-ac8ec756ceb9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-correlation-request-id": [ - "3135fc15-3116-4eca-b17b-f286b032ee96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215941Z:3135fc15-3116-4eca-b17b-f286b032ee96" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96f2cb7a-ae09-4cea-8ec7-6e84c07112fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-correlation-request-id": [ - "60124fed-4acd-4d12-9c5c-2fba6c95b557" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215941Z:60124fed-4acd-4d12-9c5c-2fba6c95b557" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98b7bbc6-2582-442b-bc90-5780fd03656d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-correlation-request-id": [ - "89a99a83-f3c8-4623-bfbc-a5b516858c94" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215942Z:89a99a83-f3c8-4623-bfbc-a5b516858c94" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "faabf8ae-2bc1-456d-b3dc-e960a4d952f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-correlation-request-id": [ - "c46ab7c1-ca02-4975-b9c4-a3ee1f30bf17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215942Z:c46ab7c1-ca02-4975-b9c4-a3ee1f30bf17" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "352292cd-503f-41d0-a5d0-63530726ba2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-correlation-request-id": [ - "e99d40fe-bed9-4a3a-b86c-06eaf95eba2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215942Z:e99d40fe-bed9-4a3a-b86c-06eaf95eba2c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fabdfffa-7207-4acc-aec6-a0f7794dec67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-correlation-request-id": [ - "0276996a-3659-4730-bc73-55384b46a3e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215942Z:0276996a-3659-4730-bc73-55384b46a3e6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89851d13-0c53-4af3-83f4-76e386d0d490" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-correlation-request-id": [ - "412400d4-2b38-44e7-9477-157570985ff3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215942Z:412400d4-2b38-44e7-9477-157570985ff3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "607a4a2f-e3ce-49b8-95de-9565caed4bf5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-correlation-request-id": [ - "c23170b0-7604-4763-b260-24c65063c823" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215943Z:c23170b0-7604-4763-b260-24c65063c823" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1bffb20-95be-4425-bc14-20223748fe17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-correlation-request-id": [ - "0061d172-bed5-43a4-8ac3-6f440bae7741" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215943Z:0061d172-bed5-43a4-8ac3-6f440bae7741" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ad4e2b4-dbff-4010-a6e8-a659a6968586" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-correlation-request-id": [ - "55ea7bfd-05b6-411b-a3ec-3ee9a2099f8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215943Z:55ea7bfd-05b6-411b-a3ec-3ee9a2099f8d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f118d13-c777-464d-9dc8-61b8f8501acd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-correlation-request-id": [ - "b4177694-dec0-4930-8e52-a6ef6e869fa4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215943Z:b4177694-dec0-4930-8e52-a6ef6e869fa4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0c47ccd-8c87-47d1-86d3-3a1d303388e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-correlation-request-id": [ - "ae0ee7b6-2508-44b6-a03c-c6b233dd2e16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215943Z:ae0ee7b6-2508-44b6-a03c-c6b233dd2e16" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04ef00b3-d2ba-4a74-84ca-4ac53fa801c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-correlation-request-id": [ - "e48b5a3a-3d82-4b76-ac0d-feaf02ba0dc8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215944Z:e48b5a3a-3d82-4b76-ac0d-feaf02ba0dc8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a9c858e-5e8d-48b8-ace6-72da11052319" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-correlation-request-id": [ - "d0dc365f-1f93-43f0-95c3-f67b1e4d88f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215944Z:d0dc365f-1f93-43f0-95c3-f67b1e4d88f9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90062d1c-10a2-46c3-95c4-8f2ce78b1542" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-correlation-request-id": [ - "b9d290f4-b692-4ee1-a17b-999ccbf2162a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215944Z:b9d290f4-b692-4ee1-a17b-999ccbf2162a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c11e3468-aee8-4b00-807d-668a718aa48e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-correlation-request-id": [ - "51e174e7-fd61-4965-8f09-92a9c5552c5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215944Z:51e174e7-fd61-4965-8f09-92a9c5552c5e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f25b9ec5-9d61-4343-b636-87629cc29c81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-correlation-request-id": [ - "7b4b9b47-a63e-4e77-8eec-f7d66a11f004" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215944Z:7b4b9b47-a63e-4e77-8eec-f7d66a11f004" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "000983b0-9dac-4aa3-b1ef-1e338837ddd1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-correlation-request-id": [ - "5199d9c3-601b-44be-a171-c0372892a456" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215945Z:5199d9c3-601b-44be-a171-c0372892a456" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7fc1cbd-9203-4216-9845-b1a10385edc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], - "x-ms-correlation-request-id": [ - "6f22924f-065f-4777-9274-10db7c1f2970" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215945Z:6f22924f-065f-4777-9274-10db7c1f2970" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b80b8c36-4b9e-4f50-994f-3341e82ff715" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-correlation-request-id": [ - "6b889ab3-5076-437b-8cc6-47e8581b65e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215945Z:6b889ab3-5076-437b-8cc6-47e8581b65e6" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b752076a-2157-4776-9925-767ec5f00d73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "x-ms-correlation-request-id": [ - "bc5900cd-c81f-4afe-9df7-6c3eb8d472a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215945Z:bc5900cd-c81f-4afe-9df7-6c3eb8d472a4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e86531c-defe-4bcd-8e73-9dd9e5e72876" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-correlation-request-id": [ - "13fd52a1-d1f0-46a6-8ee9-caa1718658de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215945Z:13fd52a1-d1f0-46a6-8ee9-caa1718658de" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "688284a2-3549-4074-bed1-73fc9848c4de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" - ], - "x-ms-correlation-request-id": [ - "ea02f8f6-8384-4e3f-8745-eceba0bcf9bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215945Z:ea02f8f6-8384-4e3f-8745-eceba0bcf9bc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "391287a3-4688-4ad3-a16c-8ad21346bedc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" - ], - "x-ms-correlation-request-id": [ - "519751dd-2ac8-4809-ae2c-00decbe6843c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215945Z:519751dd-2ac8-4809-ae2c-00decbe6843c" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0499d3a5-d62a-49a3-9192-c821262157e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" - ], - "x-ms-correlation-request-id": [ - "98ed5562-439a-446b-a978-952e7d449f73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215946Z:98ed5562-439a-446b-a978-952e7d449f73" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40baa1f9-3733-464d-9a0b-c591de9ddea9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-correlation-request-id": [ - "34793a9e-7682-413e-9608-a457ae682ad3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215946Z:34793a9e-7682-413e-9608-a457ae682ad3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ffbb3e4-e12a-4cc8-a4c6-58884389cf92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" - ], - "x-ms-correlation-request-id": [ - "5cb6d952-38ad-4a52-a864-9302147f01c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215946Z:5cb6d952-38ad-4a52-a864-9302147f01c9" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "280c7109-ca99-4938-be2b-e8b486c3eb36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], - "x-ms-correlation-request-id": [ - "8dda61f6-4707-4116-a1fd-061fb79dc94f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215946Z:8dda61f6-4707-4116-a1fd-061fb79dc94f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ff2d92a-1d2e-4b6b-8778-a1355f15aaf3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" - ], - "x-ms-correlation-request-id": [ - "4a84df9f-327f-404b-874b-68455c12e23b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215946Z:4a84df9f-327f-404b-874b-68455c12e23b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3e22638-5e09-4b5f-b628-05f8ac3273c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], - "x-ms-correlation-request-id": [ - "da8d079f-1f1a-4f53-b467-c9ba03a6044a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215946Z:da8d079f-1f1a-4f53-b467-c9ba03a6044a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93e4939d-96c4-49ce-b592-194fcb4e4a4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" - ], - "x-ms-correlation-request-id": [ - "43472ac5-7b62-4f3f-87da-1c3ef4cb8975" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215947Z:43472ac5-7b62-4f3f-87da-1c3ef4cb8975" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2b3861f-e5bb-4d34-b6d5-2c73ce79b645" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" - ], - "x-ms-correlation-request-id": [ - "25fbd9d5-f5d4-4a85-9bb6-b2374b0d223b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215947Z:25fbd9d5-f5d4-4a85-9bb6-b2374b0d223b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ecddce8c-9ede-4bbd-8637-050803a90dda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" - ], - "x-ms-correlation-request-id": [ - "d18000b6-478f-4b3b-acda-98145684ab8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215947Z:d18000b6-478f-4b3b-acda-98145684ab8f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89e44ff3-4502-4bab-a7b2-7d7c0919d0cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" - ], - "x-ms-correlation-request-id": [ - "d577580e-c925-43d4-ba6c-09bed9bdfd89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215947Z:d577580e-c925-43d4-ba6c-09bed9bdfd89" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0efb67e9-ff9a-4240-a6ad-8af67273fa98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" - ], - "x-ms-correlation-request-id": [ - "a7acdc4d-6492-4bcf-80eb-1de865cb872b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215947Z:a7acdc4d-6492-4bcf-80eb-1de865cb872b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a07fa718-17fe-4cb7-91f9-93efabaea480" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" - ], - "x-ms-correlation-request-id": [ - "aaf5bf53-3342-4be2-b4a9-f0e750e32368" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215947Z:aaf5bf53-3342-4be2-b4a9-f0e750e32368" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0eb76780-a5e2-46c8-9775-89f8a620a919" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" - ], - "x-ms-correlation-request-id": [ - "f0c06ed4-6bd7-4a86-8fba-769942f1a939" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215947Z:f0c06ed4-6bd7-4a86-8fba-769942f1a939" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06a848a6-40f4-47c2-b67c-fd4bca7825bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" - ], - "x-ms-correlation-request-id": [ - "d5d1e54f-9111-4139-a08b-5b64ae3172eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215948Z:d5d1e54f-9111-4139-a08b-5b64ae3172eb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5cf88eca-ccca-466a-9d21-a96be7b74d12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" - ], - "x-ms-correlation-request-id": [ - "0a374244-3d0c-4847-8d2a-d89322dd1d79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215948Z:0a374244-3d0c-4847-8d2a-d89322dd1d79" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a37dcd2-a873-4902-a452-84e7ba5da756" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" - ], - "x-ms-correlation-request-id": [ - "5dd9204b-0285-4e33-95d9-577ca1525cf3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215948Z:5dd9204b-0285-4e33-95d9-577ca1525cf3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3aebdd5b-678a-4d7c-a1cf-abd412e76a8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" - ], - "x-ms-correlation-request-id": [ - "2fa9c257-8ca2-4599-a7e0-f4f70f9355f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215948Z:2fa9c257-8ca2-4599-a7e0-f4f70f9355f3" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "661e6cbe-cc5e-49a4-afb2-8b26bd6f8590" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], - "x-ms-correlation-request-id": [ - "772f4296-9725-4e3f-b33c-8e6662004d24" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215948Z:772f4296-9725-4e3f-b33c-8e6662004d24" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14c7ffa1-f4a3-46d3-98b9-9669b8553466" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" - ], - "x-ms-correlation-request-id": [ - "0dfad970-b643-4da9-8735-9b9abce472ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215949Z:0dfad970-b643-4da9-8735-9b9abce472ac" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c13b969e-caa0-43fb-b41c-a3d0a3d37e72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" - ], - "x-ms-correlation-request-id": [ - "7381c01f-073c-4cf2-8531-5b5c18448202" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215949Z:7381c01f-073c-4cf2-8531-5b5c18448202" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b40a519-38d2-4d2f-a478-c422dc69d1c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" - ], - "x-ms-correlation-request-id": [ - "621c4c6c-80b8-4713-9666-ca4c7714994f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215949Z:621c4c6c-80b8-4713-9666-ca4c7714994f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f82234c-29e5-49e8-a071-961d4fe53815" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" - ], - "x-ms-correlation-request-id": [ - "294e739c-da96-4587-a1ea-1731914522ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215949Z:294e739c-da96-4587-a1ea-1731914522ba" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b064d48-fb7e-4dc9-905c-6bbe322e124b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" - ], - "x-ms-correlation-request-id": [ - "27ecdba3-6f64-4427-904e-9e9e96a782a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215949Z:27ecdba3-6f64-4427-904e-9e9e96a782a4" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "680ad052-1409-48a9-92ab-dbb9d58da54d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" - ], - "x-ms-correlation-request-id": [ - "20325054-304d-4ec0-836c-08a45104cc1d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215949Z:20325054-304d-4ec0-836c-08a45104cc1d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3fefc78-5267-4406-bc33-65827f97ece9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" - ], - "x-ms-correlation-request-id": [ - "c862352a-a05a-4e1e-bf71-861629a40368" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215950Z:c862352a-a05a-4e1e-bf71-861629a40368" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e925019-5632-43c4-86f1-ada249a2dfc3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" - ], - "x-ms-correlation-request-id": [ - "669f30bd-b16e-4a83-9923-ef73153f3e91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215950Z:669f30bd-b16e-4a83-9923-ef73153f3e91" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa4c758c-6cf5-4b74-ac12-1cfa6936d59f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" - ], - "x-ms-correlation-request-id": [ - "40417dc8-333d-4923-b129-7c70091051af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215950Z:40417dc8-333d-4923-b129-7c70091051af" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89b5a8c9-4326-4724-9633-24f619754ed2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" - ], - "x-ms-correlation-request-id": [ - "297057a5-eec0-449d-922e-f8ddb5773395" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215950Z:297057a5-eec0-449d-922e-f8ddb5773395" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5be8232c-0345-4853-8249-cb1f59595dc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" - ], - "x-ms-correlation-request-id": [ - "481b59dc-1078-4db8-897b-e8f8e9d960fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215951Z:481b59dc-1078-4db8-897b-e8f8e9d960fc" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29913b68-09d3-4060-b597-ffaf76c53fdc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" - ], - "x-ms-correlation-request-id": [ - "2e0cff17-e24f-445f-ba0c-a4599acfdc67" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215951Z:2e0cff17-e24f-445f-ba0c-a4599acfdc67" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2105ed71-29f0-4b8a-b77c-2f372b4bfc01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" - ], - "x-ms-correlation-request-id": [ - "691688ab-9596-40a4-bea3-4e0bdae931ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215951Z:691688ab-9596-40a4-bea3-4e0bdae931ff" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41159e72-a214-49d8-ab5e-566258d142d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" - ], - "x-ms-correlation-request-id": [ - "fd2ef99a-c685-45ae-97c0-5865d1c43803" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215951Z:fd2ef99a-c685-45ae-97c0-5865d1c43803" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd5c148d-35a7-428a-9064-f83eb8bac6c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" - ], - "x-ms-correlation-request-id": [ - "4f6004bd-4de3-4a95-844e-9d1728409f18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215951Z:4f6004bd-4de3-4a95-844e-9d1728409f18" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60f7ac75-0dcb-4537-999b-8125537cb879" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" - ], - "x-ms-correlation-request-id": [ - "8c9afd30-e5c1-41a4-8eb8-880dae347b97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215951Z:8c9afd30-e5c1-41a4-8eb8-880dae347b97" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa5aa5e1-e4fb-4651-b263-db578002ad4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" - ], - "x-ms-correlation-request-id": [ - "e59a9bbd-b6bf-467d-a719-26dffbc8385a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215952Z:e59a9bbd-b6bf-467d-a719-26dffbc8385a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ba17c2f-7126-42af-85f2-f327e9bb24fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" - ], - "x-ms-correlation-request-id": [ - "5031d560-e581-4225-8cef-664dc79a03c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215952Z:5031d560-e581-4225-8cef-664dc79a03c0" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "abf7f0dc-72b1-4037-9ac2-2828b6dd05d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" - ], - "x-ms-correlation-request-id": [ - "33932e99-f39a-4fb1-a019-7264a5fc6cea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215952Z:33932e99-f39a-4fb1-a019-7264a5fc6cea" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "525a89be-d0a9-425e-b69d-444d794d0032" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" - ], - "x-ms-correlation-request-id": [ - "eec50adc-126d-4c7b-98e0-55beeab6961e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215952Z:eec50adc-126d-4c7b-98e0-55beeab6961e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13d814a7-5746-4ca6-af53-602fd8e6d62a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" - ], - "x-ms-correlation-request-id": [ - "7c078a13-8c15-49d8-9157-500a629262dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215952Z:7c078a13-8c15-49d8-9157-500a629262dd" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35408139-7c06-4317-864e-93f4e42ea0b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" - ], - "x-ms-correlation-request-id": [ - "e5087efe-3a3f-40f9-a21e-08fd704886e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215952Z:e5087efe-3a3f-40f9-a21e-08fd704886e8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "edb777f9-2276-4e80-8351-5083baf482a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" - ], - "x-ms-correlation-request-id": [ - "0553f8e1-52cf-49d5-92fb-9d26a88a143b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215952Z:0553f8e1-52cf-49d5-92fb-9d26a88a143b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84d3beca-2d97-41b2-a56c-a3d4723b1fb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" - ], - "x-ms-correlation-request-id": [ - "ced5d2b4-2f83-4b50-a81f-378635c81d0e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215953Z:ced5d2b4-2f83-4b50-a81f-378635c81d0e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "227e58dc-164f-48e2-a95b-785e05e49ab4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" - ], - "x-ms-correlation-request-id": [ - "f8e0bccb-7c2b-4612-b7a5-6afc3442398a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215953Z:f8e0bccb-7c2b-4612-b7a5-6afc3442398a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae038f14-b036-4b56-8000-720f6263597b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" - ], - "x-ms-correlation-request-id": [ - "18d1fd4b-3e50-42a5-8a46-ef3f9bc2a69b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215953Z:18d1fd4b-3e50-42a5-8a46-ef3f9bc2a69b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85c0f7ae-d75c-4343-a146-b1ab58d9b14d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" - ], - "x-ms-correlation-request-id": [ - "1f0c6bd6-c11b-4007-a01f-1663d5e0e840" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215953Z:1f0c6bd6-c11b-4007-a01f-1663d5e0e840" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95de6faf-9f90-4d04-889d-c36be49806f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" - ], - "x-ms-correlation-request-id": [ - "cdfb6457-d5a3-415d-bd8d-208ebb041a5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215953Z:cdfb6457-d5a3-415d-bd8d-208ebb041a5d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "454bbf84-4cad-4192-b05c-9d84a847fdfb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" - ], - "x-ms-correlation-request-id": [ - "36856ab1-2496-4529-8f0f-4d386ae94b2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215953Z:36856ab1-2496-4529-8f0f-4d386ae94b2e" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "855fac82-8e99-4e4c-af34-f3cf1f789f98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" - ], - "x-ms-correlation-request-id": [ - "54d6aad3-4395-4bd5-856b-9acbb1e5b022" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215954Z:54d6aad3-4395-4bd5-856b-9acbb1e5b022" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79656913-b9d2-4491-b367-16ab483264b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" - ], - "x-ms-correlation-request-id": [ - "475fa6bd-2649-4053-9433-c782155b04f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215954Z:475fa6bd-2649-4053-9433-c782155b04f5" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4739a389-e880-4185-aad5-7793b7d84762" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" - ], - "x-ms-correlation-request-id": [ - "87de44ca-1ac9-454c-baea-e80b53cf9f0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215954Z:87de44ca-1ac9-454c-baea-e80b53cf9f0d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65e106ab-755a-43bd-a007-5e3327016b65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" - ], - "x-ms-correlation-request-id": [ - "7b22cc69-e412-41d4-91bb-61dde939f635" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215954Z:7b22cc69-e412-41d4-91bb-61dde939f635" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c2e7029-7d1f-42a5-86af-5bc8c342020b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" - ], - "x-ms-correlation-request-id": [ - "9bfa10e5-a542-4582-995a-f2fd758a5320" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215954Z:9bfa10e5-a542-4582-995a-f2fd758a5320" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c706d10-5cca-4816-947b-10c9a1282401" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" - ], - "x-ms-correlation-request-id": [ - "d8839502-b15a-4f73-aa24-c4cfab3a4a69" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215955Z:d8839502-b15a-4f73-aa24-c4cfab3a4a69" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dfae3280-21ea-40b5-80df-bf48571cda69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" - ], - "x-ms-correlation-request-id": [ - "3afb6bb3-3b39-4af9-af6e-d742bf34ad38" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215955Z:3afb6bb3-3b39-4af9-af6e-d742bf34ad38" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fffad92a-873a-49de-be8a-75462eb0a7a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" - ], - "x-ms-correlation-request-id": [ - "ca48c3e3-e973-4d0d-950a-28585d5aa2fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215955Z:ca48c3e3-e973-4d0d-950a-28585d5aa2fa" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f7f8b81-2a83-444e-84b2-b2f07867d9ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" - ], - "x-ms-correlation-request-id": [ - "a288f6d7-1629-4e4f-b72c-5e993b53220a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215955Z:a288f6d7-1629-4e4f-b72c-5e993b53220a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7562a1bf-f451-4641-9c0e-848ded711409" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" - ], - "x-ms-correlation-request-id": [ - "4443890a-dee0-4151-8ea9-b994d7f0216a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215955Z:4443890a-dee0-4151-8ea9-b994d7f0216a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd8b7bba-ae83-4d45-b7ee-f09e41ad3ad1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" - ], - "x-ms-correlation-request-id": [ - "73c91181-5ccc-4d31-88a0-ff67fe5634a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215955Z:73c91181-5ccc-4d31-88a0-ff67fe5634a8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e380779-4c6d-498b-a4a4-da86405aabae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" - ], - "x-ms-correlation-request-id": [ - "4a05c24d-2f3e-47c2-aead-479bd6c54c93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215956Z:4a05c24d-2f3e-47c2-aead-479bd6c54c93" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0d96ddb-87af-40aa-b69e-c80e00591c28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" - ], - "x-ms-correlation-request-id": [ - "0aafe331-3593-4a72-8157-7d12b4670902" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215956Z:0aafe331-3593-4a72-8157-7d12b4670902" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88e83cf2-8d00-4083-86c2-4c5951e2175d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" - ], - "x-ms-correlation-request-id": [ - "6e91cc6c-68e7-4966-9122-86bb12a03a50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215956Z:6e91cc6c-68e7-4966-9122-86bb12a03a50" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e46514f-1392-4837-910f-ceef6d755f48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" - ], - "x-ms-correlation-request-id": [ - "844e7616-b9cb-4f0f-a6aa-32357aa7baf8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215956Z:844e7616-b9cb-4f0f-a6aa-32357aa7baf8" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4f9d256-e4e0-414f-a69a-69e2da9d2ced" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" - ], - "x-ms-correlation-request-id": [ - "5554768d-d368-41d3-a28a-ff164d77888d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215956Z:5554768d-d368-41d3-a28a-ff164d77888d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9244cf89-7162-4e33-893c-c3747f65985c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" - ], - "x-ms-correlation-request-id": [ - "5a69a759-35f9-4091-bd2e-4a4083634147" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215957Z:5a69a759-35f9-4091-bd2e-4a4083634147" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ba61af7-2397-4d94-892c-c40c25091e7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" - ], - "x-ms-correlation-request-id": [ - "007f148c-7e71-430a-af54-e0cbd2b871bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215957Z:007f148c-7e71-430a-af54-e0cbd2b871bb" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51fe67eb-2f0b-4dad-b744-089ed54ff187" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" - ], - "x-ms-correlation-request-id": [ - "b20e1cbd-5f94-49ad-846d-a4459a8cb7cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215957Z:b20e1cbd-5f94-49ad-846d-a4459a8cb7cf" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c0ab0aa-1fef-4244-b040-0e612575c96b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" - ], - "x-ms-correlation-request-id": [ - "603d61e0-e6d2-444b-90be-94aadbadf78f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215957Z:603d61e0-e6d2-444b-90be-94aadbadf78f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00312dae-e874-48aa-9277-18f25d52bbaa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" - ], - "x-ms-correlation-request-id": [ - "1d54a501-a8c2-4917-aeb3-67d564ccf4ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215957Z:1d54a501-a8c2-4917-aeb3-67d564ccf4ec" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd48fc5a-208e-462f-96aa-6d0b9349342b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" - ], - "x-ms-correlation-request-id": [ - "bbcbff31-3bc6-42eb-b5cf-c5a341086895" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215957Z:bbcbff31-3bc6-42eb-b5cf-c5a341086895" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68652fc1-dc21-4cd3-a0a1-2da0e7886eb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" - ], - "x-ms-correlation-request-id": [ - "2813eb34-d3ad-4ea5-9ab5-5dd6c7cda48f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215958Z:2813eb34-d3ad-4ea5-9ab5-5dd6c7cda48f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4c5571b-aed1-467f-bf84-95603368aece" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" - ], - "x-ms-correlation-request-id": [ - "5a4c6868-151c-41fc-b3a4-9e6d841b2f96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215958Z:5a4c6868-151c-41fc-b3a4-9e6d841b2f96" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ea9cb6a-dea4-4c4d-b0d1-a006b20e1344" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" - ], - "x-ms-correlation-request-id": [ - "85750cfd-d904-458d-bbb0-ef6518640ed7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215958Z:85750cfd-d904-458d-bbb0-ef6518640ed7" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24d672bf-6b09-4f9c-9d71-63f56b240d04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" - ], - "x-ms-correlation-request-id": [ - "747c8904-53f8-4ead-802d-f1c119b29a80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215958Z:747c8904-53f8-4ead-802d-f1c119b29a80" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1664dd9-b58c-4491-b77a-14c7ef643081" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" - ], - "x-ms-correlation-request-id": [ - "a38cd164-c9a3-4532-b798-f34e7dd44487" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215958Z:a38cd164-c9a3-4532-b798-f34e7dd44487" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5039abf-a833-4883-a9e5-81ea05067d95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" - ], - "x-ms-correlation-request-id": [ - "a17dc97e-f3aa-4f9a-a851-b954d8a14b96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215958Z:a17dc97e-f3aa-4f9a-a851-b954d8a14b96" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3c1e4a88-8bd6-46bd-8467-e86407b851c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" - ], - "x-ms-correlation-request-id": [ - "c1c84cd9-a281-4732-afc5-609e0e84c86b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215958Z:c1c84cd9-a281-4732-afc5-609e0e84c86b" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5dbe674f-d5c4-4792-bbeb-958b51c90e42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" - ], - "x-ms-correlation-request-id": [ - "d0099b66-b34b-4873-984c-f4c459fd920a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215959Z:d0099b66-b34b-4873-984c-f4c459fd920a" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ec84d13e-2309-4121-85be-3ced966b81a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" - ], - "x-ms-correlation-request-id": [ - "4ba6f7a3-9c6e-4fee-9982-e9a6d4b6bd9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215959Z:4ba6f7a3-9c6e-4fee-9982-e9a6d4b6bd9f" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ad3dd32-32b2-4c1f-8197-665647cc74e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" - ], - "x-ms-correlation-request-id": [ - "484e17c3-221b-421d-8240-3190f1b177f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215959Z:484e17c3-221b-421d-8240-3190f1b177f1" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "66b134f1-59ea-49af-b5e6-e18e1fe20336" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" - ], - "x-ms-correlation-request-id": [ - "6e9e3252-d5b0-4d38-b755-cf0c7225902d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215959Z:6e9e3252-d5b0-4d38-b755-cf0c7225902d" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3cba0e07-b331-4cec-9017-1959f976f5e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11870" - ], - "x-ms-correlation-request-id": [ - "8904254d-0ddc-4e10-a897-af066cb1c483" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215959Z:8904254d-0ddc-4e10-a897-af066cb1c483" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e76ee4f6-334d-4362-84b5-fed1981bab69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" - ], - "x-ms-correlation-request-id": [ - "3945dcd1-9a2f-4f00-aa5c-f014b0be7a45" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T215959Z:3945dcd1-9a2f-4f00-aa5c-f014b0be7a45" - ], - "Date": [ - "Tue, 29 Aug 2017 21:59:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5447cf90-f9be-4739-a467-f45e75a86677" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11868" - ], - "x-ms-correlation-request-id": [ - "52476429-a660-4036-bdc0-38e1191eba92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220000Z:52476429-a660-4036-bdc0-38e1191eba92" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7973cfa5-bf15-4fd5-b54c-d84de2664046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" - ], - "x-ms-correlation-request-id": [ - "30c2fa2c-52ab-4436-bb87-66e0d9bafd90" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220000Z:30c2fa2c-52ab-4436-bb87-66e0d9bafd90" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5ebb69b-b032-43c8-bdf6-85e7c344512c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" - ], - "x-ms-correlation-request-id": [ - "5bca42f7-2d37-452d-8a1a-887858bd3c81" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220000Z:5bca42f7-2d37-452d-8a1a-887858bd3c81" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "749f1309-afe9-4193-b1cb-0f038ad8502e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" - ], - "x-ms-correlation-request-id": [ - "3fa60b60-204a-4b0f-85c0-11f13b449ee6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220000Z:3fa60b60-204a-4b0f-85c0-11f13b449ee6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8845cf8-b55e-4e31-b3eb-ced16ba87f2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11864" - ], - "x-ms-correlation-request-id": [ - "ddbc2449-6eaf-4687-8766-8266b44445f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220000Z:ddbc2449-6eaf-4687-8766-8266b44445f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c34e6a5-4783-47e9-9b10-4b770e383be4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11863" - ], - "x-ms-correlation-request-id": [ - "075b58bb-4bea-4a73-871a-0ebd3357954a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220000Z:075b58bb-4bea-4a73-871a-0ebd3357954a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b38b8d9-0ffb-42f9-af51-c19875e66344" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" - ], - "x-ms-correlation-request-id": [ - "52215437-7f1c-4065-9419-5dd8e011d478" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220001Z:52215437-7f1c-4065-9419-5dd8e011d478" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c900ecf9-9c3c-453d-aaa8-55d5fa1ac9ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" - ], - "x-ms-correlation-request-id": [ - "24ac72e0-3f68-487f-9406-af79bd4567d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220001Z:24ac72e0-3f68-487f-9406-af79bd4567d0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4a80f04-c255-4495-a999-86175000bb24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" - ], - "x-ms-correlation-request-id": [ - "fc1b9453-2402-4f6c-97b1-519fe8779f9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220001Z:fc1b9453-2402-4f6c-97b1-519fe8779f9f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f64eeb4e-5139-44ac-ab7b-7cd57161eda8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" - ], - "x-ms-correlation-request-id": [ - "1d4a3237-7b03-4391-a439-4e4fcac3da44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220001Z:1d4a3237-7b03-4391-a439-4e4fcac3da44" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a050d59-d4d9-4646-8b60-5e1f1a9bf39a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" - ], - "x-ms-correlation-request-id": [ - "bdd5d9ef-f8a3-49c5-95a1-f082f29af2fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220001Z:bdd5d9ef-f8a3-49c5-95a1-f082f29af2fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82eca680-9156-4974-8ff2-876956fd80aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" - ], - "x-ms-correlation-request-id": [ - "0b8e13d0-98bc-4357-bc16-3acfba36e696" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220001Z:0b8e13d0-98bc-4357-bc16-3acfba36e696" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a81e4f06-a92a-41a3-9d30-8691674630a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" - ], - "x-ms-correlation-request-id": [ - "c8b3773b-8ea7-48da-a3fc-c74d1da2861e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220002Z:c8b3773b-8ea7-48da-a3fc-c74d1da2861e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c34214f-3c94-4b0b-b7a3-4613956d4830" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11855" - ], - "x-ms-correlation-request-id": [ - "59deea17-d918-4943-a139-5bc542448091" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220002Z:59deea17-d918-4943-a139-5bc542448091" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8d45b39-fbd2-479f-930f-522c3334c941" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" - ], - "x-ms-correlation-request-id": [ - "1b6178bf-dc0b-4f11-82ea-15ba628dd835" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220002Z:1b6178bf-dc0b-4f11-82ea-15ba628dd835" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1abe7a0b-e77e-4aa7-a975-261abfa346f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" - ], - "x-ms-correlation-request-id": [ - "5e585953-a83a-4de6-9b44-fe5691218fce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220002Z:5e585953-a83a-4de6-9b44-fe5691218fce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "320cb9e5-c3da-4c4c-bfe6-6d0327db3615" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" - ], - "x-ms-correlation-request-id": [ - "4bc1fcd9-b168-4c2e-b689-a0da8fe052a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220002Z:4bc1fcd9-b168-4c2e-b689-a0da8fe052a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "333d50a7-24f7-4bd3-be97-307a36d3aaa7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11851" - ], - "x-ms-correlation-request-id": [ - "2733e4ed-0a04-4168-8c55-cd06ed6c4100" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220002Z:2733e4ed-0a04-4168-8c55-cd06ed6c4100" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc2a61d1-4a74-402a-ac22-db1446f62313" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" - ], - "x-ms-correlation-request-id": [ - "13a990ad-d45d-42e9-98fe-068e435fef23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220002Z:13a990ad-d45d-42e9-98fe-068e435fef23" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ef5b279-f7fa-4167-923c-205dca774b3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" - ], - "x-ms-correlation-request-id": [ - "35df15b2-6fe3-4ff1-916c-03bf4ddf3965" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220003Z:35df15b2-6fe3-4ff1-916c-03bf4ddf3965" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b632eba2-03a7-4920-b951-d742652a05dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" - ], - "x-ms-correlation-request-id": [ - "710c6646-8305-4008-81c6-42ef3be86413" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220003Z:710c6646-8305-4008-81c6-42ef3be86413" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "205a851d-5d97-45bf-baee-130b48b7fbd7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" - ], - "x-ms-correlation-request-id": [ - "85a3297a-18ba-4e8f-a07b-a28138e7dcbc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220003Z:85a3297a-18ba-4e8f-a07b-a28138e7dcbc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "09902904-d14a-4925-bf1d-9e7f49f2d351" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" - ], - "x-ms-correlation-request-id": [ - "a7250bb9-b332-4e9d-9cbe-d8f4fda64c22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220003Z:a7250bb9-b332-4e9d-9cbe-d8f4fda64c22" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d6673c4-894a-4176-9f67-b9d0cf435f71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11845" - ], - "x-ms-correlation-request-id": [ - "8ad9d4e6-5c4e-4ac8-87ee-e777cf63ba13" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220003Z:8ad9d4e6-5c4e-4ac8-87ee-e777cf63ba13" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d59e33ac-d1ba-47c4-a766-3a87ca7c17a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" - ], - "x-ms-correlation-request-id": [ - "6a6704ef-7e51-4f00-bb18-513b43a73cae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220004Z:6a6704ef-7e51-4f00-bb18-513b43a73cae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "212f69f2-3bea-4348-a36c-999c221fc11f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" - ], - "x-ms-correlation-request-id": [ - "feae9a83-dcae-4688-a9a5-3a55270a81a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220004Z:feae9a83-dcae-4688-a9a5-3a55270a81a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "edf768f5-b7ea-4017-af46-6138c4bca59a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" - ], - "x-ms-correlation-request-id": [ - "8bd31333-2275-4e4c-b16f-c2af970b209f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220004Z:8bd31333-2275-4e4c-b16f-c2af970b209f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78c5c3b3-46c0-4193-8da0-69d0f724ea14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" - ], - "x-ms-correlation-request-id": [ - "81a00b80-d158-4903-8bed-3b43d554e0a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220004Z:81a00b80-d158-4903-8bed-3b43d554e0a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c36efd8b-d3a5-4043-84dc-ed2f3e1a4b2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11840" - ], - "x-ms-correlation-request-id": [ - "cdd2e828-5dbe-4349-9c0e-cb4d5804eb57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220004Z:cdd2e828-5dbe-4349-9c0e-cb4d5804eb57" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e847b2e2-5d36-4058-b350-ba74d7ca8120" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" - ], - "x-ms-correlation-request-id": [ - "9b274529-ed61-4bde-a17c-84b4bb7fa0a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220004Z:9b274529-ed61-4bde-a17c-84b4bb7fa0a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc51c5ab-37e9-4a6e-a103-42e96b598acd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11838" - ], - "x-ms-correlation-request-id": [ - "e4ce4a65-e923-4631-b148-71318af842ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220005Z:e4ce4a65-e923-4631-b148-71318af842ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56645e38-f0e1-4280-8fae-6ec163144d14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11837" - ], - "x-ms-correlation-request-id": [ - "14567da0-8c7f-46c6-94de-35781da3d3b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220005Z:14567da0-8c7f-46c6-94de-35781da3d3b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "655bb5d9-a37d-4854-b799-f8f2a1a848e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11836" - ], - "x-ms-correlation-request-id": [ - "9977dda3-2d16-41de-891f-c7dd22d54b96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220005Z:9977dda3-2d16-41de-891f-c7dd22d54b96" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6eaee4b-070c-4de4-a727-c8935a1f2a4e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" - ], - "x-ms-correlation-request-id": [ - "d3c88507-f6b6-4eeb-9a1b-b3b58fdb945e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220005Z:d3c88507-f6b6-4eeb-9a1b-b3b58fdb945e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20169487-44e4-4d8c-bca8-0a77e7f5aba7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11834" - ], - "x-ms-correlation-request-id": [ - "1353904b-11b9-4f99-a78d-dcc39d42e594" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220005Z:1353904b-11b9-4f99-a78d-dcc39d42e594" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca2182a5-e692-465f-a824-b10c6a22f6e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11833" - ], - "x-ms-correlation-request-id": [ - "bdd0b23a-065a-4289-92a0-d8b023e0e9ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220005Z:bdd0b23a-065a-4289-92a0-d8b023e0e9ff" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "898c84bf-61b4-4c8d-b0df-5430d138227c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11832" - ], - "x-ms-correlation-request-id": [ - "8d1cf649-ba09-4f72-aee5-f887df583da7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220006Z:8d1cf649-ba09-4f72-aee5-f887df583da7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db3a703d-1fc1-4f69-b2d6-570551a6fb4e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11831" - ], - "x-ms-correlation-request-id": [ - "96622b0d-0880-4001-8ef4-5f0de29dab7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220006Z:96622b0d-0880-4001-8ef4-5f0de29dab7e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "351014b1-878b-4861-8f4e-b457111c0fbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11830" - ], - "x-ms-correlation-request-id": [ - "27822a0d-3848-481d-b547-731043e1fffe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220006Z:27822a0d-3848-481d-b547-731043e1fffe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "533c03d3-1ec7-4c52-83aa-a5d66d29b30c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11829" - ], - "x-ms-correlation-request-id": [ - "70f59b16-feac-40d4-be06-3b8388f2f406" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220006Z:70f59b16-feac-40d4-be06-3b8388f2f406" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71c41cd6-73f3-435c-9565-6551474e8fcd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11828" - ], - "x-ms-correlation-request-id": [ - "6a8f40cf-ff90-470b-9ee6-8b85c2941975" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220006Z:6a8f40cf-ff90-470b-9ee6-8b85c2941975" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37747b80-b186-4720-8436-c413ca936aaa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11827" - ], - "x-ms-correlation-request-id": [ - "b20778e6-cf21-4df5-8145-ede07da9fb47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220007Z:b20778e6-cf21-4df5-8145-ede07da9fb47" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68989f95-9b22-4cb9-a42b-cb6abbe8f813" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11826" - ], - "x-ms-correlation-request-id": [ - "3ccecf49-d7a9-442c-9828-196f33aa80e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220007Z:3ccecf49-d7a9-442c-9828-196f33aa80e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a48d8da-9ba4-4acc-a1cf-52dcfef05fd4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11825" - ], - "x-ms-correlation-request-id": [ - "4a963946-b8ca-4e90-b153-a3d08fa3e3dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220007Z:4a963946-b8ca-4e90-b153-a3d08fa3e3dd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "609f90eb-9ca3-4071-80f4-c6b82d83b1a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11824" - ], - "x-ms-correlation-request-id": [ - "317338d0-631b-45ec-8f89-05b1a896229b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220007Z:317338d0-631b-45ec-8f89-05b1a896229b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "acad3944-a5f3-45c4-90c0-553dc6187a44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11823" - ], - "x-ms-correlation-request-id": [ - "f0433e61-62c7-4631-9a6c-e3408ddf8f29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220007Z:f0433e61-62c7-4631-9a6c-e3408ddf8f29" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "af84da6a-8328-44d5-bd54-896342223d38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11822" - ], - "x-ms-correlation-request-id": [ - "b10c789f-efb3-4ad1-80ab-32ff93479c82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220007Z:b10c789f-efb3-4ad1-80ab-32ff93479c82" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d4a8da0-567d-48af-9207-a10e3d1a68bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11821" - ], - "x-ms-correlation-request-id": [ - "ade68d7a-b7bd-440e-829f-319eb10b0065" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220008Z:ade68d7a-b7bd-440e-829f-319eb10b0065" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "917d93fe-8e2e-4764-97ef-8d1cc137cc4e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11820" - ], - "x-ms-correlation-request-id": [ - "7da32cb5-ee42-47f1-881e-b23c6aae1bfa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220008Z:7da32cb5-ee42-47f1-881e-b23c6aae1bfa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c86d802-aa20-4219-a30c-340b84766711" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11819" - ], - "x-ms-correlation-request-id": [ - "06532a70-cf23-4d85-ab33-cf4ee1fa75a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220008Z:06532a70-cf23-4d85-ab33-cf4ee1fa75a0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78d03d7b-c423-4649-966e-43c950baa32b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11818" - ], - "x-ms-correlation-request-id": [ - "8398a2da-2a14-4ac2-8c7d-0a6459bff6c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220008Z:8398a2da-2a14-4ac2-8c7d-0a6459bff6c9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b65eed91-b350-4e68-828e-cdfe2312e29c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11817" - ], - "x-ms-correlation-request-id": [ - "50102992-865e-4d87-8b33-cefcbb0d937b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220008Z:50102992-865e-4d87-8b33-cefcbb0d937b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ef4b777-edad-4c35-89aa-367026ff24ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11816" - ], - "x-ms-correlation-request-id": [ - "3aba3272-f9a1-49dd-9c1e-143fe3fd558f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220008Z:3aba3272-f9a1-49dd-9c1e-143fe3fd558f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e91bdc8-37c8-4eba-8893-44b0aac55b4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11815" - ], - "x-ms-correlation-request-id": [ - "e1e1b8bc-668d-4a53-9774-0a4c2db1dfba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220008Z:e1e1b8bc-668d-4a53-9774-0a4c2db1dfba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7f306c4-bdb5-48da-9960-fc1cef957d95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11814" - ], - "x-ms-correlation-request-id": [ - "df14375f-495d-4a35-88e5-18cbea3d7e25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220009Z:df14375f-495d-4a35-88e5-18cbea3d7e25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a91970b6-d0b1-4b2d-a86f-bef4847ee961" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11813" - ], - "x-ms-correlation-request-id": [ - "f2b170e4-92bc-4abd-8e82-74e94f468bff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220009Z:f2b170e4-92bc-4abd-8e82-74e94f468bff" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69cc8e3b-f6c0-497e-aec5-713f2772bc22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11812" - ], - "x-ms-correlation-request-id": [ - "8301d03f-7582-47e2-9f77-f2586266049e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220009Z:8301d03f-7582-47e2-9f77-f2586266049e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9ff930c-17b4-46e7-9025-12e50375cb22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11811" - ], - "x-ms-correlation-request-id": [ - "fab72317-e262-4b2d-8156-8a69efae96ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220009Z:fab72317-e262-4b2d-8156-8a69efae96ed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b2b92bf-c056-4f29-b9fc-e50b5e24376d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11810" - ], - "x-ms-correlation-request-id": [ - "87d21cb3-8905-4d87-ad25-f1d18e7d618a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220009Z:87d21cb3-8905-4d87-ad25-f1d18e7d618a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9cbf2368-e5d9-4334-a6b7-8af25c7690d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11809" - ], - "x-ms-correlation-request-id": [ - "6c60cc5c-e25b-43d3-9a79-a8e96014f92d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220009Z:6c60cc5c-e25b-43d3-9a79-a8e96014f92d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "105f75eb-0e3b-4491-b8cc-3551d2f3c32b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11808" - ], - "x-ms-correlation-request-id": [ - "68fea413-44b3-4886-86ed-d9cf400a1a58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220010Z:68fea413-44b3-4886-86ed-d9cf400a1a58" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48b16134-3fa0-49de-b854-22d4f2c2d906" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11807" - ], - "x-ms-correlation-request-id": [ - "5879dc87-87e6-4a2c-920c-8c362adb4403" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220010Z:5879dc87-87e6-4a2c-920c-8c362adb4403" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1e9e2a1-390c-4e2d-ac28-49d842dc9ea4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11806" - ], - "x-ms-correlation-request-id": [ - "e76391e4-1281-4fd2-9def-85ed838612c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220010Z:e76391e4-1281-4fd2-9def-85ed838612c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "179dd18e-9fc0-4a2c-b747-bc1d8c6cecc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11805" - ], - "x-ms-correlation-request-id": [ - "7ae78a72-204d-4a0f-9563-0ef7538ab58e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220010Z:7ae78a72-204d-4a0f-9563-0ef7538ab58e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e380d02-6e28-42f4-a849-087c3cbec44f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11804" - ], - "x-ms-correlation-request-id": [ - "7e38b7b9-4929-4c35-b2f0-161a5fae766e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220010Z:7e38b7b9-4929-4c35-b2f0-161a5fae766e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6000ed89-cdf5-4479-982f-7ba428bc4a49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11803" - ], - "x-ms-correlation-request-id": [ - "4e6cfa78-92a2-4ac7-b44e-e002e516dcdb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220010Z:4e6cfa78-92a2-4ac7-b44e-e002e516dcdb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee3dd312-3f00-46a1-b1fa-48ac3ff7ad02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11802" - ], - "x-ms-correlation-request-id": [ - "709b3088-87d7-4b8b-92f3-5bc2cdc52c1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220010Z:709b3088-87d7-4b8b-92f3-5bc2cdc52c1c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7718611a-6969-42e3-b668-7a46326ebe48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11801" - ], - "x-ms-correlation-request-id": [ - "927bbe28-09be-4700-b087-862934a59664" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220011Z:927bbe28-09be-4700-b087-862934a59664" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c93f5c7-08d3-41ee-b2cb-229fa7912d32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11800" - ], - "x-ms-correlation-request-id": [ - "dfd2987a-fc84-4d93-b90b-3571d8ece40e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220011Z:dfd2987a-fc84-4d93-b90b-3571d8ece40e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a933cf0-c1c3-45f6-b536-6f548b9f9f9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11799" - ], - "x-ms-correlation-request-id": [ - "45333ddb-e95b-45cf-b3b6-795bac54fe4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220011Z:45333ddb-e95b-45cf-b3b6-795bac54fe4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "002755d8-e7b1-421a-b256-e4f485122c1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11798" - ], - "x-ms-correlation-request-id": [ - "315a32a3-a875-4803-b437-b07510ecdad0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220011Z:315a32a3-a875-4803-b437-b07510ecdad0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c73c5f35-cc58-4a6d-8255-8d2818166b6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11797" - ], - "x-ms-correlation-request-id": [ - "716caaa0-2f41-4d77-b26a-caef0d8ba800" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220011Z:716caaa0-2f41-4d77-b26a-caef0d8ba800" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef569201-995b-49ec-8632-9998a2bbcdf4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11796" - ], - "x-ms-correlation-request-id": [ - "fca92633-4fa7-4605-beae-9f6b1955d1e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220012Z:fca92633-4fa7-4605-beae-9f6b1955d1e4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b93a21f6-5ed7-47c9-9587-ec458c868f4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11795" - ], - "x-ms-correlation-request-id": [ - "8ede8d81-dff6-4239-83a0-f7044dd5bcf5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220012Z:8ede8d81-dff6-4239-83a0-f7044dd5bcf5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9eb2b40b-6c4a-4471-9ef5-d338f2984fdd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11794" - ], - "x-ms-correlation-request-id": [ - "d6117ecc-0dec-43e8-af58-82ec3371a2bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220012Z:d6117ecc-0dec-43e8-af58-82ec3371a2bb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59d8e4c5-638d-4029-9360-8df81178c55a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11793" - ], - "x-ms-correlation-request-id": [ - "d186bac0-27ff-4dbe-99a3-01b377882c01" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220012Z:d186bac0-27ff-4dbe-99a3-01b377882c01" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea7ddd78-5c7b-4316-b91c-d6062df4c416" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11792" - ], - "x-ms-correlation-request-id": [ - "0b98ae52-ad1b-417d-9d50-b8c8e125d2db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220012Z:0b98ae52-ad1b-417d-9d50-b8c8e125d2db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45ce41f7-fbab-42f7-b6c2-b5d16e930c3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11791" - ], - "x-ms-correlation-request-id": [ - "84c445b7-6acd-4ab6-b9f2-6ec16a1eb79e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220012Z:84c445b7-6acd-4ab6-b9f2-6ec16a1eb79e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f5a1d2d-71a8-4dbd-ab1f-65ac0ba49114" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11790" - ], - "x-ms-correlation-request-id": [ - "dd4972a8-a0b0-4de0-b8fb-e692d214aac8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220013Z:dd4972a8-a0b0-4de0-b8fb-e692d214aac8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d44a858-18f1-4999-9d4e-dd752c06b30a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11789" - ], - "x-ms-correlation-request-id": [ - "7c2f713d-4247-4c64-854d-51cf6f9cbb60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220013Z:7c2f713d-4247-4c64-854d-51cf6f9cbb60" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c73cdcb9-3f31-42d1-ba44-96f4092336a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11788" - ], - "x-ms-correlation-request-id": [ - "07dfe856-f732-4bbf-b891-2ae0e1e432ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220013Z:07dfe856-f732-4bbf-b891-2ae0e1e432ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "832549bc-7198-40e2-aa41-d23b6b17a638" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11787" - ], - "x-ms-correlation-request-id": [ - "f0e2e3ed-a4a1-47fd-9f13-841047f9e677" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220013Z:f0e2e3ed-a4a1-47fd-9f13-841047f9e677" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e857f52a-a33e-4380-bebe-309fb8b6f4bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11786" - ], - "x-ms-correlation-request-id": [ - "96bd789d-ecfa-4625-9d5f-02e6efdc8bb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220013Z:96bd789d-ecfa-4625-9d5f-02e6efdc8bb9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ee59a74-6004-4e2a-b002-b88b862e2b77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11785" - ], - "x-ms-correlation-request-id": [ - "79e13c3c-9ce3-4ca7-a659-7dd48db278d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220013Z:79e13c3c-9ce3-4ca7-a659-7dd48db278d6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a485ff5-114e-46f7-9bf3-330b883b90ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11784" - ], - "x-ms-correlation-request-id": [ - "b3428380-894b-4a12-a49c-b60d09f04990" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220014Z:b3428380-894b-4a12-a49c-b60d09f04990" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dbb2493a-4c53-4c43-b8f0-035e9ca361cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11783" - ], - "x-ms-correlation-request-id": [ - "a9bac48a-ebd1-4f8d-8b38-c57572e273b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220014Z:a9bac48a-ebd1-4f8d-8b38-c57572e273b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "482fa57e-7df0-451a-91a5-d7496b22a420" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11782" - ], - "x-ms-correlation-request-id": [ - "2580116a-c56b-41fe-b3f3-cfc8a1dbc70c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220014Z:2580116a-c56b-41fe-b3f3-cfc8a1dbc70c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "683269e7-d3c6-4944-a6d5-67b8b49dab07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11781" - ], - "x-ms-correlation-request-id": [ - "f8bcb223-547c-416b-b2af-df630feae46a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220014Z:f8bcb223-547c-416b-b2af-df630feae46a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16259d02-f0d6-4b42-a37e-68abb7168b2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11780" - ], - "x-ms-correlation-request-id": [ - "2aac918d-2385-489d-a4e7-4b1dad8e33a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220014Z:2aac918d-2385-489d-a4e7-4b1dad8e33a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f911b23-9326-4afb-a455-db0ed69585a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11779" - ], - "x-ms-correlation-request-id": [ - "81440a02-ccc4-4997-89b9-5c27072c729f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220014Z:81440a02-ccc4-4997-89b9-5c27072c729f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb8df4bb-6130-48c9-a822-1ae5fb666e9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11778" - ], - "x-ms-correlation-request-id": [ - "bcef0ec3-b7f7-4f3d-90bc-93857917a1df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220014Z:bcef0ec3-b7f7-4f3d-90bc-93857917a1df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7bb3fa95-8e42-4823-9e42-6878d52030ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11777" - ], - "x-ms-correlation-request-id": [ - "607ecc64-1251-4f6b-bb58-7143d3826e58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220015Z:607ecc64-1251-4f6b-bb58-7143d3826e58" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3008d8ee-3a2d-438c-b476-6c0d73325b44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11776" - ], - "x-ms-correlation-request-id": [ - "52f8f580-d666-403a-9b05-82ea232999f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220015Z:52f8f580-d666-403a-9b05-82ea232999f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aaaa5872-cf8b-459a-bb45-e12dfbb46bb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11775" - ], - "x-ms-correlation-request-id": [ - "733f8b7e-e3a4-450b-8ba3-9727f4888440" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220015Z:733f8b7e-e3a4-450b-8ba3-9727f4888440" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce993afb-7ac9-4ac9-8173-d7f394a2a8da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11774" - ], - "x-ms-correlation-request-id": [ - "554cee0b-f45f-407c-8b0a-08281a8410be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220015Z:554cee0b-f45f-407c-8b0a-08281a8410be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b74bd917-c6df-412b-a45e-b9066d8288a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11773" - ], - "x-ms-correlation-request-id": [ - "b343750f-f942-4a27-a804-13ad3cfbba37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220015Z:b343750f-f942-4a27-a804-13ad3cfbba37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c2fbde95-f3ab-4435-9fba-456e95585551" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11772" - ], - "x-ms-correlation-request-id": [ - "60fe3882-2211-45cb-8aa1-3a3a78869233" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220016Z:60fe3882-2211-45cb-8aa1-3a3a78869233" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2dfea600-8fa1-480c-b7e8-4211df22009c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11771" - ], - "x-ms-correlation-request-id": [ - "910ed430-f72a-41ed-8879-d7dd8c463c56" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220016Z:910ed430-f72a-41ed-8879-d7dd8c463c56" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "658fb7b1-0498-4f13-b4b2-5a66c7afb79a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11770" - ], - "x-ms-correlation-request-id": [ - "325a47cc-f83a-4145-ab76-b25e914d4c12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220016Z:325a47cc-f83a-4145-ab76-b25e914d4c12" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e83d7df4-f100-4330-aa26-7282c74e26ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11769" - ], - "x-ms-correlation-request-id": [ - "47816278-3b60-45e0-9600-6d4327f47f26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220016Z:47816278-3b60-45e0-9600-6d4327f47f26" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1059f9bb-ddb4-4268-9b13-98aaf6e9f34c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11768" - ], - "x-ms-correlation-request-id": [ - "5da77449-3742-462a-9f70-fdfc788281ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220016Z:5da77449-3742-462a-9f70-fdfc788281ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f62201d-45f0-4857-a2d8-c0aacea20500" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11767" - ], - "x-ms-correlation-request-id": [ - "6519976a-73ce-4471-b8d6-41f9cc642953" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220016Z:6519976a-73ce-4471-b8d6-41f9cc642953" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa0f9b01-29c9-4d40-9e67-0c744c5dd747" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11766" - ], - "x-ms-correlation-request-id": [ - "be4db369-5ce5-4343-a601-3fdd2ccbf757" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220016Z:be4db369-5ce5-4343-a601-3fdd2ccbf757" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d5c5564-731a-468b-ad72-626f28972767" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11765" - ], - "x-ms-correlation-request-id": [ - "f0495c2d-76c1-4485-abb2-1b2bb71e4978" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220017Z:f0495c2d-76c1-4485-abb2-1b2bb71e4978" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b3f06a85-170f-4195-ac91-ed34c4cc68a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11764" - ], - "x-ms-correlation-request-id": [ - "d5764464-7f9a-46b9-9be7-ecd5313dbe6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220017Z:d5764464-7f9a-46b9-9be7-ecd5313dbe6d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76599ea1-5568-43e2-9f3a-5cebc2c80d35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11763" - ], - "x-ms-correlation-request-id": [ - "8aafe405-feea-433e-8d64-a02ad0dbfdc5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220017Z:8aafe405-feea-433e-8d64-a02ad0dbfdc5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b515752-53d8-4d5c-b698-2232a82bd509" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11762" - ], - "x-ms-correlation-request-id": [ - "8772964e-8cd2-404e-a5ed-7d357a3fae2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220017Z:8772964e-8cd2-404e-a5ed-7d357a3fae2c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e52669eb-17f1-419c-a1af-2e9ba25a19d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11761" - ], - "x-ms-correlation-request-id": [ - "48f01839-5a5c-4a84-8bb4-aa6ba60a8ff4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220017Z:48f01839-5a5c-4a84-8bb4-aa6ba60a8ff4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de58f9b7-e49a-45cd-bacd-f4d1548cd279" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11760" - ], - "x-ms-correlation-request-id": [ - "e8c35b4e-db7a-4c3c-a04e-10954128f1d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220017Z:e8c35b4e-db7a-4c3c-a04e-10954128f1d0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e7a27f5-da56-4da7-a613-ea0df753167e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11759" - ], - "x-ms-correlation-request-id": [ - "ec7c3830-2506-4184-9250-b98cae7cfc96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220018Z:ec7c3830-2506-4184-9250-b98cae7cfc96" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e03ea4f-a819-49bf-9ad3-7f16e9c860c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11758" - ], - "x-ms-correlation-request-id": [ - "5ec5adc8-ba99-4f83-b50e-e77d96476590" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220018Z:5ec5adc8-ba99-4f83-b50e-e77d96476590" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62141037-71bc-4c17-8bb2-ba5486bddd26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11757" - ], - "x-ms-correlation-request-id": [ - "4bc7139b-e159-4167-a1a1-de5d120f4601" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220018Z:4bc7139b-e159-4167-a1a1-de5d120f4601" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "546efd69-1d7d-45e2-a2d5-37991e55c534" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11756" - ], - "x-ms-correlation-request-id": [ - "9024d31f-e456-49ad-a9ff-acd60dcb2c59" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220018Z:9024d31f-e456-49ad-a9ff-acd60dcb2c59" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c96b532a-c1c9-4a41-9246-a1ffc556b297" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11755" - ], - "x-ms-correlation-request-id": [ - "d3696538-1cbb-4292-826f-d6c8d002a0ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220018Z:d3696538-1cbb-4292-826f-d6c8d002a0ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38491881-0421-41e0-9170-7a69080ce682" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11754" - ], - "x-ms-correlation-request-id": [ - "b9b53afa-8814-46c6-83f5-8749f00c090d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220018Z:b9b53afa-8814-46c6-83f5-8749f00c090d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6dc2c6b-2354-4703-97d4-d38122822681" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11753" - ], - "x-ms-correlation-request-id": [ - "0f7a5837-68b5-4c5c-862f-af988842ce76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220019Z:0f7a5837-68b5-4c5c-862f-af988842ce76" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4a20a84-3b54-48eb-9f77-07426d91f2f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11752" - ], - "x-ms-correlation-request-id": [ - "b39a00c1-0752-4d54-b63c-c25979aad64d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220019Z:b39a00c1-0752-4d54-b63c-c25979aad64d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a41609e-29b1-4240-a926-0c70045718fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11751" - ], - "x-ms-correlation-request-id": [ - "cd9b4f25-0b55-4ed1-9087-cba7acead2dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220019Z:cd9b4f25-0b55-4ed1-9087-cba7acead2dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c29f3dea-ec5d-46ec-a20c-3b61b5d4af20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11750" - ], - "x-ms-correlation-request-id": [ - "a4015526-44b9-4de4-9040-01ff24e3564e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220019Z:a4015526-44b9-4de4-9040-01ff24e3564e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41200b45-2a29-4ad0-b327-0d478ca6076f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11749" - ], - "x-ms-correlation-request-id": [ - "48210a3d-cce8-4a5c-bb5d-7e37275e40d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220019Z:48210a3d-cce8-4a5c-bb5d-7e37275e40d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94b5ead8-2532-4a32-b393-1d46c3e681e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11748" - ], - "x-ms-correlation-request-id": [ - "5e61deee-e473-4060-9ee0-cfda393ef9ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220020Z:5e61deee-e473-4060-9ee0-cfda393ef9ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9fa3985-3529-439f-8b82-458654e60d3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11747" - ], - "x-ms-correlation-request-id": [ - "f6b51f6e-4126-42dc-8a8b-0fd900adaab4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220020Z:f6b51f6e-4126-42dc-8a8b-0fd900adaab4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efa541ee-7cc3-49ed-96e4-6c37f88e7232" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11746" - ], - "x-ms-correlation-request-id": [ - "2f4b55ae-ea9d-44e7-9716-03921be06c88" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220020Z:2f4b55ae-ea9d-44e7-9716-03921be06c88" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4e8c347-aeed-40dd-8ee6-1f2cd562a11a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11745" - ], - "x-ms-correlation-request-id": [ - "0b9bef64-46fe-42d4-9ef4-73a03de16545" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220020Z:0b9bef64-46fe-42d4-9ef4-73a03de16545" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3e78fc9-d8ab-41c4-8467-b931bfac8d54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11744" - ], - "x-ms-correlation-request-id": [ - "133e88ac-ae81-40bf-97c5-c84ea35e5ccc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220020Z:133e88ac-ae81-40bf-97c5-c84ea35e5ccc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "21c5627a-495b-4c9e-8657-d6773f53bb8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11743" - ], - "x-ms-correlation-request-id": [ - "257b57a3-55ca-46c4-9fb4-7aca5239394c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220021Z:257b57a3-55ca-46c4-9fb4-7aca5239394c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4324ec1-9060-4e8e-bd2f-f9bd4f923f31" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11742" - ], - "x-ms-correlation-request-id": [ - "27da9de7-cc09-4c7b-9919-856490c7efb0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220021Z:27da9de7-cc09-4c7b-9919-856490c7efb0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "648c64b5-0f1d-480a-9ebf-e805fa716aef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11741" - ], - "x-ms-correlation-request-id": [ - "acfc8884-bdb7-41ed-9b23-b40cb1bfd167" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220021Z:acfc8884-bdb7-41ed-9b23-b40cb1bfd167" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2553b8ad-8f2c-4974-bd86-d7e83cad8400" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11740" - ], - "x-ms-correlation-request-id": [ - "b3eac379-ca45-4109-89c3-cd8289c1f153" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220021Z:b3eac379-ca45-4109-89c3-cd8289c1f153" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d21165b3-ff33-4202-8969-15a59bd71381" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11739" - ], - "x-ms-correlation-request-id": [ - "8cf8a9a2-44a7-4c56-b902-e0cc7179f4e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220021Z:8cf8a9a2-44a7-4c56-b902-e0cc7179f4e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6eaf88c-d390-43a6-bd20-b265eec52346" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11738" - ], - "x-ms-correlation-request-id": [ - "42c9559e-68b4-4fa4-b2bc-1764db7f6724" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220021Z:42c9559e-68b4-4fa4-b2bc-1764db7f6724" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e9b18696-2387-4d83-8363-c6acbde53d00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11737" - ], - "x-ms-correlation-request-id": [ - "96410baf-8260-4a05-97bd-735b27d60f4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220022Z:96410baf-8260-4a05-97bd-735b27d60f4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ca46abf-11c1-4fbd-8aa6-4badf43b40f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11736" - ], - "x-ms-correlation-request-id": [ - "6037cdfe-0f93-4228-9556-1a26629da875" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220022Z:6037cdfe-0f93-4228-9556-1a26629da875" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "499d6c92-0c51-4a38-b5a2-eefc92759fc8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11735" - ], - "x-ms-correlation-request-id": [ - "0ebfabf9-3014-4548-86f9-334af3ea04de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220022Z:0ebfabf9-3014-4548-86f9-334af3ea04de" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "611185ab-44ba-4c37-bd6f-85e0172f20ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11734" - ], - "x-ms-correlation-request-id": [ - "c80491c0-2b20-45de-a0e7-e800aec3348d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220022Z:c80491c0-2b20-45de-a0e7-e800aec3348d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a247d6ac-70f2-47ef-85c9-6cb22d9b21aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11733" - ], - "x-ms-correlation-request-id": [ - "1bdb18e0-a6ad-4f6b-81fa-1b791a046c4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220022Z:1bdb18e0-a6ad-4f6b-81fa-1b791a046c4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a943f72-1a78-4fb6-9d51-27993ce68c5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11732" - ], - "x-ms-correlation-request-id": [ - "cac2f21b-304e-44f8-affe-e001b4d045c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220023Z:cac2f21b-304e-44f8-affe-e001b4d045c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a56f8090-c5e6-4a98-befa-13e19755b909" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11731" - ], - "x-ms-correlation-request-id": [ - "72d84cc2-7763-4558-af63-38a782bb2230" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220023Z:72d84cc2-7763-4558-af63-38a782bb2230" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "55c13b0f-6527-495b-88a0-c3e327d0406a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11730" - ], - "x-ms-correlation-request-id": [ - "b71e67b5-b3cc-4d68-8af2-ba3e10aff7f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220023Z:b71e67b5-b3cc-4d68-8af2-ba3e10aff7f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d66dfba4-18f6-4ccc-ba07-147ed9250c83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11729" - ], - "x-ms-correlation-request-id": [ - "fd3cfe04-fdab-4dbe-b519-c02ad8567605" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220023Z:fd3cfe04-fdab-4dbe-b519-c02ad8567605" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d0d7773-eb2d-4860-aabf-2078c11e0d36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11728" - ], - "x-ms-correlation-request-id": [ - "65a74aac-793c-49b8-b730-2084a1659378" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220023Z:65a74aac-793c-49b8-b730-2084a1659378" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "805d1472-b066-4357-8c93-aa603aaba9c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11727" - ], - "x-ms-correlation-request-id": [ - "93422ae9-3515-481e-a928-e634cff21de2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220023Z:93422ae9-3515-481e-a928-e634cff21de2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9536df51-3684-4f5b-a43e-c432edd9485c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11726" - ], - "x-ms-correlation-request-id": [ - "e4a19b75-9f21-49f3-8cc6-94e18d836d32" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220024Z:e4a19b75-9f21-49f3-8cc6-94e18d836d32" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c37e96a5-87a7-4d87-9c6f-779168df5105" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11725" - ], - "x-ms-correlation-request-id": [ - "8d86a861-d1ea-4538-9a0e-1f683ea63b7d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220024Z:8d86a861-d1ea-4538-9a0e-1f683ea63b7d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c19f76cd-1e91-482f-9550-727d7c2e33ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11724" - ], - "x-ms-correlation-request-id": [ - "c6426b69-91f9-41f0-9677-5160c472af05" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220024Z:c6426b69-91f9-41f0-9677-5160c472af05" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6daee552-1a1e-4a33-b549-95351a7a2711" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11723" - ], - "x-ms-correlation-request-id": [ - "d6ad22bf-cb01-4e94-9762-3dee625afcbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220024Z:d6ad22bf-cb01-4e94-9762-3dee625afcbf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76782822-3d73-48ab-a261-e3375da7879b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11722" - ], - "x-ms-correlation-request-id": [ - "0c16cdc9-a9a3-4585-be43-38ce6edceedd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220024Z:0c16cdc9-a9a3-4585-be43-38ce6edceedd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0febe9b-6921-4704-9687-275e95f02179" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11721" - ], - "x-ms-correlation-request-id": [ - "767da308-3d0e-4303-9f16-cd112f9ef1df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220024Z:767da308-3d0e-4303-9f16-cd112f9ef1df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61ecceec-f9ff-4b20-a5d9-057ae4c34eff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11720" - ], - "x-ms-correlation-request-id": [ - "a3311ca1-3941-4e45-81a0-3aa445c36f70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220025Z:a3311ca1-3941-4e45-81a0-3aa445c36f70" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c211b896-6d99-431f-973d-15c33a9f5f4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11719" - ], - "x-ms-correlation-request-id": [ - "6506cc40-77b5-412a-88e3-088970839203" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220025Z:6506cc40-77b5-412a-88e3-088970839203" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1048fc2-48c1-4dac-a31a-9dd7a38f6d83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11718" - ], - "x-ms-correlation-request-id": [ - "2775851b-55b5-4192-8447-43175f4d0883" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220025Z:2775851b-55b5-4192-8447-43175f4d0883" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2eaf9e6-da63-4747-aafd-01ce785753bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11717" - ], - "x-ms-correlation-request-id": [ - "19473b74-8c64-4546-bd41-8d7103434a7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220025Z:19473b74-8c64-4546-bd41-8d7103434a7a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67fd4dd4-ecfe-4195-8f08-1d12991f39a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11716" - ], - "x-ms-correlation-request-id": [ - "10f9369a-8306-4a93-a33b-fce9146969cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220025Z:10f9369a-8306-4a93-a33b-fce9146969cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b270f15-0b76-47ec-af18-2c10b00dd0d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11715" - ], - "x-ms-correlation-request-id": [ - "77b76965-7ea3-4f31-ace9-c0c999c4aff0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220025Z:77b76965-7ea3-4f31-ace9-c0c999c4aff0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b380acca-ff48-4bf8-b641-b01ed795e336" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11714" - ], - "x-ms-correlation-request-id": [ - "823e4116-bfa0-4861-8186-bb074eea8fa2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220026Z:823e4116-bfa0-4861-8186-bb074eea8fa2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f088598b-a9c5-4478-8ee3-cef2cf4c96f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11713" - ], - "x-ms-correlation-request-id": [ - "fd72cbd9-e4ff-4d5d-ab50-265997f5251b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220026Z:fd72cbd9-e4ff-4d5d-ab50-265997f5251b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46d78371-ad5f-426e-bf07-94b64d9694df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11712" - ], - "x-ms-correlation-request-id": [ - "5bcd86e3-187b-4ba5-bb95-072d7a6b0cfd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220026Z:5bcd86e3-187b-4ba5-bb95-072d7a6b0cfd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "564dc48c-8112-45f7-8adc-0c9429da2785" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11711" - ], - "x-ms-correlation-request-id": [ - "02e5bf13-20ea-4bec-bda2-d8e6b283f296" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220026Z:02e5bf13-20ea-4bec-bda2-d8e6b283f296" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03eddbb2-2e25-4cf4-b528-b45d114dbc30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11710" - ], - "x-ms-correlation-request-id": [ - "90a54a08-627c-4067-a048-4c15b8da96df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220026Z:90a54a08-627c-4067-a048-4c15b8da96df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1b788e4-aca8-4257-abd4-f25f1f7e4eee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11709" - ], - "x-ms-correlation-request-id": [ - "10bde6be-add1-4f41-a986-24bdd468ce29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220026Z:10bde6be-add1-4f41-a986-24bdd468ce29" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "864d7a08-9ea2-4fc5-bb90-2ef9e9c9d30d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11708" - ], - "x-ms-correlation-request-id": [ - "a28c1610-5787-4ea6-b24b-b1e76c2fd0a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220027Z:a28c1610-5787-4ea6-b24b-b1e76c2fd0a2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "875b6f6e-1def-46b1-8def-74cc6aafd566" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11707" - ], - "x-ms-correlation-request-id": [ - "4d6709c4-f898-456b-9dd8-ec4cb142dd95" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220027Z:4d6709c4-f898-456b-9dd8-ec4cb142dd95" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee1c996c-114c-48f0-b409-c06116c45fe6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11706" - ], - "x-ms-correlation-request-id": [ - "6922d05d-f40c-4f5a-b4ba-d8a2fcb2d26a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220027Z:6922d05d-f40c-4f5a-b4ba-d8a2fcb2d26a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd138793-dd94-43cb-8e39-5c17fdfa2773" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11705" - ], - "x-ms-correlation-request-id": [ - "0dddd9e7-c5f6-4c8d-a31e-8a726419484f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220027Z:0dddd9e7-c5f6-4c8d-a31e-8a726419484f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ef1e855-4720-4734-a0e2-4b109e0aeef4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11704" - ], - "x-ms-correlation-request-id": [ - "0ad1cfb0-9f91-4f8d-8211-042e08e06182" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220027Z:0ad1cfb0-9f91-4f8d-8211-042e08e06182" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c63acfd-5eea-4b78-a52b-4f2ed485bf37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11703" - ], - "x-ms-correlation-request-id": [ - "4144409b-0de4-4aa7-bc89-34d07559be2b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220027Z:4144409b-0de4-4aa7-bc89-34d07559be2b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1dd2314f-e54f-4269-9796-6cf203bb890f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11702" - ], - "x-ms-correlation-request-id": [ - "dfd52a19-2774-4cca-a7c6-4c479cfabc31" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220027Z:dfd52a19-2774-4cca-a7c6-4c479cfabc31" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "071f4bf5-67f4-4024-ab08-6d41e8e1ccc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11701" - ], - "x-ms-correlation-request-id": [ - "9ba41440-a6e3-47c2-b402-1901275e7194" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220028Z:9ba41440-a6e3-47c2-b402-1901275e7194" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "755c8038-2ba9-43fe-8b76-0d78b2ca7816" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11700" - ], - "x-ms-correlation-request-id": [ - "9a722cc3-8fda-493d-aea1-1db011d8fb9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220028Z:9a722cc3-8fda-493d-aea1-1db011d8fb9f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0803119f-3930-4998-a853-448dbe9ff2ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11699" - ], - "x-ms-correlation-request-id": [ - "5f59a09a-d7fe-47ce-9b81-c938a7ba2028" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220028Z:5f59a09a-d7fe-47ce-9b81-c938a7ba2028" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "042cf33d-896d-42d0-ad86-894c9af0bb95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11698" - ], - "x-ms-correlation-request-id": [ - "4651c904-f5f8-4055-a865-87af0493e628" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220028Z:4651c904-f5f8-4055-a865-87af0493e628" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee85d7ef-947d-4281-ab7d-4bafd4e1f9cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11697" - ], - "x-ms-correlation-request-id": [ - "f416e80b-b9dc-4680-8759-a47d8970afe4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220028Z:f416e80b-b9dc-4680-8759-a47d8970afe4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97bfdb55-d184-4089-abfc-3dc1f40b12f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11696" - ], - "x-ms-correlation-request-id": [ - "f2edee18-6d9c-47fc-ac82-eccce3fda112" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220028Z:f2edee18-6d9c-47fc-ac82-eccce3fda112" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4998a8d1-aa91-43c3-91d4-18606d235d9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11695" - ], - "x-ms-correlation-request-id": [ - "a414fb4a-8437-40d2-9120-2a1b0419a098" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220028Z:a414fb4a-8437-40d2-9120-2a1b0419a098" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94d0ad36-6ab6-408a-8201-8eb5d5ec7517" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11694" - ], - "x-ms-correlation-request-id": [ - "6628e099-982e-4afd-9443-afded0e49074" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220029Z:6628e099-982e-4afd-9443-afded0e49074" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6bffe6f-610e-4c63-9284-058e8baae115" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11693" - ], - "x-ms-correlation-request-id": [ - "b47ab26e-14f6-42c7-9e74-71242a7866c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220029Z:b47ab26e-14f6-42c7-9e74-71242a7866c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a54d2b98-6b10-4c74-8998-1291506040a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11692" - ], - "x-ms-correlation-request-id": [ - "1ce480ea-f88f-49de-8332-83486d0ddb69" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220029Z:1ce480ea-f88f-49de-8332-83486d0ddb69" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "429d8285-dc3e-45af-81ff-0799063178c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11691" - ], - "x-ms-correlation-request-id": [ - "5e26aaf9-9cb1-4a26-9c69-2d1abbb5d6e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220029Z:5e26aaf9-9cb1-4a26-9c69-2d1abbb5d6e0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f904f60-0421-4e1b-957c-5c47d84598b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11690" - ], - "x-ms-correlation-request-id": [ - "2d0f07b2-a663-4c9a-98a4-4efc10f04a22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220029Z:2d0f07b2-a663-4c9a-98a4-4efc10f04a22" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3032108-4b53-4de1-9775-d8837356d60f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11689" - ], - "x-ms-correlation-request-id": [ - "87f01549-b5f3-43d9-8296-1327122e3b6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220029Z:87f01549-b5f3-43d9-8296-1327122e3b6d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17d3e38c-edc8-4f9e-9003-5fc238b30d6b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11688" - ], - "x-ms-correlation-request-id": [ - "c8b65bba-8255-4f37-bd9d-279709a380ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220030Z:c8b65bba-8255-4f37-bd9d-279709a380ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2efdd61f-34f3-457f-ad5d-b7973fc20843" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11687" - ], - "x-ms-correlation-request-id": [ - "e70b124d-56d6-4bb1-a93d-a69d7e4401b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220030Z:e70b124d-56d6-4bb1-a93d-a69d7e4401b1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45482f45-3abe-48d8-9220-9aad7f31b977" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11686" - ], - "x-ms-correlation-request-id": [ - "7933649f-ccde-469f-b0fa-7373b5a0904b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220030Z:7933649f-ccde-469f-b0fa-7373b5a0904b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a8128cb-7f11-4be3-8b8e-ebaf885115ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11685" - ], - "x-ms-correlation-request-id": [ - "4aea31d6-a19d-4fb4-82e5-e8780aaaed3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220030Z:4aea31d6-a19d-4fb4-82e5-e8780aaaed3c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2289bc6-d139-4135-80a2-2ecadbd0488c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11684" - ], - "x-ms-correlation-request-id": [ - "cf9e0afe-333e-400c-8742-bb73a89402c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220030Z:cf9e0afe-333e-400c-8742-bb73a89402c0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "09d0b98f-4ae4-4154-aa12-99f9cd2dd15f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11683" - ], - "x-ms-correlation-request-id": [ - "ce241d4b-c98d-4db4-8ef4-99e61f98094e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220030Z:ce241d4b-c98d-4db4-8ef4-99e61f98094e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce54e433-8032-4c8d-acee-63cb42ade906" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11682" - ], - "x-ms-correlation-request-id": [ - "c85d7d4d-49ff-4a55-a91b-0d9c40cc100b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220030Z:c85d7d4d-49ff-4a55-a91b-0d9c40cc100b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71533591-5eb5-4885-8cf9-60dd8df4294c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11681" - ], - "x-ms-correlation-request-id": [ - "39e13d8e-51db-4e86-beb0-a2cffedcd6a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220031Z:39e13d8e-51db-4e86-beb0-a2cffedcd6a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c33781d8-e131-4bdb-a8dc-5d49563b91c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11680" - ], - "x-ms-correlation-request-id": [ - "a10831b8-d185-4b91-9a6c-cfb8cffcc6b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220031Z:a10831b8-d185-4b91-9a6c-cfb8cffcc6b9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45701c87-b30f-4f5a-9598-22e14ecbc751" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11679" - ], - "x-ms-correlation-request-id": [ - "0467fa45-8567-4539-ac77-0db1fb8b41a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220031Z:0467fa45-8567-4539-ac77-0db1fb8b41a6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8929aaa-e997-4346-a92e-83427c58f9c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11678" - ], - "x-ms-correlation-request-id": [ - "3ec63cf7-d7c6-44f6-bf8b-a2b9a549ae77" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220031Z:3ec63cf7-d7c6-44f6-bf8b-a2b9a549ae77" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0738d105-1096-4e44-8c55-a0f134145aa9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11677" - ], - "x-ms-correlation-request-id": [ - "5f451a77-c52a-4321-ac63-1b5061fe3ccc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220031Z:5f451a77-c52a-4321-ac63-1b5061fe3ccc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "852a3407-7f74-4a55-a442-dc0a4880ce38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11676" - ], - "x-ms-correlation-request-id": [ - "e4231ef2-d6ee-4689-9532-91b882878780" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220031Z:e4231ef2-d6ee-4689-9532-91b882878780" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4dc71ee-b387-41fa-8df1-8b43536e08d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11675" - ], - "x-ms-correlation-request-id": [ - "e01d777f-2245-4a7e-99fb-a65108b991f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220032Z:e01d777f-2245-4a7e-99fb-a65108b991f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "400ac0d8-470a-4be2-9006-f6581b2c50a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11674" - ], - "x-ms-correlation-request-id": [ - "22782a2e-22c7-49c1-917f-924b04feffab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220032Z:22782a2e-22c7-49c1-917f-924b04feffab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6d76358-7b6e-47c2-b814-c4d7832ed2f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11673" - ], - "x-ms-correlation-request-id": [ - "070955d8-884e-4c30-b463-bc1263556d57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220032Z:070955d8-884e-4c30-b463-bc1263556d57" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f47faf54-e623-4dac-b449-b24c4394cfa9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11672" - ], - "x-ms-correlation-request-id": [ - "7ec55add-647e-4261-870c-dff7c87a5357" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220032Z:7ec55add-647e-4261-870c-dff7c87a5357" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd3b6b7a-c629-4b8a-b33e-c35bdbd61151" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11671" - ], - "x-ms-correlation-request-id": [ - "80633e9f-3db6-4bb4-a6e1-e436d7f04685" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220032Z:80633e9f-3db6-4bb4-a6e1-e436d7f04685" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89fa31b1-8357-4fb0-93b2-8bc2d75fac98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11670" - ], - "x-ms-correlation-request-id": [ - "6e2730f0-ac44-40ad-922b-628f3ddc4ca4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220032Z:6e2730f0-ac44-40ad-922b-628f3ddc4ca4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c68df5e6-a711-4a33-97f7-17d6f668a9a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11669" - ], - "x-ms-correlation-request-id": [ - "02101c0a-ea98-4945-abc1-406e32ecab8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220033Z:02101c0a-ea98-4945-abc1-406e32ecab8e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "442f07d0-0201-41b2-984c-04112151aee9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11668" - ], - "x-ms-correlation-request-id": [ - "628bd241-9ff2-4898-a812-98f6cb25bb08" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220033Z:628bd241-9ff2-4898-a812-98f6cb25bb08" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea67407d-8d14-4615-98a9-de9a149c726a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11667" - ], - "x-ms-correlation-request-id": [ - "78528671-246a-4701-87ae-78eab60bc4b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220033Z:78528671-246a-4701-87ae-78eab60bc4b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e805a48c-fe27-44f9-8a90-4a1c02b73e3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11666" - ], - "x-ms-correlation-request-id": [ - "b098b75a-2d30-4084-98fa-bd15390b97a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220033Z:b098b75a-2d30-4084-98fa-bd15390b97a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f5ff713-cc5d-4120-9b35-897015b24373" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11665" - ], - "x-ms-correlation-request-id": [ - "36ecda22-eccd-434e-a39a-4a7b05c62867" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220033Z:36ecda22-eccd-434e-a39a-4a7b05c62867" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "726fdacf-0ebc-40de-8b6e-8e0a84573c26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11664" - ], - "x-ms-correlation-request-id": [ - "52afe75a-9c64-4624-a5b8-7fa62cb3d285" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220033Z:52afe75a-9c64-4624-a5b8-7fa62cb3d285" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48e309b1-fe02-4013-8b4b-013ddca4804c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11663" - ], - "x-ms-correlation-request-id": [ - "ea2fa5a1-4f72-44e6-af06-89481d06c776" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220034Z:ea2fa5a1-4f72-44e6-af06-89481d06c776" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd6d2c64-4c4a-405a-a736-02a6d65fa513" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11662" - ], - "x-ms-correlation-request-id": [ - "b54c4421-c928-4c98-9d8e-399575e69f28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220034Z:b54c4421-c928-4c98-9d8e-399575e69f28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e95801b-4146-4106-b7aa-4b916ed1e3ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11661" - ], - "x-ms-correlation-request-id": [ - "7b640343-704e-4b12-bc8f-2bf09dcfa1b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220034Z:7b640343-704e-4b12-bc8f-2bf09dcfa1b9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f0186cb-cb69-4a66-b839-e166a4697dcb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11660" - ], - "x-ms-correlation-request-id": [ - "318ed417-109d-46a4-bed0-d68c7eda1073" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220034Z:318ed417-109d-46a4-bed0-d68c7eda1073" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb7b52da-ba9f-40a1-94db-f0257d422a39" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11659" - ], - "x-ms-correlation-request-id": [ - "7947c002-2685-4f09-88dd-6130f7616435" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220034Z:7947c002-2685-4f09-88dd-6130f7616435" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b35ee76-c159-4333-8d60-682d7d17a809" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11658" - ], - "x-ms-correlation-request-id": [ - "7b52164d-ee42-4de2-9cf2-64f575502352" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220035Z:7b52164d-ee42-4de2-9cf2-64f575502352" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3931645-fdd7-414a-9b9c-1cba31643a36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11657" - ], - "x-ms-correlation-request-id": [ - "e15d8981-66bb-4d35-90c8-4078f2ab188e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220035Z:e15d8981-66bb-4d35-90c8-4078f2ab188e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a2e9ad8-040f-47f2-a046-81a8fddf7244" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11656" - ], - "x-ms-correlation-request-id": [ - "126152fa-96a6-4a95-8f95-8f88392d80d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220035Z:126152fa-96a6-4a95-8f95-8f88392d80d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "113c727e-8ab4-4299-8b1d-bd1f39855351" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11655" - ], - "x-ms-correlation-request-id": [ - "9ff1f4ac-50bf-4504-86e4-697931fb3ecf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220035Z:9ff1f4ac-50bf-4504-86e4-697931fb3ecf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc646dde-34a9-4d59-873d-8c6d5d2a4493" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11654" - ], - "x-ms-correlation-request-id": [ - "9721b4f2-97e5-45dd-b926-f7650fa505cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220035Z:9721b4f2-97e5-45dd-b926-f7650fa505cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bec5bba5-405e-4ada-bb50-4f7ebbb1e4ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11653" - ], - "x-ms-correlation-request-id": [ - "1db93df8-060d-47ca-a9a3-da2b53e526fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220035Z:1db93df8-060d-47ca-a9a3-da2b53e526fc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aeaee92c-579c-4228-8e58-db9ee4834a69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11652" - ], - "x-ms-correlation-request-id": [ - "d2cda27f-53e8-4617-a08a-864ab7e5cdea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220036Z:d2cda27f-53e8-4617-a08a-864ab7e5cdea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ebd9b3b8-48e1-4fb3-af2e-ae82cc9fe01e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11651" - ], - "x-ms-correlation-request-id": [ - "fbe24950-9922-4553-9e0d-ac4a010e1850" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220036Z:fbe24950-9922-4553-9e0d-ac4a010e1850" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8b7547d-dc0b-4d83-bf82-59555f7c7776" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11650" - ], - "x-ms-correlation-request-id": [ - "db178dc9-7cf7-4639-8424-325aba3a3d8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220036Z:db178dc9-7cf7-4639-8424-325aba3a3d8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2230253b-8c51-49c1-9946-5a15a1f4465a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11649" - ], - "x-ms-correlation-request-id": [ - "fa53c67c-eeb5-4490-9186-76b6ef0766de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220036Z:fa53c67c-eeb5-4490-9186-76b6ef0766de" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53f1fd24-86dd-4fe1-a7d6-4b52ef924cfc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11648" - ], - "x-ms-correlation-request-id": [ - "4f394fba-ddd3-4be1-ac1c-b35e2fea6935" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220036Z:4f394fba-ddd3-4be1-ac1c-b35e2fea6935" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89b7bf7e-6b5f-4404-82b5-aa914919a0cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11647" - ], - "x-ms-correlation-request-id": [ - "9908e04a-10d7-47a6-bf98-82be8d9e2044" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220036Z:9908e04a-10d7-47a6-bf98-82be8d9e2044" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e535102a-14db-4992-b46d-8ca221bd120d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11646" - ], - "x-ms-correlation-request-id": [ - "7370c12f-9921-41b6-b9b8-0bffc0ae42f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220036Z:7370c12f-9921-41b6-b9b8-0bffc0ae42f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d34bc754-ff6e-483e-9f69-3077685ee012" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11645" - ], - "x-ms-correlation-request-id": [ - "e51bb8b4-c236-4609-a98c-7a14010c2174" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220036Z:e51bb8b4-c236-4609-a98c-7a14010c2174" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "854b1f40-332a-41ce-a3bf-e45fc963d983" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11644" - ], - "x-ms-correlation-request-id": [ - "fe4419b5-24d8-439e-bf7f-9990a1dde62a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220037Z:fe4419b5-24d8-439e-bf7f-9990a1dde62a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "766f5d81-60bd-4b16-8ae7-fe94249267ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11643" - ], - "x-ms-correlation-request-id": [ - "dd5e0cca-05d2-4167-8086-6e0f96516a1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220037Z:dd5e0cca-05d2-4167-8086-6e0f96516a1f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bd10fddf-9041-4766-aa1c-84c9226e76e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11642" - ], - "x-ms-correlation-request-id": [ - "73066ed6-f125-4117-92a6-a711aaf06fc5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220037Z:73066ed6-f125-4117-92a6-a711aaf06fc5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01d7ee11-d04f-4f4b-a3e5-95b2b2cf3d8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11641" - ], - "x-ms-correlation-request-id": [ - "72a5f4bf-14f5-4899-93d6-8e8d77715d32" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220037Z:72a5f4bf-14f5-4899-93d6-8e8d77715d32" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10ecd2ff-77ab-4c75-b33d-22ac09ebe62d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11640" - ], - "x-ms-correlation-request-id": [ - "ec7eee50-99a3-4ac6-b2bc-6e6b76af0cb3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220037Z:ec7eee50-99a3-4ac6-b2bc-6e6b76af0cb3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3136baa-0dee-4192-a72b-a6d43200ae4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11639" - ], - "x-ms-correlation-request-id": [ - "191ae865-82ba-407d-a7f2-1ac0faf9b9ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220038Z:191ae865-82ba-407d-a7f2-1ac0faf9b9ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "428f3479-7e93-4836-b15a-b8aed7cead45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11638" - ], - "x-ms-correlation-request-id": [ - "aad55629-42e4-4a5b-9332-b445c23e8ca7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220038Z:aad55629-42e4-4a5b-9332-b445c23e8ca7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4987493b-6a08-4a67-9c87-545b8b50024e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11637" - ], - "x-ms-correlation-request-id": [ - "94bd1c8c-afb6-40b0-8d17-1d76d7d9e40a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220038Z:94bd1c8c-afb6-40b0-8d17-1d76d7d9e40a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18caff92-1951-4254-95fa-b5fe66d50347" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11636" - ], - "x-ms-correlation-request-id": [ - "346dbb9e-7f58-4c9d-a32e-9aef0e470b69" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220038Z:346dbb9e-7f58-4c9d-a32e-9aef0e470b69" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a4aba48-0f96-4001-bc14-abfa474acec8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11635" - ], - "x-ms-correlation-request-id": [ - "5605ff89-3951-4aea-b659-615eac80a021" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220038Z:5605ff89-3951-4aea-b659-615eac80a021" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5928cd83-b47f-4018-9163-25a2a8d7010c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11634" - ], - "x-ms-correlation-request-id": [ - "2929ffd7-2bba-4804-8c7c-ebadc91c1065" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220038Z:2929ffd7-2bba-4804-8c7c-ebadc91c1065" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0c5e2ecc-ce06-45ac-ad01-820f68167454" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11633" - ], - "x-ms-correlation-request-id": [ - "680850f8-5798-4fc1-bf8d-b0c5f2fd900b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220039Z:680850f8-5798-4fc1-bf8d-b0c5f2fd900b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "946f722d-002b-474e-9d16-3a537c358239" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11632" - ], - "x-ms-correlation-request-id": [ - "32140b37-9eb8-4900-95dd-a8e41b511af1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220039Z:32140b37-9eb8-4900-95dd-a8e41b511af1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a073c47-2f80-4318-b4dd-9b11ec6a53bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11631" - ], - "x-ms-correlation-request-id": [ - "90823a04-5c31-42c5-9c66-4bde5fc762ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220039Z:90823a04-5c31-42c5-9c66-4bde5fc762ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24d0f5d7-7918-4706-9161-76029e249ff3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11630" - ], - "x-ms-correlation-request-id": [ - "55c9d0dd-265b-48fe-a945-8a6507afad9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220039Z:55c9d0dd-265b-48fe-a945-8a6507afad9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d31f7be9-f270-4a81-bdf3-fd4d6d4fff14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11629" - ], - "x-ms-correlation-request-id": [ - "9bb3df57-5414-4893-bfc7-360d6a813b38" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220039Z:9bb3df57-5414-4893-bfc7-360d6a813b38" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0c462798-b01a-489a-93d8-cc0f950de762" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11628" - ], - "x-ms-correlation-request-id": [ - "edd9a35a-5906-4ec5-90d1-6025c27606a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220039Z:edd9a35a-5906-4ec5-90d1-6025c27606a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e3c04bf-9ec5-458b-a157-73e0d288a856" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11627" - ], - "x-ms-correlation-request-id": [ - "af8d2da1-ed6f-47bf-9ba9-01c22964c655" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220040Z:af8d2da1-ed6f-47bf-9ba9-01c22964c655" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a9e1a8a-5422-44d8-bac8-476bdf7cb2b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11626" - ], - "x-ms-correlation-request-id": [ - "efeb3210-43ad-4bbd-b934-14ddfee6436c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220040Z:efeb3210-43ad-4bbd-b934-14ddfee6436c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bcebaa1f-ddaa-4a2a-ac33-d82010d3236b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11625" - ], - "x-ms-correlation-request-id": [ - "8cf04a48-f00f-47fc-849e-6c901fcb2155" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220040Z:8cf04a48-f00f-47fc-849e-6c901fcb2155" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06ceb110-4c00-4b37-89cf-97d51e4c652d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11624" - ], - "x-ms-correlation-request-id": [ - "c5e328cb-2fc0-41eb-b6f9-519a945dcd1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220040Z:c5e328cb-2fc0-41eb-b6f9-519a945dcd1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44b7a417-b05e-4bf2-9e6b-2692057be8a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11623" - ], - "x-ms-correlation-request-id": [ - "aae31b17-15d9-44cb-a2b8-915167b4534a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220040Z:aae31b17-15d9-44cb-a2b8-915167b4534a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0f3c443-29a6-4a2b-b35a-46fc07846111" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11622" - ], - "x-ms-correlation-request-id": [ - "54904f24-4c69-4d2e-ab81-75eddff23517" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220040Z:54904f24-4c69-4d2e-ab81-75eddff23517" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ffcb2cd3-d72b-4981-b954-d6c8110894b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11621" - ], - "x-ms-correlation-request-id": [ - "2ad59acf-dcbd-4691-aeb1-a7a1bcaf303d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220040Z:2ad59acf-dcbd-4691-aeb1-a7a1bcaf303d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd331244-f578-412c-8488-2c4dcf5382f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11620" - ], - "x-ms-correlation-request-id": [ - "8e7291d8-aa2b-4142-ab00-8f35343a9659" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220041Z:8e7291d8-aa2b-4142-ab00-8f35343a9659" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8278cf03-e363-4b37-a4d6-92e6bc492169" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11619" - ], - "x-ms-correlation-request-id": [ - "937e1768-e1d6-4586-9386-e3e568449dd4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220041Z:937e1768-e1d6-4586-9386-e3e568449dd4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8164d8d8-4b0b-48ff-9c98-35faf516f7b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11618" - ], - "x-ms-correlation-request-id": [ - "c55b2fd8-610d-48b8-afd8-baf14e54050f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220041Z:c55b2fd8-610d-48b8-afd8-baf14e54050f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b387a31-e1dc-42b1-b0af-eb69c4b858d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11617" - ], - "x-ms-correlation-request-id": [ - "c896d14e-122f-477a-a5f4-f6861689ce88" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220041Z:c896d14e-122f-477a-a5f4-f6861689ce88" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6bd447b7-2172-4b37-8bbb-e9dea4a14e1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11616" - ], - "x-ms-correlation-request-id": [ - "33827552-eb9e-4fc9-9ce4-a36c7416f0db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220041Z:33827552-eb9e-4fc9-9ce4-a36c7416f0db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "deede262-513f-48cc-8d9e-4f02d1b89cee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11615" - ], - "x-ms-correlation-request-id": [ - "580f9fc0-2c68-41a6-8adb-baaa6abffd2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220041Z:580f9fc0-2c68-41a6-8adb-baaa6abffd2c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69b10b67-1d6e-4935-8d27-b59425ca6819" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11614" - ], - "x-ms-correlation-request-id": [ - "fe9d7153-fa3f-47c4-aeb3-de14c5656c7b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220042Z:fe9d7153-fa3f-47c4-aeb3-de14c5656c7b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7affc893-2c0c-4ca3-ac6f-1cad28500939" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11613" - ], - "x-ms-correlation-request-id": [ - "936af745-2e01-4380-9b0d-2f445e3eabf8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220042Z:936af745-2e01-4380-9b0d-2f445e3eabf8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d3120b6-8f45-4470-b1b9-cf19bcc3c870" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11612" - ], - "x-ms-correlation-request-id": [ - "f17a5188-c950-460e-b0bb-5517d6885d7d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220042Z:f17a5188-c950-460e-b0bb-5517d6885d7d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9c66438-0707-462d-899a-49e10eedd1d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11611" - ], - "x-ms-correlation-request-id": [ - "4aa79c1b-7d57-4df2-8f0b-d1baa598bc0f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220042Z:4aa79c1b-7d57-4df2-8f0b-d1baa598bc0f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41fcc3f6-2fcf-45b9-bead-baba2449abef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11610" - ], - "x-ms-correlation-request-id": [ - "2c215a78-c2fa-429d-837f-fc339c12be71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220042Z:2c215a78-c2fa-429d-837f-fc339c12be71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "094870de-d1a1-4a88-8ecf-fb2e71cd0459" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11609" - ], - "x-ms-correlation-request-id": [ - "0f1e029e-835e-4b53-9769-f950293ad540" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220042Z:0f1e029e-835e-4b53-9769-f950293ad540" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2df50b91-9c2b-4fb9-934b-06b4eeecb48e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11608" - ], - "x-ms-correlation-request-id": [ - "6e221e89-c67a-4471-a550-d31b96028355" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220042Z:6e221e89-c67a-4471-a550-d31b96028355" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0ed55d2-dbda-4847-a5dd-7f90f7d55e69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11607" - ], - "x-ms-correlation-request-id": [ - "ca0cc17b-a70d-4f05-aff5-0bb911b76b73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220043Z:ca0cc17b-a70d-4f05-aff5-0bb911b76b73" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1084ac8-ad2a-409f-93ab-bb6938f75a91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11606" - ], - "x-ms-correlation-request-id": [ - "db580ae8-e2bb-45d9-82fd-1b86bc323261" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220043Z:db580ae8-e2bb-45d9-82fd-1b86bc323261" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3278ebd-66f5-47d2-89e4-7299bc4e20ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11605" - ], - "x-ms-correlation-request-id": [ - "d89b84a4-5e01-48cf-9d72-e77efe590836" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220043Z:d89b84a4-5e01-48cf-9d72-e77efe590836" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "faa520e3-f4c3-4368-8e9b-00aa0763b9f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11604" - ], - "x-ms-correlation-request-id": [ - "38f9f667-ed52-4f78-a19c-2ecf2a094a6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220043Z:38f9f667-ed52-4f78-a19c-2ecf2a094a6c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d84ad1f3-7682-414a-82b4-089edd617d9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11603" - ], - "x-ms-correlation-request-id": [ - "b139776d-e8ef-4f4e-9549-c8f4e4dbbb4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220043Z:b139776d-e8ef-4f4e-9549-c8f4e4dbbb4e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80b98188-a58b-4d56-be54-288e3ad7b597" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11602" - ], - "x-ms-correlation-request-id": [ - "c9eaf4c1-c5eb-4e16-b78d-74dd597ea861" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220043Z:c9eaf4c1-c5eb-4e16-b78d-74dd597ea861" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ae13454-0bc3-47ec-a6d1-22ad198465e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11601" - ], - "x-ms-correlation-request-id": [ - "8e4701ac-d327-4c94-9b94-728c975dbb18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220044Z:8e4701ac-d327-4c94-9b94-728c975dbb18" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53094a72-0b65-4f56-bd7f-383015934e4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11600" - ], - "x-ms-correlation-request-id": [ - "29c9a71c-9526-4c08-9924-a1a90f4f1bbc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220044Z:29c9a71c-9526-4c08-9924-a1a90f4f1bbc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3fe30f2-b259-49e3-842a-5912a0592bef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11599" - ], - "x-ms-correlation-request-id": [ - "00a395fc-6cbe-47a3-aa4f-095908080233" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220044Z:00a395fc-6cbe-47a3-aa4f-095908080233" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ad384ac-9cf6-4cbd-913c-7370d7a95e12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11598" - ], - "x-ms-correlation-request-id": [ - "20d2736c-81d9-454b-baad-4079bd01bf1d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220044Z:20d2736c-81d9-454b-baad-4079bd01bf1d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94ee8a1d-c2a6-4392-8cf2-7fdafde6d9c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11597" - ], - "x-ms-correlation-request-id": [ - "c691e6c3-0e7e-4b38-a851-595eae18b676" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220044Z:c691e6c3-0e7e-4b38-a851-595eae18b676" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c9caed0-fe1a-4edf-a4ee-7527d45d0dc7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11596" - ], - "x-ms-correlation-request-id": [ - "c9ba9c0b-65eb-4bc4-b0a8-11d4b2039afb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220044Z:c9ba9c0b-65eb-4bc4-b0a8-11d4b2039afb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5210d72c-19f9-4a8a-9c8b-1c4565098a7f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11595" - ], - "x-ms-correlation-request-id": [ - "a0277340-cb40-4e2d-a75c-28f496f49e1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220045Z:a0277340-cb40-4e2d-a75c-28f496f49e1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f306a4d-20a4-45e4-9b07-17dbef2e80fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11594" - ], - "x-ms-correlation-request-id": [ - "e62a8e0b-9cd3-465c-90d7-874ff5cf8433" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220045Z:e62a8e0b-9cd3-465c-90d7-874ff5cf8433" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a882066-d74f-4717-ac5b-11af57bb9116" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11593" - ], - "x-ms-correlation-request-id": [ - "d86e33b0-e2ca-4d52-8288-19506a424db8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220045Z:d86e33b0-e2ca-4d52-8288-19506a424db8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2454d7fe-fe50-4ee7-bf28-d1d865fc0d86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11592" - ], - "x-ms-correlation-request-id": [ - "16f0c573-0554-4922-991e-3785b78bf7b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220045Z:16f0c573-0554-4922-991e-3785b78bf7b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "357360bf-2c3f-456e-ad4e-e2e9b2f0f45d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11591" - ], - "x-ms-correlation-request-id": [ - "be3b143e-be9b-4430-a22e-e5216cd42bdd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220045Z:be3b143e-be9b-4430-a22e-e5216cd42bdd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b898d043-b406-4890-bb2c-bbf870e5cc34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11590" - ], - "x-ms-correlation-request-id": [ - "6383443d-45b1-4d92-acd7-7d8081ac1600" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220045Z:6383443d-45b1-4d92-acd7-7d8081ac1600" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3d9a502-e6e9-4fb3-9e01-b5717fa1a8d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11589" - ], - "x-ms-correlation-request-id": [ - "1c327427-6b68-465c-9e73-1cbeecc32067" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220045Z:1c327427-6b68-465c-9e73-1cbeecc32067" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a99de2bf-7202-4b92-9d03-cb3bbd9b8033" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11588" - ], - "x-ms-correlation-request-id": [ - "7dea5cb7-2e05-4354-aafb-2b20aa211f51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220046Z:7dea5cb7-2e05-4354-aafb-2b20aa211f51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "895661b9-589c-422e-bf31-9893d77d1b31" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11587" - ], - "x-ms-correlation-request-id": [ - "4eb5dab3-3797-4a37-9711-e42e6cd99e57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220046Z:4eb5dab3-3797-4a37-9711-e42e6cd99e57" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0943c5e2-ebd8-4e0a-9171-fc9f6261f61a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11586" - ], - "x-ms-correlation-request-id": [ - "9c24851c-88d1-4406-89d2-bfcf18e88b40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220046Z:9c24851c-88d1-4406-89d2-bfcf18e88b40" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc075afc-5ead-4fe9-9431-cae4ec234a5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11585" - ], - "x-ms-correlation-request-id": [ - "2e9a53ba-bb25-4fa7-937d-41d201c3da13" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220046Z:2e9a53ba-bb25-4fa7-937d-41d201c3da13" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ac4c1d8-3530-405a-bdae-3cb8f336b6e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11584" - ], - "x-ms-correlation-request-id": [ - "8fc9548b-2b5c-4b33-b1d7-342cd3e45cba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220046Z:8fc9548b-2b5c-4b33-b1d7-342cd3e45cba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2054d390-e7fd-49c5-85cb-951b493da81d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11583" - ], - "x-ms-correlation-request-id": [ - "d5a32fb6-ea08-4f4b-a49a-dbfd0167d8db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220047Z:d5a32fb6-ea08-4f4b-a49a-dbfd0167d8db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97187e30-4225-45b9-b65d-ed57e5a04491" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11582" - ], - "x-ms-correlation-request-id": [ - "2ce20177-a713-4ea3-8464-58c39e84824d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220047Z:2ce20177-a713-4ea3-8464-58c39e84824d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "849f0485-62ff-41c8-9871-80dd46c01701" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11581" - ], - "x-ms-correlation-request-id": [ - "d473ce98-2327-47cc-889a-4ce7dc49e5b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220047Z:d473ce98-2327-47cc-889a-4ce7dc49e5b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd575b91-8b2b-40f8-9597-cad3ee31cb95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11580" - ], - "x-ms-correlation-request-id": [ - "a99333ae-7622-4fd0-b59d-edcb68370d37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220047Z:a99333ae-7622-4fd0-b59d-edcb68370d37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a36e974-1b62-42fb-9ac0-bef0fcfea6a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11579" - ], - "x-ms-correlation-request-id": [ - "2fef92d2-a5fa-4693-8535-3160194b150a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220047Z:2fef92d2-a5fa-4693-8535-3160194b150a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b3fba1f-e993-4ba2-9c66-4cbec5713cb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11578" - ], - "x-ms-correlation-request-id": [ - "25243005-f59d-44d6-986f-273e80bbd22a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220047Z:25243005-f59d-44d6-986f-273e80bbd22a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6f7f63c-2434-4e26-a26a-1e2f41374ca7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11577" - ], - "x-ms-correlation-request-id": [ - "048d7b33-b99d-4e86-a284-706459545f37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220048Z:048d7b33-b99d-4e86-a284-706459545f37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23ef8b29-bf3e-4b0e-b3bf-76ffb8da8c5d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11576" - ], - "x-ms-correlation-request-id": [ - "2a1d8b8a-c2d1-4afe-a45a-f5c63426e9c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220048Z:2a1d8b8a-c2d1-4afe-a45a-f5c63426e9c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f993abb-a0a3-4baa-a329-0d48daa2fa43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11575" - ], - "x-ms-correlation-request-id": [ - "b9a1510a-e9d3-4edc-b852-40d8975a0e0e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220048Z:b9a1510a-e9d3-4edc-b852-40d8975a0e0e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e305f8e8-9b23-4537-ae60-201526cd4eb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11574" - ], - "x-ms-correlation-request-id": [ - "20ad9908-4f9b-47e3-96a9-d80f18993d03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220048Z:20ad9908-4f9b-47e3-96a9-d80f18993d03" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "350338df-2c69-4cc3-9e4d-92b374ea3663" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11573" - ], - "x-ms-correlation-request-id": [ - "b713a977-2829-48c9-98fe-2033abe00722" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220048Z:b713a977-2829-48c9-98fe-2033abe00722" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "335e5743-ef9f-477d-809a-6d600698af54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11572" - ], - "x-ms-correlation-request-id": [ - "d329453b-5f99-4115-bf07-882f80fa472b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220048Z:d329453b-5f99-4115-bf07-882f80fa472b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b48b1ad-8217-4a76-a4c5-3c74a1deb8b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11571" - ], - "x-ms-correlation-request-id": [ - "475b0cf0-bff6-48d2-85fa-616f14eb888e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220049Z:475b0cf0-bff6-48d2-85fa-616f14eb888e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6abb4557-8226-45ea-a044-0caf0141e7b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11570" - ], - "x-ms-correlation-request-id": [ - "f3259dad-e462-4944-874b-aa4d63af80c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220049Z:f3259dad-e462-4944-874b-aa4d63af80c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b920579d-daa9-4a4a-904a-451a05826de2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11569" - ], - "x-ms-correlation-request-id": [ - "d8413419-58c7-47de-9d80-1e91ee7cc682" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220049Z:d8413419-58c7-47de-9d80-1e91ee7cc682" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3d7cb4a-c673-4978-a00b-0756a6ebe560" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11568" - ], - "x-ms-correlation-request-id": [ - "c1181424-7822-4446-99cd-0ab76c75e6f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220049Z:c1181424-7822-4446-99cd-0ab76c75e6f3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "935d235b-0d1b-4d7e-9105-c99c7297abfe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11567" - ], - "x-ms-correlation-request-id": [ - "ec293239-60a9-4fc9-a4ee-f92b41ef7bdc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220050Z:ec293239-60a9-4fc9-a4ee-f92b41ef7bdc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8090357-1306-4719-bd9f-e40efa145425" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11566" - ], - "x-ms-correlation-request-id": [ - "c75c1030-e8ce-4a70-b4ee-7f0ce3ebe457" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220050Z:c75c1030-e8ce-4a70-b4ee-7f0ce3ebe457" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77db4710-5e16-4230-8df4-d531ecc1e21e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11565" - ], - "x-ms-correlation-request-id": [ - "99e1d1f9-7658-42a9-90ed-ab6a2a4d5616" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220050Z:99e1d1f9-7658-42a9-90ed-ab6a2a4d5616" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2e22b01-5cad-4f96-9e12-f8fa287dcd38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11564" - ], - "x-ms-correlation-request-id": [ - "0150c051-824b-49cc-89ce-6c930c7f954e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220050Z:0150c051-824b-49cc-89ce-6c930c7f954e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7215e870-bb93-4ef3-8656-a283d26ee05e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11563" - ], - "x-ms-correlation-request-id": [ - "f371b42b-200c-4f6b-afba-14bb10d08734" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220050Z:f371b42b-200c-4f6b-afba-14bb10d08734" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01ddccb4-5500-4bb2-aae4-94a0a23aa7b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11562" - ], - "x-ms-correlation-request-id": [ - "6f0ca990-9952-44b0-bd5b-2ae7c0919ea2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220051Z:6f0ca990-9952-44b0-bd5b-2ae7c0919ea2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1f774d1-7136-4671-bc55-6f9e7083d19e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11561" - ], - "x-ms-correlation-request-id": [ - "f9d0e93a-693c-4c3f-b7b6-cf8ec42174cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220051Z:f9d0e93a-693c-4c3f-b7b6-cf8ec42174cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0bc88c8f-4755-4dff-8f4f-7d8d70926026" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11560" - ], - "x-ms-correlation-request-id": [ - "0710bd08-3121-4837-9ce8-38f1ed131723" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220051Z:0710bd08-3121-4837-9ce8-38f1ed131723" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31fce7eb-0f17-49da-8908-b013f74a5cad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11559" - ], - "x-ms-correlation-request-id": [ - "5c75d0d3-ce5c-4bf5-836d-570ab32e5bc6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220051Z:5c75d0d3-ce5c-4bf5-836d-570ab32e5bc6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d02bbe4-32d4-402f-963a-ccdfec823dac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11558" - ], - "x-ms-correlation-request-id": [ - "33eb7450-2206-4273-bb28-4b88876f5a4f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220051Z:33eb7450-2206-4273-bb28-4b88876f5a4f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ab56cb4-368a-4c85-b2b9-5d879a8ebc0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11557" - ], - "x-ms-correlation-request-id": [ - "bc07b314-9e36-420a-9a46-ed8b9bb98830" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220052Z:bc07b314-9e36-420a-9a46-ed8b9bb98830" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8117bdb-ef9d-463a-957b-6a17dd824809" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11556" - ], - "x-ms-correlation-request-id": [ - "1bc3d52a-0018-4d6d-8f96-336472f67f34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220052Z:1bc3d52a-0018-4d6d-8f96-336472f67f34" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b62673c-39cd-4218-a2f2-233e4b30ec9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11555" - ], - "x-ms-correlation-request-id": [ - "93cce3f1-942b-46ec-837b-cfeec1c88c53" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220052Z:93cce3f1-942b-46ec-837b-cfeec1c88c53" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1c4db3d-04e9-466d-8419-bc0a45d6393f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11554" - ], - "x-ms-correlation-request-id": [ - "0098e070-9464-443a-9995-12f75fcb9d1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220052Z:0098e070-9464-443a-9995-12f75fcb9d1c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67ff92e8-a859-406f-a875-c1eaa575ba17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11553" - ], - "x-ms-correlation-request-id": [ - "f54d8020-d94b-4447-8637-f805e5789e7f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220052Z:f54d8020-d94b-4447-8637-f805e5789e7f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "446a7b7a-168c-484f-8b65-1ece630c86b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11552" - ], - "x-ms-correlation-request-id": [ - "302ef358-3138-403a-8fad-37af1e282512" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220052Z:302ef358-3138-403a-8fad-37af1e282512" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c00cc8e1-f2c5-4070-9cfc-64ab184d2ceb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11551" - ], - "x-ms-correlation-request-id": [ - "0d325f20-769f-43c5-9737-af3eb8a0facf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220052Z:0d325f20-769f-43c5-9737-af3eb8a0facf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ebb7979e-9fc4-4762-b78d-597eb303a7a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11550" - ], - "x-ms-correlation-request-id": [ - "abde26f7-5911-4f0d-8291-1b1767455165" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220053Z:abde26f7-5911-4f0d-8291-1b1767455165" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fcfffe8-c829-42ee-aacc-8e903bfa9281" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11549" - ], - "x-ms-correlation-request-id": [ - "74790ead-31c1-4a6a-8872-7a47894b23b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220053Z:74790ead-31c1-4a6a-8872-7a47894b23b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "367f4bad-7c99-40a1-82f4-0138fa24b8a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11548" - ], - "x-ms-correlation-request-id": [ - "4df82572-b88e-4f5a-8403-054df957b148" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220053Z:4df82572-b88e-4f5a-8403-054df957b148" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61aa270b-5274-4e36-a386-e5850b80573a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11547" - ], - "x-ms-correlation-request-id": [ - "a639ba12-01b6-41dd-897b-e35687279a06" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220053Z:a639ba12-01b6-41dd-897b-e35687279a06" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a89ca22-c5c3-4ffc-8d71-c1a9541d3dd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11546" - ], - "x-ms-correlation-request-id": [ - "0ffedc57-1fc2-4823-9f0e-590d47836d4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220053Z:0ffedc57-1fc2-4823-9f0e-590d47836d4b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4193539c-8541-4fda-b4d4-fb0d6b570e3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11545" - ], - "x-ms-correlation-request-id": [ - "1a25cc3f-09b2-4214-8449-56de08d04363" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220053Z:1a25cc3f-09b2-4214-8449-56de08d04363" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "662c793b-1a79-4083-9f63-192e8cda720c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11544" - ], - "x-ms-correlation-request-id": [ - "3d9eed97-974b-4b57-9536-0cb4752852e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220054Z:3d9eed97-974b-4b57-9536-0cb4752852e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45a92479-70f6-4f2c-907d-766c614c7bd4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11543" - ], - "x-ms-correlation-request-id": [ - "116240c3-ad65-4ba9-ad59-8cb502ae781d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220054Z:116240c3-ad65-4ba9-ad59-8cb502ae781d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22587c34-d5da-4bad-9b6b-78eb531a4894" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11542" - ], - "x-ms-correlation-request-id": [ - "236c9d4e-d1fa-4f6a-8449-37d4c77d0501" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220054Z:236c9d4e-d1fa-4f6a-8449-37d4c77d0501" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51682614-da8e-4bea-9eae-a495dd6d8a5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11541" - ], - "x-ms-correlation-request-id": [ - "884bf4f6-54e9-4d22-84c8-32a14b245e4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220054Z:884bf4f6-54e9-4d22-84c8-32a14b245e4e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e53311a3-d881-40d6-8201-82ef0e65a5ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11540" - ], - "x-ms-correlation-request-id": [ - "115e9574-233e-4e4b-82e1-44ca2146f2f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220054Z:115e9574-233e-4e4b-82e1-44ca2146f2f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5af789f-a1c3-4985-9e17-bdf4591beb51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11539" - ], - "x-ms-correlation-request-id": [ - "5884b2f6-8cee-4b47-888e-0e02a6454468" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220055Z:5884b2f6-8cee-4b47-888e-0e02a6454468" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7c70d4b-1f47-41c4-87a1-a6a04bfe7ff7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11538" - ], - "x-ms-correlation-request-id": [ - "f3c5d042-243a-46f5-a387-5b63120ddac9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220055Z:f3c5d042-243a-46f5-a387-5b63120ddac9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d867b965-a569-49d6-ab75-03ef6aab898d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11537" - ], - "x-ms-correlation-request-id": [ - "98dcaa65-babe-4e49-bb1b-6d46230ca092" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220055Z:98dcaa65-babe-4e49-bb1b-6d46230ca092" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fba86a84-07bf-47dc-922f-69c92393478e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11536" - ], - "x-ms-correlation-request-id": [ - "f024c634-d630-44d1-93f0-dbe356b28583" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220055Z:f024c634-d630-44d1-93f0-dbe356b28583" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0f9fbb5-6f4e-488d-89ba-4c6aeea69133" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11535" - ], - "x-ms-correlation-request-id": [ - "dd67cdef-c225-4b7d-a3d1-bb90d50b578e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220055Z:dd67cdef-c225-4b7d-a3d1-bb90d50b578e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3fb26cf-0a6e-4b6b-a47b-3ab3dfa2a60d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11534" - ], - "x-ms-correlation-request-id": [ - "8fb15569-4fe5-40fd-89dd-f36852ee169d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220055Z:8fb15569-4fe5-40fd-89dd-f36852ee169d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24e539dd-efb5-48c8-951c-80a499e878eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11533" - ], - "x-ms-correlation-request-id": [ - "e8a9eade-1605-4c3b-8935-89edcfe257f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220055Z:e8a9eade-1605-4c3b-8935-89edcfe257f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4799e65c-cad6-4d06-9e18-edbb954f4f93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11532" - ], - "x-ms-correlation-request-id": [ - "bcd7e830-9a9a-4e94-b695-798369b2a21b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220056Z:bcd7e830-9a9a-4e94-b695-798369b2a21b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2786270e-21bf-4886-9af8-ea278a8c1a8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11531" - ], - "x-ms-correlation-request-id": [ - "9acbcc29-a0d7-419d-87aa-6971c0a3581e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220056Z:9acbcc29-a0d7-419d-87aa-6971c0a3581e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed88e73c-4d42-42ca-84ff-6a7bb490d0aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11530" - ], - "x-ms-correlation-request-id": [ - "c5b3f96c-4c10-48bc-9ba4-3492940c67ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220056Z:c5b3f96c-4c10-48bc-9ba4-3492940c67ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e273428-0afe-492f-b309-78be4d458e8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11529" - ], - "x-ms-correlation-request-id": [ - "d5fd3aaf-cb8e-44e8-947b-f45fb11fda31" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220056Z:d5fd3aaf-cb8e-44e8-947b-f45fb11fda31" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd23740f-9a87-488d-b0f4-f2a1c3a7635a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11528" - ], - "x-ms-correlation-request-id": [ - "32c87d23-d399-4909-b54c-be4d56655751" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220056Z:32c87d23-d399-4909-b54c-be4d56655751" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d108ffba-f511-4874-b16f-10988ec30bd7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11527" - ], - "x-ms-correlation-request-id": [ - "2947428f-9b0c-4341-ab68-63cfd9632227" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220056Z:2947428f-9b0c-4341-ab68-63cfd9632227" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "abf0a81a-5a94-4d01-b4b0-838f57ad6032" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11526" - ], - "x-ms-correlation-request-id": [ - "fe24e201-6498-4901-bdc2-20ff7ff770f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220057Z:fe24e201-6498-4901-bdc2-20ff7ff770f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8fd22a9e-ee74-4d4e-9113-120d8eed3e3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11525" - ], - "x-ms-correlation-request-id": [ - "d6f03fd6-2af3-44fd-816d-82223d1afe79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220057Z:d6f03fd6-2af3-44fd-816d-82223d1afe79" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f85e05d9-843b-4d4d-abb2-03ce90bcb9d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11524" - ], - "x-ms-correlation-request-id": [ - "ddbadcfc-ccd2-4a32-8cff-e09beaa835de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220057Z:ddbadcfc-ccd2-4a32-8cff-e09beaa835de" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "508c7b71-21b8-4af5-abc5-b5eabea24ad2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11523" - ], - "x-ms-correlation-request-id": [ - "d8ee75dc-b449-47bc-80e2-45e64367451b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220057Z:d8ee75dc-b449-47bc-80e2-45e64367451b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6c9b9a8-9d45-49be-9f98-1c18cd3fe717" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11522" - ], - "x-ms-correlation-request-id": [ - "c387ebcc-b1fd-42b7-ad93-cb94d923238a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220057Z:c387ebcc-b1fd-42b7-ad93-cb94d923238a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad3711e9-9e93-4690-9c0c-5623fe34a5d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11521" - ], - "x-ms-correlation-request-id": [ - "eec3d6e4-7f64-4cb2-86b5-31a3ba85defa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220057Z:eec3d6e4-7f64-4cb2-86b5-31a3ba85defa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de777978-cd92-476c-b199-df219f93bd79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11520" - ], - "x-ms-correlation-request-id": [ - "4369a6ed-a76b-449d-a250-fec532c97f86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220057Z:4369a6ed-a76b-449d-a250-fec532c97f86" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6301a326-a36a-4734-b51a-f54c56207d94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11519" - ], - "x-ms-correlation-request-id": [ - "d90036a6-2db3-4459-a980-b0beb2e4d243" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220058Z:d90036a6-2db3-4459-a980-b0beb2e4d243" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b2ef284-cfa3-427e-a790-4572439e8f15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11518" - ], - "x-ms-correlation-request-id": [ - "a9bbaf49-3725-40f1-b4b7-03e643fc16cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220058Z:a9bbaf49-3725-40f1-b4b7-03e643fc16cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b2de306-55e4-4d88-b5d7-0927a8e4e3a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11517" - ], - "x-ms-correlation-request-id": [ - "8982b599-8e5c-437f-b6a4-952c6773769c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220058Z:8982b599-8e5c-437f-b6a4-952c6773769c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ac9b310-f4a3-43de-b149-561c9e3b7346" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11516" - ], - "x-ms-correlation-request-id": [ - "6fc45eb9-0110-4cda-829b-efd8f0e11ea9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220058Z:6fc45eb9-0110-4cda-829b-efd8f0e11ea9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47b56921-556c-434e-80be-690d77dac546" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11515" - ], - "x-ms-correlation-request-id": [ - "98f66d71-46a4-4de9-8c4e-797fafeafeb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220058Z:98f66d71-46a4-4de9-8c4e-797fafeafeb9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0451a0a8-902b-4588-b5f8-077e6c8885c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11514" - ], - "x-ms-correlation-request-id": [ - "4fda17a1-8a98-4aa5-8da1-99a982859a06" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220058Z:4fda17a1-8a98-4aa5-8da1-99a982859a06" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84ec5b28-98f6-4fd5-8bac-95c11e4ef638" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11513" - ], - "x-ms-correlation-request-id": [ - "2c1bac4f-c67b-49ff-b832-11b67ceb19ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220058Z:2c1bac4f-c67b-49ff-b832-11b67ceb19ec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5ed6360-e390-4f42-a790-a219e24d7a02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11512" - ], - "x-ms-correlation-request-id": [ - "afb354c6-b7eb-4b8b-a927-f085a611fe20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220059Z:afb354c6-b7eb-4b8b-a927-f085a611fe20" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e1fe0a1-0b6d-42cc-967c-f539db084e3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11511" - ], - "x-ms-correlation-request-id": [ - "61a03fcc-39f1-4e5b-b6c6-eec8f6668c75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220059Z:61a03fcc-39f1-4e5b-b6c6-eec8f6668c75" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18bd3ca6-0c80-4f38-9531-9f53440ded11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11510" - ], - "x-ms-correlation-request-id": [ - "ab287088-738b-42cf-a3b0-fc7ffc832445" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220059Z:ab287088-738b-42cf-a3b0-fc7ffc832445" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "132da20f-fb24-4ea7-a922-55dacec4052d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11509" - ], - "x-ms-correlation-request-id": [ - "8f8e2bbb-6007-43f0-99af-9df489851a3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220059Z:8f8e2bbb-6007-43f0-99af-9df489851a3c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28746552-b65d-43a0-8a16-6f25c576de6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11508" - ], - "x-ms-correlation-request-id": [ - "a99f23ca-0f7e-4601-b173-a852ab4b5808" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220059Z:a99f23ca-0f7e-4601-b173-a852ab4b5808" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0b204d4-217a-4fbf-879b-cd05ebfaf35c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11507" - ], - "x-ms-correlation-request-id": [ - "c25e3a2a-8184-44c1-b189-b00e29ed81bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220059Z:c25e3a2a-8184-44c1-b189-b00e29ed81bf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0962e1bd-de27-4f29-a29a-252e8d3e83a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11506" - ], - "x-ms-correlation-request-id": [ - "a72013b9-d0e5-41e3-8173-89fb6f973471" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220100Z:a72013b9-d0e5-41e3-8173-89fb6f973471" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b202a9f-b7f6-4a9a-9b04-7ef842651dd5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11505" - ], - "x-ms-correlation-request-id": [ - "4af1ca24-a6a5-41a0-9379-288eaa8c1fe4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220100Z:4af1ca24-a6a5-41a0-9379-288eaa8c1fe4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "27df1658-ce4a-44c8-9fba-80d75cd3a963" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11504" - ], - "x-ms-correlation-request-id": [ - "ed264ab6-d26b-4aac-a6bf-5378087e3500" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220100Z:ed264ab6-d26b-4aac-a6bf-5378087e3500" - ], - "Date": [ - "Tue, 29 Aug 2017 22:00:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f17414f-ae70-480a-aa54-2029506ee341" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11503" - ], - "x-ms-correlation-request-id": [ - "70c042a8-a9d7-4c7a-b51b-80345f9cd02e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220100Z:70c042a8-a9d7-4c7a-b51b-80345f9cd02e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4eb3ca3-9e05-4320-96a2-6f96c79b9aad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11502" - ], - "x-ms-correlation-request-id": [ - "e15e8762-e078-41ae-9b5c-743b6bf50274" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220100Z:e15e8762-e078-41ae-9b5c-743b6bf50274" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e5e4220-a68f-4869-a8f0-801577dac6c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11501" - ], - "x-ms-correlation-request-id": [ - "cf1387d0-9441-4967-9a3f-2a473a91dee8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220100Z:cf1387d0-9441-4967-9a3f-2a473a91dee8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72d4948c-5412-48f3-b9a1-dd6694dd1c47" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11500" - ], - "x-ms-correlation-request-id": [ - "e7c3d0e1-032c-4094-8ee1-6e98170f232c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220100Z:e7c3d0e1-032c-4094-8ee1-6e98170f232c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7815d71b-50f4-4162-94ed-754bff8ebdd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11499" - ], - "x-ms-correlation-request-id": [ - "d2db9bf5-4661-42dd-af34-f69816929330" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220100Z:d2db9bf5-4661-42dd-af34-f69816929330" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88011d4e-ce75-429c-9c94-1509dea434a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11498" - ], - "x-ms-correlation-request-id": [ - "cbd6df66-2071-4c03-8230-d53af49382ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220101Z:cbd6df66-2071-4c03-8230-d53af49382ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7d5fbbe-a8d5-4ac3-9ea2-06accc4759c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11497" - ], - "x-ms-correlation-request-id": [ - "c0369bd8-8efe-44db-9211-a0b1c5c63d50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220101Z:c0369bd8-8efe-44db-9211-a0b1c5c63d50" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "34172418-40bb-456b-8831-e27d921a0738" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11496" - ], - "x-ms-correlation-request-id": [ - "1266786e-2b43-43d1-b2e4-a58134354c72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220101Z:1266786e-2b43-43d1-b2e4-a58134354c72" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fb1d050-ce8c-4a4f-83d2-0ff45c1d6dba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11495" - ], - "x-ms-correlation-request-id": [ - "cc78e07e-6b39-4000-a073-600f46bd1c61" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220101Z:cc78e07e-6b39-4000-a073-600f46bd1c61" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94815231-92dd-45aa-9d51-9e4313a516c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11494" - ], - "x-ms-correlation-request-id": [ - "5c7dc33f-6ba8-4992-9ba1-2b20ef8799aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220101Z:5c7dc33f-6ba8-4992-9ba1-2b20ef8799aa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "315a45a6-99f7-4a03-8f97-69d93dc376d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11493" - ], - "x-ms-correlation-request-id": [ - "0dbe7f61-182c-4a1f-b965-6bccec6dd58b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220101Z:0dbe7f61-182c-4a1f-b965-6bccec6dd58b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ecdae89-41dd-40dd-b259-ff75a81d8f6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11492" - ], - "x-ms-correlation-request-id": [ - "f07488e1-afa6-47b8-9a9c-bfd64ab4e369" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220102Z:f07488e1-afa6-47b8-9a9c-bfd64ab4e369" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51389b3e-6225-452d-814f-d6086ceb0206" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11491" - ], - "x-ms-correlation-request-id": [ - "180ec496-11da-4439-a66f-8c0932d90e5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220102Z:180ec496-11da-4439-a66f-8c0932d90e5e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7281f34-b24d-4482-a67a-b36779c25300" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11490" - ], - "x-ms-correlation-request-id": [ - "7bab726c-7060-47fb-b787-4ef2332b0f8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220102Z:7bab726c-7060-47fb-b787-4ef2332b0f8c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60bc7967-9d83-42ec-8b4b-53dfdb2b7312" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11489" - ], - "x-ms-correlation-request-id": [ - "f4e0d1c9-133f-4427-85a0-62c4169585e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220102Z:f4e0d1c9-133f-4427-85a0-62c4169585e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0fa74981-2aab-45db-813e-02b53e5de1b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11488" - ], - "x-ms-correlation-request-id": [ - "58522a29-aca4-4a3a-b184-b9d62867bce8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220102Z:58522a29-aca4-4a3a-b184-b9d62867bce8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da72bf9d-f2a1-4dc1-9a39-d3557e7f759a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11487" - ], - "x-ms-correlation-request-id": [ - "94e466ec-a5c7-43e7-99c1-bdc5182be44d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220102Z:94e466ec-a5c7-43e7-99c1-bdc5182be44d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f9034d9-6009-4129-ace8-435accb0a76b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11486" - ], - "x-ms-correlation-request-id": [ - "a6de0e94-48d1-4609-8bb7-83c7521e58bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220102Z:a6de0e94-48d1-4609-8bb7-83c7521e58bc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3c87e46c-d346-4888-9c08-715b43f1cb56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11485" - ], - "x-ms-correlation-request-id": [ - "4ce53d81-aa00-433b-8c9e-3af1cb58597e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220103Z:4ce53d81-aa00-433b-8c9e-3af1cb58597e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f047fc54-2686-4ee0-9e9a-b066d86d4223" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11484" - ], - "x-ms-correlation-request-id": [ - "f9f7bfb0-f1bc-4951-9491-39b940a15473" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220103Z:f9f7bfb0-f1bc-4951-9491-39b940a15473" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "715168a7-961d-4ecc-8895-be2bb6106aee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11483" - ], - "x-ms-correlation-request-id": [ - "b23c7b79-3dfa-424c-ba73-6cbbbfb8ba5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220103Z:b23c7b79-3dfa-424c-ba73-6cbbbfb8ba5e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19c5a109-3bce-4aff-845b-bee5013b182f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11482" - ], - "x-ms-correlation-request-id": [ - "d169ca69-7636-4888-9536-007335ff4513" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220103Z:d169ca69-7636-4888-9536-007335ff4513" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9364d1d5-1f70-42d9-aaaf-ea687a9ea59a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11481" - ], - "x-ms-correlation-request-id": [ - "b0cfe6cd-a3cf-46ad-b24b-8df5fe0141ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220103Z:b0cfe6cd-a3cf-46ad-b24b-8df5fe0141ba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "229dc009-eab8-43a9-983d-0ed579b626f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11480" - ], - "x-ms-correlation-request-id": [ - "18938ad7-191c-4d61-9868-eeb02c782841" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220103Z:18938ad7-191c-4d61-9868-eeb02c782841" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0bf1b63-da83-4786-8f19-6b97146acab7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11479" - ], - "x-ms-correlation-request-id": [ - "b80d1622-9a80-4561-a995-d2165958e399" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220103Z:b80d1622-9a80-4561-a995-d2165958e399" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3feba756-5e6f-4151-a837-990cbdd6777c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11478" - ], - "x-ms-correlation-request-id": [ - "a14a2bc3-c2d6-435f-bf12-f70d61e8c95b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220104Z:a14a2bc3-c2d6-435f-bf12-f70d61e8c95b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38810c5e-9584-4132-a715-e8e5ae2288c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11477" - ], - "x-ms-correlation-request-id": [ - "3639dae4-6017-4ce8-81a3-6dce55fc2ae8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220104Z:3639dae4-6017-4ce8-81a3-6dce55fc2ae8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c226d454-b53e-4f1d-85e5-1c5f1392b732" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11476" - ], - "x-ms-correlation-request-id": [ - "de751a60-51b6-4641-ae5d-bdb3cb78f65a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220104Z:de751a60-51b6-4641-ae5d-bdb3cb78f65a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "544cb8aa-435f-44eb-9f03-c40bb904e048" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11475" - ], - "x-ms-correlation-request-id": [ - "3b0a1af5-a6fa-48f1-a855-b78cb0244879" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220104Z:3b0a1af5-a6fa-48f1-a855-b78cb0244879" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e09bc50-23cd-47dc-9f2c-0e562c189472" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11474" - ], - "x-ms-correlation-request-id": [ - "65b07dac-64dc-4c5b-9b8d-190a81c980bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220104Z:65b07dac-64dc-4c5b-9b8d-190a81c980bb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f00cd085-b047-4f6f-874f-11eff6faab5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11473" - ], - "x-ms-correlation-request-id": [ - "599aa9e3-bf4f-4a15-a0fd-27ff679e1e9e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220104Z:599aa9e3-bf4f-4a15-a0fd-27ff679e1e9e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d958dcb4-ed2b-405e-9485-71ec1765814a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11472" - ], - "x-ms-correlation-request-id": [ - "56917386-b5ab-45ce-b8c6-66696131d1dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220105Z:56917386-b5ab-45ce-b8c6-66696131d1dd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d813d968-72d2-4044-882e-a79616cf5b02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11471" - ], - "x-ms-correlation-request-id": [ - "06c5a0f6-538a-47ed-be07-6509a4e6f6df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220105Z:06c5a0f6-538a-47ed-be07-6509a4e6f6df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7751d05-c55d-4cdc-a0d4-adf2c2074a0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11470" - ], - "x-ms-correlation-request-id": [ - "6ef3dc8f-ded5-4eb1-ae8d-ded2119e43b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220105Z:6ef3dc8f-ded5-4eb1-ae8d-ded2119e43b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5006b6a-afde-4ca4-bbc9-3995e1ae1b2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11469" - ], - "x-ms-correlation-request-id": [ - "499f0b5e-1dc5-45c0-ba68-f602618978bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220105Z:499f0b5e-1dc5-45c0-ba68-f602618978bc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "312c9e93-ffa5-41be-ae48-688833f5066b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11468" - ], - "x-ms-correlation-request-id": [ - "24e35f6d-bace-489e-b50b-6df5db256edf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220105Z:24e35f6d-bace-489e-b50b-6df5db256edf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "abbcfd8d-8f0f-4368-85be-9904ecd71923" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11467" - ], - "x-ms-correlation-request-id": [ - "177a5e8d-ee4c-4dac-a6cf-d640f9299659" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220105Z:177a5e8d-ee4c-4dac-a6cf-d640f9299659" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed37edb3-83c7-435e-b442-46ae3711f2e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11466" - ], - "x-ms-correlation-request-id": [ - "14857a1f-adeb-45a1-91a3-25dd1132cb2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220106Z:14857a1f-adeb-45a1-91a3-25dd1132cb2e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca97b714-0428-4e99-806f-2d2dcd0e5efd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11465" - ], - "x-ms-correlation-request-id": [ - "162c4e85-f2c7-43ef-ba98-cd6e9f2d0286" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220106Z:162c4e85-f2c7-43ef-ba98-cd6e9f2d0286" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f74e7ef9-3398-409a-8b2a-00092723fa30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11464" - ], - "x-ms-correlation-request-id": [ - "45d6bb70-506f-4fac-9da4-ed6daf16e82b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220106Z:45d6bb70-506f-4fac-9da4-ed6daf16e82b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a168762-9709-4ea6-b732-fb50f64b9a9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11463" - ], - "x-ms-correlation-request-id": [ - "19dbc693-7682-431c-8b1c-e1716a5c82e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220106Z:19dbc693-7682-431c-8b1c-e1716a5c82e1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7531382f-f7c6-4f7a-8b9d-dc5bef864b7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11462" - ], - "x-ms-correlation-request-id": [ - "b57bf493-cf50-4502-a68a-eb524296a2c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220106Z:b57bf493-cf50-4502-a68a-eb524296a2c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "15fee1a5-079b-45c3-a9b5-964ff67a97ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11461" - ], - "x-ms-correlation-request-id": [ - "823a9e7f-5311-466a-9b10-9d9115612ccc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220107Z:823a9e7f-5311-466a-9b10-9d9115612ccc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa9f1e95-ba7e-4935-8e75-6d6838dea752" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11460" - ], - "x-ms-correlation-request-id": [ - "55a92180-9292-4987-8648-d5cf60e1553e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220107Z:55a92180-9292-4987-8648-d5cf60e1553e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e649e7aa-5d2c-4b62-89e8-8f457eafd274" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11459" - ], - "x-ms-correlation-request-id": [ - "bdb0ff03-c2cc-44df-b63f-cfeacfc91708" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220107Z:bdb0ff03-c2cc-44df-b63f-cfeacfc91708" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1cc362f-91cb-4357-a831-402f25917ad0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11458" - ], - "x-ms-correlation-request-id": [ - "c2b0b2f9-3ffa-4edf-9c96-9252a662ac00" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220107Z:c2b0b2f9-3ffa-4edf-9c96-9252a662ac00" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "affd0d75-0221-4d72-9442-b069815916eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11457" - ], - "x-ms-correlation-request-id": [ - "7d00e1e8-066b-4c52-981c-1b2f5ae05901" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220107Z:7d00e1e8-066b-4c52-981c-1b2f5ae05901" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "446111f7-6dce-474a-bd8a-327c7637e193" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11456" - ], - "x-ms-correlation-request-id": [ - "06ae1aff-1f07-4b67-8037-631fa1f44aac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220107Z:06ae1aff-1f07-4b67-8037-631fa1f44aac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "07a037f1-0941-432e-bf29-8f9ecdbf2539" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11455" - ], - "x-ms-correlation-request-id": [ - "8a1929c0-2da6-42ef-81bd-45875b48393b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220107Z:8a1929c0-2da6-42ef-81bd-45875b48393b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d4d4949-d40d-4db4-a7d2-969d448478bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11454" - ], - "x-ms-correlation-request-id": [ - "4ee3a8db-cc02-4a07-b101-3b14c951d677" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220107Z:4ee3a8db-cc02-4a07-b101-3b14c951d677" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a4b2a96-720c-434b-b66b-7e4b03bddc2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11453" - ], - "x-ms-correlation-request-id": [ - "0669295e-6045-40f2-9cc1-f7e5cdd202e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220108Z:0669295e-6045-40f2-9cc1-f7e5cdd202e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89143519-8209-4a6f-9735-48888dc6e289" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11452" - ], - "x-ms-correlation-request-id": [ - "df64150f-9bb2-4c42-8d4e-7f193ed5ff8b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220108Z:df64150f-9bb2-4c42-8d4e-7f193ed5ff8b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bad73791-df15-47bf-b626-f835cf7fed43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11451" - ], - "x-ms-correlation-request-id": [ - "34d896d5-67cc-4df1-959f-c60a7e15e845" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220108Z:34d896d5-67cc-4df1-959f-c60a7e15e845" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5fb72ad-6cdb-4722-8bfd-bbdd82ce3f7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11450" - ], - "x-ms-correlation-request-id": [ - "8949abef-c268-44c0-815a-5e19aab38194" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220108Z:8949abef-c268-44c0-815a-5e19aab38194" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36d0b04c-be1d-475d-b698-3175e255f1fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11449" - ], - "x-ms-correlation-request-id": [ - "94c1dd1f-92e1-48f3-9f19-2a6323401951" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220108Z:94c1dd1f-92e1-48f3-9f19-2a6323401951" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d09a5086-dd2e-4e8f-a5b8-133b29591838" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11448" - ], - "x-ms-correlation-request-id": [ - "0945ebc1-abec-4ff9-be6d-016cb93a8e21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220108Z:0945ebc1-abec-4ff9-be6d-016cb93a8e21" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0c33aea7-0cd3-437d-ba5f-6113bf422a32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11447" - ], - "x-ms-correlation-request-id": [ - "c339874e-c25c-4e28-860e-964310cd9c46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220109Z:c339874e-c25c-4e28-860e-964310cd9c46" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a197afc9-cf94-4e88-9971-af41452002ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11446" - ], - "x-ms-correlation-request-id": [ - "d9edb84d-461e-4e33-971b-7e4b778dce70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220109Z:d9edb84d-461e-4e33-971b-7e4b778dce70" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7160d4ce-2e14-4d63-861c-d2228b9b7eb8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11445" - ], - "x-ms-correlation-request-id": [ - "2a2d16cd-fd16-40f7-979b-45584f1b2b5b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220109Z:2a2d16cd-fd16-40f7-979b-45584f1b2b5b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8db0808e-daef-4eff-a238-d74cb6df2c55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11444" - ], - "x-ms-correlation-request-id": [ - "bec43706-0fdc-436a-8ed8-e3743db3aa0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220109Z:bec43706-0fdc-436a-8ed8-e3743db3aa0d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3263c717-3744-49dd-bca7-eb2ccb51ce8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11443" - ], - "x-ms-correlation-request-id": [ - "f5874533-6a73-45f1-bb78-75706abfc7d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220109Z:f5874533-6a73-45f1-bb78-75706abfc7d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24a4186f-2ea7-4411-b143-6d0af5ef8f27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11442" - ], - "x-ms-correlation-request-id": [ - "956c0f89-5151-481d-a13c-9e9fb1048c17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220109Z:956c0f89-5151-481d-a13c-9e9fb1048c17" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95c80e6e-ad65-4114-b7c4-0fa225df11e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11441" - ], - "x-ms-correlation-request-id": [ - "1daba195-f5c2-4d1c-8225-93fb84e34286" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220110Z:1daba195-f5c2-4d1c-8225-93fb84e34286" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac017fc6-e17b-4fc2-987b-c4f00bb8127d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11440" - ], - "x-ms-correlation-request-id": [ - "d25fe44d-1b3b-4988-ab98-933644e05b92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220110Z:d25fe44d-1b3b-4988-ab98-933644e05b92" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc4ee27b-d9ee-4497-92ab-fc989d2545e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11439" - ], - "x-ms-correlation-request-id": [ - "df19fc91-9685-44f4-9c88-338215abeb20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220110Z:df19fc91-9685-44f4-9c88-338215abeb20" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20e78d63-751c-4c3b-85a8-4fd42a92d650" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11438" - ], - "x-ms-correlation-request-id": [ - "db230eae-fda0-4da2-942d-68101ca27f1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220110Z:db230eae-fda0-4da2-942d-68101ca27f1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "446cd340-5110-40c3-b986-400fada451d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11437" - ], - "x-ms-correlation-request-id": [ - "fdf795a0-cb99-4c70-8ba6-42f887aabe7b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220110Z:fdf795a0-cb99-4c70-8ba6-42f887aabe7b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d40403f6-35ec-4596-9a26-e70bc1960777" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11436" - ], - "x-ms-correlation-request-id": [ - "704c60a6-10eb-4248-a018-50748abae601" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220110Z:704c60a6-10eb-4248-a018-50748abae601" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a90be5d-a7bf-48bc-bcd8-13db18f7393d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11435" - ], - "x-ms-correlation-request-id": [ - "8a96f5cd-ed1b-45e3-8c10-34f8ebd7b874" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220111Z:8a96f5cd-ed1b-45e3-8c10-34f8ebd7b874" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca04b346-1924-4dff-bbaf-49c68c5ce499" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11434" - ], - "x-ms-correlation-request-id": [ - "21666ed3-5192-40ee-b9ab-cd9f0c24cb54" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220111Z:21666ed3-5192-40ee-b9ab-cd9f0c24cb54" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d01d0ce-da15-4818-952d-6660089db6eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11433" - ], - "x-ms-correlation-request-id": [ - "91266b54-e22d-43fd-bbb9-f11194e9d61e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220111Z:91266b54-e22d-43fd-bbb9-f11194e9d61e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0bd11ee-5f2f-4992-8d6b-7cd4156889ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11432" - ], - "x-ms-correlation-request-id": [ - "b0bca191-bdfc-4fa5-9a2e-092bcd1ce249" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220111Z:b0bca191-bdfc-4fa5-9a2e-092bcd1ce249" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1573784a-6642-4c41-ac70-964411394c75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11431" - ], - "x-ms-correlation-request-id": [ - "5ecdd28b-99a0-4470-a72b-67ca1f406f2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220111Z:5ecdd28b-99a0-4470-a72b-67ca1f406f2e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c84ea86-2c1b-4f29-af1d-1a329bb62d45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11430" - ], - "x-ms-correlation-request-id": [ - "feb651c2-fd39-495e-bf77-d1766c108573" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220111Z:feb651c2-fd39-495e-bf77-d1766c108573" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30a1a473-d6c8-4b9b-a5ef-7ac6d55864b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11429" - ], - "x-ms-correlation-request-id": [ - "47428479-3a29-423e-b6a0-18b60034ab0f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220111Z:47428479-3a29-423e-b6a0-18b60034ab0f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1e5565f-7c63-4168-90fc-9c55db67c69c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11428" - ], - "x-ms-correlation-request-id": [ - "bdd90b4b-31e3-4eb5-ad4b-3df719c141fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220111Z:bdd90b4b-31e3-4eb5-ad4b-3df719c141fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba58fad1-7b06-46c5-9c96-362d4426be53" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11427" - ], - "x-ms-correlation-request-id": [ - "ca85cf67-9e49-4a53-a7eb-b51a68c6baa0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220112Z:ca85cf67-9e49-4a53-a7eb-b51a68c6baa0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22048569-019b-42ab-939e-abb8f64f5753" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11426" - ], - "x-ms-correlation-request-id": [ - "245336f4-51ad-46ba-b63b-0607d7fb4fbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220112Z:245336f4-51ad-46ba-b63b-0607d7fb4fbe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61978af8-5dfb-4e02-bd4b-1897961b0055" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11425" - ], - "x-ms-correlation-request-id": [ - "51c319fc-ee82-4ce5-8887-7790c8e1cdde" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220112Z:51c319fc-ee82-4ce5-8887-7790c8e1cdde" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "019b6e69-ccc6-441e-9b64-a60c224f84ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11424" - ], - "x-ms-correlation-request-id": [ - "4fda6c99-93b8-4458-8be6-cf0a040d458e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220112Z:4fda6c99-93b8-4458-8be6-cf0a040d458e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85b32bf3-e01c-47dc-8bc1-8ad4ae92d0e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11423" - ], - "x-ms-correlation-request-id": [ - "6eb9adc1-4ffb-4a4e-95c9-2c1ccd44b539" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220112Z:6eb9adc1-4ffb-4a4e-95c9-2c1ccd44b539" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eeafb596-0602-4f53-9de3-d5f20253e9c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11422" - ], - "x-ms-correlation-request-id": [ - "c0e23d63-da3e-412d-a0a9-9a2a091e78b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220112Z:c0e23d63-da3e-412d-a0a9-9a2a091e78b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8174ca2b-2b90-4206-b624-386489db8b4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11421" - ], - "x-ms-correlation-request-id": [ - "55082f28-99b7-4e42-9a42-1558ac6d1919" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220113Z:55082f28-99b7-4e42-9a42-1558ac6d1919" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b3958e5-1efb-44ac-8923-bd6419114b7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11420" - ], - "x-ms-correlation-request-id": [ - "5070e8ee-461d-4cb6-99ed-335d663942dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220113Z:5070e8ee-461d-4cb6-99ed-335d663942dd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4263b46c-d51b-4085-a6e5-7032a42d4314" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11419" - ], - "x-ms-correlation-request-id": [ - "717c175b-29eb-4e04-baf3-e3682cfcfd58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220113Z:717c175b-29eb-4e04-baf3-e3682cfcfd58" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8571fcd1-d347-4fb4-af63-01372d6de6d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11418" - ], - "x-ms-correlation-request-id": [ - "b42e541c-1773-470d-84cd-59088e431a83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220113Z:b42e541c-1773-470d-84cd-59088e431a83" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d2302d6-bd15-4aeb-8723-0970a90757c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11417" - ], - "x-ms-correlation-request-id": [ - "222aa138-056e-4f6d-80ba-7c095f3c49d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220113Z:222aa138-056e-4f6d-80ba-7c095f3c49d0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "684a7beb-d3b7-45a6-b12f-7109f2ab33c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11416" - ], - "x-ms-correlation-request-id": [ - "cab8afeb-5d26-42ee-bafe-eda868bfd430" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220113Z:cab8afeb-5d26-42ee-bafe-eda868bfd430" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b19e655-d79f-46ae-b832-e084e69b589a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11415" - ], - "x-ms-correlation-request-id": [ - "a358983c-db9a-4e5a-b748-413c91e34251" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220113Z:a358983c-db9a-4e5a-b748-413c91e34251" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0e783e4-1817-4555-acaf-0cc3c2b771c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11414" - ], - "x-ms-correlation-request-id": [ - "c5233652-24b0-4aaf-85a9-62adb078d20c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220113Z:c5233652-24b0-4aaf-85a9-62adb078d20c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1d4bcdc-2933-441e-903e-a33e996cda1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11413" - ], - "x-ms-correlation-request-id": [ - "ec75ec86-82b9-49d5-8759-f27f6ed19288" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220114Z:ec75ec86-82b9-49d5-8759-f27f6ed19288" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ffe579fe-5dce-458c-b23f-1fb1074dae9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11412" - ], - "x-ms-correlation-request-id": [ - "dcd8417d-ab89-4141-abb5-e6667d5c4fcc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220114Z:dcd8417d-ab89-4141-abb5-e6667d5c4fcc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed7f63d6-69cf-4212-9ff7-d79e9859f087" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11411" - ], - "x-ms-correlation-request-id": [ - "446796d1-87e1-4e7e-ba99-510727f249fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220114Z:446796d1-87e1-4e7e-ba99-510727f249fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6275075a-9ad4-4f4b-82d3-97cb604de6b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11410" - ], - "x-ms-correlation-request-id": [ - "a3305213-f554-4979-afd5-9842167229cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220114Z:a3305213-f554-4979-afd5-9842167229cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20407e6f-24bc-4cb5-8ff7-f2d891d4fc63" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11409" - ], - "x-ms-correlation-request-id": [ - "d3c2d73f-03b3-429f-9cef-c9b9d873d345" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220114Z:d3c2d73f-03b3-429f-9cef-c9b9d873d345" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77154ca8-54df-4435-9f86-6dbceec8c211" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11408" - ], - "x-ms-correlation-request-id": [ - "5d09f667-761c-4fed-b4a8-3d047e30fa49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220114Z:5d09f667-761c-4fed-b4a8-3d047e30fa49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ac9e383-ace9-4159-a89e-d018a07061d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11407" - ], - "x-ms-correlation-request-id": [ - "569785d9-a2b4-4c30-bf7c-b0148758e160" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220115Z:569785d9-a2b4-4c30-bf7c-b0148758e160" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "adce1d07-d4df-48d9-9ab9-1e9f87ed241b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11406" - ], - "x-ms-correlation-request-id": [ - "393ef1de-bf05-4ecc-a39c-a066a716d6ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220115Z:393ef1de-bf05-4ecc-a39c-a066a716d6ed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "143c1045-a3fd-4c0e-aea8-193be2068a7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11405" - ], - "x-ms-correlation-request-id": [ - "2018f809-0a5f-4a9e-bb7e-871f9cdb2ad8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220115Z:2018f809-0a5f-4a9e-bb7e-871f9cdb2ad8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "377d76ed-aa73-472a-8da7-ac06e15dc8ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11404" - ], - "x-ms-correlation-request-id": [ - "29606f0d-f75f-49b2-a33b-10cbf98a2141" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220115Z:29606f0d-f75f-49b2-a33b-10cbf98a2141" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f02caf9c-658a-45bb-80f9-30b37983b784" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11403" - ], - "x-ms-correlation-request-id": [ - "2972d0ec-b239-4fa6-a340-8b8d68d8abc8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220115Z:2972d0ec-b239-4fa6-a340-8b8d68d8abc8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "233ee4eb-bd65-4758-8f04-1600897dab77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11402" - ], - "x-ms-correlation-request-id": [ - "bd0346bb-05f1-4c6e-affb-b4924fc66c74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220115Z:bd0346bb-05f1-4c6e-affb-b4924fc66c74" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b502cafa-6246-4c97-b81b-75961c256b24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11401" - ], - "x-ms-correlation-request-id": [ - "68e1fbc4-ebe2-4b8d-b097-a22e168ee989" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220115Z:68e1fbc4-ebe2-4b8d-b097-a22e168ee989" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3684d368-8bdd-4d71-ba71-e028a51fdc14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11400" - ], - "x-ms-correlation-request-id": [ - "42b5e6de-2ba4-49cb-b6b3-3ef050359d6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220116Z:42b5e6de-2ba4-49cb-b6b3-3ef050359d6c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d05729e7-f04d-40ed-b386-ad75167d777c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11399" - ], - "x-ms-correlation-request-id": [ - "796ebb4a-447e-4f13-a4fd-affcab5de51f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220116Z:796ebb4a-447e-4f13-a4fd-affcab5de51f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98415cd7-d770-46ea-a5c2-4a90abbb64c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11398" - ], - "x-ms-correlation-request-id": [ - "4d0f062c-517e-4404-80ca-f071aeee9a7d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220116Z:4d0f062c-517e-4404-80ca-f071aeee9a7d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9bf1bac7-7961-4696-96f9-8dd3d105ba45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11397" - ], - "x-ms-correlation-request-id": [ - "0fd30c61-4ab3-4ea7-9a2d-3b97a868d177" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220116Z:0fd30c61-4ab3-4ea7-9a2d-3b97a868d177" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97535ff8-6cf8-4ef9-8f80-be27b2fc4b71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11396" - ], - "x-ms-correlation-request-id": [ - "364239fd-ce87-4fda-be43-298415c38ac3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220116Z:364239fd-ce87-4fda-be43-298415c38ac3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d559357-d7f5-4cf5-aa6d-a2a102b5f549" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11395" - ], - "x-ms-correlation-request-id": [ - "54aac9e2-79dc-4174-a0fe-7d9a00af98b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220116Z:54aac9e2-79dc-4174-a0fe-7d9a00af98b5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d36676c1-f8d4-4574-8210-9f87bf441393" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11394" - ], - "x-ms-correlation-request-id": [ - "c1bc3a93-8fc4-40b1-a5d7-4e39b3138b28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220116Z:c1bc3a93-8fc4-40b1-a5d7-4e39b3138b28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c169abf0-f0e0-4563-bfc0-d214c9761995" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11393" - ], - "x-ms-correlation-request-id": [ - "67430b3c-b83a-4640-811f-046d4fb4d12b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220117Z:67430b3c-b83a-4640-811f-046d4fb4d12b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84f88e91-21e2-4c61-a431-360ceda09571" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11392" - ], - "x-ms-correlation-request-id": [ - "7e7b3832-ef44-4776-bb86-9bda90e4a7c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220117Z:7e7b3832-ef44-4776-bb86-9bda90e4a7c0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d27dc655-2998-4219-aa7f-ad62b5f26a54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11391" - ], - "x-ms-correlation-request-id": [ - "bd56ed8c-1639-4f35-8144-68105074752e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220117Z:bd56ed8c-1639-4f35-8144-68105074752e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81c80a9b-727b-45a1-a253-8330d59a3e80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11390" - ], - "x-ms-correlation-request-id": [ - "6e8ccc31-e0fe-4a60-ad75-5a859606d117" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220117Z:6e8ccc31-e0fe-4a60-ad75-5a859606d117" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d95c885-bc7d-4720-8707-54b6702fd26a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11389" - ], - "x-ms-correlation-request-id": [ - "0cb34487-5a81-43ca-b568-2c9f85d37ba1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220117Z:0cb34487-5a81-43ca-b568-2c9f85d37ba1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70f05bd8-48aa-411c-aa1c-a17c7e0a1592" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11388" - ], - "x-ms-correlation-request-id": [ - "bd5901dd-d2b3-4a5a-b0a4-0d835de4ce42" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220117Z:bd5901dd-d2b3-4a5a-b0a4-0d835de4ce42" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e117e53-9f9e-4486-9813-af6f72f9e323" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11387" - ], - "x-ms-correlation-request-id": [ - "f62f0258-a240-4456-af3e-8be07658fcb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220117Z:f62f0258-a240-4456-af3e-8be07658fcb9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7bad1434-5a80-4c02-8953-4b8bf04d85d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11386" - ], - "x-ms-correlation-request-id": [ - "6ed3229d-1de0-48ae-a1c8-d0dd6270a113" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220118Z:6ed3229d-1de0-48ae-a1c8-d0dd6270a113" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1a32ba9-b285-4340-b78c-b2c0b9257bf2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11385" - ], - "x-ms-correlation-request-id": [ - "65b23ed6-e9bf-4a96-9d2b-de9f91831e2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220118Z:65b23ed6-e9bf-4a96-9d2b-de9f91831e2e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff40bc19-8094-4338-8197-9681b7e1dc21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11384" - ], - "x-ms-correlation-request-id": [ - "cc7951c0-2ebf-4d61-b685-62ace2f4f0c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220118Z:cc7951c0-2ebf-4d61-b685-62ace2f4f0c9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80f45f51-61e1-4b3a-8fd8-22c316fdde2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11383" - ], - "x-ms-correlation-request-id": [ - "c4baf446-dc1d-4e03-8186-59504d50db76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220118Z:c4baf446-dc1d-4e03-8186-59504d50db76" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2061c30-5091-40a9-8457-b3fe371d3bce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11382" - ], - "x-ms-correlation-request-id": [ - "32723cb6-54b3-48ab-8649-9954c97b3a67" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220118Z:32723cb6-54b3-48ab-8649-9954c97b3a67" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74cee3fd-db71-46eb-ba94-c2cac862954c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11381" - ], - "x-ms-correlation-request-id": [ - "19eb97fc-7e91-4888-9d86-becabe054b89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220118Z:19eb97fc-7e91-4888-9d86-becabe054b89" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5a9c2ee-738f-4df9-b215-5a61d71cb770" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11380" - ], - "x-ms-correlation-request-id": [ - "31746338-3807-4fe8-9d6c-24f5ac21fa48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220119Z:31746338-3807-4fe8-9d6c-24f5ac21fa48" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3cac00e-521a-473b-b068-c83c56e347a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11379" - ], - "x-ms-correlation-request-id": [ - "361dc05c-6f1d-4e1d-b83d-a9a12722017b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220119Z:361dc05c-6f1d-4e1d-b83d-a9a12722017b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d93d9192-6661-4b73-a130-f04b66059363" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11378" - ], - "x-ms-correlation-request-id": [ - "9e3ded2c-c2a1-419b-9426-fffa056515bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220119Z:9e3ded2c-c2a1-419b-9426-fffa056515bc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cacc962b-3a95-4855-b052-f33510550e97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11377" - ], - "x-ms-correlation-request-id": [ - "5cccae08-d20e-4e8c-b8b2-4ea249dd1441" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220119Z:5cccae08-d20e-4e8c-b8b2-4ea249dd1441" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89cd7c1b-04c3-4e5f-b4ca-642fa37beccd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11376" - ], - "x-ms-correlation-request-id": [ - "cf035660-4f22-43d7-bba4-0094dea36135" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220119Z:cf035660-4f22-43d7-bba4-0094dea36135" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b997f453-9f50-4a8e-9e8c-c9d48b1e53f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11375" - ], - "x-ms-correlation-request-id": [ - "c9a519c6-dedb-45e2-9ec7-034a1561ea7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220120Z:c9a519c6-dedb-45e2-9ec7-034a1561ea7e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8c04679-5702-4ff8-818d-37a449bfe3ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11374" - ], - "x-ms-correlation-request-id": [ - "3db0a1e3-2f22-42a1-b6a5-6f9082c3ce4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220120Z:3db0a1e3-2f22-42a1-b6a5-6f9082c3ce4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8f02648-6c51-4b5a-892f-c8b923a5d3d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11373" - ], - "x-ms-correlation-request-id": [ - "6d073b62-75df-4044-b59a-f4eb53a23089" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220120Z:6d073b62-75df-4044-b59a-f4eb53a23089" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb7d7183-d352-4a33-9746-5048ab4c7b85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11372" - ], - "x-ms-correlation-request-id": [ - "75ae5a0a-0b4b-40ca-a0cc-4c6ee0fbf36f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220120Z:75ae5a0a-0b4b-40ca-a0cc-4c6ee0fbf36f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "828335d7-b340-4c96-934e-203be7fcebda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11371" - ], - "x-ms-correlation-request-id": [ - "68512431-beb0-489f-92ac-58fc500ba33c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220120Z:68512431-beb0-489f-92ac-58fc500ba33c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "017e21cd-5968-4f4a-bdeb-2b5b3c700841" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11370" - ], - "x-ms-correlation-request-id": [ - "e2d21478-4413-4e69-ae4f-67a2141d077b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220121Z:e2d21478-4413-4e69-ae4f-67a2141d077b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0e96695-42bb-43d5-b21a-a8474bb79eba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11369" - ], - "x-ms-correlation-request-id": [ - "b75eae68-de31-4523-bf17-3bea6fba3046" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220121Z:b75eae68-de31-4523-bf17-3bea6fba3046" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84cf7157-54ad-4b62-b3ce-eb81c8ec0e24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11368" - ], - "x-ms-correlation-request-id": [ - "ff594c44-1663-4f9a-8ba1-1f0b2fa6a240" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220121Z:ff594c44-1663-4f9a-8ba1-1f0b2fa6a240" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54bdde6e-6bcc-444b-bfe7-4de7a27767bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11367" - ], - "x-ms-correlation-request-id": [ - "d2bdc5fe-e8f1-4528-af69-1c0953bcb3f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220121Z:d2bdc5fe-e8f1-4528-af69-1c0953bcb3f3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f9f1369-394a-4474-bfb1-12de80c549af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11366" - ], - "x-ms-correlation-request-id": [ - "56864ee6-4174-4bc4-8930-20ccc7c59e8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220121Z:56864ee6-4174-4bc4-8930-20ccc7c59e8e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff28d43c-5d46-4a79-89d5-83da6a772d28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11365" - ], - "x-ms-correlation-request-id": [ - "7821395a-3c73-47fb-a562-25bd72786a09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220121Z:7821395a-3c73-47fb-a562-25bd72786a09" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9055981-b7d1-4f7d-a61c-c1ea71ab9f3d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11364" - ], - "x-ms-correlation-request-id": [ - "fc557eed-bda2-4f61-8813-c30b96206c82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220122Z:fc557eed-bda2-4f61-8813-c30b96206c82" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63a0cc9b-b666-431d-a38d-125d809e55cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11363" - ], - "x-ms-correlation-request-id": [ - "fba2fb9e-39db-4174-9eb7-2f23ac443a4d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220122Z:fba2fb9e-39db-4174-9eb7-2f23ac443a4d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5dc245c5-f7b7-4359-8c66-52a4068f8799" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11362" - ], - "x-ms-correlation-request-id": [ - "85a6a141-c0fb-46ac-afde-4a57523b19ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220122Z:85a6a141-c0fb-46ac-afde-4a57523b19ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c08fee92-733d-4cb3-a375-f72cd4dde6a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11361" - ], - "x-ms-correlation-request-id": [ - "3afac83a-52fa-45ae-adcd-966703280b23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220122Z:3afac83a-52fa-45ae-adcd-966703280b23" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4eb7147b-5eec-4a7b-9c1c-433a83937e20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11360" - ], - "x-ms-correlation-request-id": [ - "7cad4ca9-e45c-4b7a-88e2-6c6bc3736aa9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220122Z:7cad4ca9-e45c-4b7a-88e2-6c6bc3736aa9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d618ba4-4479-4f45-a745-bb3f264d0160" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11359" - ], - "x-ms-correlation-request-id": [ - "68c532bc-f619-4b07-a879-d829920312c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220122Z:68c532bc-f619-4b07-a879-d829920312c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b69aaa8c-3dea-42a0-8e3a-2c034bee40f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11358" - ], - "x-ms-correlation-request-id": [ - "602b36ff-d944-47f8-979f-c6911c4f0ab9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220122Z:602b36ff-d944-47f8-979f-c6911c4f0ab9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d43fa91-d14e-4720-913d-9467f7db3028" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11357" - ], - "x-ms-correlation-request-id": [ - "1a065b3d-fb65-4f1b-9f1f-312cd4e8056f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220122Z:1a065b3d-fb65-4f1b-9f1f-312cd4e8056f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4e702d4-4874-47e8-b233-10f1d5c2208c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11356" - ], - "x-ms-correlation-request-id": [ - "4f0c0499-d270-4946-bb22-5356883b8edd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220123Z:4f0c0499-d270-4946-bb22-5356883b8edd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b345ad64-d0b0-43c4-9f57-7ba641f58143" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11355" - ], - "x-ms-correlation-request-id": [ - "ab08f3dc-468b-4257-a297-40ff1ed2ad35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220123Z:ab08f3dc-468b-4257-a297-40ff1ed2ad35" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d252922c-075b-4726-9481-195910ccc526" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11354" - ], - "x-ms-correlation-request-id": [ - "e81f13cb-bd9e-46ad-bfef-b55d9141f316" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220123Z:e81f13cb-bd9e-46ad-bfef-b55d9141f316" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "932d0b00-f53f-4b12-9497-f566c9614c5f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11353" - ], - "x-ms-correlation-request-id": [ - "c2ca24e4-f252-465d-8294-e83e09ab190a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220123Z:c2ca24e4-f252-465d-8294-e83e09ab190a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53629cdb-147e-49b6-983f-470bd0e972cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11352" - ], - "x-ms-correlation-request-id": [ - "b0d83283-8bf6-428d-b6fc-cc43242a7a76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220123Z:b0d83283-8bf6-428d-b6fc-cc43242a7a76" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5551da5-ba3b-459d-8f38-3bb76f990ef7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11351" - ], - "x-ms-correlation-request-id": [ - "0e1100fc-b4c1-4fc4-a84b-8fcd5868930a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220123Z:0e1100fc-b4c1-4fc4-a84b-8fcd5868930a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "964a50e2-753f-4711-91bc-bc33304f9e03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11350" - ], - "x-ms-correlation-request-id": [ - "d9e6cc72-8dfc-4e60-9f6d-293a330df18b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220124Z:d9e6cc72-8dfc-4e60-9f6d-293a330df18b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56b54a92-4ded-48f8-bc84-ac7c64373132" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11349" - ], - "x-ms-correlation-request-id": [ - "5bffae97-6849-46b2-a551-eb2d6a721ca3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220124Z:5bffae97-6849-46b2-a551-eb2d6a721ca3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5511be4-0271-4a4b-aa05-0e714b98a146" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11348" - ], - "x-ms-correlation-request-id": [ - "9f7259d5-534b-4145-bc40-3418492cfef9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220124Z:9f7259d5-534b-4145-bc40-3418492cfef9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "556770da-02c2-40a6-9a16-81c3ee19242f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11347" - ], - "x-ms-correlation-request-id": [ - "e8ce4681-5052-4ec9-ae7c-13a6bd7fcbf7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220124Z:e8ce4681-5052-4ec9-ae7c-13a6bd7fcbf7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31c68613-5152-497c-965c-05705f95884b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11346" - ], - "x-ms-correlation-request-id": [ - "07d33b2f-c754-4fdc-9495-817493556665" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220124Z:07d33b2f-c754-4fdc-9495-817493556665" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ea6ba2f-3aaf-48f5-b0e1-6776d28a574a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11345" - ], - "x-ms-correlation-request-id": [ - "5294e60a-531e-4864-b9d7-7306bf5b4144" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220124Z:5294e60a-531e-4864-b9d7-7306bf5b4144" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac56fdeb-545d-41bc-b67a-b6120aa0e4df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11344" - ], - "x-ms-correlation-request-id": [ - "76606d88-294e-458b-9325-e0f4a53361ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220125Z:76606d88-294e-458b-9325-e0f4a53361ff" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a06d282-1c32-4906-bf68-bc1f870dfa69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11343" - ], - "x-ms-correlation-request-id": [ - "0f52f1b2-f6a6-4a51-9f6b-d536bf62814d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220125Z:0f52f1b2-f6a6-4a51-9f6b-d536bf62814d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "09c15b22-6e50-4597-a417-776efe66802c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11342" - ], - "x-ms-correlation-request-id": [ - "08f06e48-9d5d-424e-afe5-22db6ef98a9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220125Z:08f06e48-9d5d-424e-afe5-22db6ef98a9f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e602050-dd6e-4d05-ac82-e18b0ba950ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11341" - ], - "x-ms-correlation-request-id": [ - "cedf897f-a758-4668-a788-0eebfbf6af4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220125Z:cedf897f-a758-4668-a788-0eebfbf6af4b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "349855bc-c5b9-4e94-bc77-941c7d2cbc6b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11340" - ], - "x-ms-correlation-request-id": [ - "a1b1755f-92fe-40b1-ab60-90d1051971d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220125Z:a1b1755f-92fe-40b1-ab60-90d1051971d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efe333e1-ace1-444f-b28f-6eee39e094db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11339" - ], - "x-ms-correlation-request-id": [ - "13f23bb4-ad7b-418d-9a67-7f30af27ed37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220125Z:13f23bb4-ad7b-418d-9a67-7f30af27ed37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d7ccc74-5827-485a-898c-9a901005642a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11338" - ], - "x-ms-correlation-request-id": [ - "dfd0c17d-81e0-4c89-96a9-a4eed8b8d88b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220125Z:dfd0c17d-81e0-4c89-96a9-a4eed8b8d88b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a4867a0-8330-4bf7-81ca-1c025c63b5af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11337" - ], - "x-ms-correlation-request-id": [ - "f38fef5d-03d8-4ebf-a251-0360ad1abc3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220126Z:f38fef5d-03d8-4ebf-a251-0360ad1abc3c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad084f6e-9334-4d90-a7de-cf689ecf6ce9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11336" - ], - "x-ms-correlation-request-id": [ - "af90968c-8ae5-41cd-ba58-d525707b98ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220126Z:af90968c-8ae5-41cd-ba58-d525707b98ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db2bf20a-2356-4fff-b8ea-195af8ea1888" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11335" - ], - "x-ms-correlation-request-id": [ - "2f7a1408-593b-487f-b309-48473c47f364" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220126Z:2f7a1408-593b-487f-b309-48473c47f364" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f160895d-0b9d-47a8-b974-0c9d73808ee1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11334" - ], - "x-ms-correlation-request-id": [ - "297de48a-dbe0-40a6-acc1-80af9b6b787f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220126Z:297de48a-dbe0-40a6-acc1-80af9b6b787f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dded7768-7760-4867-a464-12ffce62b30a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11333" - ], - "x-ms-correlation-request-id": [ - "54895c33-1a58-4383-ae9c-ce93c56dab39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220126Z:54895c33-1a58-4383-ae9c-ce93c56dab39" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb7db148-d8f7-4b31-b22c-accdf93f6950" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11332" - ], - "x-ms-correlation-request-id": [ - "e6950246-f97a-4c21-9a28-c4a6e6b4f75a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220126Z:e6950246-f97a-4c21-9a28-c4a6e6b4f75a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a88919a8-fbb5-4aeb-ba5f-7cd34c1fe1c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11331" - ], - "x-ms-correlation-request-id": [ - "ec34fdc9-2b84-4682-bd21-f749d6cad2bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220127Z:ec34fdc9-2b84-4682-bd21-f749d6cad2bc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7d189c6-42bf-44b0-bf5c-5fe4e5171ae1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11330" - ], - "x-ms-correlation-request-id": [ - "d2880b9c-ed9c-4a53-ba28-b3e1b411dca7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220127Z:d2880b9c-ed9c-4a53-ba28-b3e1b411dca7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1927b2bb-527c-4faa-b054-5b0f8c91f035" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11329" - ], - "x-ms-correlation-request-id": [ - "0a8ec4ce-7261-4c95-9713-eca374fef490" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220127Z:0a8ec4ce-7261-4c95-9713-eca374fef490" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f931695e-975e-4de5-b53a-b57ff62b73a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11328" - ], - "x-ms-correlation-request-id": [ - "92f06935-ce16-4210-be9a-01e63ef6137b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220127Z:92f06935-ce16-4210-be9a-01e63ef6137b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b277d8ce-8dcc-4293-a066-81959a041dbd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11327" - ], - "x-ms-correlation-request-id": [ - "25b84330-2bf9-43eb-ac5f-3dd5e959db44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220127Z:25b84330-2bf9-43eb-ac5f-3dd5e959db44" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05243913-022a-4556-a3ab-0bb8022ddca1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11326" - ], - "x-ms-correlation-request-id": [ - "e0b7f88c-49f7-4c3c-9ef5-56e78ab06a93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220127Z:e0b7f88c-49f7-4c3c-9ef5-56e78ab06a93" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b268874-17ae-4d7d-9242-aa4085850010" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11325" - ], - "x-ms-correlation-request-id": [ - "c5aff2a3-1c07-45a8-831b-1d60ec3b4d8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220128Z:c5aff2a3-1c07-45a8-831b-1d60ec3b4d8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f698a95f-8fdb-4c80-8474-aabdac03246d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11324" - ], - "x-ms-correlation-request-id": [ - "db76bfdf-ff0b-48cd-95ec-54a94686ffd6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220128Z:db76bfdf-ff0b-48cd-95ec-54a94686ffd6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef8a4096-e9dd-40de-bcdf-e2b829e23090" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11323" - ], - "x-ms-correlation-request-id": [ - "a674292b-6e07-485a-ad89-b473b858243f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220128Z:a674292b-6e07-485a-ad89-b473b858243f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68d3567d-ddb5-4e0b-84f1-250f7516e544" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11322" - ], - "x-ms-correlation-request-id": [ - "9cdfae53-4bd4-4acd-90c6-339a6943fecb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220128Z:9cdfae53-4bd4-4acd-90c6-339a6943fecb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cbd84061-f2f9-4789-9215-0332a5e02741" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11321" - ], - "x-ms-correlation-request-id": [ - "ae8d5e8c-3de8-445f-abf2-c5c02939d1f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220128Z:ae8d5e8c-3de8-445f-abf2-c5c02939d1f5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e180cf3a-9739-4844-b3b0-05306a2b1adc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11320" - ], - "x-ms-correlation-request-id": [ - "d29efde4-3222-4b21-b795-74635bed85c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220128Z:d29efde4-3222-4b21-b795-74635bed85c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4127edec-db73-48f2-8c58-6f3df817c2ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11319" - ], - "x-ms-correlation-request-id": [ - "8291a35a-d580-42e5-9baf-8779b94aae08" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220128Z:8291a35a-d580-42e5-9baf-8779b94aae08" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65e46738-5f73-4086-8a2f-bb66e5c3e765" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11318" - ], - "x-ms-correlation-request-id": [ - "004ea12f-85f4-4d4b-a482-f38193afd1b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220128Z:004ea12f-85f4-4d4b-a482-f38193afd1b5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f20954f-9162-4f3f-a5f2-488d6935135a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11317" - ], - "x-ms-correlation-request-id": [ - "5027d624-f4c4-4634-abae-8d0d4dd711b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220129Z:5027d624-f4c4-4634-abae-8d0d4dd711b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d3585bc-1aa4-43a6-b603-1e5170d825c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11316" - ], - "x-ms-correlation-request-id": [ - "693bd39a-01f1-47eb-a130-58c73bf40994" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220129Z:693bd39a-01f1-47eb-a130-58c73bf40994" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a92a3ae5-a6da-4039-811e-b64b94daa023" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11315" - ], - "x-ms-correlation-request-id": [ - "6ad16e7c-2756-4b2d-8cb3-aae9c0642324" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220129Z:6ad16e7c-2756-4b2d-8cb3-aae9c0642324" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01a50a96-bfa6-4fed-8789-8857d6ebaea6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11314" - ], - "x-ms-correlation-request-id": [ - "02b895db-707d-4b9d-9f91-606a81b3f316" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220129Z:02b895db-707d-4b9d-9f91-606a81b3f316" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee792a1a-d04a-48d0-b99b-6e316d944f57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11313" - ], - "x-ms-correlation-request-id": [ - "40aa8d96-131c-4ae9-b06a-43910315c54a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220129Z:40aa8d96-131c-4ae9-b06a-43910315c54a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df1b7afb-40b3-48ab-9188-c2f058416033" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11312" - ], - "x-ms-correlation-request-id": [ - "5ee66c82-b6cc-4117-af35-8d0863730e02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220129Z:5ee66c82-b6cc-4117-af35-8d0863730e02" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "07909406-aa3f-4749-9863-fb94a720d151" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11311" - ], - "x-ms-correlation-request-id": [ - "d36daf27-8884-46dd-a62b-5c88c5764ca8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220130Z:d36daf27-8884-46dd-a62b-5c88c5764ca8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8a7bbeb-525e-4747-99a4-f2e2e8801615" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11310" - ], - "x-ms-correlation-request-id": [ - "8870c8f7-9745-48c0-8eaf-3c48072f8e13" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220130Z:8870c8f7-9745-48c0-8eaf-3c48072f8e13" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ba8e40b-dda8-4d6b-b998-0b009c9e7525" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11309" - ], - "x-ms-correlation-request-id": [ - "5a6ac2ed-d690-48e5-82ca-450c3bd00f34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220130Z:5a6ac2ed-d690-48e5-82ca-450c3bd00f34" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7b8e37c-6b3a-4c16-b7e9-c6fecb339876" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11308" - ], - "x-ms-correlation-request-id": [ - "0ebf4c4b-eb7e-4823-a6ff-375cc87d1d72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220130Z:0ebf4c4b-eb7e-4823-a6ff-375cc87d1d72" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ce36479-edbf-456c-b09a-5c2bb396006f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11307" - ], - "x-ms-correlation-request-id": [ - "80611eb3-d4d5-4516-9874-87584db57661" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220130Z:80611eb3-d4d5-4516-9874-87584db57661" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5626217c-6090-48a4-baa9-2c741cb26dcb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11306" - ], - "x-ms-correlation-request-id": [ - "2a7257f5-8e17-44e7-bcea-5eaec8e5c057" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220130Z:2a7257f5-8e17-44e7-bcea-5eaec8e5c057" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "296d0d5b-038b-4312-8494-180d6a4af0c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11305" - ], - "x-ms-correlation-request-id": [ - "5160715f-07c1-4b99-a03b-bcf93fed6b8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220130Z:5160715f-07c1-4b99-a03b-bcf93fed6b8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6b10fa8-ecd1-4c0b-ada3-6a5bad43bef7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11304" - ], - "x-ms-correlation-request-id": [ - "95b0a40a-6d23-4a95-8d97-70ad7eb0c812" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220131Z:95b0a40a-6d23-4a95-8d97-70ad7eb0c812" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18d69de2-6237-411b-a518-df3140e9f36b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11303" - ], - "x-ms-correlation-request-id": [ - "70033089-bb2c-4ec8-bad7-8e6ae9367a9b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220131Z:70033089-bb2c-4ec8-bad7-8e6ae9367a9b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9937b09e-600c-400f-9cf9-d720f730ad5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11302" - ], - "x-ms-correlation-request-id": [ - "6a6aa156-be42-427f-b99c-5cd0c859d072" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220131Z:6a6aa156-be42-427f-b99c-5cd0c859d072" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2cebb28-a182-4eea-8a36-ad4681984353" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11301" - ], - "x-ms-correlation-request-id": [ - "e4add140-2ddf-4f31-b96c-ee52e91f466c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220131Z:e4add140-2ddf-4f31-b96c-ee52e91f466c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "780ed034-02c1-4a95-b955-c0c988132d6d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11300" - ], - "x-ms-correlation-request-id": [ - "d3927310-7fcd-4e75-a3b4-823661dc321b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220131Z:d3927310-7fcd-4e75-a3b4-823661dc321b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e3c18ae-be21-4c46-95dc-713d0ab56be6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11299" - ], - "x-ms-correlation-request-id": [ - "cffe10ba-ed6e-445c-bed6-54981c0ec426" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220131Z:cffe10ba-ed6e-445c-bed6-54981c0ec426" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3eb008e1-d1d4-4aff-827f-f04ca69f966e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11298" - ], - "x-ms-correlation-request-id": [ - "80b4e4b4-f449-4158-9e53-8102f581a375" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220131Z:80b4e4b4-f449-4158-9e53-8102f581a375" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5bd57a77-05a0-4d51-917c-18622bae14a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11297" - ], - "x-ms-correlation-request-id": [ - "dc564115-a4a8-49dc-9e83-95a85388a5ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220132Z:dc564115-a4a8-49dc-9e83-95a85388a5ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d448618-c43f-42ec-8ccf-2af06a4ca051" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11296" - ], - "x-ms-correlation-request-id": [ - "7d5627d0-e870-43d4-8d74-8debc3a20155" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220132Z:7d5627d0-e870-43d4-8d74-8debc3a20155" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6b4660b-b9e7-4871-8214-e76ea5e9a40d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11295" - ], - "x-ms-correlation-request-id": [ - "808123a3-d453-49f0-8f57-730af069fef3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220132Z:808123a3-d453-49f0-8f57-730af069fef3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "298ee95c-92f9-45d6-8610-c793d1bdf9dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11294" - ], - "x-ms-correlation-request-id": [ - "9e83c2d4-89f3-4d96-8847-5e2334d3b1c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220132Z:9e83c2d4-89f3-4d96-8847-5e2334d3b1c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1f3c385-019a-4312-a934-136d735ed47f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11293" - ], - "x-ms-correlation-request-id": [ - "b706cd76-9f02-4917-ad27-01a45c1a39ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220132Z:b706cd76-9f02-4917-ad27-01a45c1a39ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57a40dc0-883a-489b-ac51-7f271745ff59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11292" - ], - "x-ms-correlation-request-id": [ - "3c9152c1-bde1-4a12-a146-b9b8157d8fd5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220132Z:3c9152c1-bde1-4a12-a146-b9b8157d8fd5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99cbac69-f5a3-4e79-8c35-b99efa9fed46" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11291" - ], - "x-ms-correlation-request-id": [ - "d63fbe25-ff2d-4076-8652-33f6201f0e11" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220132Z:d63fbe25-ff2d-4076-8652-33f6201f0e11" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e29d10e-710b-48f1-a800-54222dd8b008" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11290" - ], - "x-ms-correlation-request-id": [ - "88543a03-2ad6-4598-ae9b-9fb6f78c6cd1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220133Z:88543a03-2ad6-4598-ae9b-9fb6f78c6cd1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a647cb7-9623-466e-a08d-078d2420ed47" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11289" - ], - "x-ms-correlation-request-id": [ - "6f5e52b5-4f6c-456f-9315-b0e5c753130d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220133Z:6f5e52b5-4f6c-456f-9315-b0e5c753130d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c591c1f2-6595-4cf8-bfc5-9f80733b3394" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11288" - ], - "x-ms-correlation-request-id": [ - "bcbc728b-c9c4-48b2-a7dc-8a8da759fdf4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220133Z:bcbc728b-c9c4-48b2-a7dc-8a8da759fdf4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8d42606-d6c1-46a5-83e3-9da0e07a6994" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11287" - ], - "x-ms-correlation-request-id": [ - "73bfeb4c-a822-4715-8d7f-cb0ea0879954" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220133Z:73bfeb4c-a822-4715-8d7f-cb0ea0879954" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bbf78f65-cb79-417c-bdcb-9e05ff33c07b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11286" - ], - "x-ms-correlation-request-id": [ - "f28216eb-b879-49ce-afeb-e0e0a14677a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220133Z:f28216eb-b879-49ce-afeb-e0e0a14677a6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c4e2b670-e28c-42e1-a572-4b8c3b362462" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11285" - ], - "x-ms-correlation-request-id": [ - "6d5ec4f9-8a30-4107-9811-3a3bd9254881" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220133Z:6d5ec4f9-8a30-4107-9811-3a3bd9254881" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3209529f-646c-4120-b488-a301fa3b0e5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11284" - ], - "x-ms-correlation-request-id": [ - "1cc0c53a-0237-40fc-9ebe-2008be313f8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220134Z:1cc0c53a-0237-40fc-9ebe-2008be313f8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b199202-4034-4ad5-8060-ceb6b65ef15f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11283" - ], - "x-ms-correlation-request-id": [ - "780a4ff0-932b-4931-87df-8d0998e5fb4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220134Z:780a4ff0-932b-4931-87df-8d0998e5fb4c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78f02725-9a8d-4a29-8ead-2cb3cd7f331d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11282" - ], - "x-ms-correlation-request-id": [ - "9801802b-23a4-44fb-9c63-fc4a6e94b9cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220134Z:9801802b-23a4-44fb-9c63-fc4a6e94b9cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ba25497-6098-4a36-882d-eb9acd501933" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11281" - ], - "x-ms-correlation-request-id": [ - "70197735-1c80-423a-b506-41c7444ee07c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220134Z:70197735-1c80-423a-b506-41c7444ee07c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42c12724-9725-4bca-8833-90887b7b736f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11280" - ], - "x-ms-correlation-request-id": [ - "0de4548b-5e90-4c5e-8cdf-3cd39e8cb4f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220134Z:0de4548b-5e90-4c5e-8cdf-3cd39e8cb4f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a46c6b4-f71c-48c7-a941-05468d0ba8c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11279" - ], - "x-ms-correlation-request-id": [ - "98234059-8667-42c5-b8a4-c7a8ade34ae4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220134Z:98234059-8667-42c5-b8a4-c7a8ade34ae4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "680f4f00-30eb-4747-8e3a-11010b7319bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11278" - ], - "x-ms-correlation-request-id": [ - "e83bb383-5f82-4f97-833e-a671fc9e080d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220135Z:e83bb383-5f82-4f97-833e-a671fc9e080d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52dd0529-cf08-40fc-af14-2548d9aff009" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11277" - ], - "x-ms-correlation-request-id": [ - "5fae07f3-7da6-4a18-8ab6-a78103c475c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220135Z:5fae07f3-7da6-4a18-8ab6-a78103c475c4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b9ad3f0-272a-4f99-a3fd-2e453ea88ac2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11276" - ], - "x-ms-correlation-request-id": [ - "91683d85-353b-4651-aced-81a3e719d6be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220135Z:91683d85-353b-4651-aced-81a3e719d6be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "051ebcad-67ed-4c57-990c-d16b92b72e07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11275" - ], - "x-ms-correlation-request-id": [ - "9f564c2f-616f-4dee-9de2-adcf75c72f81" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220135Z:9f564c2f-616f-4dee-9de2-adcf75c72f81" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d9f8219-8794-4594-bda6-72b96616c32d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11274" - ], - "x-ms-correlation-request-id": [ - "ce7748ba-9b4d-4d34-b31e-e66f6bfff0b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220135Z:ce7748ba-9b4d-4d34-b31e-e66f6bfff0b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97da87df-d958-42d2-aa42-8f13a367ccbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11273" - ], - "x-ms-correlation-request-id": [ - "da86321e-b589-485b-8106-0b9b9bf55454" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220135Z:da86321e-b589-485b-8106-0b9b9bf55454" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f53bb941-19d5-4a78-bd8a-b183ad355028" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11272" - ], - "x-ms-correlation-request-id": [ - "81127243-6831-4773-a063-fbb544686dbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220136Z:81127243-6831-4773-a063-fbb544686dbe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d61b81c6-4ff1-4be5-8dc6-885dc33f1abd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11271" - ], - "x-ms-correlation-request-id": [ - "461a44a4-e709-47b9-b4be-0c1ceab61c32" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220136Z:461a44a4-e709-47b9-b4be-0c1ceab61c32" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "703c1a17-b452-432b-ad1e-91910fbbb705" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11270" - ], - "x-ms-correlation-request-id": [ - "f941298a-7b28-425a-ba1b-fca374d5db97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220136Z:f941298a-7b28-425a-ba1b-fca374d5db97" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "32587746-1ea8-4164-b148-e49e67762247" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11269" - ], - "x-ms-correlation-request-id": [ - "7b8d8428-19b5-417d-b270-6b90e0150945" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220136Z:7b8d8428-19b5-417d-b270-6b90e0150945" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89cc4586-7a81-4a88-b6c7-8e265406c2c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11268" - ], - "x-ms-correlation-request-id": [ - "333c2f7a-d723-461d-988e-9688326ccdbc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220136Z:333c2f7a-d723-461d-988e-9688326ccdbc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93d8f1b4-6610-40a4-8430-d3c93416e455" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11267" - ], - "x-ms-correlation-request-id": [ - "dd2130ba-b6ed-499c-a72a-715ef417910a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220137Z:dd2130ba-b6ed-499c-a72a-715ef417910a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70c904d0-0b7e-44b4-a727-5bbe049ccdd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11266" - ], - "x-ms-correlation-request-id": [ - "e8522b97-efab-454b-a865-194bdf4c6a21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220137Z:e8522b97-efab-454b-a865-194bdf4c6a21" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17a0abde-e3ff-4473-9332-b9cdd682d0d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11265" - ], - "x-ms-correlation-request-id": [ - "7fb9fced-a80f-4664-bf44-e1001c826a81" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220137Z:7fb9fced-a80f-4664-bf44-e1001c826a81" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "deae859c-f7e8-4bac-b944-04039b98af81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11264" - ], - "x-ms-correlation-request-id": [ - "c0925d16-3545-4eef-bdfb-2dc08a99461b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220137Z:c0925d16-3545-4eef-bdfb-2dc08a99461b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ca91a8c-7b22-4874-a28a-78ffe2d89f2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11263" - ], - "x-ms-correlation-request-id": [ - "562a21fb-c5ce-4177-b6e2-295335eff462" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220137Z:562a21fb-c5ce-4177-b6e2-295335eff462" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38cc96ae-d6cb-46ec-86b1-65737083f9b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11262" - ], - "x-ms-correlation-request-id": [ - "fa8871aa-740a-4766-aaf2-2113fbbdb8c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220137Z:fa8871aa-740a-4766-aaf2-2113fbbdb8c9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73981392-3c4a-434b-9ed7-fc6ca1ec4fbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11261" - ], - "x-ms-correlation-request-id": [ - "286876ae-21d0-43af-ac01-5da5b36d0f18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220137Z:286876ae-21d0-43af-ac01-5da5b36d0f18" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ec323250-3179-43ad-9c22-ae26c6790232" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11260" - ], - "x-ms-correlation-request-id": [ - "4e3630f6-f80d-44bc-b281-ce3ea80f86d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220138Z:4e3630f6-f80d-44bc-b281-ce3ea80f86d6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a7532bf-3f00-4919-a6dd-0feee3257cff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11259" - ], - "x-ms-correlation-request-id": [ - "d051ea86-6071-49bb-892d-98f1872c39eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220138Z:d051ea86-6071-49bb-892d-98f1872c39eb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3df63113-5089-468b-be49-33d791ab122a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11258" - ], - "x-ms-correlation-request-id": [ - "de85b5d5-cdd3-4e5a-9ed7-6fa120a7ee72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220138Z:de85b5d5-cdd3-4e5a-9ed7-6fa120a7ee72" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e9ea2b26-a874-4b43-9469-8e11b826fc46" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11257" - ], - "x-ms-correlation-request-id": [ - "25a6973a-86d8-4960-bbd6-449c2ff04c12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220138Z:25a6973a-86d8-4960-bbd6-449c2ff04c12" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d83aa56-d3ad-43d5-9c79-209743d788dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11256" - ], - "x-ms-correlation-request-id": [ - "4b81cffc-1cb1-425c-9be7-c7efab536c29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220138Z:4b81cffc-1cb1-425c-9be7-c7efab536c29" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8311299-3ecd-4561-99f8-8c33b4631292" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11255" - ], - "x-ms-correlation-request-id": [ - "d0ef568c-b062-4ef9-820e-899259f94010" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220138Z:d0ef568c-b062-4ef9-820e-899259f94010" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b708842-4968-4091-ad7e-1bcc9746edde" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11254" - ], - "x-ms-correlation-request-id": [ - "c2cf9199-1825-4746-8de9-4928f7e30c1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220138Z:c2cf9199-1825-4746-8de9-4928f7e30c1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "998ed2e9-993e-4768-b5b4-d65b9975a0a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11253" - ], - "x-ms-correlation-request-id": [ - "7a92870a-e51e-474c-bbde-abe797ea37f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220139Z:7a92870a-e51e-474c-bbde-abe797ea37f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d16b225-7311-4297-8488-595c428d3369" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11252" - ], - "x-ms-correlation-request-id": [ - "e0b5d6a0-8123-4700-ab00-0d265ff16b77" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220139Z:e0b5d6a0-8123-4700-ab00-0d265ff16b77" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c5f9d59-8c4e-4839-8e29-2ec7f27f8ed1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11251" - ], - "x-ms-correlation-request-id": [ - "0f40adb3-d586-4880-9a93-ab8e592ea49e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220139Z:0f40adb3-d586-4880-9a93-ab8e592ea49e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd8a4d10-33be-4a0d-a737-cb9cb85e46ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11250" - ], - "x-ms-correlation-request-id": [ - "2f82b6ad-dcc1-4014-908d-84566ed53845" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220139Z:2f82b6ad-dcc1-4014-908d-84566ed53845" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e176709f-cfbe-4ca2-a809-99ed886779c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11249" - ], - "x-ms-correlation-request-id": [ - "8edc8d3d-c587-4aab-8c8c-761bf4a2dbd6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220139Z:8edc8d3d-c587-4aab-8c8c-761bf4a2dbd6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72de303d-0381-4136-85ae-da820e196b35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11248" - ], - "x-ms-correlation-request-id": [ - "4165f647-8c50-470f-af4f-b95d98b2231f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220139Z:4165f647-8c50-470f-af4f-b95d98b2231f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19d78a6d-1115-4fa0-965e-480ae8120762" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11247" - ], - "x-ms-correlation-request-id": [ - "6b7b2d9d-90ad-49f7-ae20-6cd8c2773f24" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220140Z:6b7b2d9d-90ad-49f7-ae20-6cd8c2773f24" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a4b73a1-705a-4e4e-87da-ffdc70887d73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11246" - ], - "x-ms-correlation-request-id": [ - "72d5397a-e043-47fc-9c15-5b65a7b81595" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220140Z:72d5397a-e043-47fc-9c15-5b65a7b81595" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e391a09-191d-4ae8-b14e-613988d86825" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11245" - ], - "x-ms-correlation-request-id": [ - "56f24910-4667-4e54-a5ef-c8da19956b34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220140Z:56f24910-4667-4e54-a5ef-c8da19956b34" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e79d2230-b204-486f-be8e-fa72c32a7e8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11244" - ], - "x-ms-correlation-request-id": [ - "12cf0d15-4ba8-41c3-bcf7-dbd2a40d3fb3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220140Z:12cf0d15-4ba8-41c3-bcf7-dbd2a40d3fb3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a02e9185-21e7-4ef9-a167-559a66f19732" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11243" - ], - "x-ms-correlation-request-id": [ - "969eb167-89ca-49a0-93fa-93111d47e2fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220140Z:969eb167-89ca-49a0-93fa-93111d47e2fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "26bc5245-7c64-40a9-903d-8d4955d47ccd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11242" - ], - "x-ms-correlation-request-id": [ - "a66a5d17-cdc1-4f9a-b16e-f65b4fb128af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220140Z:a66a5d17-cdc1-4f9a-b16e-f65b4fb128af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b5688e4-cb8d-4d5b-be0c-3b417e3aae71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11241" - ], - "x-ms-correlation-request-id": [ - "fa01f9eb-ed69-4a21-be3b-f926a02b19a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220140Z:fa01f9eb-ed69-4a21-be3b-f926a02b19a9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "faa370e6-b2f7-4c12-ba9f-7585a9622811" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11240" - ], - "x-ms-correlation-request-id": [ - "abf2c15c-605c-4331-b79a-f6fb6f7a2103" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220141Z:abf2c15c-605c-4331-b79a-f6fb6f7a2103" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36c22fb9-04bd-404a-a111-70b708d42a8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11239" - ], - "x-ms-correlation-request-id": [ - "17e062e4-fe87-4860-89c5-b71f8346bd3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220141Z:17e062e4-fe87-4860-89c5-b71f8346bd3b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f37e9270-3b2d-4698-a651-2a7d3a68cad0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11238" - ], - "x-ms-correlation-request-id": [ - "bd49139d-e350-429f-a6dc-ab2c0de5f068" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220141Z:bd49139d-e350-429f-a6dc-ab2c0de5f068" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4db7f93f-2335-47bf-bc46-6719e23ab7c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11237" - ], - "x-ms-correlation-request-id": [ - "951ce369-54c3-4638-9c31-bfe8bbb54fd2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220141Z:951ce369-54c3-4638-9c31-bfe8bbb54fd2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9560bf6c-b877-4f21-82e6-a06374e9fb91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11236" - ], - "x-ms-correlation-request-id": [ - "fdb84fb7-94ac-4ee4-82a3-315d2a572068" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220141Z:fdb84fb7-94ac-4ee4-82a3-315d2a572068" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b22874c-4841-4f48-a329-acb7696ff442" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11235" - ], - "x-ms-correlation-request-id": [ - "2fee1471-1c90-4813-8caf-8ee872d3095c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220141Z:2fee1471-1c90-4813-8caf-8ee872d3095c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d037c8d-61ff-4781-b59f-630662932c8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11234" - ], - "x-ms-correlation-request-id": [ - "c930c859-001a-4dc2-8e3a-5f0465eb89cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220141Z:c930c859-001a-4dc2-8e3a-5f0465eb89cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8821592-f92e-4cf2-965e-98d6fe7da9de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11233" - ], - "x-ms-correlation-request-id": [ - "fd8f72ab-9aa2-44c1-840a-94b5d3cfa48c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220142Z:fd8f72ab-9aa2-44c1-840a-94b5d3cfa48c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdfdb67a-3b88-4766-8d9a-e36deb6e26aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11232" - ], - "x-ms-correlation-request-id": [ - "29cc9675-9607-4766-b519-e982f1f3d5fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220142Z:29cc9675-9607-4766-b519-e982f1f3d5fa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2795f3c4-3b0e-4070-b2c2-dd1cf3075d49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11231" - ], - "x-ms-correlation-request-id": [ - "377cb264-1e36-4794-beb4-344a0ffd53a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220142Z:377cb264-1e36-4794-beb4-344a0ffd53a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c8c7c69-8418-4226-a78e-ea8f96d5543b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11230" - ], - "x-ms-correlation-request-id": [ - "cca39df3-9d88-449c-98a9-6dd9e0f2c630" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220142Z:cca39df3-9d88-449c-98a9-6dd9e0f2c630" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "601c988d-d8ab-4f9a-9ab4-393945c310f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11229" - ], - "x-ms-correlation-request-id": [ - "a560c5fb-1aca-4d84-b615-318936bcfe41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220142Z:a560c5fb-1aca-4d84-b615-318936bcfe41" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "503d5240-a035-414c-b9ca-f0a5d07894db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11228" - ], - "x-ms-correlation-request-id": [ - "f94907e4-a695-456d-aa62-ee291b7be317" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220142Z:f94907e4-a695-456d-aa62-ee291b7be317" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d272388e-b379-4e74-b4ea-01c76d91ba53" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11227" - ], - "x-ms-correlation-request-id": [ - "31ccb8a9-7c4c-4b98-978f-b026aa37c4aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220143Z:31ccb8a9-7c4c-4b98-978f-b026aa37c4aa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95a47686-728f-4e6b-a9e4-448f867358eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11226" - ], - "x-ms-correlation-request-id": [ - "1e2820aa-0785-4204-bd3a-b849046143a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220143Z:1e2820aa-0785-4204-bd3a-b849046143a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08dda3d6-5c8e-4dc3-8788-4128da8f4d54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11225" - ], - "x-ms-correlation-request-id": [ - "cb6de1ab-9398-43b0-94a2-9091c758e113" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220143Z:cb6de1ab-9398-43b0-94a2-9091c758e113" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6ad89a1-5e56-4818-9c06-74fe30c8ae98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11224" - ], - "x-ms-correlation-request-id": [ - "1590a556-075c-4f00-95bb-7f4806942010" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220143Z:1590a556-075c-4f00-95bb-7f4806942010" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c3c77f2-0c27-4eb3-aedf-32c382cafa66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11223" - ], - "x-ms-correlation-request-id": [ - "95e4c4fc-4221-492f-a60b-e33549539a4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220143Z:95e4c4fc-4221-492f-a60b-e33549539a4c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37fccc0b-8d63-42ae-8699-fc791321b606" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11222" - ], - "x-ms-correlation-request-id": [ - "2eca8b19-f0b6-4ff6-8907-7168aff3ba3a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220143Z:2eca8b19-f0b6-4ff6-8907-7168aff3ba3a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97ad9ae4-edea-44f9-9343-daa9486d9fba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11221" - ], - "x-ms-correlation-request-id": [ - "b68647f9-4de1-409e-a314-c02ead994d96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220143Z:b68647f9-4de1-409e-a314-c02ead994d96" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee1dee7a-3d99-4e74-aa34-d8872fefb205" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11220" - ], - "x-ms-correlation-request-id": [ - "d403fb0b-6545-4ec7-b0b4-9853caab9bc0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220144Z:d403fb0b-6545-4ec7-b0b4-9853caab9bc0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13dfd614-54f7-46a8-9479-fa0e7bdb1e73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11219" - ], - "x-ms-correlation-request-id": [ - "7bea96c5-756a-48a1-8268-106236b5606d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220144Z:7bea96c5-756a-48a1-8268-106236b5606d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42b0f3e1-05cd-4628-bc2e-9d5247bf0767" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11218" - ], - "x-ms-correlation-request-id": [ - "ed73a567-4b5f-4f98-83e7-6a1b944cd085" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220144Z:ed73a567-4b5f-4f98-83e7-6a1b944cd085" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa50b848-e0bb-48cf-809d-282185f187bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11217" - ], - "x-ms-correlation-request-id": [ - "f6fee337-7c09-414c-820c-3beb0bf7a32a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220144Z:f6fee337-7c09-414c-820c-3beb0bf7a32a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06f94ced-4326-4bfc-940c-538f43fe1d4f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11216" - ], - "x-ms-correlation-request-id": [ - "8d1fffb5-0d68-49fc-990f-242cf38bf0cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220144Z:8d1fffb5-0d68-49fc-990f-242cf38bf0cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54095517-533a-475b-9798-7e2661f11a7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11215" - ], - "x-ms-correlation-request-id": [ - "138afd3e-2810-4c3c-80a1-e1f1e56d61b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220145Z:138afd3e-2810-4c3c-80a1-e1f1e56d61b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "590fbaaa-c196-4fb2-9a78-27f485b98e98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11214" - ], - "x-ms-correlation-request-id": [ - "4dfffc29-1def-494b-bd34-8f9a67020290" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220145Z:4dfffc29-1def-494b-bd34-8f9a67020290" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1974132c-117f-4503-b497-dccc6c641184" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11213" - ], - "x-ms-correlation-request-id": [ - "011542c7-9420-43e0-a48e-2d1cdd9a865a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220145Z:011542c7-9420-43e0-a48e-2d1cdd9a865a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47fc40a1-441f-4027-a203-8870e467a0ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11212" - ], - "x-ms-correlation-request-id": [ - "1bb75fd2-1366-46c4-9238-7ffe985d37cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220145Z:1bb75fd2-1366-46c4-9238-7ffe985d37cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5ea26cc-ab24-4617-86e7-9e99983c7bd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11211" - ], - "x-ms-correlation-request-id": [ - "260d4dc4-21f6-4150-bf8f-a8a3b55ba314" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220145Z:260d4dc4-21f6-4150-bf8f-a8a3b55ba314" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fae55587-a071-499b-bd09-8eab0f2024e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11210" - ], - "x-ms-correlation-request-id": [ - "9d34acae-b607-4910-b9fa-1db9386e1ed5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220145Z:9d34acae-b607-4910-b9fa-1db9386e1ed5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ec7a690b-661a-461c-9667-eb5715f8a6f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11209" - ], - "x-ms-correlation-request-id": [ - "13512987-f6da-4a28-8bb5-69ebe7d72fa9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220145Z:13512987-f6da-4a28-8bb5-69ebe7d72fa9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e55f8b6-c2ee-42e9-8035-52441f1b337b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11208" - ], - "x-ms-correlation-request-id": [ - "7cfd54dd-5812-4fe7-8017-abdc45dd5bc1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220146Z:7cfd54dd-5812-4fe7-8017-abdc45dd5bc1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "642add95-ae5a-490f-b73c-b84495ef66c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11207" - ], - "x-ms-correlation-request-id": [ - "c6e8b0a2-3f2f-45b5-8224-290184debf6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220146Z:c6e8b0a2-3f2f-45b5-8224-290184debf6c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28d49b57-183e-4186-b85e-5a4c474ff1c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11206" - ], - "x-ms-correlation-request-id": [ - "0086234e-2c6e-4c02-98ff-07cc3964a40b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220146Z:0086234e-2c6e-4c02-98ff-07cc3964a40b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fcf8be4c-8aab-488c-912c-4b141b6cff85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11205" - ], - "x-ms-correlation-request-id": [ - "1981be27-2f57-4392-be5b-64643c7823f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220146Z:1981be27-2f57-4392-be5b-64643c7823f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "034da4c6-bd39-40a5-bcd2-4ad58d770ce1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11204" - ], - "x-ms-correlation-request-id": [ - "92343afc-6177-481e-b302-2c2030cc4043" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220146Z:92343afc-6177-481e-b302-2c2030cc4043" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13a18a53-db66-469f-936f-81850a138135" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11203" - ], - "x-ms-correlation-request-id": [ - "2b40c6ef-6bbd-4a2d-a523-47a8ef1dbe97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220146Z:2b40c6ef-6bbd-4a2d-a523-47a8ef1dbe97" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b04f4821-8669-485f-8409-53118cf888f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11202" - ], - "x-ms-correlation-request-id": [ - "9d6882df-0643-451d-9ae1-f0f67e56b40e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220147Z:9d6882df-0643-451d-9ae1-f0f67e56b40e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "182068ce-b4ad-45f8-a2cf-79f42588f4f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11201" - ], - "x-ms-correlation-request-id": [ - "6a7c4c8c-3f77-4096-b08f-fc120d0ba749" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220147Z:6a7c4c8c-3f77-4096-b08f-fc120d0ba749" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e55078b4-08d8-43ee-9929-2bc4071842fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11200" - ], - "x-ms-correlation-request-id": [ - "8d4a6bb3-86c4-4fc1-a40e-de90c6c80952" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220147Z:8d4a6bb3-86c4-4fc1-a40e-de90c6c80952" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31221e48-884c-4b9d-a713-18a9aa752ec9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11199" - ], - "x-ms-correlation-request-id": [ - "ed9b29f4-a1c7-48a6-9e5e-06fca40b4cc7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220147Z:ed9b29f4-a1c7-48a6-9e5e-06fca40b4cc7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "923a268d-28cd-450d-908b-9d2499516f36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11198" - ], - "x-ms-correlation-request-id": [ - "9d85ce31-ce1b-4e51-9a5a-0a1793855865" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220147Z:9d85ce31-ce1b-4e51-9a5a-0a1793855865" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10365aa5-43c8-41da-8f8d-0c8af697f26c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11197" - ], - "x-ms-correlation-request-id": [ - "7dbbe04f-dc51-4910-a454-f669e1f63e51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220147Z:7dbbe04f-dc51-4910-a454-f669e1f63e51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d111862-bce2-40e2-8bb5-ba8690e17164" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11196" - ], - "x-ms-correlation-request-id": [ - "4f013535-98a4-4980-b751-b7eeb9ef04f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220147Z:4f013535-98a4-4980-b751-b7eeb9ef04f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd4eb21a-952a-478f-bfb9-13ddff947152" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11195" - ], - "x-ms-correlation-request-id": [ - "02ab1bd9-d52d-4765-81e9-97da82d3230c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220148Z:02ab1bd9-d52d-4765-81e9-97da82d3230c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c917ddbc-75a4-4366-b84c-7935cff93d13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11194" - ], - "x-ms-correlation-request-id": [ - "db425537-7293-4a8b-9f16-d9693d305fcb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220148Z:db425537-7293-4a8b-9f16-d9693d305fcb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81105b9f-cfa2-4769-a195-439c8389e6f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11193" - ], - "x-ms-correlation-request-id": [ - "328704f3-72a2-4440-a595-9ff7239aa1fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220148Z:328704f3-72a2-4440-a595-9ff7239aa1fa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae9034da-05cc-4d4e-8727-583050bc1d9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11192" - ], - "x-ms-correlation-request-id": [ - "003107e7-df4b-479d-9add-b4a64e50e554" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220148Z:003107e7-df4b-479d-9add-b4a64e50e554" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "659273f5-f239-419e-a2ce-f3d76a36c2e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11191" - ], - "x-ms-correlation-request-id": [ - "cb3f6f5e-857d-4856-af83-099f2a7b97f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220148Z:cb3f6f5e-857d-4856-af83-099f2a7b97f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2210fe01-6349-4d52-97e6-f72a6c76bc2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11190" - ], - "x-ms-correlation-request-id": [ - "611d6769-dac2-4438-8c6b-0e75475a8630" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220148Z:611d6769-dac2-4438-8c6b-0e75475a8630" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb9396c2-c10f-43a2-8e95-374faf2645bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11189" - ], - "x-ms-correlation-request-id": [ - "d8c82757-8899-4418-b210-c44858f5bf65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220149Z:d8c82757-8899-4418-b210-c44858f5bf65" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3311652c-4f8f-40b6-b37c-269f1ed0fce8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11188" - ], - "x-ms-correlation-request-id": [ - "909242c1-4fde-4c27-ac33-bd42da7cb911" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220149Z:909242c1-4fde-4c27-ac33-bd42da7cb911" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83260091-0609-4e9a-83de-7dff9600ab9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11187" - ], - "x-ms-correlation-request-id": [ - "e2a84966-da43-491b-a4bd-702b494abb2f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220149Z:e2a84966-da43-491b-a4bd-702b494abb2f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03123d3e-5671-4aa2-a2a7-395b3467f020" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11186" - ], - "x-ms-correlation-request-id": [ - "75e729f0-09d1-4666-904e-2b68aa4c035d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220149Z:75e729f0-09d1-4666-904e-2b68aa4c035d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7256c74f-6e5e-4ad7-b9cd-666471fecc1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11185" - ], - "x-ms-correlation-request-id": [ - "db2b231e-2619-46ad-8fad-04a62674f3eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220149Z:db2b231e-2619-46ad-8fad-04a62674f3eb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0d38e6d-aa55-43ec-8b88-bc56826d52ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11184" - ], - "x-ms-correlation-request-id": [ - "4c43cbd4-cf6f-4c0f-a6aa-68a70a02db0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220149Z:4c43cbd4-cf6f-4c0f-a6aa-68a70a02db0c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28b658aa-97f0-4bf6-a6fd-53c979c79066" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11183" - ], - "x-ms-correlation-request-id": [ - "d7f41e6f-d5cf-4809-9662-46189cbe0e67" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220149Z:d7f41e6f-d5cf-4809-9662-46189cbe0e67" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4b7c37f-4217-49c3-87e3-d01e8476b57f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11182" - ], - "x-ms-correlation-request-id": [ - "583356ea-6af3-476d-beaf-bacd13115530" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220150Z:583356ea-6af3-476d-beaf-bacd13115530" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5acbca5-89b9-45d1-9fc5-9c29b4688c1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11181" - ], - "x-ms-correlation-request-id": [ - "14f90d77-fab2-4938-ad7d-68d0fc7db212" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220150Z:14f90d77-fab2-4938-ad7d-68d0fc7db212" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78fa2815-05a5-473b-9a6b-2a5556093cc7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11180" - ], - "x-ms-correlation-request-id": [ - "8ac3e9fa-52da-40cf-a289-d9fa97915587" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220150Z:8ac3e9fa-52da-40cf-a289-d9fa97915587" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ec76a018-ed23-4185-acc8-eb9fc61a0940" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11179" - ], - "x-ms-correlation-request-id": [ - "bf89459b-a0e0-4c3a-9893-43c5d0091b2f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220150Z:bf89459b-a0e0-4c3a-9893-43c5d0091b2f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0343ae86-0cb5-4abe-bd16-ec9674561586" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11178" - ], - "x-ms-correlation-request-id": [ - "7f766d2c-312d-45c1-a044-21c08e86d10d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220150Z:7f766d2c-312d-45c1-a044-21c08e86d10d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52901d4f-64e3-40b1-9838-09a2e72dbb2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11177" - ], - "x-ms-correlation-request-id": [ - "ca510ab4-b3a9-4388-8914-8e5a836a3c07" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220150Z:ca510ab4-b3a9-4388-8914-8e5a836a3c07" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b9b4445-48c1-400a-9496-60a8e324920f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11176" - ], - "x-ms-correlation-request-id": [ - "e1c60032-4196-402e-8363-f180158b5c04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220151Z:e1c60032-4196-402e-8363-f180158b5c04" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c92930cd-3019-4a7c-ba60-b93452e9f889" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11175" - ], - "x-ms-correlation-request-id": [ - "c54a2832-0ce9-4d8b-8d5a-c01404851039" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220151Z:c54a2832-0ce9-4d8b-8d5a-c01404851039" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14a6abde-1944-4db3-833f-40880d7b6ef5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11174" - ], - "x-ms-correlation-request-id": [ - "7831bbed-6a9a-443a-817c-fce0b6d70a04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220151Z:7831bbed-6a9a-443a-817c-fce0b6d70a04" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6454264b-b110-46f8-90e9-ed82472ade95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11173" - ], - "x-ms-correlation-request-id": [ - "cc754d30-809b-4b32-a6e9-34a0851dd9b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220151Z:cc754d30-809b-4b32-a6e9-34a0851dd9b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c3f5c93-ff46-41d1-a10f-b061878dfb9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11172" - ], - "x-ms-correlation-request-id": [ - "fd50d58f-18be-455c-887c-34ca5df7bdbb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220151Z:fd50d58f-18be-455c-887c-34ca5df7bdbb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c7df663c-2b65-4312-8829-3e918c192cd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11171" - ], - "x-ms-correlation-request-id": [ - "849e3a84-3494-42a2-880e-2b27b73c7364" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220151Z:849e3a84-3494-42a2-880e-2b27b73c7364" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e74b114-0b9d-4ee5-9f0f-e5abebce97fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11170" - ], - "x-ms-correlation-request-id": [ - "7509fd21-e7f2-4781-a255-6998997566f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220151Z:7509fd21-e7f2-4781-a255-6998997566f5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2d1773e-9ca1-4d82-8e9e-a8f219ece672" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11169" - ], - "x-ms-correlation-request-id": [ - "15a5835a-51cc-4c9a-9c5a-379a7eb30e05" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220152Z:15a5835a-51cc-4c9a-9c5a-379a7eb30e05" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "083287f4-6f20-4153-8cc7-074cb31bdec4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11168" - ], - "x-ms-correlation-request-id": [ - "04d81d33-8640-4cee-b9c0-cdb44bfd62a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220152Z:04d81d33-8640-4cee-b9c0-cdb44bfd62a4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2fafdafd-f0c3-4475-bef5-04ebe9ab609e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11167" - ], - "x-ms-correlation-request-id": [ - "2cd4ce1f-beac-42fa-b163-e70bcf30f2d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220152Z:2cd4ce1f-beac-42fa-b163-e70bcf30f2d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87f744b3-f6c4-481b-abba-2febf76b3b62" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11166" - ], - "x-ms-correlation-request-id": [ - "58f976b9-ceea-4996-9c04-5702de7b0e1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220152Z:58f976b9-ceea-4996-9c04-5702de7b0e1c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce4a7e4c-b9a1-476f-914f-04f39feb244e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11165" - ], - "x-ms-correlation-request-id": [ - "5e81014b-35e3-45b0-b87e-100e874bbcd5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220152Z:5e81014b-35e3-45b0-b87e-100e874bbcd5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77ead990-fcff-4430-96bc-dc57c37a9abf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11164" - ], - "x-ms-correlation-request-id": [ - "8abf09e8-1fdf-4f9f-9d59-9966ba69a3c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220153Z:8abf09e8-1fdf-4f9f-9d59-9966ba69a3c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "294d8e21-8fdb-4b48-aac3-9b78fd41dc56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11163" - ], - "x-ms-correlation-request-id": [ - "1bfb64b1-94a1-4c9a-94f4-a73efbc6f412" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220153Z:1bfb64b1-94a1-4c9a-94f4-a73efbc6f412" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14779e9c-a819-4d11-9c4f-920632b1bec2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11162" - ], - "x-ms-correlation-request-id": [ - "5a9230eb-07ce-46fb-8b42-feb5caeef698" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220153Z:5a9230eb-07ce-46fb-8b42-feb5caeef698" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df8ed4bd-e9fc-4e60-ad88-93a055b2d1cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11161" - ], - "x-ms-correlation-request-id": [ - "9958a9d9-1057-4f85-9319-50ef11568c9b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220153Z:9958a9d9-1057-4f85-9319-50ef11568c9b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "007650de-4b6f-46e5-a985-08b867dcacdc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11160" - ], - "x-ms-correlation-request-id": [ - "473ef6fc-7c41-4527-8011-996a444753fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220153Z:473ef6fc-7c41-4527-8011-996a444753fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb9a6479-ce9d-47d3-91fe-ff7c5bd9361e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11159" - ], - "x-ms-correlation-request-id": [ - "31246a11-429d-4e59-84e3-53bba882e0f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220153Z:31246a11-429d-4e59-84e3-53bba882e0f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8fadf3a4-305a-4467-b305-e583fa8804ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11158" - ], - "x-ms-correlation-request-id": [ - "c06dc0d8-d2a6-4bb9-9f04-a58a9fe517eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220154Z:c06dc0d8-d2a6-4bb9-9f04-a58a9fe517eb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8d3a4bb-4054-4100-a4ac-a7d516ebf4eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11157" - ], - "x-ms-correlation-request-id": [ - "3428c4a3-a3ff-4cc1-bb66-0085e9de9bb6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220154Z:3428c4a3-a3ff-4cc1-bb66-0085e9de9bb6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e01691c9-d475-4340-b906-aaa3bb906735" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11156" - ], - "x-ms-correlation-request-id": [ - "9ec97163-c080-4b81-8be8-aae96525810a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220154Z:9ec97163-c080-4b81-8be8-aae96525810a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fd02cfd-92b5-48ef-a9d2-898a09d79dad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11155" - ], - "x-ms-correlation-request-id": [ - "6dce0422-74f6-41cd-b820-3bbe9c5ed478" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220154Z:6dce0422-74f6-41cd-b820-3bbe9c5ed478" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91d43c21-646d-49e7-8b4d-54d3e8b4cc34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11154" - ], - "x-ms-correlation-request-id": [ - "99c64ed4-0ff1-4809-895a-f6ce05eb3acc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220154Z:99c64ed4-0ff1-4809-895a-f6ce05eb3acc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22ecfb66-62d4-4bc4-8cab-058042dd3a85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11153" - ], - "x-ms-correlation-request-id": [ - "fed0c0ca-65a4-4138-90d0-90cd11026457" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220155Z:fed0c0ca-65a4-4138-90d0-90cd11026457" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc276046-0f55-41ed-aaba-a02c6970f501" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11152" - ], - "x-ms-correlation-request-id": [ - "72893455-4b62-45d6-89c5-33b813a460a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220155Z:72893455-4b62-45d6-89c5-33b813a460a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5962a3f5-1955-4b25-b4fc-318470cb561d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11151" - ], - "x-ms-correlation-request-id": [ - "6118f000-139d-4fc3-91d6-508695d4bb0f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220155Z:6118f000-139d-4fc3-91d6-508695d4bb0f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "397c38c2-2c6f-459c-9202-9f2cceb7f5cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11150" - ], - "x-ms-correlation-request-id": [ - "feefa346-85d6-4721-81f3-3e8fffe8d997" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220155Z:feefa346-85d6-4721-81f3-3e8fffe8d997" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "114514b1-247b-42fa-b2a2-17d861960a90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11149" - ], - "x-ms-correlation-request-id": [ - "c03876bd-0b9a-4094-bcb9-9fa2ae7775c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220155Z:c03876bd-0b9a-4094-bcb9-9fa2ae7775c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14485b9c-ff30-429b-808c-c90a6783c2b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11148" - ], - "x-ms-correlation-request-id": [ - "81cf6db1-4e75-438a-bb8f-f96a8cfa4364" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220156Z:81cf6db1-4e75-438a-bb8f-f96a8cfa4364" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cea4762d-50be-401d-a037-7342728cf738" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11147" - ], - "x-ms-correlation-request-id": [ - "0d935850-3e69-48c5-afd0-8e64f8a6cc16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220156Z:0d935850-3e69-48c5-afd0-8e64f8a6cc16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f32c7139-ede3-4620-8923-7e4c52f79242" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11146" - ], - "x-ms-correlation-request-id": [ - "0cd72c25-e228-423a-9186-8d2381af6eee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220156Z:0cd72c25-e228-423a-9186-8d2381af6eee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38221d53-1329-443b-893d-084c5066b8d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11145" - ], - "x-ms-correlation-request-id": [ - "db4c0615-bdc4-484d-971b-07c09c67035b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220156Z:db4c0615-bdc4-484d-971b-07c09c67035b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0999bef6-9799-4444-8723-a9aa23c19d87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11144" - ], - "x-ms-correlation-request-id": [ - "b68dacde-213b-453c-8154-6427fa35488c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220156Z:b68dacde-213b-453c-8154-6427fa35488c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e43ae53d-e265-44e7-8697-e2602de2e784" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11143" - ], - "x-ms-correlation-request-id": [ - "e059bf31-7d8d-455f-8a8a-6ff62c9ee21b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220157Z:e059bf31-7d8d-455f-8a8a-6ff62c9ee21b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de108ee8-94d9-4c43-a39c-afdc91645209" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11142" - ], - "x-ms-correlation-request-id": [ - "88556022-c4af-4e11-91e6-5db0795b1a76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220157Z:88556022-c4af-4e11-91e6-5db0795b1a76" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81138047-5a92-452d-82c5-47d82a48605a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11141" - ], - "x-ms-correlation-request-id": [ - "3f754c99-133f-449c-b478-fd04675e071a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220157Z:3f754c99-133f-449c-b478-fd04675e071a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "186bee4f-b4aa-41d1-8e9c-0190ecf52ec0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11140" - ], - "x-ms-correlation-request-id": [ - "044428f6-fbc2-469d-93e4-1c30d9bd3cb4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220157Z:044428f6-fbc2-469d-93e4-1c30d9bd3cb4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "af4b9a3a-488d-4bf4-930d-b97ae93c72ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11139" - ], - "x-ms-correlation-request-id": [ - "7767f0bd-d2ed-40b7-ae10-b02fb21d3639" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220157Z:7767f0bd-d2ed-40b7-ae10-b02fb21d3639" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1f53e75-5376-4036-b88a-21e6eb6d3463" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11138" - ], - "x-ms-correlation-request-id": [ - "9f4b030e-b260-405b-a6e5-90b2970ae8be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220157Z:9f4b030e-b260-405b-a6e5-90b2970ae8be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7995490b-9f8c-4db9-89a1-a9c96581d939" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11137" - ], - "x-ms-correlation-request-id": [ - "7fa0a60b-8cf7-4032-9c64-b6a108c97f51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220157Z:7fa0a60b-8cf7-4032-9c64-b6a108c97f51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2424dbc0-aeb1-43e2-813e-c72e724d8a01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11136" - ], - "x-ms-correlation-request-id": [ - "26818331-2d49-4291-b98d-59a760bffd1d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220158Z:26818331-2d49-4291-b98d-59a760bffd1d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6573742-4afc-4a7a-a8df-a36a1576cd46" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11135" - ], - "x-ms-correlation-request-id": [ - "5b28376b-27cd-4b39-b38a-56667053f106" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220158Z:5b28376b-27cd-4b39-b38a-56667053f106" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "885f50d7-899e-4cf7-ac62-a466331d1f17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11134" - ], - "x-ms-correlation-request-id": [ - "45894bac-d9c1-4f88-8119-6255866dbd61" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220158Z:45894bac-d9c1-4f88-8119-6255866dbd61" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f14471a-a7d6-451a-8836-f64dbccc9a72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11133" - ], - "x-ms-correlation-request-id": [ - "32bcb8ed-72f9-4946-96ba-c252af53ae4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220158Z:32bcb8ed-72f9-4946-96ba-c252af53ae4c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ad3e1ce-e7dc-4eda-b5a5-94f06bc3ea2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11132" - ], - "x-ms-correlation-request-id": [ - "89d940ec-206b-4a1c-8e49-fb12ee6b28c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220158Z:89d940ec-206b-4a1c-8e49-fb12ee6b28c0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee32049c-ff2d-40d3-9469-aff6ea252b9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11131" - ], - "x-ms-correlation-request-id": [ - "2ec78225-1784-4220-b740-88475cc24f13" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220158Z:2ec78225-1784-4220-b740-88475cc24f13" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e8f342d-16b1-4ae6-8292-7e272b7b7724" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11130" - ], - "x-ms-correlation-request-id": [ - "fc6efb28-e782-41d4-9968-872992751c18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220159Z:fc6efb28-e782-41d4-9968-872992751c18" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22677445-54b0-4cf8-8910-9f6885942ae6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11129" - ], - "x-ms-correlation-request-id": [ - "f09e25bc-0383-4562-a8d9-26b99787e8e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220159Z:f09e25bc-0383-4562-a8d9-26b99787e8e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c67ac4f-6764-4ded-b5ba-57006cfc9abc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11128" - ], - "x-ms-correlation-request-id": [ - "c0745222-3de4-44f3-98e2-ba90bad69c26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220159Z:c0745222-3de4-44f3-98e2-ba90bad69c26" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91828e2c-0562-4422-a044-7efabb815d2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11127" - ], - "x-ms-correlation-request-id": [ - "4e2428e0-5a24-49ab-88e8-71981d02af21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220159Z:4e2428e0-5a24-49ab-88e8-71981d02af21" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f1c2748-608d-47c2-b94b-8ab65bf6e012" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11126" - ], - "x-ms-correlation-request-id": [ - "0d30a5c7-bad1-402b-a379-bde45d8d152d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220159Z:0d30a5c7-bad1-402b-a379-bde45d8d152d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96989d5f-8309-405e-8bf0-7e08577d14cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11125" - ], - "x-ms-correlation-request-id": [ - "78884a16-a5fc-43cd-8b0e-c4675310fd29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220159Z:78884a16-a5fc-43cd-8b0e-c4675310fd29" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "987f8060-9214-417e-9116-4124d896d088" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11124" - ], - "x-ms-correlation-request-id": [ - "7a730d76-f5b7-4c01-8acd-611548ef613f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220159Z:7a730d76-f5b7-4c01-8acd-611548ef613f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dabb2fea-3eca-41c0-bc12-6541fcb3b135" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11123" - ], - "x-ms-correlation-request-id": [ - "88a21ef9-2c7a-452f-acbd-f860360c6645" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220200Z:88a21ef9-2c7a-452f-acbd-f860360c6645" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98b58209-49d4-4627-a622-44f2d37e1cbf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11122" - ], - "x-ms-correlation-request-id": [ - "06027197-c174-4591-b4aa-7134c69a1229" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220200Z:06027197-c174-4591-b4aa-7134c69a1229" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e55373c1-a561-4245-bbfd-73f2dc0cb6de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11121" - ], - "x-ms-correlation-request-id": [ - "2f65dc35-53ad-42e0-b6f1-1e29697e0f87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220200Z:2f65dc35-53ad-42e0-b6f1-1e29697e0f87" - ], - "Date": [ - "Tue, 29 Aug 2017 22:01:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3ca859b-1964-4535-a108-eea5d45519b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11120" - ], - "x-ms-correlation-request-id": [ - "bd5ecf48-957d-44e9-8286-4773c81632bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220200Z:bd5ecf48-957d-44e9-8286-4773c81632bf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25c7b6c1-0f15-49d7-931e-c8bf91ef9aea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11119" - ], - "x-ms-correlation-request-id": [ - "ffcbb3c4-9a50-4f82-99b1-9b38e66159a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220200Z:ffcbb3c4-9a50-4f82-99b1-9b38e66159a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce725b24-0dc3-424f-b0a4-7be79d8abe1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11118" - ], - "x-ms-correlation-request-id": [ - "11b991fe-2768-4700-9cff-516c60877922" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220201Z:11b991fe-2768-4700-9cff-516c60877922" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4301f65-4dfb-4161-a2b9-8b5ef4c84e14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11117" - ], - "x-ms-correlation-request-id": [ - "10411ae9-d84c-4c58-8766-ad4f9a8a7136" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220201Z:10411ae9-d84c-4c58-8766-ad4f9a8a7136" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4b6a799-5203-4ff5-861c-56d9c02bf7ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11116" - ], - "x-ms-correlation-request-id": [ - "44cb27ca-47e5-42fd-80e4-77e083ea637c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220201Z:44cb27ca-47e5-42fd-80e4-77e083ea637c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06535d30-3202-4f67-bdd8-620612bebd44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11115" - ], - "x-ms-correlation-request-id": [ - "e932443f-5e62-4a0d-8ddb-e5a85829afbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220201Z:e932443f-5e62-4a0d-8ddb-e5a85829afbe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77e07056-809e-46bb-87b4-b6b1e697f970" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11114" - ], - "x-ms-correlation-request-id": [ - "bd96bc6b-2711-40e4-aa92-1e87bb492a1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220201Z:bd96bc6b-2711-40e4-aa92-1e87bb492a1b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06ee8a00-1640-4831-b59e-9a16f04fce8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11113" - ], - "x-ms-correlation-request-id": [ - "6bcaa078-a9d9-4ede-a3ae-b1192142e722" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220201Z:6bcaa078-a9d9-4ede-a3ae-b1192142e722" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "32f51c84-9ebf-4098-83d0-559e430d4618" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11112" - ], - "x-ms-correlation-request-id": [ - "9e65faa1-e223-4cf1-a760-3ead0bc6d65e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220202Z:9e65faa1-e223-4cf1-a760-3ead0bc6d65e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f3084f9-07df-470f-b43b-a5f484c5341d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11111" - ], - "x-ms-correlation-request-id": [ - "2c9d5233-f9d8-400d-9afd-fb051f9b8d95" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220202Z:2c9d5233-f9d8-400d-9afd-fb051f9b8d95" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9db943c-5759-4909-b4c1-89d5009dd5ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11110" - ], - "x-ms-correlation-request-id": [ - "5dfb33af-cd24-4b50-9c72-336594c1aa6a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220202Z:5dfb33af-cd24-4b50-9c72-336594c1aa6a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b96d2b2d-7311-4b53-9982-ce4fcc1593a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11109" - ], - "x-ms-correlation-request-id": [ - "5b174f43-e91e-4bf3-9e1c-b9a356c7aa34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220202Z:5b174f43-e91e-4bf3-9e1c-b9a356c7aa34" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00b5b94e-5a61-41cc-9230-d674e02046b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11108" - ], - "x-ms-correlation-request-id": [ - "8590873f-2cd0-40ca-868f-e41d9571ec80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220202Z:8590873f-2cd0-40ca-868f-e41d9571ec80" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ca0e6ea-01ae-4828-9985-07f3134bc8d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11107" - ], - "x-ms-correlation-request-id": [ - "fd12bfd3-4f2f-4e25-8eed-0dfe9473017f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220202Z:fd12bfd3-4f2f-4e25-8eed-0dfe9473017f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "207e3a6f-3ec5-4b7d-9a98-f6d6ee132ce8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11106" - ], - "x-ms-correlation-request-id": [ - "83138f8c-ff1f-4802-b649-52bfbe9f2df5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220203Z:83138f8c-ff1f-4802-b649-52bfbe9f2df5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93aa559d-34c6-4b19-95ce-e9488088a177" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11105" - ], - "x-ms-correlation-request-id": [ - "d05da8a9-6e77-471a-ae89-50cb26ee7710" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220203Z:d05da8a9-6e77-471a-ae89-50cb26ee7710" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31342f18-c1da-405a-95b2-4f44e76f6d30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11104" - ], - "x-ms-correlation-request-id": [ - "33b3ab52-a489-4d0c-a799-1c4ca17b2f01" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220203Z:33b3ab52-a489-4d0c-a799-1c4ca17b2f01" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3be4786a-6976-4764-907f-d873ac3c2af0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11103" - ], - "x-ms-correlation-request-id": [ - "5d3152db-2a8e-4f7e-8aa9-1e322ea213fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220203Z:5d3152db-2a8e-4f7e-8aa9-1e322ea213fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "707893c8-e393-472f-8463-9a7bc6d83e08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11102" - ], - "x-ms-correlation-request-id": [ - "4a5e8447-42d9-42ad-ba5c-d48bec3ee18c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220203Z:4a5e8447-42d9-42ad-ba5c-d48bec3ee18c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83089f82-0c29-417f-8d52-c7e0958ff80f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11101" - ], - "x-ms-correlation-request-id": [ - "314b4c15-695d-43c5-81b6-b25c73e68171" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220203Z:314b4c15-695d-43c5-81b6-b25c73e68171" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a382cac6-d508-4708-a454-2449164af4fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11100" - ], - "x-ms-correlation-request-id": [ - "e248c733-4c86-4f43-9d41-6247371c3f4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220203Z:e248c733-4c86-4f43-9d41-6247371c3f4b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5efd84de-42e4-4e92-9848-68e923a032f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11099" - ], - "x-ms-correlation-request-id": [ - "d871610f-1afa-4a6c-84a1-2cfd1b11db07" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220204Z:d871610f-1afa-4a6c-84a1-2cfd1b11db07" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ced7710-5aca-4029-b180-93947554f394" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11098" - ], - "x-ms-correlation-request-id": [ - "c906e34a-2fd4-4004-a6db-ba840f0ef894" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220204Z:c906e34a-2fd4-4004-a6db-ba840f0ef894" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "696574c3-20c0-48bd-a249-0a50f5e1c669" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11097" - ], - "x-ms-correlation-request-id": [ - "f59c4e89-6d0a-4ff1-b6bc-92d8dadc08a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220204Z:f59c4e89-6d0a-4ff1-b6bc-92d8dadc08a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a47d7b4-e9fd-43eb-ad44-cf778090487d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11096" - ], - "x-ms-correlation-request-id": [ - "7fe716b6-7474-4134-a2ba-425c5279d4cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220204Z:7fe716b6-7474-4134-a2ba-425c5279d4cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b8a7bf8-ef11-4d84-8c0a-78dcfa0e75a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11095" - ], - "x-ms-correlation-request-id": [ - "fc221559-ce2e-4914-b0df-0fe6c1583a25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220204Z:fc221559-ce2e-4914-b0df-0fe6c1583a25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05aa22a0-dbff-4a1c-bddf-1c3a47e43c1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11094" - ], - "x-ms-correlation-request-id": [ - "a04acb3a-3e46-4748-9f48-d75119e4e164" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220204Z:a04acb3a-3e46-4748-9f48-d75119e4e164" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9719ec7a-27a1-4649-8363-777193fb5578" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11093" - ], - "x-ms-correlation-request-id": [ - "0d5a03a2-0c57-4595-b38e-6d698a66379c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220205Z:0d5a03a2-0c57-4595-b38e-6d698a66379c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b41e270-3a77-4531-953c-74b2412a164f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11092" - ], - "x-ms-correlation-request-id": [ - "0c9a77b9-da6d-447e-b38c-c156e3ae7c2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220205Z:0c9a77b9-da6d-447e-b38c-c156e3ae7c2e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "397f3ee0-1f8e-4576-9977-8413f5c751a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11091" - ], - "x-ms-correlation-request-id": [ - "26887ab9-a4bb-453b-b79f-1fe2c8bf4357" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220205Z:26887ab9-a4bb-453b-b79f-1fe2c8bf4357" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96740143-727c-4fb8-b470-855d2ae60bfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11090" - ], - "x-ms-correlation-request-id": [ - "13321417-831a-480c-81a4-80ce60269288" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220205Z:13321417-831a-480c-81a4-80ce60269288" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ceb35f5-6f96-4a3e-8a9e-bfbfef13f2b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11089" - ], - "x-ms-correlation-request-id": [ - "696dfa53-3f9f-4469-bfec-5aec60dfa08b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220205Z:696dfa53-3f9f-4469-bfec-5aec60dfa08b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d149b45-23b5-4667-89b7-39545fab6d6d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11088" - ], - "x-ms-correlation-request-id": [ - "d8ecb76a-dc2c-4bd2-b185-ae4aa903db64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220206Z:d8ecb76a-dc2c-4bd2-b185-ae4aa903db64" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "af1e444f-49ae-41ee-b4ab-5d79cb9eafb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11087" - ], - "x-ms-correlation-request-id": [ - "04501598-b825-4cca-b6b7-4ed7f28c1868" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220206Z:04501598-b825-4cca-b6b7-4ed7f28c1868" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4013505a-0024-44ba-a95a-e2fc5ac741c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11086" - ], - "x-ms-correlation-request-id": [ - "c539eed7-807e-491a-937e-09dcc13ee837" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220206Z:c539eed7-807e-491a-937e-09dcc13ee837" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df911c21-93cb-4b17-b5ae-9a34a12ad838" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11085" - ], - "x-ms-correlation-request-id": [ - "dd8d5bb6-8fb9-4cd9-9006-b067e819e7df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220206Z:dd8d5bb6-8fb9-4cd9-9006-b067e819e7df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6cb861f9-2970-4fe4-9a54-334153587541" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11084" - ], - "x-ms-correlation-request-id": [ - "c9483ba7-4739-4d04-8c4e-06fec2690d8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220206Z:c9483ba7-4739-4d04-8c4e-06fec2690d8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1cfa771c-32eb-4be2-ad17-e83038d7f5f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11083" - ], - "x-ms-correlation-request-id": [ - "363194ff-a8a4-4322-b359-f304d07713d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220206Z:363194ff-a8a4-4322-b359-f304d07713d6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ea2b44d-7e3b-4897-8240-8b306ed4e831" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11082" - ], - "x-ms-correlation-request-id": [ - "cfe60eb9-5a37-4ba1-913a-055d702d31df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220207Z:cfe60eb9-5a37-4ba1-913a-055d702d31df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3e0ba139-4889-4677-adf5-73a989f59e9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11081" - ], - "x-ms-correlation-request-id": [ - "38766d39-1370-4d38-9541-92774ee06c22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220207Z:38766d39-1370-4d38-9541-92774ee06c22" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dfae8e9f-cbae-4e9d-82c0-4a687258cbf2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11080" - ], - "x-ms-correlation-request-id": [ - "af1ff93c-58f7-4bd8-81c3-d528b39aa183" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220207Z:af1ff93c-58f7-4bd8-81c3-d528b39aa183" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "419ee79c-9b97-4345-ba98-8484c463f5d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11079" - ], - "x-ms-correlation-request-id": [ - "027947bf-3e5d-4355-bb40-251057dda23b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220207Z:027947bf-3e5d-4355-bb40-251057dda23b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5761798c-ebf1-4077-801a-20c07265c805" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11078" - ], - "x-ms-correlation-request-id": [ - "07348502-6c32-463d-b9ba-7bafdb658983" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220207Z:07348502-6c32-463d-b9ba-7bafdb658983" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e0743bc-61d4-4700-aae5-57649bb8dea6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11077" - ], - "x-ms-correlation-request-id": [ - "a328810e-3de8-4b02-b07b-0654ba981d9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220208Z:a328810e-3de8-4b02-b07b-0654ba981d9f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f17cd7f3-da5a-486c-b743-0baa7f887853" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11076" - ], - "x-ms-correlation-request-id": [ - "6f55be55-62e8-4776-927b-f3f2397f4f77" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220208Z:6f55be55-62e8-4776-927b-f3f2397f4f77" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "af95abfc-cdf9-400d-aac2-7ab93799e59b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11075" - ], - "x-ms-correlation-request-id": [ - "5db187b6-90f6-41ac-8cb7-deb9fad95997" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220208Z:5db187b6-90f6-41ac-8cb7-deb9fad95997" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e4c9ac1-8050-4038-b0c1-c0d00577fb08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11074" - ], - "x-ms-correlation-request-id": [ - "0d2e6717-65bd-4264-aeba-0c53b76f8a7d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220208Z:0d2e6717-65bd-4264-aeba-0c53b76f8a7d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ec5a004-4019-4efa-bd5d-ace3b393e123" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11073" - ], - "x-ms-correlation-request-id": [ - "e53f1802-b4f6-4925-8c24-35ca20c5bbe7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220208Z:e53f1802-b4f6-4925-8c24-35ca20c5bbe7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e34f962-2e03-43c3-8c20-bf7dff307191" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11072" - ], - "x-ms-correlation-request-id": [ - "99fc8de5-f76e-4ea9-af8f-84ba1179e624" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220208Z:99fc8de5-f76e-4ea9-af8f-84ba1179e624" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44d8390f-893a-4ac6-9d5b-7b364c929a89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11071" - ], - "x-ms-correlation-request-id": [ - "7d37bac3-1099-4c02-8f84-1dd624ed6c50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220209Z:7d37bac3-1099-4c02-8f84-1dd624ed6c50" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4a7b0fe-c549-4950-9182-5f180d4deeec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11070" - ], - "x-ms-correlation-request-id": [ - "20f01a7a-3285-4468-a45e-2faae9771119" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220209Z:20f01a7a-3285-4468-a45e-2faae9771119" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4bd80901-68ba-430f-a742-57a02945fc5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11069" - ], - "x-ms-correlation-request-id": [ - "5bc43289-2b3c-408b-98cf-7ff62c28f846" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220209Z:5bc43289-2b3c-408b-98cf-7ff62c28f846" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67cff7fc-ec14-45ff-b192-59323b8e68b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11068" - ], - "x-ms-correlation-request-id": [ - "5d9e6295-c546-4052-a2ee-7764f79e64e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220209Z:5d9e6295-c546-4052-a2ee-7764f79e64e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d63cafea-d62e-493f-b457-641f8fbcae0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11067" - ], - "x-ms-correlation-request-id": [ - "7ecb9e77-0d14-4acc-97f5-70874b86f019" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220209Z:7ecb9e77-0d14-4acc-97f5-70874b86f019" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc4aad9e-af8a-4747-89ee-8dfa00a703ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11066" - ], - "x-ms-correlation-request-id": [ - "a39f3a55-e5b1-4c02-a2fe-5064d7027db1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220210Z:a39f3a55-e5b1-4c02-a2fe-5064d7027db1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6bd77a4-0658-42e4-a913-22b1caf97374" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11065" - ], - "x-ms-correlation-request-id": [ - "35499c49-8630-4c7c-bf69-d893156b856b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220210Z:35499c49-8630-4c7c-bf69-d893156b856b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "196226ef-8d35-493b-a8b7-c8651c75c1d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11064" - ], - "x-ms-correlation-request-id": [ - "913c1327-1e47-4605-8392-df3088906e21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220210Z:913c1327-1e47-4605-8392-df3088906e21" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "662610b5-21ea-4208-82a7-094e9c55aed8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11063" - ], - "x-ms-correlation-request-id": [ - "7cc3be4d-2a6b-4445-bcf6-903eefc900fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220210Z:7cc3be4d-2a6b-4445-bcf6-903eefc900fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90935a39-ba27-4c45-b6c0-523f220d693b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11062" - ], - "x-ms-correlation-request-id": [ - "52628f03-54ae-4c4d-a7ae-dff956aefd1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220210Z:52628f03-54ae-4c4d-a7ae-dff956aefd1e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4b51c52-586f-4b9d-9b5d-461551d49a35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11061" - ], - "x-ms-correlation-request-id": [ - "f1d650ea-f57f-4d65-bb6f-5495d9bf2ffe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220211Z:f1d650ea-f57f-4d65-bb6f-5495d9bf2ffe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e51801fc-538a-44d9-a24b-ffdf0396c968" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11060" - ], - "x-ms-correlation-request-id": [ - "24d6d751-a7d2-4b0e-bab3-b0ac72dd1d78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220211Z:24d6d751-a7d2-4b0e-bab3-b0ac72dd1d78" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5aa101d5-9822-489f-a9c1-7ce2c1f2ce59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11059" - ], - "x-ms-correlation-request-id": [ - "d0e01168-29aa-4ef9-ada6-9db8ee7d5eb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220211Z:d0e01168-29aa-4ef9-ada6-9db8ee7d5eb8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc01456f-e954-441a-91f0-126117847d92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11058" - ], - "x-ms-correlation-request-id": [ - "fd6faa98-5ed5-4e53-850a-5edee0d70c6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220211Z:fd6faa98-5ed5-4e53-850a-5edee0d70c6d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92ce4d71-3d9d-40a5-a49b-06b384be9be5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11057" - ], - "x-ms-correlation-request-id": [ - "73bbc309-1e2d-463f-af88-0cbabb641aec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220211Z:73bbc309-1e2d-463f-af88-0cbabb641aec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8337a28-a503-492b-8a5b-84f09de22594" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11056" - ], - "x-ms-correlation-request-id": [ - "371bf6e9-cabb-4eba-b45f-c97ed3f417f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220211Z:371bf6e9-cabb-4eba-b45f-c97ed3f417f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "762fd833-9043-4036-bb62-8edee342ca00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11055" - ], - "x-ms-correlation-request-id": [ - "5c29f3b8-2502-4a80-8e8d-84cfd97e6768" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220211Z:5c29f3b8-2502-4a80-8e8d-84cfd97e6768" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "21e73e8f-254f-41e6-9fcb-961ba21efc4e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11054" - ], - "x-ms-correlation-request-id": [ - "54e2ea69-95b1-4ae1-86a4-3fa314f86a1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220212Z:54e2ea69-95b1-4ae1-86a4-3fa314f86a1c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c869bed-15be-4d44-8541-8dc7b6734d72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11053" - ], - "x-ms-correlation-request-id": [ - "cde878d4-c3d3-4d55-8c76-2e9cf0d3afbc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220212Z:cde878d4-c3d3-4d55-8c76-2e9cf0d3afbc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "829630cd-cfa2-4cdd-ae44-a309e60f0541" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11052" - ], - "x-ms-correlation-request-id": [ - "942fa004-d0ca-4495-a02f-8dfce4b89bcb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220212Z:942fa004-d0ca-4495-a02f-8dfce4b89bcb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa82e8f8-f019-4edb-8958-2821a6cd2263" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11051" - ], - "x-ms-correlation-request-id": [ - "b2c0ec70-4252-4914-aafe-78f2dd1a9f44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220212Z:b2c0ec70-4252-4914-aafe-78f2dd1a9f44" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ebe84494-4ce9-41bb-94c7-18c5c0dc0998" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11050" - ], - "x-ms-correlation-request-id": [ - "694bee30-e7a0-4a9f-81bb-402a88657c9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220212Z:694bee30-e7a0-4a9f-81bb-402a88657c9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "528aceea-af01-4cc3-bb54-aa37db7bd8de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11049" - ], - "x-ms-correlation-request-id": [ - "c6655119-cb1d-4e6b-9083-f4ab971e8c74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220213Z:c6655119-cb1d-4e6b-9083-f4ab971e8c74" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8fccafdb-e035-4a22-9bc1-2299e981fd79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11048" - ], - "x-ms-correlation-request-id": [ - "2e8973a7-f1ae-4cd0-912e-0dcefc72c436" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220213Z:2e8973a7-f1ae-4cd0-912e-0dcefc72c436" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "422c16aa-be88-4592-8c89-42a25905cf03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11047" - ], - "x-ms-correlation-request-id": [ - "fc7dca0b-7f07-4702-aaf6-ac1dedddc274" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220213Z:fc7dca0b-7f07-4702-aaf6-ac1dedddc274" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f356ec55-8fbe-4a46-8217-02b3f270f72d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11046" - ], - "x-ms-correlation-request-id": [ - "947aec7b-e68b-4c8e-a9e0-cbd7012784a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220213Z:947aec7b-e68b-4c8e-a9e0-cbd7012784a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de67607a-c857-41be-8841-92459d9aab54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11045" - ], - "x-ms-correlation-request-id": [ - "54cf3e70-9054-4101-9c39-e5684a1ce813" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220213Z:54cf3e70-9054-4101-9c39-e5684a1ce813" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1171d79d-b982-4f2a-8578-4d8b03529769" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11044" - ], - "x-ms-correlation-request-id": [ - "ee9eabeb-eba1-400c-af6f-9363c7817c39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220213Z:ee9eabeb-eba1-400c-af6f-9363c7817c39" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8e9c8a4-d54b-4015-9e4a-95d8132e7462" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11043" - ], - "x-ms-correlation-request-id": [ - "4b52fe82-caf6-43c3-a1bf-576282b16259" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220213Z:4b52fe82-caf6-43c3-a1bf-576282b16259" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73772715-fe78-4985-87c8-cea56c38677a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11042" - ], - "x-ms-correlation-request-id": [ - "64b08841-87c6-44eb-8275-fbc3007a0366" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220213Z:64b08841-87c6-44eb-8275-fbc3007a0366" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "804bf82f-0960-40cd-9352-3f749f58dff4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11041" - ], - "x-ms-correlation-request-id": [ - "745a95c5-80e3-42c6-91a6-3e64d5b2fddc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220214Z:745a95c5-80e3-42c6-91a6-3e64d5b2fddc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "245ebb35-9e22-4308-bb07-f2c8fc6f0f14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11040" - ], - "x-ms-correlation-request-id": [ - "79ce5a7b-a694-4b8d-9c2b-2fe1d8235a26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220214Z:79ce5a7b-a694-4b8d-9c2b-2fe1d8235a26" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5547aa53-1cd5-4a86-8f02-af17a0980f0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11039" - ], - "x-ms-correlation-request-id": [ - "e7325908-39f2-4af4-a0e1-a160b24c0423" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220214Z:e7325908-39f2-4af4-a0e1-a160b24c0423" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f54c3ce-380f-4d4c-b03c-4fa92aafabdc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11038" - ], - "x-ms-correlation-request-id": [ - "7b950b6f-2afd-4187-9840-93b81d5a22d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220214Z:7b950b6f-2afd-4187-9840-93b81d5a22d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3584f62e-1156-4e25-9b34-ab1f67dc6648" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11037" - ], - "x-ms-correlation-request-id": [ - "c2c8ef7b-953e-4ca4-99dd-022c3821d21b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220214Z:c2c8ef7b-953e-4ca4-99dd-022c3821d21b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d489614-9ae3-4ec0-b838-66d2938a3b20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11036" - ], - "x-ms-correlation-request-id": [ - "e0985b93-5747-468c-b870-287192b5079f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220214Z:e0985b93-5747-468c-b870-287192b5079f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c74c4b4-6110-4737-9e30-1af8e1c6c75a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11035" - ], - "x-ms-correlation-request-id": [ - "b3f8c3a1-b2c1-42ba-b3d6-be11a4744b7b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220215Z:b3f8c3a1-b2c1-42ba-b3d6-be11a4744b7b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "286b763d-5224-4a31-9aa3-8bd1259bea89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11034" - ], - "x-ms-correlation-request-id": [ - "7946b13b-2651-4426-8701-a3068ec0b625" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220215Z:7946b13b-2651-4426-8701-a3068ec0b625" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc84fa32-7364-4b3c-90df-a1089e25a9c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11033" - ], - "x-ms-correlation-request-id": [ - "ba7f70bc-47be-4a0e-a46b-26f5457e76bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220215Z:ba7f70bc-47be-4a0e-a46b-26f5457e76bd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f7267c1-0e29-4889-a3bd-216c3ca01866" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11032" - ], - "x-ms-correlation-request-id": [ - "9830c401-1e51-4f04-80a3-de9e7ce4df51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220215Z:9830c401-1e51-4f04-80a3-de9e7ce4df51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "457290d1-0aaf-4bdb-bf23-ad2f9b59bfb5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11031" - ], - "x-ms-correlation-request-id": [ - "406486b3-8686-4502-a77b-7275d3f8d966" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220215Z:406486b3-8686-4502-a77b-7275d3f8d966" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e4511a5-b5b6-4232-9a69-b2e6669c003d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11030" - ], - "x-ms-correlation-request-id": [ - "d1623bf7-2988-42b8-b0c8-c2d41f59fd46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220215Z:d1623bf7-2988-42b8-b0c8-c2d41f59fd46" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3c276f36-eab3-420e-921d-5779b181c184" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11029" - ], - "x-ms-correlation-request-id": [ - "def89b67-6fc9-4440-b52d-33940144a75a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220215Z:def89b67-6fc9-4440-b52d-33940144a75a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d9ea03b-65fa-4bb6-a898-d83348ce9621" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11028" - ], - "x-ms-correlation-request-id": [ - "e5f758a7-8bda-4ef8-a14d-5913125fd34a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220216Z:e5f758a7-8bda-4ef8-a14d-5913125fd34a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bf614bb-5c5d-4c61-a4df-e995746283e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11027" - ], - "x-ms-correlation-request-id": [ - "51db8dba-9808-40ad-b71e-9e90dad1ad7f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220216Z:51db8dba-9808-40ad-b71e-9e90dad1ad7f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "edd09b14-15e1-4f70-ba85-7c9cd2b59828" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11026" - ], - "x-ms-correlation-request-id": [ - "f6038b8d-cd7c-4fd1-a195-573949293ae3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220216Z:f6038b8d-cd7c-4fd1-a195-573949293ae3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01f3c1e7-7747-4641-8e2a-635e1e43a766" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11025" - ], - "x-ms-correlation-request-id": [ - "db6c7e5e-d620-4900-af17-a00bb1355032" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220216Z:db6c7e5e-d620-4900-af17-a00bb1355032" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5aef8e2a-83bb-4f95-b326-ffecd81e6d20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11024" - ], - "x-ms-correlation-request-id": [ - "d4773283-521a-461e-b313-cf02b0b43eb7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220216Z:d4773283-521a-461e-b313-cf02b0b43eb7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa21a0b7-7221-40d8-baa6-1a94328021ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11023" - ], - "x-ms-correlation-request-id": [ - "594f4f15-cfe6-4db2-80ab-c220a4453184" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220217Z:594f4f15-cfe6-4db2-80ab-c220a4453184" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d476e4bc-7572-4bbd-b8db-1cca2ccb5048" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11022" - ], - "x-ms-correlation-request-id": [ - "2d9993b1-c281-497d-805c-dfd5fbdd832c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220217Z:2d9993b1-c281-497d-805c-dfd5fbdd832c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d0131ee-42a9-40d5-b5e1-3884b838abff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11021" - ], - "x-ms-correlation-request-id": [ - "1981f492-51db-488f-89d1-5461787a72b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220217Z:1981f492-51db-488f-89d1-5461787a72b0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98a5556f-6339-4a5e-8303-92dfd5b8714e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11020" - ], - "x-ms-correlation-request-id": [ - "72b21075-d452-4d60-9c40-fc5b311c7975" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220217Z:72b21075-d452-4d60-9c40-fc5b311c7975" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e4d0a27-1804-49ec-a616-8d8bbc0758ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11019" - ], - "x-ms-correlation-request-id": [ - "4267378e-681e-477f-9a73-41a5f1e1eec9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220217Z:4267378e-681e-477f-9a73-41a5f1e1eec9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0c15842b-80b4-4b6f-ac8c-db892e454dde" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11018" - ], - "x-ms-correlation-request-id": [ - "84333d77-e60c-468e-96ab-6b54078310bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220217Z:84333d77-e60c-468e-96ab-6b54078310bd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "676d6de5-8c26-4fe4-892b-3024e5339f06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11017" - ], - "x-ms-correlation-request-id": [ - "0f78858f-0e41-47dd-997c-4aa618ab2dde" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220218Z:0f78858f-0e41-47dd-997c-4aa618ab2dde" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f33f345-aa3d-451d-95fb-204724cb26ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11016" - ], - "x-ms-correlation-request-id": [ - "8cc37506-83e8-44b6-8d98-74915bd4eebc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220218Z:8cc37506-83e8-44b6-8d98-74915bd4eebc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1337efa4-b04e-4eea-9c38-6ef6aab9aad1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11015" - ], - "x-ms-correlation-request-id": [ - "c178c01b-ba6e-4c46-b978-da522190438c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220218Z:c178c01b-ba6e-4c46-b978-da522190438c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf51b15e-3b4d-45ae-adf8-fbcb09eeba9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11014" - ], - "x-ms-correlation-request-id": [ - "d5d52e93-f10a-4865-aaec-30f4fa93db98" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220218Z:d5d52e93-f10a-4865-aaec-30f4fa93db98" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5af53402-0b16-4af4-b146-35d521a59c6d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11013" - ], - "x-ms-correlation-request-id": [ - "49ebf9f5-52e3-44f5-b929-42d090715866" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220218Z:49ebf9f5-52e3-44f5-b929-42d090715866" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a96189f2-9383-4e2c-b8c4-bf32e9defe00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11012" - ], - "x-ms-correlation-request-id": [ - "1b8676a6-3a3f-44a9-996e-edc5a8f89394" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220218Z:1b8676a6-3a3f-44a9-996e-edc5a8f89394" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29d60fee-0a1a-4007-8bc0-75b394dbb525" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11011" - ], - "x-ms-correlation-request-id": [ - "bc816b8e-8028-4164-84fd-491ffcb98473" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220218Z:bc816b8e-8028-4164-84fd-491ffcb98473" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fcc61f04-3931-437f-b970-b42dda1ea4b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11010" - ], - "x-ms-correlation-request-id": [ - "29d46023-2d20-4a63-ad21-38c77d19a67c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220219Z:29d46023-2d20-4a63-ad21-38c77d19a67c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d23a4b6c-0c1c-422c-a131-f239aadd4dbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11009" - ], - "x-ms-correlation-request-id": [ - "27813a34-6d35-4ad3-a1d0-1c5b54304120" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220219Z:27813a34-6d35-4ad3-a1d0-1c5b54304120" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "12d084f7-1342-4a5f-b331-be00f4aa010a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11008" - ], - "x-ms-correlation-request-id": [ - "f3d764b3-df18-4823-a157-86e401215db2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220219Z:f3d764b3-df18-4823-a157-86e401215db2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3c1cf18-154d-4682-a5ac-70338061a8d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11007" - ], - "x-ms-correlation-request-id": [ - "036802fa-4a20-4e33-bd73-b5ebd210c430" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220219Z:036802fa-4a20-4e33-bd73-b5ebd210c430" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d0f92d7-4918-4a10-8889-a08b24b4ed2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11006" - ], - "x-ms-correlation-request-id": [ - "f897bc98-20f6-4061-829d-2d0b05a1f21b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220219Z:f897bc98-20f6-4061-829d-2d0b05a1f21b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c551fcff-2235-41fe-a805-eaa5359f4199" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11005" - ], - "x-ms-correlation-request-id": [ - "530ac5e3-339a-440b-a783-70c252c9eb27" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220220Z:530ac5e3-339a-440b-a783-70c252c9eb27" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d7c1988-cf0d-487d-9fef-dd7fe514970e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11004" - ], - "x-ms-correlation-request-id": [ - "ce2ac7d6-7f94-411a-a4e3-13cf9d3e5209" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220220Z:ce2ac7d6-7f94-411a-a4e3-13cf9d3e5209" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61e78e64-f0a0-4cab-8d09-c1d75e62645c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11003" - ], - "x-ms-correlation-request-id": [ - "52c0d6e0-f620-48ab-b791-788fc8a17d71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220220Z:52c0d6e0-f620-48ab-b791-788fc8a17d71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9984606-c93c-4ebb-8a45-0c63a0435fce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11002" - ], - "x-ms-correlation-request-id": [ - "6d86b9d1-aa0b-4c5d-8364-182877ee46c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220220Z:6d86b9d1-aa0b-4c5d-8364-182877ee46c0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "32fff270-c875-466d-bddc-38b9da8c84a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11001" - ], - "x-ms-correlation-request-id": [ - "2c17da55-8e3b-4a56-8ab7-985c4fe8c371" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220220Z:2c17da55-8e3b-4a56-8ab7-985c4fe8c371" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00e7891e-e01f-4689-a946-18508ef0de9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11000" - ], - "x-ms-correlation-request-id": [ - "3caba28a-47b8-4ef4-82f0-b5d98efb94d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220220Z:3caba28a-47b8-4ef4-82f0-b5d98efb94d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2411a53-8d01-4ed6-8c8e-e5802b883740" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10999" - ], - "x-ms-correlation-request-id": [ - "cd7ee908-3878-4bc8-a977-358925a5b01c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220220Z:cd7ee908-3878-4bc8-a977-358925a5b01c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29edb9ce-ca30-40c7-b57a-76b1ec14c3ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10998" - ], - "x-ms-correlation-request-id": [ - "4f15a733-5601-4061-b10a-321a1947698b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220221Z:4f15a733-5601-4061-b10a-321a1947698b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e3f8001-9674-45ec-b357-e3e2854d3538" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10997" - ], - "x-ms-correlation-request-id": [ - "1392cdb1-dc81-462a-b594-78126e6aedd4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220221Z:1392cdb1-dc81-462a-b594-78126e6aedd4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d691f49c-0014-42de-8966-a98e76f8a2fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10996" - ], - "x-ms-correlation-request-id": [ - "d84707d0-1533-4f3d-9256-919f544be7b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220221Z:d84707d0-1533-4f3d-9256-919f544be7b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff233e68-e836-477f-8863-fad0e276808a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10995" - ], - "x-ms-correlation-request-id": [ - "fd29089b-7ea7-4f03-9a6c-23708464c9e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220221Z:fd29089b-7ea7-4f03-9a6c-23708464c9e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c608efc-5ae8-4072-a177-200ecea54263" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10994" - ], - "x-ms-correlation-request-id": [ - "5630b8b3-d787-4091-8242-b41fc53be592" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220221Z:5630b8b3-d787-4091-8242-b41fc53be592" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2840f70d-d891-4267-b3fb-f543ad69ebac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10993" - ], - "x-ms-correlation-request-id": [ - "0ced87ad-734d-40f6-b6a9-41f806b19838" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220222Z:0ced87ad-734d-40f6-b6a9-41f806b19838" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "082571bb-d262-44bd-84a5-4ec5a209fa86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10992" - ], - "x-ms-correlation-request-id": [ - "41599e49-47ce-41bb-a20e-431211b5f281" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220222Z:41599e49-47ce-41bb-a20e-431211b5f281" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fa0d236-a938-4df5-b708-8e6c89ba18ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10991" - ], - "x-ms-correlation-request-id": [ - "b643f3bf-2d74-468a-8763-e24ff4351872" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220222Z:b643f3bf-2d74-468a-8763-e24ff4351872" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "652860ee-2794-48c0-89bb-a650437ced41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10990" - ], - "x-ms-correlation-request-id": [ - "6601ff14-aff7-484b-ba28-7e6e8514ff28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220222Z:6601ff14-aff7-484b-ba28-7e6e8514ff28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "07477ab6-79e3-44b2-9e85-ef761754ee38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10989" - ], - "x-ms-correlation-request-id": [ - "14685b91-6a46-49cc-8d65-5e964a2a0719" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220222Z:14685b91-6a46-49cc-8d65-5e964a2a0719" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc8dcfcb-6d82-4a59-8e1c-6d709eacf970" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10988" - ], - "x-ms-correlation-request-id": [ - "22b485c9-e7f2-49fd-a842-ae7dd6ecf797" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220222Z:22b485c9-e7f2-49fd-a842-ae7dd6ecf797" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d27a6d9-c098-4c7c-b4a1-63a9c2c23032" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10987" - ], - "x-ms-correlation-request-id": [ - "124c1010-9a82-4753-bb07-2c2397329442" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220223Z:124c1010-9a82-4753-bb07-2c2397329442" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "044a9fa3-7460-44c0-9f46-d96bf5dd4114" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10986" - ], - "x-ms-correlation-request-id": [ - "d72054c5-d46b-4d49-99ed-ce8be2e10362" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220223Z:d72054c5-d46b-4d49-99ed-ce8be2e10362" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b7bc36a-7cff-42cf-8930-ff604fa7fe89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10985" - ], - "x-ms-correlation-request-id": [ - "751a7685-cda8-4ca5-a401-121b10b48815" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220223Z:751a7685-cda8-4ca5-a401-121b10b48815" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25092437-3878-4693-a557-4e1e83105951" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10984" - ], - "x-ms-correlation-request-id": [ - "091098fd-ab22-4153-ae7a-2289b0298bfb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220223Z:091098fd-ab22-4153-ae7a-2289b0298bfb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "541d71d5-8b87-4a23-ada3-1a563ac6d85e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10983" - ], - "x-ms-correlation-request-id": [ - "136e28d7-7cea-4fef-9eeb-ac1adbc93c07" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220223Z:136e28d7-7cea-4fef-9eeb-ac1adbc93c07" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b8638ca-d3f9-4141-a3a2-6225aae93d5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10982" - ], - "x-ms-correlation-request-id": [ - "9cbd1b70-e1e8-47bb-ac05-f62d58ac8e41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220224Z:9cbd1b70-e1e8-47bb-ac05-f62d58ac8e41" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71b5b488-c378-43ac-8811-38816f85e2d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10981" - ], - "x-ms-correlation-request-id": [ - "2fe64269-d431-427c-9848-2c407da91940" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220224Z:2fe64269-d431-427c-9848-2c407da91940" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b902a87a-8d6e-49db-8f50-f12819f304d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10980" - ], - "x-ms-correlation-request-id": [ - "929d4c96-9ac1-41c3-a0f9-699902d9dc42" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220224Z:929d4c96-9ac1-41c3-a0f9-699902d9dc42" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "915451f9-f27e-455a-8c3c-ae055f852d5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10979" - ], - "x-ms-correlation-request-id": [ - "6f680f04-94bf-42dd-a43a-1490aa5c92be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220224Z:6f680f04-94bf-42dd-a43a-1490aa5c92be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "904e8baf-5d5f-4f36-9393-08bf19e9d7be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10978" - ], - "x-ms-correlation-request-id": [ - "afd9160a-b437-4e33-87af-ebd143e5ce2f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220224Z:afd9160a-b437-4e33-87af-ebd143e5ce2f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "305d1b8b-0b5b-4336-8a15-cee37daccc12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10977" - ], - "x-ms-correlation-request-id": [ - "d69ad3e3-0efe-4e6d-8b6a-e4ce20dbf803" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220224Z:d69ad3e3-0efe-4e6d-8b6a-e4ce20dbf803" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1ff4f81-0afc-45b9-9bd8-d614cd21df49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10976" - ], - "x-ms-correlation-request-id": [ - "27703ef7-23d2-46fb-8d8b-519a9d9e7550" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220225Z:27703ef7-23d2-46fb-8d8b-519a9d9e7550" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad27f737-0008-4015-aa81-9fb234807976" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10975" - ], - "x-ms-correlation-request-id": [ - "703d804b-9db5-4a7a-9ba9-1d79c00f035e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220225Z:703d804b-9db5-4a7a-9ba9-1d79c00f035e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7343f7f8-a8da-4284-894f-2b4917750980" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10974" - ], - "x-ms-correlation-request-id": [ - "7fcec6e4-4f93-4b31-88bf-9ea38a60d431" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220225Z:7fcec6e4-4f93-4b31-88bf-9ea38a60d431" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6095009-472a-40e6-9e58-fdec7207c052" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10973" - ], - "x-ms-correlation-request-id": [ - "d400c1ed-cabb-4b47-9fd3-d8fbcb790288" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220225Z:d400c1ed-cabb-4b47-9fd3-d8fbcb790288" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6be7befd-96f1-4f7d-9055-d9f92bf4b3b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10972" - ], - "x-ms-correlation-request-id": [ - "079f4414-ae84-4d62-926e-ee987fba3575" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220225Z:079f4414-ae84-4d62-926e-ee987fba3575" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2d63e69-8f98-4f82-bfb7-bc45197f3531" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10971" - ], - "x-ms-correlation-request-id": [ - "38d5efb9-c2ae-4f5c-9920-112bd3c784b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220225Z:38d5efb9-c2ae-4f5c-9920-112bd3c784b1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73a551fb-49d8-40ea-b813-2131605c2977" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10970" - ], - "x-ms-correlation-request-id": [ - "1380da0d-01d0-4ede-98c7-8e7459ddfa28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220225Z:1380da0d-01d0-4ede-98c7-8e7459ddfa28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e1edb3d-b47f-4f85-b038-4128776009fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10969" - ], - "x-ms-correlation-request-id": [ - "17d6bae6-4d71-4a48-8fe1-8352d074db45" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220225Z:17d6bae6-4d71-4a48-8fe1-8352d074db45" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cec775bb-ed11-476f-840a-0b8106f235b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10968" - ], - "x-ms-correlation-request-id": [ - "a7f2befb-da4c-4f3c-af72-f60c525e72b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220226Z:a7f2befb-da4c-4f3c-af72-f60c525e72b0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b62bf1da-cdb5-4119-9611-7dd95a640b39" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10967" - ], - "x-ms-correlation-request-id": [ - "ce89d65b-1015-43f5-b05d-ff358234db89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220226Z:ce89d65b-1015-43f5-b05d-ff358234db89" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3741907f-600f-400f-84c6-16ff6e55c2f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10966" - ], - "x-ms-correlation-request-id": [ - "1549fc54-9df2-4e10-922f-d49e1cd424c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220226Z:1549fc54-9df2-4e10-922f-d49e1cd424c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ac3a56f-212c-465a-9e8c-ec74251a7c9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10965" - ], - "x-ms-correlation-request-id": [ - "17dbf07c-9d5b-4e4c-aa16-6386b33b3de2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220227Z:17dbf07c-9d5b-4e4c-aa16-6386b33b3de2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13e807e7-7cb5-4e4f-b92e-eee0ec1354b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10964" - ], - "x-ms-correlation-request-id": [ - "0998fffc-500c-4d60-98ba-cc37186db421" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220227Z:0998fffc-500c-4d60-98ba-cc37186db421" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "505ffb2f-39e0-4a73-872e-01bcfc558f9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10963" - ], - "x-ms-correlation-request-id": [ - "ee5dceea-1030-4d7d-bf3c-019034364a58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220227Z:ee5dceea-1030-4d7d-bf3c-019034364a58" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "109cc65a-adc7-456b-8d8e-c8fc00b4feb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10962" - ], - "x-ms-correlation-request-id": [ - "cc2aed31-ddb1-47c5-bd8f-afa97663b4d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220227Z:cc2aed31-ddb1-47c5-bd8f-afa97663b4d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf697420-07de-428b-82d0-ce76b4bc8772" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10961" - ], - "x-ms-correlation-request-id": [ - "469e0d2c-9678-4378-bfbe-32a71cef94f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220227Z:469e0d2c-9678-4378-bfbe-32a71cef94f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7e5c0f6-54cb-4bc1-add5-8b87d0df38a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10960" - ], - "x-ms-correlation-request-id": [ - "189d49ee-651b-4807-8dfa-034a9bfa8b7d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220228Z:189d49ee-651b-4807-8dfa-034a9bfa8b7d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e77b967b-7cd7-4283-bd3c-c8b9ec49a325" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10959" - ], - "x-ms-correlation-request-id": [ - "25cffdaf-5c87-4f9a-a8ba-2589887b3367" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220228Z:25cffdaf-5c87-4f9a-a8ba-2589887b3367" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "09aee31a-3596-4fd5-9e55-9a1318711b5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10958" - ], - "x-ms-correlation-request-id": [ - "8ecba499-3bd2-4689-a21d-a53d72712b7f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220228Z:8ecba499-3bd2-4689-a21d-a53d72712b7f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ceab8d8-35e0-4fdd-9080-14813c1138c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10957" - ], - "x-ms-correlation-request-id": [ - "182db0f6-e97c-4d01-810d-e3ac0457e81f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220228Z:182db0f6-e97c-4d01-810d-e3ac0457e81f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a29738b-abfb-4966-9f57-223b9816aeb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10956" - ], - "x-ms-correlation-request-id": [ - "992554d7-e3ef-49c5-8766-c8848abab1cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220228Z:992554d7-e3ef-49c5-8766-c8848abab1cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c60c89a-e3a1-45ec-9c64-0d4fd4c6e6d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10955" - ], - "x-ms-correlation-request-id": [ - "7ebcb08b-9ad7-416a-891c-04905488be6e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220228Z:7ebcb08b-9ad7-416a-891c-04905488be6e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "990bba94-1397-4da4-82be-e4cd5f6169e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10954" - ], - "x-ms-correlation-request-id": [ - "1a18f485-88d9-491b-b0bc-51175ada0c8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220229Z:1a18f485-88d9-491b-b0bc-51175ada0c8e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9682d370-e54c-4679-83c4-42bcef0ebd5d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10953" - ], - "x-ms-correlation-request-id": [ - "926e74e7-488b-4925-a8fd-7dfa0b169f3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220229Z:926e74e7-488b-4925-a8fd-7dfa0b169f3d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c80bf8b-56b0-4fe1-a22f-6ce576fc29f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10952" - ], - "x-ms-correlation-request-id": [ - "49de9dcc-d3a0-4c59-8fe0-7d3649c2e4e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220229Z:49de9dcc-d3a0-4c59-8fe0-7d3649c2e4e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c0388a3-200b-495a-9f15-84e16cf7caa6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10951" - ], - "x-ms-correlation-request-id": [ - "ce7f98b9-c2b7-4688-ad44-f2bd12814b6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220229Z:ce7f98b9-c2b7-4688-ad44-f2bd12814b6c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16bd7ee8-48a8-42bc-942c-9b6f65285b60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10950" - ], - "x-ms-correlation-request-id": [ - "bba19f1c-8611-41e5-9057-d86227d93ee4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220229Z:bba19f1c-8611-41e5-9057-d86227d93ee4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4073696-73c6-41a2-99be-8679e4dbace7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10949" - ], - "x-ms-correlation-request-id": [ - "ac303d92-64d9-457e-aaef-04715807c743" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220229Z:ac303d92-64d9-457e-aaef-04715807c743" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e651b83a-4df1-4559-8ce6-d4e653a8b919" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10948" - ], - "x-ms-correlation-request-id": [ - "e30f047d-15f6-4cb2-849c-4c78ac03a76c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220230Z:e30f047d-15f6-4cb2-849c-4c78ac03a76c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9105e63a-909f-4484-9e64-bdcfb815c9ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10947" - ], - "x-ms-correlation-request-id": [ - "d141ec30-3d34-4c12-9468-4516dafb14b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220230Z:d141ec30-3d34-4c12-9468-4516dafb14b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a5e61c7-5338-4a30-b689-8e4f06eb28c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10946" - ], - "x-ms-correlation-request-id": [ - "cd9b6492-61a8-459c-800e-99aa30f76d29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220230Z:cd9b6492-61a8-459c-800e-99aa30f76d29" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08f74809-a49d-42f1-8655-afbb09d2b599" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10945" - ], - "x-ms-correlation-request-id": [ - "cf8bcc85-2dee-463e-8de7-7c2f4726e239" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220230Z:cf8bcc85-2dee-463e-8de7-7c2f4726e239" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b229c338-3a46-4ed5-bd3a-61139f468f7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10944" - ], - "x-ms-correlation-request-id": [ - "a1595270-dfd5-41dd-ab3a-2477005a4ff8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220230Z:a1595270-dfd5-41dd-ab3a-2477005a4ff8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d2eb872-fe03-4ebb-81f3-467968852e5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10943" - ], - "x-ms-correlation-request-id": [ - "1c3a127b-6b28-42b8-9d06-068e141d7384" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220231Z:1c3a127b-6b28-42b8-9d06-068e141d7384" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4a69f6b-9c6c-40ec-8eb2-347d551e7c92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10942" - ], - "x-ms-correlation-request-id": [ - "f23fb76d-6889-49c5-aec5-e284512aa2fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220231Z:f23fb76d-6889-49c5-aec5-e284512aa2fb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b31db9e4-f932-47e2-852d-a00c7a2873ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10941" - ], - "x-ms-correlation-request-id": [ - "911c67aa-e0e5-449d-8f41-9ac64d5342c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220231Z:911c67aa-e0e5-449d-8f41-9ac64d5342c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b4d67de-8a30-4317-8059-c68e28362bfc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10940" - ], - "x-ms-correlation-request-id": [ - "82493fd1-7711-4cf3-b4b5-f7e077e23279" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220231Z:82493fd1-7711-4cf3-b4b5-f7e077e23279" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a2b20077-ab67-4a9a-88f2-d1e45185b73d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10939" - ], - "x-ms-correlation-request-id": [ - "af377842-f171-4804-b48e-4e448385ced2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220231Z:af377842-f171-4804-b48e-4e448385ced2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8eaafe6-f6e8-4057-a69d-1146c4279d37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10938" - ], - "x-ms-correlation-request-id": [ - "b80196b7-e795-485d-87cb-ff9941dfade3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220231Z:b80196b7-e795-485d-87cb-ff9941dfade3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f49aae64-4e62-4681-9f66-6e4c7ec9f563" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10937" - ], - "x-ms-correlation-request-id": [ - "303e98c5-7232-41a0-b26b-856a624e077e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220231Z:303e98c5-7232-41a0-b26b-856a624e077e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "793dc6ad-e7d4-41ec-9955-bd21b6d5a2fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10936" - ], - "x-ms-correlation-request-id": [ - "c7299bdb-8bb8-40ae-8956-cbf41f9c215c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220232Z:c7299bdb-8bb8-40ae-8956-cbf41f9c215c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2983eac1-1da9-419d-9802-383b2e9be491" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10935" - ], - "x-ms-correlation-request-id": [ - "415e528f-7a41-4fdd-b2d5-37a6abe5eec0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220232Z:415e528f-7a41-4fdd-b2d5-37a6abe5eec0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4e92f3c-78be-4823-92dc-56fea1e3e84c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10934" - ], - "x-ms-correlation-request-id": [ - "c29a30e2-741f-4fba-b142-d33fbcdd40a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220232Z:c29a30e2-741f-4fba-b142-d33fbcdd40a9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99aee4ff-66c8-4a5c-931a-7bf75c28a201" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10933" - ], - "x-ms-correlation-request-id": [ - "554c44e6-8931-4038-bc6a-2f136e68208d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220232Z:554c44e6-8931-4038-bc6a-2f136e68208d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a60c043-5e0b-4f66-bcf5-2e5a8555d495" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10932" - ], - "x-ms-correlation-request-id": [ - "5f88e4b2-8b95-42b5-b55c-fd8684daaef2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220232Z:5f88e4b2-8b95-42b5-b55c-fd8684daaef2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7f8ab1a-1ce1-4b4c-9176-8006aa3c6d5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10931" - ], - "x-ms-correlation-request-id": [ - "3e25c472-fd13-4c87-854b-f7943d6ad34f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220233Z:3e25c472-fd13-4c87-854b-f7943d6ad34f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84d3b3ea-2441-406a-b86f-2c3f9bbc82c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10930" - ], - "x-ms-correlation-request-id": [ - "28e99dac-e656-43b1-9c67-c803a0b9fdb6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220233Z:28e99dac-e656-43b1-9c67-c803a0b9fdb6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59851d20-d874-4d04-af8a-d043e9708d65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10929" - ], - "x-ms-correlation-request-id": [ - "2db60500-d5a8-464a-9f75-978936d27c3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220233Z:2db60500-d5a8-464a-9f75-978936d27c3e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab86058d-4a50-4b25-8e06-876f86c7e54d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10928" - ], - "x-ms-correlation-request-id": [ - "37b568c3-ec81-4788-b12d-ec16f89c109b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220233Z:37b568c3-ec81-4788-b12d-ec16f89c109b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53355563-b521-4651-95ce-b6f337f246c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10927" - ], - "x-ms-correlation-request-id": [ - "cf921698-5a7c-4734-8806-5fe7de523e8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220233Z:cf921698-5a7c-4734-8806-5fe7de523e8c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efeed8e1-d8ac-4f42-8803-af3bb783259b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10926" - ], - "x-ms-correlation-request-id": [ - "7210c4fc-c234-4900-a817-bb7a6628b608" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220234Z:7210c4fc-c234-4900-a817-bb7a6628b608" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23f09dae-6a7c-4196-b243-b0543f47b1f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10925" - ], - "x-ms-correlation-request-id": [ - "7fb82ad5-0587-4ede-bd17-45dc74a42025" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220234Z:7fb82ad5-0587-4ede-bd17-45dc74a42025" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0ffc62e-5ae3-48ad-a48b-3d7e99f13245" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10924" - ], - "x-ms-correlation-request-id": [ - "21d9f7a9-ddec-48a2-b3ed-52d0d301eea8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220234Z:21d9f7a9-ddec-48a2-b3ed-52d0d301eea8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f3d295e-a0a8-4c44-8b55-f3e28720e5a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10923" - ], - "x-ms-correlation-request-id": [ - "7b39da54-a4bc-4c74-b9b1-99066f2aff9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220234Z:7b39da54-a4bc-4c74-b9b1-99066f2aff9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75f22aea-2d12-484a-8c69-d48b39a9849e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10922" - ], - "x-ms-correlation-request-id": [ - "5f962fd8-6d07-41de-bf65-6cb7aeebd3dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220234Z:5f962fd8-6d07-41de-bf65-6cb7aeebd3dd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3126f21a-75d3-4dbd-9f22-5c5d9d886d71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10921" - ], - "x-ms-correlation-request-id": [ - "e1c791ce-c096-4902-8678-1f2f29dc1476" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220234Z:e1c791ce-c096-4902-8678-1f2f29dc1476" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6d09607-f7f0-4e79-9373-cefef88de8c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10920" - ], - "x-ms-correlation-request-id": [ - "626a1bd6-21f7-4527-8651-a125bf05ca91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220235Z:626a1bd6-21f7-4527-8651-a125bf05ca91" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4258361-680b-44f2-8429-5306931da51d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10919" - ], - "x-ms-correlation-request-id": [ - "988ceaa2-875b-4e0b-b91e-aa4c9ef72337" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220235Z:988ceaa2-875b-4e0b-b91e-aa4c9ef72337" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a4f4c81-3e18-4610-8fec-0685c9a7aaa6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10918" - ], - "x-ms-correlation-request-id": [ - "d99d2744-78a4-4012-a9ba-7c23d3317e07" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220235Z:d99d2744-78a4-4012-a9ba-7c23d3317e07" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a0aa8bf-58f6-44e0-afdb-7448605da989" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10917" - ], - "x-ms-correlation-request-id": [ - "de62861a-115a-4d0d-b694-855065417b7d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220235Z:de62861a-115a-4d0d-b694-855065417b7d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8675aaab-1954-42ef-a007-ee5dc23db888" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10916" - ], - "x-ms-correlation-request-id": [ - "3a675559-f7c8-4333-a9f8-81f5569abfcd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220235Z:3a675559-f7c8-4333-a9f8-81f5569abfcd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "64c9bb13-4fa6-419b-bbcc-661a5490eb75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10915" - ], - "x-ms-correlation-request-id": [ - "e1042882-f83d-4dbf-9320-56e1500189bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220235Z:e1042882-f83d-4dbf-9320-56e1500189bf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70469d00-858d-47cc-ac8f-68864e7ce519" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10914" - ], - "x-ms-correlation-request-id": [ - "f9829d66-244d-4549-832d-a93a33612649" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220236Z:f9829d66-244d-4549-832d-a93a33612649" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40045dcb-20d6-4dfe-ad7a-ba427318dd0a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10913" - ], - "x-ms-correlation-request-id": [ - "1965e115-d673-415e-804a-2a0b5a69778b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220236Z:1965e115-d673-415e-804a-2a0b5a69778b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f062a75-d2d2-4b4c-bae0-1082556cf3d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10912" - ], - "x-ms-correlation-request-id": [ - "5a9f0e45-264c-4386-9434-9ff938fe9813" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220236Z:5a9f0e45-264c-4386-9434-9ff938fe9813" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c9ca6c2-bfcf-48be-ab82-fa935b2d26af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10911" - ], - "x-ms-correlation-request-id": [ - "0aded9ec-e7c9-479e-ab5b-2192c0c1f6d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220236Z:0aded9ec-e7c9-479e-ab5b-2192c0c1f6d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a606c949-c7b0-4739-ac66-a4f7ff5604f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10910" - ], - "x-ms-correlation-request-id": [ - "68a48b08-ec08-45da-ac65-406450fbb4d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220236Z:68a48b08-ec08-45da-ac65-406450fbb4d7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ffdf886-ffe6-4dc3-ba42-b8483bc4888d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10909" - ], - "x-ms-correlation-request-id": [ - "3b173c0c-4886-4a64-a429-19e40ae17591" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220236Z:3b173c0c-4886-4a64-a429-19e40ae17591" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c57d616-c5e9-4de2-9651-960921fe5875" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10908" - ], - "x-ms-correlation-request-id": [ - "3b8e07f5-4d85-4973-b847-f1c5226bb75b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220237Z:3b8e07f5-4d85-4973-b847-f1c5226bb75b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0a1018b-11e5-424a-b1d5-abfd7e2bcb20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10907" - ], - "x-ms-correlation-request-id": [ - "8de1dbb1-1696-4edd-af5f-a8f3f011cbc3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220237Z:8de1dbb1-1696-4edd-af5f-a8f3f011cbc3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7eff0a7-5062-420b-9988-323b9de0a128" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10906" - ], - "x-ms-correlation-request-id": [ - "61ed4f48-209b-4bd3-9086-307eb1a109b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220237Z:61ed4f48-209b-4bd3-9086-307eb1a109b7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a080f6d1-0550-4427-b155-e935a9bf5ef7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10905" - ], - "x-ms-correlation-request-id": [ - "fce8e945-74a9-4e70-b9ed-59c8cf35765c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220237Z:fce8e945-74a9-4e70-b9ed-59c8cf35765c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0832b224-4f7f-4d1c-9f29-3db194fcdbff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10904" - ], - "x-ms-correlation-request-id": [ - "b4304529-61f5-4682-b899-941bad2a0cec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220238Z:b4304529-61f5-4682-b899-941bad2a0cec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a978a9fc-e2be-40e4-8d82-b3cd5812747e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10903" - ], - "x-ms-correlation-request-id": [ - "249f5c5a-9690-4be3-adb8-87dcae82148e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220238Z:249f5c5a-9690-4be3-adb8-87dcae82148e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4762416c-e668-4756-8766-e6b1ff0bac56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10902" - ], - "x-ms-correlation-request-id": [ - "4d4d9e90-159b-4198-9b00-640cbcdfded9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220238Z:4d4d9e90-159b-4198-9b00-640cbcdfded9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04272572-f4f6-4868-b977-bf5f299a40fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10901" - ], - "x-ms-correlation-request-id": [ - "0527ca1d-d412-49a1-8580-df9086512d03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220238Z:0527ca1d-d412-49a1-8580-df9086512d03" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b254355b-8739-4f09-9e82-44a4e8db4b2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10900" - ], - "x-ms-correlation-request-id": [ - "02018f11-390d-4e45-a973-decd42268c03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220238Z:02018f11-390d-4e45-a973-decd42268c03" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d71a0fbc-55e2-405e-b1a2-d3d5e9481ff9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10899" - ], - "x-ms-correlation-request-id": [ - "b26e0ba2-751c-4a5e-abe3-9301589286a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220238Z:b26e0ba2-751c-4a5e-abe3-9301589286a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8f7781f-98ef-4115-812c-d0409c2ed1b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10898" - ], - "x-ms-correlation-request-id": [ - "9034ad46-2a14-476d-939d-f857f2d64ce4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220239Z:9034ad46-2a14-476d-939d-f857f2d64ce4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d3537b0-38d9-4cf8-a312-c0a06ec39f3e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10897" - ], - "x-ms-correlation-request-id": [ - "868f2ea3-16a6-45f6-ab12-e35b8bc3e8e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220239Z:868f2ea3-16a6-45f6-ab12-e35b8bc3e8e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb851c9e-165f-40e8-aa97-42a297346e6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10896" - ], - "x-ms-correlation-request-id": [ - "549df571-8d38-4dd4-b7ff-dc59aea37253" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220239Z:549df571-8d38-4dd4-b7ff-dc59aea37253" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76a19b5d-5cdc-459d-9787-8baf146191b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10895" - ], - "x-ms-correlation-request-id": [ - "52ddd78a-7b35-4db4-a7a0-1aefd9a11e01" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220239Z:52ddd78a-7b35-4db4-a7a0-1aefd9a11e01" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ad32d56-71a5-4db2-8c68-5937dbda3dd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10894" - ], - "x-ms-correlation-request-id": [ - "3feb2477-a356-4eac-aa07-420366531ae9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220239Z:3feb2477-a356-4eac-aa07-420366531ae9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9744e691-d697-4f3a-8c2b-8d0481d16694" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10893" - ], - "x-ms-correlation-request-id": [ - "e4254e6f-5b3c-4058-b328-7a2e24de12af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220239Z:e4254e6f-5b3c-4058-b328-7a2e24de12af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df8cc397-8a70-4b3a-a965-0048a1a0eb6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10892" - ], - "x-ms-correlation-request-id": [ - "39a87d61-fe58-4a6b-aefb-c1ffa19cf992" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220239Z:39a87d61-fe58-4a6b-aefb-c1ffa19cf992" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b340312-ccb7-4c4b-a25c-0b08895e3a8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10891" - ], - "x-ms-correlation-request-id": [ - "825e56b9-3bef-43dd-ab41-c500eebdf117" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220240Z:825e56b9-3bef-43dd-ab41-c500eebdf117" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d61b85a2-979d-4f79-a6af-dcef92e1afc4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10890" - ], - "x-ms-correlation-request-id": [ - "9ac23b03-2eeb-4b5c-9515-755a593002ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220240Z:9ac23b03-2eeb-4b5c-9515-755a593002ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6337c46-10e8-463e-823f-a2b7ff281374" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10889" - ], - "x-ms-correlation-request-id": [ - "75bbd717-7f80-443d-89d0-9ca1de4e29c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220240Z:75bbd717-7f80-443d-89d0-9ca1de4e29c0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a563209d-bf5e-4285-8ca0-6c0b824a0e84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10888" - ], - "x-ms-correlation-request-id": [ - "c3ff600b-7038-46b3-bb84-b1a698e386e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220240Z:c3ff600b-7038-46b3-bb84-b1a698e386e1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc965330-34d5-4e01-bda1-86def140991f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10887" - ], - "x-ms-correlation-request-id": [ - "acb6f344-52bd-412d-b47c-5d2377d073d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220240Z:acb6f344-52bd-412d-b47c-5d2377d073d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "255c3fc9-8bf1-4d68-8bd4-81e93d8a5002" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10886" - ], - "x-ms-correlation-request-id": [ - "1604c90b-b8db-49d0-beff-fb58d8cf2a12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220241Z:1604c90b-b8db-49d0-beff-fb58d8cf2a12" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa773a90-024a-41f2-bb94-d40fc6209387" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10885" - ], - "x-ms-correlation-request-id": [ - "1e3030d3-a0d9-4188-9f1b-1693cd404944" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220241Z:1e3030d3-a0d9-4188-9f1b-1693cd404944" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "521690fe-9309-4a16-980e-b3da1d7b4caf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10884" - ], - "x-ms-correlation-request-id": [ - "2e33293a-2a3a-4cb8-aeee-3ecd1163d128" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220241Z:2e33293a-2a3a-4cb8-aeee-3ecd1163d128" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "317d0a58-7464-4378-89dd-23a51d814fdb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10883" - ], - "x-ms-correlation-request-id": [ - "6e5a66bf-6682-4e53-a1ba-84f32920fbba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220241Z:6e5a66bf-6682-4e53-a1ba-84f32920fbba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46a87566-f071-4b38-b628-b55838f80920" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10882" - ], - "x-ms-correlation-request-id": [ - "4f2df82f-e970-4d75-b1ef-f27b8cd2b17a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220241Z:4f2df82f-e970-4d75-b1ef-f27b8cd2b17a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "558e67b0-c07a-4f2b-84c4-67fe03a1b604" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10881" - ], - "x-ms-correlation-request-id": [ - "1df5cd77-33ec-489f-99a5-3d8af695b383" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220241Z:1df5cd77-33ec-489f-99a5-3d8af695b383" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "145d5b6c-ed2c-4cf8-b3e9-628b10a10a9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10880" - ], - "x-ms-correlation-request-id": [ - "62a4451a-173e-416b-a194-3d01ec131b74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220241Z:62a4451a-173e-416b-a194-3d01ec131b74" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e6264da-5bce-47f3-8b6b-cc4a348790f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10879" - ], - "x-ms-correlation-request-id": [ - "44a9ea4a-1d2f-4906-ab94-6432d5dc2303" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220242Z:44a9ea4a-1d2f-4906-ab94-6432d5dc2303" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38f9c493-1b5a-4851-b06b-02bdca40fdbb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10878" - ], - "x-ms-correlation-request-id": [ - "1c8a04d7-c27e-44c3-afb4-b2b5677ac068" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220242Z:1c8a04d7-c27e-44c3-afb4-b2b5677ac068" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0075ab0b-2d73-42a3-a565-9afe2c7bdfac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10877" - ], - "x-ms-correlation-request-id": [ - "131ad681-47bd-4e0a-a1d6-238366491d49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220242Z:131ad681-47bd-4e0a-a1d6-238366491d49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc0cdf91-131c-444b-a4f8-1e82ab8d8c42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10876" - ], - "x-ms-correlation-request-id": [ - "5391bc4c-05e5-46e8-b221-7b65ec4d1493" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220242Z:5391bc4c-05e5-46e8-b221-7b65ec4d1493" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e481277f-1839-49b0-bdb9-9a7ed6b6ff52" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10875" - ], - "x-ms-correlation-request-id": [ - "8eb9795a-3c6d-4417-b481-6667b785d3af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220242Z:8eb9795a-3c6d-4417-b481-6667b785d3af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "833ee34f-fcb6-41dc-b693-8144f65d7dec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10874" - ], - "x-ms-correlation-request-id": [ - "a3fc2dfd-9488-44dd-b025-41a6ad13fd31" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220243Z:a3fc2dfd-9488-44dd-b025-41a6ad13fd31" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f870d9b5-c3dd-455b-9454-908f96e92a1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10873" - ], - "x-ms-correlation-request-id": [ - "c14a643e-b8be-41cd-9218-887d939b61b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220243Z:c14a643e-b8be-41cd-9218-887d939b61b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1bff785b-67a8-4d07-ad5b-210da75bfcad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10872" - ], - "x-ms-correlation-request-id": [ - "60a48eef-8dbc-40b4-afb3-89ade4c24ac9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220243Z:60a48eef-8dbc-40b4-afb3-89ade4c24ac9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8086275d-6cf9-4b67-92cc-540a9b141e99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10871" - ], - "x-ms-correlation-request-id": [ - "f7497ff4-2b81-466e-a9d6-84c4cd2315a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220243Z:f7497ff4-2b81-466e-a9d6-84c4cd2315a2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c84da1f-e94f-4863-ae52-d0dcb0003690" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10870" - ], - "x-ms-correlation-request-id": [ - "65f6eb1e-b180-4c70-a42f-08a8a769a0ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220243Z:65f6eb1e-b180-4c70-a42f-08a8a769a0ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f12afc2-53c2-4c5b-883b-27944cc56eb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10869" - ], - "x-ms-correlation-request-id": [ - "b49928dd-9a66-43fc-b872-dda210fc2d23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220243Z:b49928dd-9a66-43fc-b872-dda210fc2d23" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b7adea4-d822-4d8d-af79-10ba5b6b0376" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10868" - ], - "x-ms-correlation-request-id": [ - "2830f1f4-6e24-4077-bbff-5e0485290665" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220243Z:2830f1f4-6e24-4077-bbff-5e0485290665" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e01905f-bb7b-44d8-9e1f-56a480b83ea1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10867" - ], - "x-ms-correlation-request-id": [ - "81ddb6e8-1cfa-443f-bf45-6877844f9016" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220244Z:81ddb6e8-1cfa-443f-bf45-6877844f9016" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd142998-fdc6-482b-8e2d-f308718d6030" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10866" - ], - "x-ms-correlation-request-id": [ - "aaa2737f-b0a6-4ec5-8a35-6cf3d23603ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220244Z:aaa2737f-b0a6-4ec5-8a35-6cf3d23603ed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a32625c7-0cb4-4502-a45a-19a31f1f6a58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10865" - ], - "x-ms-correlation-request-id": [ - "e16e5113-560f-4821-937c-cbd6fe2e6179" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220244Z:e16e5113-560f-4821-937c-cbd6fe2e6179" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff966c9a-8de5-477d-a555-3e73e5b65c9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10864" - ], - "x-ms-correlation-request-id": [ - "b7aa4c50-5c92-4764-a40c-7fa040f583d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220244Z:b7aa4c50-5c92-4764-a40c-7fa040f583d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5bb2e137-4131-4c80-a385-36e43ff7fe64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10863" - ], - "x-ms-correlation-request-id": [ - "3def1de5-9187-4526-b0de-22dff1be1a51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220244Z:3def1de5-9187-4526-b0de-22dff1be1a51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c57cbdf-0acd-4fab-ba9d-703b61a7f9d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10862" - ], - "x-ms-correlation-request-id": [ - "c619b9b7-bbf1-421c-b29a-cdd8be187407" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220244Z:c619b9b7-bbf1-421c-b29a-cdd8be187407" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5ffb359-a667-4f52-b1fe-722b77c63b8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10861" - ], - "x-ms-correlation-request-id": [ - "7eef2cac-dce0-4029-8ecd-940ebc667c56" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220245Z:7eef2cac-dce0-4029-8ecd-940ebc667c56" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bbeb3864-15ea-43d1-aecc-d37528110237" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10860" - ], - "x-ms-correlation-request-id": [ - "31e3bd13-deab-4d8e-a576-f2a25f8c5fec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220245Z:31e3bd13-deab-4d8e-a576-f2a25f8c5fec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2247b271-50e1-4b76-b76d-497fa2d23f64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10859" - ], - "x-ms-correlation-request-id": [ - "41296229-24b3-468c-b948-2e4eeb42191e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220245Z:41296229-24b3-468c-b948-2e4eeb42191e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0857f7dc-f3d2-4292-bba5-b4e43ad9ad65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10858" - ], - "x-ms-correlation-request-id": [ - "a27102a2-aa5f-43b2-9f33-22efc3bf5087" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220245Z:a27102a2-aa5f-43b2-9f33-22efc3bf5087" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "697e8d53-b975-4b43-8894-0a646c8291db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10857" - ], - "x-ms-correlation-request-id": [ - "f0f7c4eb-90cd-44e5-bdf9-7c79f89481ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220245Z:f0f7c4eb-90cd-44e5-bdf9-7c79f89481ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e54af964-bdf8-49aa-b696-0d1b715ff9ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10856" - ], - "x-ms-correlation-request-id": [ - "36b95c39-6c91-4f91-aae2-66572dc8cefc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220246Z:36b95c39-6c91-4f91-aae2-66572dc8cefc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30172a2f-598b-4c8c-b697-ca96a02a0d2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10855" - ], - "x-ms-correlation-request-id": [ - "503349bc-a51a-47a7-81d1-5447ae18f8e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220246Z:503349bc-a51a-47a7-81d1-5447ae18f8e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f0e2b5c-277b-4d82-bac0-4b01212987d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10854" - ], - "x-ms-correlation-request-id": [ - "11980395-9d74-49bd-8b36-6ccc62277423" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220246Z:11980395-9d74-49bd-8b36-6ccc62277423" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40466efa-5ae7-482b-9ea4-739f11d4a1b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10853" - ], - "x-ms-correlation-request-id": [ - "8a6d3ddd-2019-4dee-bddb-9c8b8d9b7fed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220246Z:8a6d3ddd-2019-4dee-bddb-9c8b8d9b7fed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3533e9c3-3b05-4048-8cd2-64fa4484c3b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10852" - ], - "x-ms-correlation-request-id": [ - "e277d67c-bc66-4331-9899-c1c1e860321c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220246Z:e277d67c-bc66-4331-9899-c1c1e860321c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d597062-9aa9-44ad-aff6-d72fcc972e7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10851" - ], - "x-ms-correlation-request-id": [ - "88f887a3-a0cf-4608-a532-4b0146189a51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220246Z:88f887a3-a0cf-4608-a532-4b0146189a51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be2926cf-5f53-408d-b7f0-4a50465f1962" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10850" - ], - "x-ms-correlation-request-id": [ - "04789ee4-f167-428e-a279-6f3e22943c3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220246Z:04789ee4-f167-428e-a279-6f3e22943c3b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d2d35c1-ba36-4d18-a18e-a2e8eeefc263" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10849" - ], - "x-ms-correlation-request-id": [ - "e052e711-d9ff-4fce-aa52-622cbb912e61" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220247Z:e052e711-d9ff-4fce-aa52-622cbb912e61" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0360a76-c6c0-4144-834a-086c4e14e332" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10848" - ], - "x-ms-correlation-request-id": [ - "6c18f6e0-9da9-40ff-b460-f242e15c2f46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220247Z:6c18f6e0-9da9-40ff-b460-f242e15c2f46" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72c21e61-3b29-4d57-ab8c-a563fa4c919f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10847" - ], - "x-ms-correlation-request-id": [ - "d1e8928d-798b-4657-bcbe-6186c3474c2a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220247Z:d1e8928d-798b-4657-bcbe-6186c3474c2a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "333cda99-d66a-4131-acf8-808a83cd6808" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10846" - ], - "x-ms-correlation-request-id": [ - "30e02484-b1b6-493d-ad3c-585d0abe68f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220247Z:30e02484-b1b6-493d-ad3c-585d0abe68f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc38839d-8cea-4402-87ce-ae673b86663c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10845" - ], - "x-ms-correlation-request-id": [ - "02366421-b04b-4360-a493-dbf7ba69e127" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220247Z:02366421-b04b-4360-a493-dbf7ba69e127" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fef93aa-8b3f-48bd-959c-9139e882767f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10844" - ], - "x-ms-correlation-request-id": [ - "4697966e-de41-4294-96c9-4e60e915d5e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220247Z:4697966e-de41-4294-96c9-4e60e915d5e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69c58711-5d02-4e0a-adcf-5126faef45ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10843" - ], - "x-ms-correlation-request-id": [ - "b13b5369-4585-4d82-b40a-1b32abb39d9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220248Z:b13b5369-4585-4d82-b40a-1b32abb39d9d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2646297d-c5c6-44ff-a081-14ff0328adea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10842" - ], - "x-ms-correlation-request-id": [ - "99acd74d-3fd7-43e2-a132-864f3b0ea5f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220248Z:99acd74d-3fd7-43e2-a132-864f3b0ea5f3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe84e357-81ca-4f82-ab0c-04f55d7a5f5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10841" - ], - "x-ms-correlation-request-id": [ - "ee477933-2045-4e92-b843-fc12e2f4937e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220248Z:ee477933-2045-4e92-b843-fc12e2f4937e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b9d9a65-f33b-4571-9eaa-342519e4f640" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10840" - ], - "x-ms-correlation-request-id": [ - "fcb76b08-09bd-49ac-b42f-8c4144c4c897" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220248Z:fcb76b08-09bd-49ac-b42f-8c4144c4c897" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b907a982-0ee5-47aa-b8c8-55fc6678f12e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10839" - ], - "x-ms-correlation-request-id": [ - "3da94538-1be6-4d85-bfdb-6247c2d84c4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220248Z:3da94538-1be6-4d85-bfdb-6247c2d84c4e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46664ff8-032e-4758-a37b-865cadbe5ad4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10838" - ], - "x-ms-correlation-request-id": [ - "e4cfcc15-2440-489e-8d57-55a9549110fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220248Z:e4cfcc15-2440-489e-8d57-55a9549110fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40200d78-1750-4821-8916-5238848202b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10837" - ], - "x-ms-correlation-request-id": [ - "9d346ce3-d988-432f-8955-361c1c1f7568" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220249Z:9d346ce3-d988-432f-8955-361c1c1f7568" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b16d075-274a-498a-9648-c8f5b321b41c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10836" - ], - "x-ms-correlation-request-id": [ - "7d269d38-81f5-4b58-bbc5-eab1a0c5228b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220249Z:7d269d38-81f5-4b58-bbc5-eab1a0c5228b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb434227-58a2-4105-bf94-3a545a3a2147" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10835" - ], - "x-ms-correlation-request-id": [ - "00e4aa92-735d-47d9-a4a3-d1cdb46a81f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220249Z:00e4aa92-735d-47d9-a4a3-d1cdb46a81f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14d45133-e985-4617-a646-223f5638cff9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10834" - ], - "x-ms-correlation-request-id": [ - "4b640a2e-5a0e-4952-8bbf-46d159bf4593" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220249Z:4b640a2e-5a0e-4952-8bbf-46d159bf4593" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd6e4e24-43cc-404f-95ed-5993cbefb86f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10833" - ], - "x-ms-correlation-request-id": [ - "bad00c31-8143-45c4-98a4-f1d015577976" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220249Z:bad00c31-8143-45c4-98a4-f1d015577976" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1cdd1a1-09c3-4e51-a41b-ece480690369" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10832" - ], - "x-ms-correlation-request-id": [ - "55d800a7-f18b-487b-bcdb-ea7c5812a8fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220249Z:55d800a7-f18b-487b-bcdb-ea7c5812a8fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98b95e95-e2e9-4902-aa50-2f0060b38ffb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10831" - ], - "x-ms-correlation-request-id": [ - "10042842-fc01-4d40-b942-b6904d30b041" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220250Z:10042842-fc01-4d40-b942-b6904d30b041" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3653c78d-bc02-4016-adae-442ae76da83f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10830" - ], - "x-ms-correlation-request-id": [ - "34b495b4-4e0e-446b-ade3-ee709259d7e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220250Z:34b495b4-4e0e-446b-ade3-ee709259d7e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "622b629f-f8fe-4b69-8705-1d72fa03c459" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10829" - ], - "x-ms-correlation-request-id": [ - "a772f5f4-0a4d-4e98-bbd4-ffa5c026602c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220250Z:a772f5f4-0a4d-4e98-bbd4-ffa5c026602c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a4bc501-9648-4f85-8a2a-bfe665a92e04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10828" - ], - "x-ms-correlation-request-id": [ - "11fd64be-9db8-45ff-b2af-9cfa9ffa4862" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220250Z:11fd64be-9db8-45ff-b2af-9cfa9ffa4862" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82d79799-a327-4eb9-9131-ddca3e38f0ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10827" - ], - "x-ms-correlation-request-id": [ - "38ae39ae-b09c-4c04-b189-5244582eec72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220250Z:38ae39ae-b09c-4c04-b189-5244582eec72" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d855b9db-5a34-4b47-a064-b2644cbe4a0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10826" - ], - "x-ms-correlation-request-id": [ - "0baa25b6-20e4-473d-bf3a-dcec247482b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220250Z:0baa25b6-20e4-473d-bf3a-dcec247482b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97e9d2cf-357b-49a2-b5f2-dc7c3179150a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10825" - ], - "x-ms-correlation-request-id": [ - "14405024-1064-44c6-8cfa-b903a3dfe9e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220251Z:14405024-1064-44c6-8cfa-b903a3dfe9e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bd136ee1-0a95-4c1a-9a6d-7d753e12a5e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10824" - ], - "x-ms-correlation-request-id": [ - "375aca3f-1a6e-445d-beca-95ccb4c2a5f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220251Z:375aca3f-1a6e-445d-beca-95ccb4c2a5f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d02aace-5716-498f-995d-778764d7e3df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10823" - ], - "x-ms-correlation-request-id": [ - "e29febc0-f505-4198-ae0b-4b73ebb16e1d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220251Z:e29febc0-f505-4198-ae0b-4b73ebb16e1d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1fbf06d6-2f7c-4fc6-aadb-75c3762f0b05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10822" - ], - "x-ms-correlation-request-id": [ - "ef0a5a3f-e069-44b9-ae8f-9360f88f1502" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220251Z:ef0a5a3f-e069-44b9-ae8f-9360f88f1502" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe64e806-a4e7-413a-b1d8-ae8d733f078f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10821" - ], - "x-ms-correlation-request-id": [ - "87fd956e-4c6b-4e35-b7b6-484a8be2a5ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220251Z:87fd956e-4c6b-4e35-b7b6-484a8be2a5ce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0318c673-507e-4a2c-a4e0-2caab14a636d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10820" - ], - "x-ms-correlation-request-id": [ - "7319a96e-8047-4476-9579-c4f2434a1f3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220251Z:7319a96e-8047-4476-9579-c4f2434a1f3b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e251c7c-8e28-4358-8f24-c3919cd42d40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10819" - ], - "x-ms-correlation-request-id": [ - "9fa2b30f-fc8a-466c-9068-d1b5d6774e6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220252Z:9fa2b30f-fc8a-466c-9068-d1b5d6774e6d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2323f9e-dc9a-4c8b-b023-66721563ab84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10818" - ], - "x-ms-correlation-request-id": [ - "a022c56f-f42c-4b0d-93c1-0f93fdac819d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220252Z:a022c56f-f42c-4b0d-93c1-0f93fdac819d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a698d3f6-e1f0-4b02-8e85-1429516aff1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10817" - ], - "x-ms-correlation-request-id": [ - "585a6f5b-7d3c-4450-8a80-f0378de05cc8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220252Z:585a6f5b-7d3c-4450-8a80-f0378de05cc8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b22be8fd-94d6-4c73-8dd9-656f067cfdcd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10816" - ], - "x-ms-correlation-request-id": [ - "17b14ebb-225e-4fdd-a6eb-f75398fb0457" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220252Z:17b14ebb-225e-4fdd-a6eb-f75398fb0457" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f324414-8921-4e5a-bad6-1a732f3e9f35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10815" - ], - "x-ms-correlation-request-id": [ - "121126ad-c92e-4bcf-a302-2091c669689a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220252Z:121126ad-c92e-4bcf-a302-2091c669689a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ae5c405-cb01-4927-81f0-9ab28ab7f68f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10814" - ], - "x-ms-correlation-request-id": [ - "b290b534-aeae-4295-a327-382dbc3233a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220252Z:b290b534-aeae-4295-a327-382dbc3233a2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4836360-560f-4347-93f1-902d8db60508" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10813" - ], - "x-ms-correlation-request-id": [ - "16d6d46e-374a-4c30-a4b1-2cce82a2355b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220253Z:16d6d46e-374a-4c30-a4b1-2cce82a2355b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fdef3589-ee12-4e4d-ad7e-03fb49099ae4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10812" - ], - "x-ms-correlation-request-id": [ - "da4dcaec-31df-4876-8ba0-ca2d66e5fda1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220253Z:da4dcaec-31df-4876-8ba0-ca2d66e5fda1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ce73751-bfdd-4acc-ab08-d54c654f2141" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10811" - ], - "x-ms-correlation-request-id": [ - "d0de7301-3c6f-4e65-a53f-ead568ba9401" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220253Z:d0de7301-3c6f-4e65-a53f-ead568ba9401" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8e59a9f-69e7-4594-aae6-6cbf0674e55e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10810" - ], - "x-ms-correlation-request-id": [ - "19f24eca-00c8-41ab-936c-d0da953b6d7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220253Z:19f24eca-00c8-41ab-936c-d0da953b6d7e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31f1fbcf-08af-4729-9164-7bbcff7b3e54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10809" - ], - "x-ms-correlation-request-id": [ - "68c57867-c5d3-436f-99de-ee8cce3232b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220253Z:68c57867-c5d3-436f-99de-ee8cce3232b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a1f2d87-51d3-4f53-a93d-2bc5c1dc2480" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10808" - ], - "x-ms-correlation-request-id": [ - "f13e1216-54ea-4dbb-84e5-8e7e2b66ae41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220253Z:f13e1216-54ea-4dbb-84e5-8e7e2b66ae41" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4dfc8b2a-4176-4319-9197-aff5bd02e740" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10807" - ], - "x-ms-correlation-request-id": [ - "fc89dea5-426d-47e9-b5b0-f1574b632443" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220254Z:fc89dea5-426d-47e9-b5b0-f1574b632443" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "335a6ffb-faeb-456e-bce5-45b88eb5b383" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10806" - ], - "x-ms-correlation-request-id": [ - "bb222a5f-95a9-43f2-8089-c19c5a4747f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220254Z:bb222a5f-95a9-43f2-8089-c19c5a4747f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e08979d-36df-4c17-af42-ffa8bba6a8a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10805" - ], - "x-ms-correlation-request-id": [ - "43fee90b-58ec-49f4-ba3e-890197b639c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220254Z:43fee90b-58ec-49f4-ba3e-890197b639c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52d851f8-26cd-4fa2-87b8-5a571da4eaad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10804" - ], - "x-ms-correlation-request-id": [ - "1d07b907-6580-4ece-94f5-3811edbcbcb7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220254Z:1d07b907-6580-4ece-94f5-3811edbcbcb7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d3989cf-1c26-46a2-94c3-a72ec793aa8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10803" - ], - "x-ms-correlation-request-id": [ - "d3530724-760f-4124-b348-54b4ea8880b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220254Z:d3530724-760f-4124-b348-54b4ea8880b9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ffaa35c3-cda1-46a6-9e65-3a8f20cbaf19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10802" - ], - "x-ms-correlation-request-id": [ - "f1f99fca-5baf-47dd-81e5-9169708e09f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220254Z:f1f99fca-5baf-47dd-81e5-9169708e09f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a947d533-925b-486e-bd86-1f0bf5c1e09a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10801" - ], - "x-ms-correlation-request-id": [ - "b5e034ae-e555-411f-a2c7-c434669a8a3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220255Z:b5e034ae-e555-411f-a2c7-c434669a8a3b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ac99ee6-8da5-4074-b750-75e1fea5c11a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10800" - ], - "x-ms-correlation-request-id": [ - "b2efccd3-9483-4faa-abb6-73944c32d811" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220255Z:b2efccd3-9483-4faa-abb6-73944c32d811" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8f3a51e-4c1c-41a6-81f9-aef1ec8b56d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10799" - ], - "x-ms-correlation-request-id": [ - "53ce188c-63ee-4731-b8d6-6737b9fa1c17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220255Z:53ce188c-63ee-4731-b8d6-6737b9fa1c17" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e463e7f-69af-4fc4-abe1-90d30b394c0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10798" - ], - "x-ms-correlation-request-id": [ - "0d74756d-b97f-4b3e-9a8a-21e18699f488" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220255Z:0d74756d-b97f-4b3e-9a8a-21e18699f488" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c37e6dcf-ad33-4578-b113-d3a76465e1ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10797" - ], - "x-ms-correlation-request-id": [ - "944f0344-4516-4c34-ab3a-58364c4f2383" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220255Z:944f0344-4516-4c34-ab3a-58364c4f2383" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6b58cef-b738-41f1-af22-852c803bdd9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10796" - ], - "x-ms-correlation-request-id": [ - "e67e690c-fc27-467e-a463-3b3006e16cf8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220255Z:e67e690c-fc27-467e-a463-3b3006e16cf8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3db10663-7af3-4545-9546-98cbe14113d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10795" - ], - "x-ms-correlation-request-id": [ - "b56bceba-dc08-4e2a-b553-66a524d9677e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220256Z:b56bceba-dc08-4e2a-b553-66a524d9677e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f59b9f9-4f83-423a-b2ec-28b245f432ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10794" - ], - "x-ms-correlation-request-id": [ - "f0709113-28dd-4bd4-b0fc-464c1551c56b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220256Z:f0709113-28dd-4bd4-b0fc-464c1551c56b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2bd7cacd-adb1-47af-82f9-0dd7411f319a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10793" - ], - "x-ms-correlation-request-id": [ - "2efe23bf-c34a-49c3-b661-7b687a1cd1e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220256Z:2efe23bf-c34a-49c3-b661-7b687a1cd1e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a60b973d-a208-4f79-a7d3-40b70c5e4c58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10792" - ], - "x-ms-correlation-request-id": [ - "0bf53200-70cb-49bf-a3b7-04485a206640" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220256Z:0bf53200-70cb-49bf-a3b7-04485a206640" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d65b62b-32b4-4f48-887d-fe2b65b1925e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10791" - ], - "x-ms-correlation-request-id": [ - "6cff35b9-390b-4b61-945b-820d83e2c770" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220256Z:6cff35b9-390b-4b61-945b-820d83e2c770" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "264da11a-e971-478f-98d9-b1c2cd707e4e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10790" - ], - "x-ms-correlation-request-id": [ - "a2fb727d-f018-4d49-8681-551ce26daa9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220256Z:a2fb727d-f018-4d49-8681-551ce26daa9f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ce7d5ee-b01e-411d-ab1d-d9ec84b395a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10789" - ], - "x-ms-correlation-request-id": [ - "acc4710f-5ce8-4377-af2e-39971a80517c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220257Z:acc4710f-5ce8-4377-af2e-39971a80517c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "652a0f13-a5b5-4b35-9919-b63503d0331f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10788" - ], - "x-ms-correlation-request-id": [ - "c8dfcbde-6794-4ea1-b0aa-0967922ab1d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220257Z:c8dfcbde-6794-4ea1-b0aa-0967922ab1d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ecf1e049-a291-4329-a269-f5ad0e948392" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10787" - ], - "x-ms-correlation-request-id": [ - "c518fe61-de03-4e5e-b285-7ae31e3bf8fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220257Z:c518fe61-de03-4e5e-b285-7ae31e3bf8fa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18913d1a-82e4-45bb-8f04-804244fe33a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10786" - ], - "x-ms-correlation-request-id": [ - "bcfdb636-19f8-4ac3-8e9f-c5004af242e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220257Z:bcfdb636-19f8-4ac3-8e9f-c5004af242e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87d582af-d2b9-4c6e-852b-37d09a1f2499" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10785" - ], - "x-ms-correlation-request-id": [ - "6de38279-18e3-47b7-8946-9f41a7999a1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220257Z:6de38279-18e3-47b7-8946-9f41a7999a1b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d0209c6-b7b1-4f23-a19f-776b17eb920e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10784" - ], - "x-ms-correlation-request-id": [ - "7c13808b-41a2-46a6-a036-663ae70211fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220258Z:7c13808b-41a2-46a6-a036-663ae70211fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ce93fa7-60fa-46ab-bead-2c23a202c553" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10783" - ], - "x-ms-correlation-request-id": [ - "17e75e16-97cd-41f6-be03-5bf5a700edae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220258Z:17e75e16-97cd-41f6-be03-5bf5a700edae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85cd9035-cc72-4582-9745-90657d6dc518" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10782" - ], - "x-ms-correlation-request-id": [ - "429bd6d3-780e-43ca-9933-13751be114fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220258Z:429bd6d3-780e-43ca-9933-13751be114fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d26f3ca5-6907-439f-a16a-19d1442168d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10781" - ], - "x-ms-correlation-request-id": [ - "1ab9c14e-26c0-4075-b45d-06f83092c221" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220258Z:1ab9c14e-26c0-4075-b45d-06f83092c221" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4c698bb-8e98-411a-a44a-f3db8a3ca10b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10780" - ], - "x-ms-correlation-request-id": [ - "c7c8067e-d516-4656-a0b3-e9dedc1404c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220258Z:c7c8067e-d516-4656-a0b3-e9dedc1404c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6c604f2-7837-4408-8795-ca7c93cd0504" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10779" - ], - "x-ms-correlation-request-id": [ - "9baf07d7-5034-4a21-844d-76aef5824dc1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220258Z:9baf07d7-5034-4a21-844d-76aef5824dc1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bec5ce4c-45d9-47a5-bade-30529acb7376" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10778" - ], - "x-ms-correlation-request-id": [ - "75eeed42-341f-4632-90c6-c1ff88ae9c22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220259Z:75eeed42-341f-4632-90c6-c1ff88ae9c22" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "defad6e4-5867-49ec-899f-0a05b0b7604d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10777" - ], - "x-ms-correlation-request-id": [ - "44bcda22-a77b-4fe5-bd43-baf74b198c0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220259Z:44bcda22-a77b-4fe5-bd43-baf74b198c0d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ee5f218-c133-40d5-bf4a-834e99646308" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10776" - ], - "x-ms-correlation-request-id": [ - "5718e626-b8f8-42bf-b906-aeddd350b9f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220259Z:5718e626-b8f8-42bf-b906-aeddd350b9f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90dd4147-3215-4fa3-acd6-c3edbd3c3b5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10775" - ], - "x-ms-correlation-request-id": [ - "69947e82-d0e3-400b-bc17-8fca02b2d622" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220259Z:69947e82-d0e3-400b-bc17-8fca02b2d622" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ce39ca7-203a-464e-aef4-11c6bedca577" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10774" - ], - "x-ms-correlation-request-id": [ - "3d6257ba-af10-4b2e-9263-b6b023709da4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220259Z:3d6257ba-af10-4b2e-9263-b6b023709da4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95d73b23-b776-4c4b-9868-decca86c69bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10773" - ], - "x-ms-correlation-request-id": [ - "c5a44e18-7d07-4b35-bf1f-94e779c3e893" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220300Z:c5a44e18-7d07-4b35-bf1f-94e779c3e893" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0c9a5d9-b72e-4b26-a2be-d7fa1dad7505" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10772" - ], - "x-ms-correlation-request-id": [ - "8b73cbb0-ed1b-45a5-9c2e-25ce3bdf6567" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220300Z:8b73cbb0-ed1b-45a5-9c2e-25ce3bdf6567" - ], - "Date": [ - "Tue, 29 Aug 2017 22:02:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c33dc623-b1a0-41c6-b935-048c6596acfa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10771" - ], - "x-ms-correlation-request-id": [ - "f7631f50-dc8a-4b42-bf38-2bbfd4e2fd9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220300Z:f7631f50-dc8a-4b42-bf38-2bbfd4e2fd9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d67b9823-7dcf-4661-8b1b-91d9f93b5683" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10770" - ], - "x-ms-correlation-request-id": [ - "24e44c53-52b2-4acc-999c-65bd6120221c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220300Z:24e44c53-52b2-4acc-999c-65bd6120221c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8fd419a9-26d4-42b8-b585-fb765a60df77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10769" - ], - "x-ms-correlation-request-id": [ - "50965c02-ba27-4c3b-8120-afe02baa4c42" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220300Z:50965c02-ba27-4c3b-8120-afe02baa4c42" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d311b270-e494-4f7b-a8c8-ad0e25659575" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10768" - ], - "x-ms-correlation-request-id": [ - "4fbe2ca0-583f-4769-b659-ec3cae556eb7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220300Z:4fbe2ca0-583f-4769-b659-ec3cae556eb7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e60178a4-09a9-49c1-a8d3-774d4d9563f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10767" - ], - "x-ms-correlation-request-id": [ - "788a8a69-5f65-459d-87a3-102b9c92a44d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220300Z:788a8a69-5f65-459d-87a3-102b9c92a44d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98140c90-cc6d-4c83-91dd-83b0fe39133d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10766" - ], - "x-ms-correlation-request-id": [ - "4246bee5-dcab-4803-8382-06823dd550c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220301Z:4246bee5-dcab-4803-8382-06823dd550c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "853370aa-30dc-40b6-bdab-0e5e382e7a38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10765" - ], - "x-ms-correlation-request-id": [ - "7bceeec4-bec8-4c83-9569-38ebe65739e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220301Z:7bceeec4-bec8-4c83-9569-38ebe65739e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ecdc50d4-ede4-463d-9101-7031d1af6c78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10764" - ], - "x-ms-correlation-request-id": [ - "0ea716dc-669e-44d8-8145-a844e37f5748" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220301Z:0ea716dc-669e-44d8-8145-a844e37f5748" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6580fb1-6556-4691-8ebb-f2f69af5e4c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10763" - ], - "x-ms-correlation-request-id": [ - "1c6514f3-54f7-4e97-a3a6-ca06795d1c70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220301Z:1c6514f3-54f7-4e97-a3a6-ca06795d1c70" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "223089b9-1101-49e5-99ba-e349ba3a3540" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10762" - ], - "x-ms-correlation-request-id": [ - "4be3c5db-2807-4a22-8c25-518f505f70a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220301Z:4be3c5db-2807-4a22-8c25-518f505f70a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa00c5bf-7974-42e0-ad5a-c65e37d2570f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10761" - ], - "x-ms-correlation-request-id": [ - "12c3fd34-df92-4e96-b439-7f8f78c19060" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220301Z:12c3fd34-df92-4e96-b439-7f8f78c19060" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae548b73-a8aa-4db9-9fbf-c26f53f70d11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10760" - ], - "x-ms-correlation-request-id": [ - "afc511c0-5e00-4e44-8497-b3d5a10a4272" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220302Z:afc511c0-5e00-4e44-8497-b3d5a10a4272" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3216594b-bed5-45d9-8f59-ec7e40e1c693" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10759" - ], - "x-ms-correlation-request-id": [ - "4cc2f9c0-0311-4a46-8c9a-cd714d4a09ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220302Z:4cc2f9c0-0311-4a46-8c9a-cd714d4a09ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f3a6eb5-9a49-4d07-abeb-7ee5de75a8c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10758" - ], - "x-ms-correlation-request-id": [ - "5b890d22-171f-4555-86f4-95144638916a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220302Z:5b890d22-171f-4555-86f4-95144638916a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54a69745-8bd6-4b83-b7a1-f92b0ccd6aea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10757" - ], - "x-ms-correlation-request-id": [ - "ef8f5f96-aad3-40b6-a7be-117f1c929227" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220302Z:ef8f5f96-aad3-40b6-a7be-117f1c929227" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "32bb179a-a029-448f-86f2-dfb4b3379cb8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10756" - ], - "x-ms-correlation-request-id": [ - "0563e75e-21b0-4444-b11b-01dd46f7cc1d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220302Z:0563e75e-21b0-4444-b11b-01dd46f7cc1d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9ed5799-1cc3-4fe8-8a3d-e5ddee062647" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10755" - ], - "x-ms-correlation-request-id": [ - "cf82cc4c-986b-4f3e-a58e-50ac18b8b75b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220303Z:cf82cc4c-986b-4f3e-a58e-50ac18b8b75b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9dab6d7d-daef-4305-abdc-f3ae7abad884" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10754" - ], - "x-ms-correlation-request-id": [ - "d9e3ab70-6075-4c7a-ae77-a49eecaa909a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220303Z:d9e3ab70-6075-4c7a-ae77-a49eecaa909a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0302abb-7ee5-4ce1-87bb-c7824792888b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10753" - ], - "x-ms-correlation-request-id": [ - "74d2c283-5262-4f90-a36e-0492e638990c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220303Z:74d2c283-5262-4f90-a36e-0492e638990c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10ab51b6-61cd-4a2f-93e6-ed74f14d926f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10752" - ], - "x-ms-correlation-request-id": [ - "fb139144-e218-40fc-8588-9abd8bc5c31a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220303Z:fb139144-e218-40fc-8588-9abd8bc5c31a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48e27605-3876-426d-b8a7-4f9facd8086b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10751" - ], - "x-ms-correlation-request-id": [ - "4a758e0e-d52b-4c31-8928-717c0ec926e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220303Z:4a758e0e-d52b-4c31-8928-717c0ec926e1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05888bff-6131-4300-aa41-64fb1206ed89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10750" - ], - "x-ms-correlation-request-id": [ - "2e46bba7-c98f-464e-8838-2c90232804da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220303Z:2e46bba7-c98f-464e-8838-2c90232804da" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45b1098a-ab7f-4c3c-8436-23e013c53f2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10749" - ], - "x-ms-correlation-request-id": [ - "14a8ade5-2df4-4173-97c3-c8cf76dc3373" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220304Z:14a8ade5-2df4-4173-97c3-c8cf76dc3373" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "389ca482-a14b-4dce-99b2-172c18a422c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10748" - ], - "x-ms-correlation-request-id": [ - "b1cf6bc5-a762-48b7-b416-cae13103e66b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220304Z:b1cf6bc5-a762-48b7-b416-cae13103e66b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75930123-0213-48aa-9ece-745ae3bff8d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10747" - ], - "x-ms-correlation-request-id": [ - "630b50c3-f884-4e86-8dc9-620f67bcbb87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220304Z:630b50c3-f884-4e86-8dc9-620f67bcbb87" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c4a9286-17d6-4b6a-9d86-745b38d58ab0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10746" - ], - "x-ms-correlation-request-id": [ - "be0dd3c2-89e0-4709-9961-cea2839e3227" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220304Z:be0dd3c2-89e0-4709-9961-cea2839e3227" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0292b33-a2d5-4a41-8321-9a5ad0062ec9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10745" - ], - "x-ms-correlation-request-id": [ - "39f7d23c-9f88-4268-93d6-9d8b98a97a8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220304Z:39f7d23c-9f88-4268-93d6-9d8b98a97a8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac10e823-d6d7-4ed2-9a1d-4e8decdfe9a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10744" - ], - "x-ms-correlation-request-id": [ - "576a181a-90d1-4081-b3b5-dd202a954546" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220304Z:576a181a-90d1-4081-b3b5-dd202a954546" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52cc54dc-1bc0-441e-a60a-a1b3c398286b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10743" - ], - "x-ms-correlation-request-id": [ - "0b9b9287-cabc-4fbd-b412-c77330556532" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220304Z:0b9b9287-cabc-4fbd-b412-c77330556532" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72e653dc-f5f3-46c7-aa77-465950f13b03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10742" - ], - "x-ms-correlation-request-id": [ - "823d9990-9e20-402b-9f42-50d7365641a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220305Z:823d9990-9e20-402b-9f42-50d7365641a6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ce0da8f-015b-4808-a7f4-b13b3d160e8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10741" - ], - "x-ms-correlation-request-id": [ - "213734ff-eeb6-4950-8eb9-cc8b95c30cda" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220305Z:213734ff-eeb6-4950-8eb9-cc8b95c30cda" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1bca6874-2dd5-4bb4-9ce3-b2dac85d3a89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10740" - ], - "x-ms-correlation-request-id": [ - "bc738f4d-6bdc-47db-93af-f4366d852fd2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220305Z:bc738f4d-6bdc-47db-93af-f4366d852fd2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eaec4601-4564-434a-b8b2-43381f52e981" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10739" - ], - "x-ms-correlation-request-id": [ - "66aeefb7-d9ef-4789-a383-22a301c3ebb0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220305Z:66aeefb7-d9ef-4789-a383-22a301c3ebb0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a381b74-991f-4bf3-b194-6a260154e2f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10738" - ], - "x-ms-correlation-request-id": [ - "75de1dc7-933e-430f-85dc-2eb06f47e3fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220305Z:75de1dc7-933e-430f-85dc-2eb06f47e3fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f593cbdc-ef60-443e-9116-a906cdb87ec8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10737" - ], - "x-ms-correlation-request-id": [ - "63933249-cf68-43ef-b61f-e544154cb130" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220305Z:63933249-cf68-43ef-b61f-e544154cb130" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6bba42c0-fc95-4c75-ba2d-242e1616932a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10736" - ], - "x-ms-correlation-request-id": [ - "de015314-86fb-4078-ac9c-56c43120454b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220306Z:de015314-86fb-4078-ac9c-56c43120454b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ed0b17d-dc76-42ec-957a-c6c80e3f2682" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10735" - ], - "x-ms-correlation-request-id": [ - "36a8f0b7-2e1d-431a-a8d3-e2fca5740f6b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220306Z:36a8f0b7-2e1d-431a-a8d3-e2fca5740f6b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30a8df92-e1ba-4324-abb1-5275e8546217" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10734" - ], - "x-ms-correlation-request-id": [ - "ba02845d-ab4f-4231-a3a4-7496d5e06ce8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220306Z:ba02845d-ab4f-4231-a3a4-7496d5e06ce8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b539a5ba-88c3-498a-b763-e62ec400e696" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10733" - ], - "x-ms-correlation-request-id": [ - "dff0f7e5-7610-441f-8757-b0092559d835" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220306Z:dff0f7e5-7610-441f-8757-b0092559d835" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "411ab3d1-4daf-4cc3-8ea0-054d7361592b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10732" - ], - "x-ms-correlation-request-id": [ - "f1c65c97-1ac7-43bc-b31d-493ec220ac6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220306Z:f1c65c97-1ac7-43bc-b31d-493ec220ac6c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60650400-1827-4526-818a-35d0c9751c74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10731" - ], - "x-ms-correlation-request-id": [ - "14ff22d1-8b20-4fb8-8aa9-5e88c7fbf5ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220306Z:14ff22d1-8b20-4fb8-8aa9-5e88c7fbf5ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b28fe4a9-7145-4463-9db2-be64cea91c56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10730" - ], - "x-ms-correlation-request-id": [ - "2aeaef4f-ad38-4447-aef0-7612efd259cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220307Z:2aeaef4f-ad38-4447-aef0-7612efd259cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72bdc554-8103-4d9f-94cf-31a5ca79a76e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10729" - ], - "x-ms-correlation-request-id": [ - "3d7365c2-1c60-4a1a-8e23-ea334b663068" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220307Z:3d7365c2-1c60-4a1a-8e23-ea334b663068" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c310651d-61ee-445d-a4db-0b0e3de18c97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10728" - ], - "x-ms-correlation-request-id": [ - "8b661f37-8f54-4d6b-b29c-8aa3698584a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220307Z:8b661f37-8f54-4d6b-b29c-8aa3698584a6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b78a621d-3861-43f1-9aff-4fabbb9aa616" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10727" - ], - "x-ms-correlation-request-id": [ - "65960bd5-fbee-4a87-a87d-4e405914444a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220307Z:65960bd5-fbee-4a87-a87d-4e405914444a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4af7d42e-f5cd-4f43-b713-145718174ce2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10726" - ], - "x-ms-correlation-request-id": [ - "551da4fd-f58d-489f-9e45-de4c72db420f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220307Z:551da4fd-f58d-489f-9e45-de4c72db420f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c621a5cf-878b-4948-9bc8-44012c954cfa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10725" - ], - "x-ms-correlation-request-id": [ - "a1f63649-b060-469b-822f-8d08b5a94436" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220307Z:a1f63649-b060-469b-822f-8d08b5a94436" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d732ca74-8afa-476c-b632-27af656962d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10724" - ], - "x-ms-correlation-request-id": [ - "84216357-a88b-4270-a5c1-031dfe5b8e40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220308Z:84216357-a88b-4270-a5c1-031dfe5b8e40" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "686b905e-02d5-483d-bc67-5fc0ca02dd6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10723" - ], - "x-ms-correlation-request-id": [ - "f9357898-2047-4d8e-8bb0-56be14ddf380" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220308Z:f9357898-2047-4d8e-8bb0-56be14ddf380" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ae5cae8-d905-455c-ac47-64dec14857e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10722" - ], - "x-ms-correlation-request-id": [ - "eedf3641-3772-4c2c-8884-70509f4d4fc2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220308Z:eedf3641-3772-4c2c-8884-70509f4d4fc2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68097b83-e648-45df-a821-929526ec890f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10721" - ], - "x-ms-correlation-request-id": [ - "11882b6a-1209-4afa-9090-303c73cd02ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220308Z:11882b6a-1209-4afa-9090-303c73cd02ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc793888-aba7-41c4-9d52-4fa45752c5f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10720" - ], - "x-ms-correlation-request-id": [ - "44af73c8-6b6a-4c96-a6e3-dcb41482a2a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220308Z:44af73c8-6b6a-4c96-a6e3-dcb41482a2a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e59f6ee1-b331-4852-aca6-ee9272af0b20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10719" - ], - "x-ms-correlation-request-id": [ - "b81be031-23a6-4cc3-bf10-8bf1f99a2e25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220308Z:b81be031-23a6-4cc3-bf10-8bf1f99a2e25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "26044566-b284-444b-950b-1915123d26bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10718" - ], - "x-ms-correlation-request-id": [ - "77da01a0-fc85-4aed-9f9c-d4cc2eb8fa7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220308Z:77da01a0-fc85-4aed-9f9c-d4cc2eb8fa7e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0452bfd5-5738-43fd-8990-262eb7e6226b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10717" - ], - "x-ms-correlation-request-id": [ - "b612648d-53e9-4cd4-89d7-9b99a6239672" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220308Z:b612648d-53e9-4cd4-89d7-9b99a6239672" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f23f784-ccaf-482a-b0f0-4c08f0c903bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10716" - ], - "x-ms-correlation-request-id": [ - "7eb1f299-3d0e-466a-b32f-3a2581dba2da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220309Z:7eb1f299-3d0e-466a-b32f-3a2581dba2da" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d86ef507-4bf3-40fe-b3f4-cfb4645d8460" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10715" - ], - "x-ms-correlation-request-id": [ - "8191b3d4-681d-4c29-ad37-c2c109899726" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220309Z:8191b3d4-681d-4c29-ad37-c2c109899726" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2222fdaf-69ae-4edd-93d1-f5e96409c007" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10714" - ], - "x-ms-correlation-request-id": [ - "ce81e7cc-1ccc-45ba-b137-5cb020a41f48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220309Z:ce81e7cc-1ccc-45ba-b137-5cb020a41f48" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c64f236-666b-4385-87fd-2da7bd5c8496" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10713" - ], - "x-ms-correlation-request-id": [ - "689f5237-7aa5-42cf-8137-ba82c24b9c93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220309Z:689f5237-7aa5-42cf-8137-ba82c24b9c93" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cacb60d8-104f-4ee4-acb9-d2416f3f707b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10712" - ], - "x-ms-correlation-request-id": [ - "a301405d-a0eb-4ef9-b501-15046963fa82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220309Z:a301405d-a0eb-4ef9-b501-15046963fa82" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2ea0703-fdd5-4577-a9b9-1d4abf300ed0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10711" - ], - "x-ms-correlation-request-id": [ - "274d8bc7-ebd9-4f16-b518-ef263ae86145" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220309Z:274d8bc7-ebd9-4f16-b518-ef263ae86145" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d79ab5ef-b9b4-4fbe-b5ab-2127c1023ffb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10710" - ], - "x-ms-correlation-request-id": [ - "d4c4431c-80b9-4ab9-9a93-4505c18dd332" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220310Z:d4c4431c-80b9-4ab9-9a93-4505c18dd332" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fdff1d00-5d90-47c9-aeb6-335f8e1712e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10709" - ], - "x-ms-correlation-request-id": [ - "aca6d9e3-c629-4787-a329-f53a24352934" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220310Z:aca6d9e3-c629-4787-a329-f53a24352934" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d23dbac-ffdf-4f47-ada1-dd3490c8b50f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10708" - ], - "x-ms-correlation-request-id": [ - "51dbb044-f39f-4584-9d50-11357ba08d9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220310Z:51dbb044-f39f-4584-9d50-11357ba08d9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1863518e-a4eb-4019-84c1-f39a6fc7d61c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10707" - ], - "x-ms-correlation-request-id": [ - "4718b033-a33b-4409-a22d-47687b7bdd1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220310Z:4718b033-a33b-4409-a22d-47687b7bdd1f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da5e4e92-6066-46c8-81f2-72ecd08bbc8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10706" - ], - "x-ms-correlation-request-id": [ - "f8a80b8e-bf6e-4478-890f-f39050b0cf73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220310Z:f8a80b8e-bf6e-4478-890f-f39050b0cf73" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f4d6b4f-f1a5-4549-8edc-c5eaa0438d85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10705" - ], - "x-ms-correlation-request-id": [ - "7b0f401c-f497-4ace-8528-ffaa70bf6911" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220310Z:7b0f401c-f497-4ace-8528-ffaa70bf6911" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ce10c2f-7901-42d4-9bb2-e77064c50540" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10704" - ], - "x-ms-correlation-request-id": [ - "1c6c7b44-046e-40b3-acd2-ce40237109cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220311Z:1c6c7b44-046e-40b3-acd2-ce40237109cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a4ba7fe-b8f0-4976-882c-0abd93bdca3e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10703" - ], - "x-ms-correlation-request-id": [ - "ad0d8941-aac5-4c03-bddf-1d51adc78471" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220311Z:ad0d8941-aac5-4c03-bddf-1d51adc78471" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1e18370-e1dd-46e2-9a03-3506052d931a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10702" - ], - "x-ms-correlation-request-id": [ - "8ede9745-0682-4ee9-86c4-9decbb2eec17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220311Z:8ede9745-0682-4ee9-86c4-9decbb2eec17" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "58ff53f3-8f39-4a82-8a5f-0e6e995f3639" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10701" - ], - "x-ms-correlation-request-id": [ - "a7100eed-f601-4c40-9e50-f94d72e4beaf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220311Z:a7100eed-f601-4c40-9e50-f94d72e4beaf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb3ad78e-838d-41f5-8af8-993c4eb509bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10700" - ], - "x-ms-correlation-request-id": [ - "2fdef008-1bea-43cd-b48a-8d57490a348a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220311Z:2fdef008-1bea-43cd-b48a-8d57490a348a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1fec7888-ce06-403c-813e-9ad2a9d8a5a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10699" - ], - "x-ms-correlation-request-id": [ - "24f9a64c-9a6c-4951-ace8-1279d86198db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220311Z:24f9a64c-9a6c-4951-ace8-1279d86198db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e8152d5-00dc-418f-b1d8-c5e080eed28a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10698" - ], - "x-ms-correlation-request-id": [ - "b2456deb-ff53-443e-bda7-9169b17b0d09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220311Z:b2456deb-ff53-443e-bda7-9169b17b0d09" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c8f49dd-62e8-4255-b5b0-1318773c4654" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10697" - ], - "x-ms-correlation-request-id": [ - "e547397f-8533-460c-91c8-dc3d5f1f2e86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220312Z:e547397f-8533-460c-91c8-dc3d5f1f2e86" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16c6ed9c-ace5-4587-a4ec-bde2fcff2c11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10696" - ], - "x-ms-correlation-request-id": [ - "e71a9d23-a905-411e-b03f-aa5fbe6bcc51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220312Z:e71a9d23-a905-411e-b03f-aa5fbe6bcc51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa7d1e71-cb31-42b1-8eb2-8886435be1dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10695" - ], - "x-ms-correlation-request-id": [ - "9daa4969-7930-4249-9944-ea5db5fe4a6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220312Z:9daa4969-7930-4249-9944-ea5db5fe4a6f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7927a28f-ad26-49c1-ae19-4f5a0d7f4303" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10694" - ], - "x-ms-correlation-request-id": [ - "8e1543fa-fa36-427d-9fec-948e67ed0ca2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220312Z:8e1543fa-fa36-427d-9fec-948e67ed0ca2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c054f569-26b1-44e2-adac-9ab2243215eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10693" - ], - "x-ms-correlation-request-id": [ - "8017992c-43e4-4462-9960-a358fe03530e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220312Z:8017992c-43e4-4462-9960-a358fe03530e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ca881ab-eaea-4394-9d60-298cdc621a6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10692" - ], - "x-ms-correlation-request-id": [ - "b0489064-dd2a-4a65-989d-361158346f3a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220312Z:b0489064-dd2a-4a65-989d-361158346f3a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c98e7a2-d3f7-4a7a-b7ad-45ada55b8dad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10691" - ], - "x-ms-correlation-request-id": [ - "bff8a767-6208-4acb-ba2f-c82ca46aafce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220313Z:bff8a767-6208-4acb-ba2f-c82ca46aafce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0a2e8d6-c27e-48af-914c-18f622e18f0a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10690" - ], - "x-ms-correlation-request-id": [ - "242c3afa-4081-4a63-9e2a-dbf456c5ecdd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220313Z:242c3afa-4081-4a63-9e2a-dbf456c5ecdd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78e9b43a-92b2-4c46-a4d1-5647291e7f78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10689" - ], - "x-ms-correlation-request-id": [ - "594b07f2-9f2a-4ba9-ac9a-b96234ce3111" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220313Z:594b07f2-9f2a-4ba9-ac9a-b96234ce3111" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae1c2289-c54b-4ce2-85aa-1805a39d0aec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10688" - ], - "x-ms-correlation-request-id": [ - "7837a64b-5a1f-4d6d-a71f-64c417c5cafc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220313Z:7837a64b-5a1f-4d6d-a71f-64c417c5cafc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7fe0b761-5fcf-4c57-901c-acebf20277e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10687" - ], - "x-ms-correlation-request-id": [ - "b9fcb650-5246-471c-837c-84b0e5570f9b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220313Z:b9fcb650-5246-471c-837c-84b0e5570f9b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6f7a41a-496d-4d1f-8a57-ddd6d9b33b35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10686" - ], - "x-ms-correlation-request-id": [ - "0bc278d9-e76b-4277-89dc-48b6fe25db6a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220314Z:0bc278d9-e76b-4277-89dc-48b6fe25db6a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "994a1763-fe50-482b-9581-fad29bc3d3b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10685" - ], - "x-ms-correlation-request-id": [ - "779548f8-d7a4-4232-b551-ffe063fa8e1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220314Z:779548f8-d7a4-4232-b551-ffe063fa8e1b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bddc2310-bc9e-4ae1-864a-4d6abbc66f56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10684" - ], - "x-ms-correlation-request-id": [ - "e3b0520c-94bc-4411-a84f-c8d20e0eae0b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220314Z:e3b0520c-94bc-4411-a84f-c8d20e0eae0b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9354bace-45cc-4db7-833a-0439520176f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10683" - ], - "x-ms-correlation-request-id": [ - "ac49dc44-0d85-4136-bda4-f344cdc678dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220314Z:ac49dc44-0d85-4136-bda4-f344cdc678dd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e9672264-8d7a-4d6f-ab3c-c492ae5c4e88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10682" - ], - "x-ms-correlation-request-id": [ - "c5eaf2c0-1f7c-4a7f-a8b4-4036ed7f9f07" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220314Z:c5eaf2c0-1f7c-4a7f-a8b4-4036ed7f9f07" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd3ba625-eb18-42c9-9626-8451599e5fea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10681" - ], - "x-ms-correlation-request-id": [ - "cd54aba8-1123-48ed-b34e-bfb8ebe02916" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220314Z:cd54aba8-1123-48ed-b34e-bfb8ebe02916" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd645172-0a8f-43b4-a009-f1baf108471e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10680" - ], - "x-ms-correlation-request-id": [ - "cc6b862c-83e1-484d-9568-bcb702f0da8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220314Z:cc6b862c-83e1-484d-9568-bcb702f0da8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fcd69bdb-3bc5-4ec2-b31f-97afaea55cb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10679" - ], - "x-ms-correlation-request-id": [ - "86bc25d5-cc9e-4203-a2c9-1e73f838bbf5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220314Z:86bc25d5-cc9e-4203-a2c9-1e73f838bbf5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b4068d8-4abe-4cd4-b5c5-f4fe691c7e8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10678" - ], - "x-ms-correlation-request-id": [ - "19d6b236-6eea-4fef-8bbd-5b9fbd58346d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220315Z:19d6b236-6eea-4fef-8bbd-5b9fbd58346d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f513fc65-d9b9-4ab1-a2ca-24be2fc95173" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10677" - ], - "x-ms-correlation-request-id": [ - "99f9db7e-7a7a-4237-b613-f8f8bf7cfb9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220315Z:99f9db7e-7a7a-4237-b613-f8f8bf7cfb9d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47cb80db-cfbb-4cb0-92e1-c45dad65d908" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10676" - ], - "x-ms-correlation-request-id": [ - "95de2d36-56f2-41f6-bc25-9709a28a86c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220315Z:95de2d36-56f2-41f6-bc25-9709a28a86c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e77efbd-6e2f-4fb4-b47f-c9d79d4f8143" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10675" - ], - "x-ms-correlation-request-id": [ - "7f5fbd05-5ab5-48c2-9904-824592c455a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220315Z:7f5fbd05-5ab5-48c2-9904-824592c455a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b75bcf6d-7914-42c5-a8c6-7259600ce1e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10674" - ], - "x-ms-correlation-request-id": [ - "76b7958b-737b-4c03-9490-43542c141dbd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220315Z:76b7958b-737b-4c03-9490-43542c141dbd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e358e400-24e5-4c3e-a9e0-d59f957963c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10673" - ], - "x-ms-correlation-request-id": [ - "63e9c1b6-b668-442a-82c3-91e3d7d36d5b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220315Z:63e9c1b6-b668-442a-82c3-91e3d7d36d5b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2fdc3f2-9571-44ff-a31c-96d06685af1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10672" - ], - "x-ms-correlation-request-id": [ - "7f8d97b6-242c-4c58-adcc-ed97a049ae83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220316Z:7f8d97b6-242c-4c58-adcc-ed97a049ae83" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "27e26780-31d1-4048-88bc-d93a70efeb5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10671" - ], - "x-ms-correlation-request-id": [ - "5101ee9f-db8f-412a-baac-70178f4341a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220316Z:5101ee9f-db8f-412a-baac-70178f4341a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6104cedb-d6b7-4c40-9b2c-270df49f3faa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10670" - ], - "x-ms-correlation-request-id": [ - "d8d61880-2d0a-4281-9bdc-03dd5d623566" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220316Z:d8d61880-2d0a-4281-9bdc-03dd5d623566" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf54da89-4995-409d-a8a3-640be2753ad9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10669" - ], - "x-ms-correlation-request-id": [ - "d659982e-ecd7-480f-9d65-71d0acb00782" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220316Z:d659982e-ecd7-480f-9d65-71d0acb00782" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2259568-9be0-4a02-85d5-42f7d4c40cde" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10668" - ], - "x-ms-correlation-request-id": [ - "d21c153d-c2d7-4716-9ad2-0abe8b5b5f9b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220316Z:d21c153d-c2d7-4716-9ad2-0abe8b5b5f9b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8e5c2bb-cec8-4d0d-bc4d-8c8901564552" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10667" - ], - "x-ms-correlation-request-id": [ - "33ff9c7d-839e-4a5d-b909-75301615b628" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220316Z:33ff9c7d-839e-4a5d-b909-75301615b628" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6c93124-0c97-4132-98a7-6581355c5541" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10666" - ], - "x-ms-correlation-request-id": [ - "58dc2744-491a-4524-ba50-e83c1655d24a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220317Z:58dc2744-491a-4524-ba50-e83c1655d24a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7261ee3-9ae1-4f3d-a20b-b9d2da0bf84b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10665" - ], - "x-ms-correlation-request-id": [ - "a5aadefa-9121-47cc-9d63-ea26869ab4f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220317Z:a5aadefa-9121-47cc-9d63-ea26869ab4f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80f0ebd4-fa86-448d-b9ad-307491246b54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10664" - ], - "x-ms-correlation-request-id": [ - "ff5d1049-a948-4d9c-9c35-e6862d180e0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220317Z:ff5d1049-a948-4d9c-9c35-e6862d180e0d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e13b00b0-61fe-4683-9a6a-869b9e9a063a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10663" - ], - "x-ms-correlation-request-id": [ - "a275e9c9-d9bd-4a3d-ba98-0e31a7ad47d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220317Z:a275e9c9-d9bd-4a3d-ba98-0e31a7ad47d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c412f85-dafa-4d2e-858b-c0647551f5f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10662" - ], - "x-ms-correlation-request-id": [ - "3f2e2248-cbd3-47dd-ab30-6589e6b10841" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220317Z:3f2e2248-cbd3-47dd-ab30-6589e6b10841" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ebb92cc-b829-4bfb-aea9-4eef5b055a28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10661" - ], - "x-ms-correlation-request-id": [ - "e656dc0c-9d34-40da-a05e-e6fca5339944" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220317Z:e656dc0c-9d34-40da-a05e-e6fca5339944" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3a79e3c-4322-41e5-b677-a1a20e7147d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10660" - ], - "x-ms-correlation-request-id": [ - "98aa3ef5-1e7a-4bc8-9682-19375fee49fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220317Z:98aa3ef5-1e7a-4bc8-9682-19375fee49fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "032b2643-212c-4bb2-8f7b-154ab22f63ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10659" - ], - "x-ms-correlation-request-id": [ - "dde5bda9-5660-4b5a-8b6d-e988c1963b8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220318Z:dde5bda9-5660-4b5a-8b6d-e988c1963b8e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29987076-d370-407c-9892-74d505141912" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10658" - ], - "x-ms-correlation-request-id": [ - "c2c161ff-a788-42be-8ecd-f95b5c38b7f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220318Z:c2c161ff-a788-42be-8ecd-f95b5c38b7f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cde7737a-357d-4977-97e8-f42a52b9f6e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10657" - ], - "x-ms-correlation-request-id": [ - "811c4494-25ee-47f5-bcb7-c0734e1f2c45" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220318Z:811c4494-25ee-47f5-bcb7-c0734e1f2c45" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8daa67fc-59ed-47b9-8f04-de51f5af8fb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10656" - ], - "x-ms-correlation-request-id": [ - "749ae5d1-37c4-4564-932a-e83bc9d5d1d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220318Z:749ae5d1-37c4-4564-932a-e83bc9d5d1d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37f3eace-6e5d-4e1d-9f25-f0a6ccf2febc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10655" - ], - "x-ms-correlation-request-id": [ - "4dc28001-e4cc-4b9c-b241-4ecc3c74d223" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220318Z:4dc28001-e4cc-4b9c-b241-4ecc3c74d223" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05a30ae2-b666-4096-8584-dea78ea36b35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10654" - ], - "x-ms-correlation-request-id": [ - "de971802-8a52-4f49-bf30-77dca8955260" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220318Z:de971802-8a52-4f49-bf30-77dca8955260" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b264b41-cbae-45c3-a34b-94087a891c18" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10653" - ], - "x-ms-correlation-request-id": [ - "49373c91-254b-462c-90f0-7b312ce4f877" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220318Z:49373c91-254b-462c-90f0-7b312ce4f877" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c86a4922-85c3-442e-bef7-ce81dba98e45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10652" - ], - "x-ms-correlation-request-id": [ - "132fc3d2-66b8-427d-bc8b-5ce7f1705a24" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220319Z:132fc3d2-66b8-427d-bc8b-5ce7f1705a24" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69ce451a-4e99-4e56-a3e0-42d5e301f20a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10651" - ], - "x-ms-correlation-request-id": [ - "9ebfd276-f90b-4f3c-a157-4f2309c18e42" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220319Z:9ebfd276-f90b-4f3c-a157-4f2309c18e42" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93dd14ba-e498-40b9-b7bd-ad48a705b271" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10650" - ], - "x-ms-correlation-request-id": [ - "f621d29a-8ac9-4c08-a770-164105a34dae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220319Z:f621d29a-8ac9-4c08-a770-164105a34dae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9e0f731-fb41-444f-9660-89ac4f22c9d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10649" - ], - "x-ms-correlation-request-id": [ - "c900e745-c828-41de-83db-958f04080984" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220319Z:c900e745-c828-41de-83db-958f04080984" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6442e409-a7cd-4138-bfc1-fbdc8a2470a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10648" - ], - "x-ms-correlation-request-id": [ - "14d811ed-1548-4a13-9021-49960eb08fb5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220319Z:14d811ed-1548-4a13-9021-49960eb08fb5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54047952-6ca5-4808-b70e-840e8983e637" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10647" - ], - "x-ms-correlation-request-id": [ - "4162d796-f0d4-431d-bd3a-4c572e81db04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220319Z:4162d796-f0d4-431d-bd3a-4c572e81db04" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06645a3f-a50f-44e9-845d-09a364505b60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10646" - ], - "x-ms-correlation-request-id": [ - "13d35bde-310f-4d18-8b4d-d9e533aa6a34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220320Z:13d35bde-310f-4d18-8b4d-d9e533aa6a34" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0dae679-cbdf-4b0d-b187-142257371094" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10645" - ], - "x-ms-correlation-request-id": [ - "4b8c9189-d9a4-4d1f-b978-93e2d2e640e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220320Z:4b8c9189-d9a4-4d1f-b978-93e2d2e640e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d105228-f391-4021-9f44-beb3423f52bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10644" - ], - "x-ms-correlation-request-id": [ - "754dcb2f-b727-44ad-929c-5543f1627f79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220320Z:754dcb2f-b727-44ad-929c-5543f1627f79" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba41c49b-5d6c-4342-9ece-6823a8d1f3d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10643" - ], - "x-ms-correlation-request-id": [ - "1064944e-2efb-4c82-96a8-200919945d7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220320Z:1064944e-2efb-4c82-96a8-200919945d7e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9cf3a239-b5f3-419a-91a1-19e6aa8c56f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10642" - ], - "x-ms-correlation-request-id": [ - "0b186e32-9020-4585-b1d5-8c46bce213fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220320Z:0b186e32-9020-4585-b1d5-8c46bce213fc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5053c1cd-8a8c-4a38-b1b5-08407664e92e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10641" - ], - "x-ms-correlation-request-id": [ - "7afe6670-3b74-4fc7-8c27-083db74c159d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220320Z:7afe6670-3b74-4fc7-8c27-083db74c159d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed1508bb-9c2e-4740-8a83-803819b1c32e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10640" - ], - "x-ms-correlation-request-id": [ - "fd7ef351-bb82-4de4-867a-27c1dbd37faf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220321Z:fd7ef351-bb82-4de4-867a-27c1dbd37faf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1bfe85c3-5bd9-41cd-979e-532920a1f050" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10639" - ], - "x-ms-correlation-request-id": [ - "e4533889-995a-4467-93d8-320fce44b6bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220321Z:e4533889-995a-4467-93d8-320fce44b6bc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef02c3b2-021b-4d35-9f94-cbd6431a81e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10638" - ], - "x-ms-correlation-request-id": [ - "3e191c9f-f9a6-434d-9de2-a8935c8660d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220321Z:3e191c9f-f9a6-434d-9de2-a8935c8660d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf0eb97e-74bd-49ff-9fe3-70556f1d1fdb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10637" - ], - "x-ms-correlation-request-id": [ - "66465b20-a570-4aa9-a7f0-eac35710b65a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220321Z:66465b20-a570-4aa9-a7f0-eac35710b65a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8d4ffae-68c5-4812-94cd-2d6480db7770" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10636" - ], - "x-ms-correlation-request-id": [ - "7feed5da-c5a5-4a26-bf08-b5116c58f576" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220321Z:7feed5da-c5a5-4a26-bf08-b5116c58f576" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d953133-f14b-437c-8a4f-68a5775e9eb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10635" - ], - "x-ms-correlation-request-id": [ - "1ee030e1-ff42-4cc4-8aa5-da1ab3907bb7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220321Z:1ee030e1-ff42-4cc4-8aa5-da1ab3907bb7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a0b85ab-8881-4f73-b707-449a0b348836" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10634" - ], - "x-ms-correlation-request-id": [ - "a7fd7842-d015-4d32-a6c4-b1e4ba43d965" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220321Z:a7fd7842-d015-4d32-a6c4-b1e4ba43d965" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f695dc5-58e0-4247-8377-c914ccfdae0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10633" - ], - "x-ms-correlation-request-id": [ - "4c461c14-b372-4d2e-9765-9d9c7a6ad9d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220322Z:4c461c14-b372-4d2e-9765-9d9c7a6ad9d0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c4547f1-5ee4-4f7e-b48a-62bc6c979e06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10632" - ], - "x-ms-correlation-request-id": [ - "fa7b0a1b-307b-4409-8052-ab5e78e2edc4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220322Z:fa7b0a1b-307b-4409-8052-ab5e78e2edc4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1361e3c-a80c-49b0-9fa2-1c73d741fef6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10631" - ], - "x-ms-correlation-request-id": [ - "41b6177d-92db-4d59-a906-7ed3261185f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220322Z:41b6177d-92db-4d59-a906-7ed3261185f5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c862f8f5-4a22-4a11-8584-787903575508" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10630" - ], - "x-ms-correlation-request-id": [ - "6f8f42fc-91b4-41e2-bc1d-e6d606b3728c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220322Z:6f8f42fc-91b4-41e2-bc1d-e6d606b3728c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c34e25e-38fb-4ca0-88f8-271993d5d044" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10629" - ], - "x-ms-correlation-request-id": [ - "a93f9d93-d0c8-481b-a106-d596ffcc2106" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220322Z:a93f9d93-d0c8-481b-a106-d596ffcc2106" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0d3e7e8-d28b-4881-bf4f-bf04fc734112" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10628" - ], - "x-ms-correlation-request-id": [ - "36fe15bb-f2c1-400c-a9f8-e210d508b97f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220322Z:36fe15bb-f2c1-400c-a9f8-e210d508b97f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6eb3fa64-b6d7-46c1-8de1-5326ebff4cec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10627" - ], - "x-ms-correlation-request-id": [ - "7726b745-2d6b-4d49-ba91-1a9cd56af274" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220323Z:7726b745-2d6b-4d49-ba91-1a9cd56af274" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b01749ce-5d6d-4037-b52b-38a4e115cd0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10626" - ], - "x-ms-correlation-request-id": [ - "156e4a93-50e6-4934-8a14-081680fec01a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220323Z:156e4a93-50e6-4934-8a14-081680fec01a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51ffe4a6-e17d-4c59-b70e-ac134d5c0d17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10625" - ], - "x-ms-correlation-request-id": [ - "b9364253-77a1-4fe4-b9da-f2121983972d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220323Z:b9364253-77a1-4fe4-b9da-f2121983972d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e20f36d-c402-42c9-8a04-1b699fdb7fd6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10624" - ], - "x-ms-correlation-request-id": [ - "3e8454f3-da90-498d-9c26-0a27851f9572" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220323Z:3e8454f3-da90-498d-9c26-0a27851f9572" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63f8b8aa-f79f-4236-b460-7ef56d753f3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10623" - ], - "x-ms-correlation-request-id": [ - "9967eea8-5f1a-4344-8236-8f543faf9e17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220323Z:9967eea8-5f1a-4344-8236-8f543faf9e17" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3793dd6-b0fe-47fd-a1bc-aedd36500ee2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10622" - ], - "x-ms-correlation-request-id": [ - "a1e43abc-81f8-4295-97eb-6329e34fb19f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220323Z:a1e43abc-81f8-4295-97eb-6329e34fb19f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c879b38-7372-4338-9c46-e8729065f223" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10621" - ], - "x-ms-correlation-request-id": [ - "13931545-fa2e-4f5d-b989-1737569fc6c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220324Z:13931545-fa2e-4f5d-b989-1737569fc6c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca685f0a-c9a3-410f-b9f0-a09cffb8bba6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10620" - ], - "x-ms-correlation-request-id": [ - "5fbdcd61-29d0-460e-8988-51dce330adcd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220324Z:5fbdcd61-29d0-460e-8988-51dce330adcd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8eeea0e7-cecd-4c10-b70d-4f5398be5eb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10619" - ], - "x-ms-correlation-request-id": [ - "efbb7877-6790-4a17-aa4e-eeb97d568992" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220324Z:efbb7877-6790-4a17-aa4e-eeb97d568992" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e8d1722-2243-4b05-9072-41f65e4dd76b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10618" - ], - "x-ms-correlation-request-id": [ - "b750be88-2798-478d-9abe-43e8cba79b1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220324Z:b750be88-2798-478d-9abe-43e8cba79b1f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4661e89a-21e2-4d9c-bbc1-546b467246c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10617" - ], - "x-ms-correlation-request-id": [ - "f21e1a70-5961-4063-a63b-38e1ee20925a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220324Z:f21e1a70-5961-4063-a63b-38e1ee20925a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7fa04dcd-e594-4734-a84a-88a63d78762c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10616" - ], - "x-ms-correlation-request-id": [ - "dbb5096c-6254-4ad7-a730-4730e75ea839" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220325Z:dbb5096c-6254-4ad7-a730-4730e75ea839" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "752d9d02-a295-4361-9723-6778fe0985e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10615" - ], - "x-ms-correlation-request-id": [ - "08f86afd-d9c1-44ef-af4c-037f9a4ef0f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220325Z:08f86afd-d9c1-44ef-af4c-037f9a4ef0f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6cb589b8-06c0-4168-8ae5-a7fd000ffc6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10614" - ], - "x-ms-correlation-request-id": [ - "a0cf3659-0ddf-46f7-b180-9cba430d34b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220325Z:a0cf3659-0ddf-46f7-b180-9cba430d34b1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea00d34e-6979-49aa-950d-df0acfc33309" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10613" - ], - "x-ms-correlation-request-id": [ - "bd7a5c4e-2d93-435b-b996-1233e9c195a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220325Z:bd7a5c4e-2d93-435b-b996-1233e9c195a0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "922e0068-42ce-48aa-ade6-0c0b2c3c03a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10612" - ], - "x-ms-correlation-request-id": [ - "e059a7c4-bd90-4944-a8c2-58af2f6f663c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220325Z:e059a7c4-bd90-4944-a8c2-58af2f6f663c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "babd0135-0be5-4437-9f54-4857d90bb9b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10611" - ], - "x-ms-correlation-request-id": [ - "b893ec10-1385-422f-9c4d-a5d294d68bd6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220325Z:b893ec10-1385-422f-9c4d-a5d294d68bd6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96de031b-7d9e-452c-a239-788fbabef423" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10610" - ], - "x-ms-correlation-request-id": [ - "77bb3174-4c53-426b-be78-dcca28b81513" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220326Z:77bb3174-4c53-426b-be78-dcca28b81513" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab7da0c3-0765-485c-93c2-4623c382a681" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10609" - ], - "x-ms-correlation-request-id": [ - "8d228fb2-f63d-48e6-8b04-2f87d931351b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220326Z:8d228fb2-f63d-48e6-8b04-2f87d931351b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d34bb3a-a66d-4818-98a6-dd0326fc399a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10608" - ], - "x-ms-correlation-request-id": [ - "09590844-8cc5-4e94-9f6b-e2c856cea56b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220326Z:09590844-8cc5-4e94-9f6b-e2c856cea56b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cdc34dc8-a0cf-46e1-b34c-308cd523e542" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10607" - ], - "x-ms-correlation-request-id": [ - "82893275-6a44-4148-a807-543f9eae41bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220326Z:82893275-6a44-4148-a807-543f9eae41bd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1549b663-fdbd-44a1-bf29-c96c2f87cada" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10606" - ], - "x-ms-correlation-request-id": [ - "34c785a1-3491-41ad-b3ff-5e85ab189c4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220326Z:34c785a1-3491-41ad-b3ff-5e85ab189c4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be65c6fd-667b-44a4-9ffb-5589491d372d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10605" - ], - "x-ms-correlation-request-id": [ - "5f4220de-5061-4ca6-9850-64487a65e695" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220326Z:5f4220de-5061-4ca6-9850-64487a65e695" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4d47756-8363-4880-8db4-68fc4dd503df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10604" - ], - "x-ms-correlation-request-id": [ - "25e79cb3-e1e3-48d1-8f89-b88d0d3a9bc7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220326Z:25e79cb3-e1e3-48d1-8f89-b88d0d3a9bc7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "864610fe-dab6-4d9e-9d2c-e9189ba366f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10603" - ], - "x-ms-correlation-request-id": [ - "c9208ee4-0ab0-498d-ae65-d7331091a32f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220327Z:c9208ee4-0ab0-498d-ae65-d7331091a32f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "248ebf14-a213-4680-aadb-2e4ad85b73c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10602" - ], - "x-ms-correlation-request-id": [ - "afbf024c-377a-4b1f-829a-e1068c467178" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220327Z:afbf024c-377a-4b1f-829a-e1068c467178" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c30491f7-d142-4d8b-b69d-5f160dc9ee9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10601" - ], - "x-ms-correlation-request-id": [ - "33e44d97-06a9-450b-87d9-70abc5f7e95f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220327Z:33e44d97-06a9-450b-87d9-70abc5f7e95f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c101fada-e376-48bc-8c7e-4cde90e07d7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10600" - ], - "x-ms-correlation-request-id": [ - "7bd07380-4592-4f42-87f4-04b04c81cb64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220327Z:7bd07380-4592-4f42-87f4-04b04c81cb64" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6dc83fd0-c6e4-4ff4-95ae-7a91a24fd645" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10599" - ], - "x-ms-correlation-request-id": [ - "a7e3f6fc-ee7b-46be-8d4b-fafeb1903b33" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220327Z:a7e3f6fc-ee7b-46be-8d4b-fafeb1903b33" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab524007-2155-4ec9-8565-1c275721f1af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10598" - ], - "x-ms-correlation-request-id": [ - "6bf9a5fa-a6f6-49e3-b630-4a8b198ad656" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220327Z:6bf9a5fa-a6f6-49e3-b630-4a8b198ad656" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8752ee04-a9d2-49a7-841a-5e3190ae0230" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10597" - ], - "x-ms-correlation-request-id": [ - "403868a2-338c-42bd-a1e4-498d34712e9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220327Z:403868a2-338c-42bd-a1e4-498d34712e9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e253056-e6ab-47ba-95aa-4d1f7cbc8cf9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10596" - ], - "x-ms-correlation-request-id": [ - "3ebda80a-368c-4262-ae95-be5fad9b2122" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220328Z:3ebda80a-368c-4262-ae95-be5fad9b2122" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba4cf16c-a90f-4bea-8f62-25d6f6f04da3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10595" - ], - "x-ms-correlation-request-id": [ - "95295ea0-88bf-426a-a37b-3bfc5ef3ecdc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220328Z:95295ea0-88bf-426a-a37b-3bfc5ef3ecdc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20e5fc4b-9704-4b59-a57e-005ff2392de3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10594" - ], - "x-ms-correlation-request-id": [ - "6e4e67ca-4489-4325-a831-1b8931c8f51a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220328Z:6e4e67ca-4489-4325-a831-1b8931c8f51a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4573be1e-cff2-43d3-8e7a-867c7d3a35f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10593" - ], - "x-ms-correlation-request-id": [ - "26b314aa-be7c-4e2b-8e44-e24e4f388427" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220328Z:26b314aa-be7c-4e2b-8e44-e24e4f388427" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dadf5cfd-a7b4-4758-98c8-93f2b3d535f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10592" - ], - "x-ms-correlation-request-id": [ - "9a50c790-4f75-41ab-b914-bd3bad0c5bf7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220328Z:9a50c790-4f75-41ab-b914-bd3bad0c5bf7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8e53521d-1201-4782-b470-47135967acb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10591" - ], - "x-ms-correlation-request-id": [ - "699442eb-44ea-41fd-b1ac-69f04920b47a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220329Z:699442eb-44ea-41fd-b1ac-69f04920b47a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03725da4-57d3-4047-8866-fb962fba70e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10590" - ], - "x-ms-correlation-request-id": [ - "3db530ad-99f5-4fb3-836b-b3c9a076ca8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220329Z:3db530ad-99f5-4fb3-836b-b3c9a076ca8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f04d40c7-a048-4450-ae3c-ec28687ad85e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10589" - ], - "x-ms-correlation-request-id": [ - "b4076b0d-9bf2-4947-bf4b-4594114a7231" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220329Z:b4076b0d-9bf2-4947-bf4b-4594114a7231" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ed733b5-2915-4368-96b0-5cd89a9efbc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10588" - ], - "x-ms-correlation-request-id": [ - "8fa4b120-6bc2-4fd3-9b0b-98a8a710b9f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220329Z:8fa4b120-6bc2-4fd3-9b0b-98a8a710b9f5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3c5f7ed6-c7b7-47ec-8bfb-1d872735bc31" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10587" - ], - "x-ms-correlation-request-id": [ - "bfcaa02e-99df-4235-ac34-41a139bd2087" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220329Z:bfcaa02e-99df-4235-ac34-41a139bd2087" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4903861-4855-4d49-acba-cf92bf8687ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10586" - ], - "x-ms-correlation-request-id": [ - "e99001cb-285b-47e0-adaf-452d2304b302" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220329Z:e99001cb-285b-47e0-adaf-452d2304b302" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75c9dd64-f29e-4db8-9cf0-e641595d4e9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10585" - ], - "x-ms-correlation-request-id": [ - "15be0fc3-1f78-4ccb-ad90-4505381db010" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220329Z:15be0fc3-1f78-4ccb-ad90-4505381db010" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b22b9fb-ad47-465f-ae8d-4da335c9c982" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10584" - ], - "x-ms-correlation-request-id": [ - "910ad475-cbf9-4735-b6ec-8410f144f190" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220330Z:910ad475-cbf9-4735-b6ec-8410f144f190" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b517e21-afc2-48d6-8ccd-c147178dfab9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10583" - ], - "x-ms-correlation-request-id": [ - "81006707-fc89-4f56-9a7c-b76c7959b7ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220330Z:81006707-fc89-4f56-9a7c-b76c7959b7ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4cbcc5f2-1a93-4bfa-9e8b-95273bab66fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10582" - ], - "x-ms-correlation-request-id": [ - "0f77063d-a80d-4c0c-85b8-211f97cb1a38" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220330Z:0f77063d-a80d-4c0c-85b8-211f97cb1a38" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ae53c3e-2f73-4e07-95e0-76e8dba1860e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10581" - ], - "x-ms-correlation-request-id": [ - "2f6d753a-5096-4880-b5d3-e8f08bce8895" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220330Z:2f6d753a-5096-4880-b5d3-e8f08bce8895" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d68badf4-9482-4c6c-972c-a44294a05ccc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10580" - ], - "x-ms-correlation-request-id": [ - "15748b4d-5c3b-4f6b-8ec0-d532ae26dd2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220330Z:15748b4d-5c3b-4f6b-8ec0-d532ae26dd2c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5dca7c4-0666-4bd5-99c1-511cba4376c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10579" - ], - "x-ms-correlation-request-id": [ - "af32d8ed-6c83-4998-ad79-6953459790b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220331Z:af32d8ed-6c83-4998-ad79-6953459790b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0820e3d8-d14f-4afb-83f4-de6d8ff77520" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10578" - ], - "x-ms-correlation-request-id": [ - "6c67f88a-2bc1-4b4d-96f2-fe2063e5d7a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220331Z:6c67f88a-2bc1-4b4d-96f2-fe2063e5d7a0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aeadc7fc-6cff-4096-aeb9-57c5d3064a73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10577" - ], - "x-ms-correlation-request-id": [ - "2ec07cad-4060-4f24-8a76-1fe8afc6065d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220331Z:2ec07cad-4060-4f24-8a76-1fe8afc6065d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53a57385-f5a4-4abf-a5fb-a268385a5e83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10576" - ], - "x-ms-correlation-request-id": [ - "a4d16fa3-c62f-49bc-ba61-9ab44fce2876" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220331Z:a4d16fa3-c62f-49bc-ba61-9ab44fce2876" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a0d7c9e-244c-4d14-80bb-834adca343b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10575" - ], - "x-ms-correlation-request-id": [ - "576d7265-a246-4a63-9893-8bfbb3e7b383" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220331Z:576d7265-a246-4a63-9893-8bfbb3e7b383" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24b62d9a-aa53-4f91-a482-b761ab7f3e98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10574" - ], - "x-ms-correlation-request-id": [ - "aa704388-3dad-4678-9b4f-4f2fa9a6bcd6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220331Z:aa704388-3dad-4678-9b4f-4f2fa9a6bcd6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "814435af-aa0f-4e2a-8502-f9b496433862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10573" - ], - "x-ms-correlation-request-id": [ - "68e08d3b-b7f1-4646-96f5-01b8d8076e02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220332Z:68e08d3b-b7f1-4646-96f5-01b8d8076e02" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78378971-c550-428c-ae85-00e0c9d9c582" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10572" - ], - "x-ms-correlation-request-id": [ - "73605d29-954b-416a-bf94-32e5a092367c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220332Z:73605d29-954b-416a-bf94-32e5a092367c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03a2c862-12fe-4670-b7a0-f3d5eec23e5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10571" - ], - "x-ms-correlation-request-id": [ - "c917cebe-a6b1-4f27-b9ea-f135b3ab5dfb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220332Z:c917cebe-a6b1-4f27-b9ea-f135b3ab5dfb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa454410-abce-4365-a277-9b5f20c82557" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10570" - ], - "x-ms-correlation-request-id": [ - "c27edfc1-7a25-4e6a-b3cc-f17cf9cefcc1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220332Z:c27edfc1-7a25-4e6a-b3cc-f17cf9cefcc1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f1f9950-e0b7-4386-9687-e5b3e1554817" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10569" - ], - "x-ms-correlation-request-id": [ - "b672049a-8fb9-46d1-9054-aaef0a936f1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220332Z:b672049a-8fb9-46d1-9054-aaef0a936f1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6a9a560-a86c-426c-872b-0234af1816db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10568" - ], - "x-ms-correlation-request-id": [ - "d157434b-12e0-4b8e-a8cd-ecace2cca0b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220332Z:d157434b-12e0-4b8e-a8cd-ecace2cca0b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6feceb44-e4e7-40c8-adf5-52ec8c14d00f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10567" - ], - "x-ms-correlation-request-id": [ - "096a0669-6e37-433c-a636-adc1945fc3e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220332Z:096a0669-6e37-433c-a636-adc1945fc3e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05e595d9-286b-46da-ad01-86a49c84c224" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10566" - ], - "x-ms-correlation-request-id": [ - "e8905552-f66e-4b1f-a625-f844de01c1f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220333Z:e8905552-f66e-4b1f-a625-f844de01c1f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41f281b9-e704-4ea9-a14d-f296c0681209" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10565" - ], - "x-ms-correlation-request-id": [ - "663714ab-dcd4-4316-8ed7-c84f009b830f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220333Z:663714ab-dcd4-4316-8ed7-c84f009b830f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c63b0e9-d954-45a3-8945-ebce5a91f8de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10564" - ], - "x-ms-correlation-request-id": [ - "a8d46bc0-1311-479f-b0c2-9386d5115821" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220333Z:a8d46bc0-1311-479f-b0c2-9386d5115821" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10bee854-c087-46d5-9212-1cdfbf2c4c9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10563" - ], - "x-ms-correlation-request-id": [ - "5640fdba-a54f-4877-bc3f-8f1df1d62dda" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220333Z:5640fdba-a54f-4877-bc3f-8f1df1d62dda" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb0b5d35-520b-4b81-bcad-38a37f99e17d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10562" - ], - "x-ms-correlation-request-id": [ - "f70d79b1-69bb-400a-a964-de81ba37c461" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220333Z:f70d79b1-69bb-400a-a964-de81ba37c461" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02b8b2c7-f9e3-489b-9b77-4ac5d1252322" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10561" - ], - "x-ms-correlation-request-id": [ - "7bc826a6-43e8-424e-aed3-1f45d14bd882" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220333Z:7bc826a6-43e8-424e-aed3-1f45d14bd882" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c94c1f67-7350-432e-bb99-e9319a05cba8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10560" - ], - "x-ms-correlation-request-id": [ - "7c1c64e8-5239-4929-b650-3ae8a088a37a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220334Z:7c1c64e8-5239-4929-b650-3ae8a088a37a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6fe57e3-0131-4646-9ff4-7ccdf659e7ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10559" - ], - "x-ms-correlation-request-id": [ - "ec069525-b485-4b35-9b18-00b0eb48cc20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220334Z:ec069525-b485-4b35-9b18-00b0eb48cc20" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e8b26e2-b553-4cb4-9f57-54e02443d685" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10558" - ], - "x-ms-correlation-request-id": [ - "b3df62f1-0ab4-47da-9758-098c6c21d0d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220334Z:b3df62f1-0ab4-47da-9758-098c6c21d0d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80ceaed8-fe42-4855-9a84-73e4170e5a63" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10557" - ], - "x-ms-correlation-request-id": [ - "51a1d39f-9c2d-4e91-bad3-7c04d4672faa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220334Z:51a1d39f-9c2d-4e91-bad3-7c04d4672faa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6317df7d-9546-4e4b-adde-83125f255738" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10556" - ], - "x-ms-correlation-request-id": [ - "cf50dbbe-58d3-49a8-b89e-9ae2d02a39c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220334Z:cf50dbbe-58d3-49a8-b89e-9ae2d02a39c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5777b663-8025-49b2-8beb-54151f1e1e39" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10555" - ], - "x-ms-correlation-request-id": [ - "23f63249-7185-47f5-9865-2b119cc6b34e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220334Z:23f63249-7185-47f5-9865-2b119cc6b34e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71d4e45a-147b-443d-ba56-2a27c4833802" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10554" - ], - "x-ms-correlation-request-id": [ - "ce41658d-5075-4940-8037-b9bc3537f72f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220335Z:ce41658d-5075-4940-8037-b9bc3537f72f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b32ce98b-71be-4646-a894-0728627fb00e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10553" - ], - "x-ms-correlation-request-id": [ - "0cb5cf49-70db-4b86-a2da-aec2922f1d8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220335Z:0cb5cf49-70db-4b86-a2da-aec2922f1d8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f59bb023-6c04-4171-863e-f4603222d199" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10552" - ], - "x-ms-correlation-request-id": [ - "9d08c0a5-052d-41ed-934e-b94992f56a50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220335Z:9d08c0a5-052d-41ed-934e-b94992f56a50" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab47ffb5-e776-4e35-ace4-3a0f178b8101" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10551" - ], - "x-ms-correlation-request-id": [ - "500ff5e4-d181-4372-b74e-c8edbdc29151" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220335Z:500ff5e4-d181-4372-b74e-c8edbdc29151" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccbe8a7a-2a4c-480c-85ee-9d6e7c526d33" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10550" - ], - "x-ms-correlation-request-id": [ - "7704122c-2b87-4241-b875-81c3c2024c72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220336Z:7704122c-2b87-4241-b875-81c3c2024c72" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "669e4cfc-0e0d-461b-8d3d-92bea96827eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10549" - ], - "x-ms-correlation-request-id": [ - "1b8e2c74-ef09-4e31-8b48-563a01641cb7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220336Z:1b8e2c74-ef09-4e31-8b48-563a01641cb7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5444dac-1714-4c35-8b4b-a14e15548c4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10548" - ], - "x-ms-correlation-request-id": [ - "18acf588-33d8-40e0-ac56-5773c7c1620c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220336Z:18acf588-33d8-40e0-ac56-5773c7c1620c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b9453347-6798-4cbc-a207-5fe07eac44b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10547" - ], - "x-ms-correlation-request-id": [ - "8c5777ae-b51c-4515-8f64-cd57f2109543" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220336Z:8c5777ae-b51c-4515-8f64-cd57f2109543" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cfe9a04d-3481-4d78-8408-933490699b70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10546" - ], - "x-ms-correlation-request-id": [ - "6b1377fc-bd12-4621-868f-b0b963d313ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220336Z:6b1377fc-bd12-4621-868f-b0b963d313ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69eec2f1-adbf-442b-939b-6fd4e3d656f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10545" - ], - "x-ms-correlation-request-id": [ - "c2e13eb9-575a-4cf0-8d7a-5205abc49e52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220337Z:c2e13eb9-575a-4cf0-8d7a-5205abc49e52" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e28e618c-c94d-49eb-93f9-b997c4a1e013" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10544" - ], - "x-ms-correlation-request-id": [ - "e9f6ead1-cea1-4243-aa77-4ed9550b6e62" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220337Z:e9f6ead1-cea1-4243-aa77-4ed9550b6e62" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae7862c7-12a3-4a77-9f17-97909165f6f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10543" - ], - "x-ms-correlation-request-id": [ - "a5255a44-1685-4328-bfe1-5c542da0a95a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220337Z:a5255a44-1685-4328-bfe1-5c542da0a95a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3038b68b-a6e4-4e03-8ca3-aff4873c9ffd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10542" - ], - "x-ms-correlation-request-id": [ - "c4e9b469-5944-4ba0-9fa2-85d78271ff93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220337Z:c4e9b469-5944-4ba0-9fa2-85d78271ff93" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ad370c1-76cf-4594-8431-579d2316f9cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10541" - ], - "x-ms-correlation-request-id": [ - "4e3699ba-398d-4873-ab14-149253ccfc28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220337Z:4e3699ba-398d-4873-ab14-149253ccfc28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "884a5879-95bf-49ad-82bb-b8f6665d782d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10540" - ], - "x-ms-correlation-request-id": [ - "f14dcbb4-c822-4b3f-ae27-16785fbb869c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220337Z:f14dcbb4-c822-4b3f-ae27-16785fbb869c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf3c9261-c545-46e1-9cbd-afe22d4e7bee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10539" - ], - "x-ms-correlation-request-id": [ - "12fe37d1-73b3-416d-8b66-e46770a3c3dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220338Z:12fe37d1-73b3-416d-8b66-e46770a3c3dd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a51fd152-34e9-4bdb-9794-bdbd09b58c5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10538" - ], - "x-ms-correlation-request-id": [ - "c0227ad8-094f-4061-9581-1f8010861bdd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220338Z:c0227ad8-094f-4061-9581-1f8010861bdd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40254fb4-92c1-44c0-b7c0-e7396ea335b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10537" - ], - "x-ms-correlation-request-id": [ - "23a447ce-7008-49f3-a8e0-e54c23af22ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220338Z:23a447ce-7008-49f3-a8e0-e54c23af22ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7b7b63b-b93d-41ed-9224-13e21dafa8bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10536" - ], - "x-ms-correlation-request-id": [ - "39feb4fa-46d0-4ee6-a972-aed8daf0cdde" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220338Z:39feb4fa-46d0-4ee6-a972-aed8daf0cdde" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d299115-bab5-407b-9ccd-b008d1e05bd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10535" - ], - "x-ms-correlation-request-id": [ - "4275db13-d773-48dc-a754-b3b9fa5ada84" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220338Z:4275db13-d773-48dc-a754-b3b9fa5ada84" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7734c004-27d0-4a6a-afde-21d779e368bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10534" - ], - "x-ms-correlation-request-id": [ - "1491c1bc-b1b4-46d5-b070-327a22da3a28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220338Z:1491c1bc-b1b4-46d5-b070-327a22da3a28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d62b4f8-73ec-4483-b97b-7428413b4040" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10533" - ], - "x-ms-correlation-request-id": [ - "4a125423-5aa6-4a52-b9e0-5fd4d3db00aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220339Z:4a125423-5aa6-4a52-b9e0-5fd4d3db00aa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b6d2a46-be46-4e1b-aa43-da2d38f3c534" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10532" - ], - "x-ms-correlation-request-id": [ - "89db3467-cd19-4a28-a763-a00dd1be96ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220339Z:89db3467-cd19-4a28-a763-a00dd1be96ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a609ae4f-7e04-42ae-9ffb-4bebce5c5cda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10531" - ], - "x-ms-correlation-request-id": [ - "2c69f1b9-e1c2-4aff-9766-e6ef8c171034" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220339Z:2c69f1b9-e1c2-4aff-9766-e6ef8c171034" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9cf522ab-4a4c-40dd-adbb-574920bf1cd1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10530" - ], - "x-ms-correlation-request-id": [ - "b0c2fd6d-c28a-4bbc-92a4-6c37b4e5707b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220339Z:b0c2fd6d-c28a-4bbc-92a4-6c37b4e5707b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5361413-4e63-4485-840f-eca488102662" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10529" - ], - "x-ms-correlation-request-id": [ - "207f6b40-d19b-4831-911f-c1fee8c29bc9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220339Z:207f6b40-d19b-4831-911f-c1fee8c29bc9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a284de41-3c4a-41a1-be42-ad55f2c86fb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10528" - ], - "x-ms-correlation-request-id": [ - "11ee3d5a-0344-4d84-b483-7f668ac32f6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220340Z:11ee3d5a-0344-4d84-b483-7f668ac32f6c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "27d64c82-0f20-4aba-874b-1e5f818f2e87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10527" - ], - "x-ms-correlation-request-id": [ - "625b3a9c-f3fb-4a43-8735-1004fa98be30" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220340Z:625b3a9c-f3fb-4a43-8735-1004fa98be30" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0cafd8fc-2316-489a-8e41-58d8db8bb15d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10526" - ], - "x-ms-correlation-request-id": [ - "cf3eec13-85be-4a7e-b77a-40043c51776d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220340Z:cf3eec13-85be-4a7e-b77a-40043c51776d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e312b694-6369-418d-8522-5a4183f44099" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10525" - ], - "x-ms-correlation-request-id": [ - "cd29a299-5d39-495a-ae71-182d43d5e6df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220340Z:cd29a299-5d39-495a-ae71-182d43d5e6df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8123e55a-b5c4-4700-9c7d-dd7742a6a2ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10524" - ], - "x-ms-correlation-request-id": [ - "b78b0a3a-6324-49f6-acd5-e0bb5d74d1dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220340Z:b78b0a3a-6324-49f6-acd5-e0bb5d74d1dd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3eec662-0535-4831-82d2-24e125787b29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10523" - ], - "x-ms-correlation-request-id": [ - "eac6356f-9e9b-430d-ae79-e50cb2b827f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220340Z:eac6356f-9e9b-430d-ae79-e50cb2b827f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56fec281-35dd-4161-928b-80dbb62f749e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10522" - ], - "x-ms-correlation-request-id": [ - "2f5603a2-3adb-47db-aa68-ac479f698c9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220341Z:2f5603a2-3adb-47db-aa68-ac479f698c9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "af9fa329-6185-4573-8471-faac0f3dfd88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10521" - ], - "x-ms-correlation-request-id": [ - "add97490-a4f7-4db9-b793-9c66b0386ce5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220341Z:add97490-a4f7-4db9-b793-9c66b0386ce5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b16c89ab-d385-40fc-9cf7-b1998ce37a9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10520" - ], - "x-ms-correlation-request-id": [ - "1468f2f8-3432-4668-a8f0-6a8ba53d56b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220341Z:1468f2f8-3432-4668-a8f0-6a8ba53d56b9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5315c32-e20b-4c23-9834-44252d11c795" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10519" - ], - "x-ms-correlation-request-id": [ - "8f2c4cf3-2de6-471c-bf80-118112907a9c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220341Z:8f2c4cf3-2de6-471c-bf80-118112907a9c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "088b57e9-1276-4f88-b594-bf27b8c0405c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10518" - ], - "x-ms-correlation-request-id": [ - "b59b5e5d-2365-4a07-8582-464d4639602c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220341Z:b59b5e5d-2365-4a07-8582-464d4639602c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e4d8346-23f7-44bd-a831-4cf5aaaf51c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10517" - ], - "x-ms-correlation-request-id": [ - "df68f509-7998-4d7e-a82b-7b54fced72a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220341Z:df68f509-7998-4d7e-a82b-7b54fced72a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5ec32db-0479-431c-b889-a4824b6ebd70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10516" - ], - "x-ms-correlation-request-id": [ - "f37c3d2f-6546-4814-bfc2-fb1577973b1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220342Z:f37c3d2f-6546-4814-bfc2-fb1577973b1c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11575a72-e7d5-4488-bfdd-eeb7e41bac63" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10515" - ], - "x-ms-correlation-request-id": [ - "6ca4d31e-f1e0-436c-ab1a-3a6fe9602fa0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220342Z:6ca4d31e-f1e0-436c-ab1a-3a6fe9602fa0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "668a28fc-85dd-41aa-87c3-4d15f24ee8ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10514" - ], - "x-ms-correlation-request-id": [ - "e12b71a6-fab6-403d-a6df-d129ab8d1cb3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220342Z:e12b71a6-fab6-403d-a6df-d129ab8d1cb3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f276ebf2-57d9-4d38-a7a2-8bdb78ebdf6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10513" - ], - "x-ms-correlation-request-id": [ - "2bed2eb2-9806-4c16-825a-f862ade30fda" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220342Z:2bed2eb2-9806-4c16-825a-f862ade30fda" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8dc5864c-e418-468f-9de5-9a115d356bef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10512" - ], - "x-ms-correlation-request-id": [ - "9c5fbd34-4f67-4730-b1fc-3a5b887c9493" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220342Z:9c5fbd34-4f67-4730-b1fc-3a5b887c9493" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67b41482-8e2b-45a9-8b5f-fb9f0bb0f66c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10511" - ], - "x-ms-correlation-request-id": [ - "cc017b74-c537-4558-8844-c8a865d94a58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220342Z:cc017b74-c537-4558-8844-c8a865d94a58" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2283a28-9887-4cb4-b769-23a3553d26a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10510" - ], - "x-ms-correlation-request-id": [ - "05eed677-8127-44b8-a9b0-9e5fe5202280" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220343Z:05eed677-8127-44b8-a9b0-9e5fe5202280" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44dbcb83-39b7-46b3-8f35-1677b64d841d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10509" - ], - "x-ms-correlation-request-id": [ - "6af30ba4-e58d-4c0a-92ed-09eb3e78e607" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220343Z:6af30ba4-e58d-4c0a-92ed-09eb3e78e607" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7341a9d-6d1e-4dfe-a4ca-9a235d55474d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10508" - ], - "x-ms-correlation-request-id": [ - "8aeb26ee-36dd-48fd-bac9-9b1f25160fc2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220343Z:8aeb26ee-36dd-48fd-bac9-9b1f25160fc2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c1d5056-bfbc-41f0-a14d-0f160cc584e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10507" - ], - "x-ms-correlation-request-id": [ - "f8cac1b4-b649-4236-b81e-cf9e7a415ce4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220343Z:f8cac1b4-b649-4236-b81e-cf9e7a415ce4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "536cdb90-549d-4b81-b0a5-6e5f595417bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10506" - ], - "x-ms-correlation-request-id": [ - "ad1db74d-1433-49ff-9919-2970d5ec1819" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220343Z:ad1db74d-1433-49ff-9919-2970d5ec1819" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "742aca26-a9a4-4cb6-8189-daf012fcca5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10505" - ], - "x-ms-correlation-request-id": [ - "1744b4cb-a5d2-47b1-a5d6-d6d74d963e21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220343Z:1744b4cb-a5d2-47b1-a5d6-d6d74d963e21" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a59d444b-518f-4f45-9c5e-d225a391e767" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10504" - ], - "x-ms-correlation-request-id": [ - "b9a5db39-227c-492b-86f6-9219b9690902" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220344Z:b9a5db39-227c-492b-86f6-9219b9690902" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8312bc2f-ae80-499a-acca-17ad7f06e0a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10503" - ], - "x-ms-correlation-request-id": [ - "934436b7-0f65-4ed4-8c50-25be2f735c90" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220344Z:934436b7-0f65-4ed4-8c50-25be2f735c90" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c7eddb7-ca0b-4cf9-90b4-88adfc8ef4c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10502" - ], - "x-ms-correlation-request-id": [ - "d5813b48-7620-4ea6-9f11-dedfd49b312f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220344Z:d5813b48-7620-4ea6-9f11-dedfd49b312f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0763eb37-893e-41b1-987c-e75c12a81250" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10501" - ], - "x-ms-correlation-request-id": [ - "55b987dd-78a0-441a-8afa-fde48e58ccdc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220344Z:55b987dd-78a0-441a-8afa-fde48e58ccdc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "394fe7bd-5229-4b12-bc55-d6a03669a252" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10500" - ], - "x-ms-correlation-request-id": [ - "4935e9ea-5573-437f-8285-684c898c79b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220344Z:4935e9ea-5573-437f-8285-684c898c79b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a13db2c-35e8-4429-a293-6f2703e09734" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10499" - ], - "x-ms-correlation-request-id": [ - "f32e14e9-2016-4ddc-9ba1-17f8967ef1b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220345Z:f32e14e9-2016-4ddc-9ba1-17f8967ef1b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3abd757-0c05-42aa-b418-16e6f1a40108" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10498" - ], - "x-ms-correlation-request-id": [ - "959d0e92-bf06-42bf-a276-39eed31cc73b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220345Z:959d0e92-bf06-42bf-a276-39eed31cc73b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d84aec5-52a9-46da-b092-4944a38178d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10497" - ], - "x-ms-correlation-request-id": [ - "71f6d84e-dbb4-47f5-ace7-111f0ac6b80c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220345Z:71f6d84e-dbb4-47f5-ace7-111f0ac6b80c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "892a7f15-ac9b-493f-a21f-48c59a2d5476" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10496" - ], - "x-ms-correlation-request-id": [ - "51629caf-77dc-4742-87db-04aede424e15" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220345Z:51629caf-77dc-4742-87db-04aede424e15" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "039f451d-4634-4cdb-917d-10a7cc17940e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10495" - ], - "x-ms-correlation-request-id": [ - "8588337e-0946-4353-a3f8-c79e397579ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220345Z:8588337e-0946-4353-a3f8-c79e397579ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ee011a7-01bd-47f6-9a52-fe3725a07149" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10494" - ], - "x-ms-correlation-request-id": [ - "4f33a725-72b9-450a-a29d-aa3c2e51b5f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220345Z:4f33a725-72b9-450a-a29d-aa3c2e51b5f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1f800bd-85af-4da6-9a54-9b741b20edf2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10493" - ], - "x-ms-correlation-request-id": [ - "8b7bb035-57af-4f80-ba0e-9930529aecb7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220346Z:8b7bb035-57af-4f80-ba0e-9930529aecb7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3413af54-bba5-49e3-b9d5-67d0c22a2ed5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10492" - ], - "x-ms-correlation-request-id": [ - "eba81cfb-2ce2-4975-89a1-08b952deb692" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220346Z:eba81cfb-2ce2-4975-89a1-08b952deb692" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a578c2ef-2683-43a2-889b-d4271a3be64e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10491" - ], - "x-ms-correlation-request-id": [ - "bd3fc777-1cfc-44fb-99aa-c3cb75378261" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220346Z:bd3fc777-1cfc-44fb-99aa-c3cb75378261" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0b1be52-6bda-46e4-b5f6-7279175bd2c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10490" - ], - "x-ms-correlation-request-id": [ - "84755fee-3cf2-45f8-b943-ac955e53daf3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220346Z:84755fee-3cf2-45f8-b943-ac955e53daf3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "035b0b3f-8dc4-4684-b257-004c43af691a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10489" - ], - "x-ms-correlation-request-id": [ - "9e867214-b9e7-41b1-bf10-908f07afebd0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220347Z:9e867214-b9e7-41b1-bf10-908f07afebd0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "053f97f0-ea8a-486e-bec2-fda95bf231aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10488" - ], - "x-ms-correlation-request-id": [ - "7ae2997c-3867-4040-bcd9-8c28da649e90" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220347Z:7ae2997c-3867-4040-bcd9-8c28da649e90" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "811bf2e4-620c-4280-bb6a-d7b69d957c34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10487" - ], - "x-ms-correlation-request-id": [ - "273091b3-885c-449b-9d77-fed298f35d62" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220347Z:273091b3-885c-449b-9d77-fed298f35d62" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2073a76-1894-41d0-ae14-fee02340d58f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10486" - ], - "x-ms-correlation-request-id": [ - "ee92dea2-e019-4a83-b30b-41801517028b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220347Z:ee92dea2-e019-4a83-b30b-41801517028b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a2987821-d827-4603-b875-e2c1aee8d96c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10485" - ], - "x-ms-correlation-request-id": [ - "f3d50139-120b-4cc4-bd68-2993cfb835a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220347Z:f3d50139-120b-4cc4-bd68-2993cfb835a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c2fc1c6-12d2-4b9d-9301-57ae521091ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10484" - ], - "x-ms-correlation-request-id": [ - "01fc4e2c-c0f4-44bd-acfb-0cfd4b04bc71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220347Z:01fc4e2c-c0f4-44bd-acfb-0cfd4b04bc71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdedb548-9595-4a93-b041-6170002108e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10483" - ], - "x-ms-correlation-request-id": [ - "ddf05682-159e-4ca0-8ada-6cec616b14fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220348Z:ddf05682-159e-4ca0-8ada-6cec616b14fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c4fda62-978a-47e2-b86a-0080285a9355" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10482" - ], - "x-ms-correlation-request-id": [ - "0f372d78-7001-42a7-9250-2252c1d23e89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220348Z:0f372d78-7001-42a7-9250-2252c1d23e89" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d0926ea-adb5-45c9-9132-8f61518e74c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10481" - ], - "x-ms-correlation-request-id": [ - "a6abbc5c-f4d9-4337-b09d-a37eb2cf4f9c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220348Z:a6abbc5c-f4d9-4337-b09d-a37eb2cf4f9c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59d74f13-2315-441d-8b7c-0b0bc8868c93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10480" - ], - "x-ms-correlation-request-id": [ - "6dcebad1-f389-43f8-a8e9-7be36cdec5a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220348Z:6dcebad1-f389-43f8-a8e9-7be36cdec5a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91fdcbbd-446f-4fa5-8dae-c0d740d6b25e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10479" - ], - "x-ms-correlation-request-id": [ - "56f57f8f-0e68-4ed3-8138-1b206b937e21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220348Z:56f57f8f-0e68-4ed3-8138-1b206b937e21" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4ff8a4d-f94e-4783-adb9-ab93cd9c9b91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10478" - ], - "x-ms-correlation-request-id": [ - "5f817e14-ed4f-4246-ab53-382b00b33bdf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220349Z:5f817e14-ed4f-4246-ab53-382b00b33bdf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60c55ab1-657f-4cc3-863d-d3ced4dbd96c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10477" - ], - "x-ms-correlation-request-id": [ - "4ed45f46-021b-46bc-ad89-0739724580ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220349Z:4ed45f46-021b-46bc-ad89-0739724580ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dcbf372e-223e-45fa-9377-42bb04e7a4a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10476" - ], - "x-ms-correlation-request-id": [ - "aef1c2f8-d34f-4018-9b15-77fde2ef1d1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220349Z:aef1c2f8-d34f-4018-9b15-77fde2ef1d1b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0fe492ef-e2f8-4651-bac4-bb1e473d01f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10475" - ], - "x-ms-correlation-request-id": [ - "c135afef-0944-4d10-8662-1b9a07ebcff5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220349Z:c135afef-0944-4d10-8662-1b9a07ebcff5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38f7cdcd-cf88-4fac-8aa8-55c64d85b900" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10474" - ], - "x-ms-correlation-request-id": [ - "e1f948f6-9604-4e79-8f8c-29855884e3b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220349Z:e1f948f6-9604-4e79-8f8c-29855884e3b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fcab386e-bfa3-4751-a5c7-66e5101d9a72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10473" - ], - "x-ms-correlation-request-id": [ - "45fa335c-45e4-45f8-b1d8-6fb7ef57fecf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220349Z:45fa335c-45e4-45f8-b1d8-6fb7ef57fecf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c0f5a02-1100-4931-86f3-321bf20c45c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10472" - ], - "x-ms-correlation-request-id": [ - "476b0c9d-9e04-4ed4-8531-80a625c392c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220350Z:476b0c9d-9e04-4ed4-8531-80a625c392c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f71c3d0-2e46-4da2-969c-3ae8192e18b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10471" - ], - "x-ms-correlation-request-id": [ - "a85b18d4-7998-4e64-883b-0b9b99b6cdce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220350Z:a85b18d4-7998-4e64-883b-0b9b99b6cdce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4ddb6e0-c13e-4a89-bcd2-5de324a44474" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10470" - ], - "x-ms-correlation-request-id": [ - "67ae3a06-d5bc-4ae4-957b-e1df5f2e8217" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220350Z:67ae3a06-d5bc-4ae4-957b-e1df5f2e8217" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f6efd5e-3a96-4e2d-8df3-93ef76c36bce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10469" - ], - "x-ms-correlation-request-id": [ - "8a8b42b2-8fe3-44ba-9331-69279eca8013" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220350Z:8a8b42b2-8fe3-44ba-9331-69279eca8013" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a0781e0-091a-47a9-b75f-1b83ac92ea42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10468" - ], - "x-ms-correlation-request-id": [ - "1ef1e69a-2b2a-499c-9b3f-3b0385c56893" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220350Z:1ef1e69a-2b2a-499c-9b3f-3b0385c56893" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b2e3802-d07f-4489-9ffe-e72ce2feafde" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10467" - ], - "x-ms-correlation-request-id": [ - "de7fdcdc-cf61-434c-b2ac-94d8224cc619" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220351Z:de7fdcdc-cf61-434c-b2ac-94d8224cc619" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00c0bb0c-7d9b-48e1-9126-80df17b854d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10466" - ], - "x-ms-correlation-request-id": [ - "1c98d2ab-517e-4a2a-9e15-eeefb9944044" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220351Z:1c98d2ab-517e-4a2a-9e15-eeefb9944044" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91eebd95-92a5-4c79-8d1f-c7e0845a43d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10465" - ], - "x-ms-correlation-request-id": [ - "549d8dda-1a53-49ce-b639-39bc246da830" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220351Z:549d8dda-1a53-49ce-b639-39bc246da830" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "27fc13d1-1a5a-43ba-8bc5-22c1d6fe2f23" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10464" - ], - "x-ms-correlation-request-id": [ - "00a83772-8104-42f7-8c41-bb824d4376bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220351Z:00a83772-8104-42f7-8c41-bb824d4376bf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "468de8ca-f025-44f0-9da2-5a69102328b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10463" - ], - "x-ms-correlation-request-id": [ - "7509b959-bb71-4450-8501-777dc1ff8650" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220351Z:7509b959-bb71-4450-8501-777dc1ff8650" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57ae9cf5-a892-4093-8ccc-96f2eec98ad2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10462" - ], - "x-ms-correlation-request-id": [ - "f73ef8ab-3898-4db6-8739-dd24e257d46a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220351Z:f73ef8ab-3898-4db6-8739-dd24e257d46a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab4ceb75-38a5-4892-bff9-651a93a703e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10461" - ], - "x-ms-correlation-request-id": [ - "f77e8eb9-8110-4a8f-acec-29a5227a7e74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220352Z:f77e8eb9-8110-4a8f-acec-29a5227a7e74" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0cb59f3f-cf23-4d48-b21a-555e73168609" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10460" - ], - "x-ms-correlation-request-id": [ - "78933597-942a-4b51-b918-67625feb4d92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220352Z:78933597-942a-4b51-b918-67625feb4d92" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22fe9889-39c1-49c2-a057-146056a9d243" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10459" - ], - "x-ms-correlation-request-id": [ - "c3548d94-835d-483c-9500-5a8a0c6d097d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220352Z:c3548d94-835d-483c-9500-5a8a0c6d097d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78269513-7ee8-4c49-bd02-204c3495da4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10458" - ], - "x-ms-correlation-request-id": [ - "25fc0bac-b10b-4c15-82e8-4a9d7e6d52fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220352Z:25fc0bac-b10b-4c15-82e8-4a9d7e6d52fa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1defb2ac-0348-466c-badf-a09388563364" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10457" - ], - "x-ms-correlation-request-id": [ - "2cd3e7d5-32a4-4985-b487-7abbf874c1c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220352Z:2cd3e7d5-32a4-4985-b487-7abbf874c1c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efa707fd-67e2-4ea4-9f05-b7a7f7edd690" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10456" - ], - "x-ms-correlation-request-id": [ - "459a1691-e64c-483a-ad02-a7113f938482" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220352Z:459a1691-e64c-483a-ad02-a7113f938482" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3611cc71-ba8b-416e-8435-480dae036756" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10455" - ], - "x-ms-correlation-request-id": [ - "1f4c2133-37fa-40d9-88fa-1df9fc918957" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220353Z:1f4c2133-37fa-40d9-88fa-1df9fc918957" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61341a65-0963-4203-a34c-ae6421509f3e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10454" - ], - "x-ms-correlation-request-id": [ - "15c7e6cc-208c-4377-8ecd-0440f481314b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220353Z:15c7e6cc-208c-4377-8ecd-0440f481314b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16f1a2a8-7026-4e49-82b0-7b941ebaacfb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10453" - ], - "x-ms-correlation-request-id": [ - "408c0112-0932-46c6-bdea-d6d0d7e23297" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220353Z:408c0112-0932-46c6-bdea-d6d0d7e23297" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f667670b-1211-41ae-a04e-636298abd0d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10452" - ], - "x-ms-correlation-request-id": [ - "2e5ff7c4-dc24-4a95-b350-cd1e30b7addf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220353Z:2e5ff7c4-dc24-4a95-b350-cd1e30b7addf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f900d153-efc8-4f52-8732-9f258ced45a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10451" - ], - "x-ms-correlation-request-id": [ - "ac91524f-f222-491c-83b3-7d503086fd76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220353Z:ac91524f-f222-491c-83b3-7d503086fd76" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3eb6fc0f-7854-4ada-9340-abb5b62f3824" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10450" - ], - "x-ms-correlation-request-id": [ - "0fe916be-a18f-465f-b0db-9e1f17f30e2f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220354Z:0fe916be-a18f-465f-b0db-9e1f17f30e2f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52e7bdd8-c224-44e6-938e-a39ae3190c75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10449" - ], - "x-ms-correlation-request-id": [ - "5eb7340a-b576-44fa-9875-790116df73ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220354Z:5eb7340a-b576-44fa-9875-790116df73ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38f31de1-b8f7-4934-abb6-bd9fa7387423" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10448" - ], - "x-ms-correlation-request-id": [ - "8080f3f0-b914-4d33-a37d-70d3983f5db9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220354Z:8080f3f0-b914-4d33-a37d-70d3983f5db9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b39db5f-aad8-427a-9a27-6a45b8c5d1c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10447" - ], - "x-ms-correlation-request-id": [ - "fce8a8fa-1fcb-48ba-b0ac-af9b76251d3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220354Z:fce8a8fa-1fcb-48ba-b0ac-af9b76251d3c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a5b50e4-3b3f-4bbd-9d82-1c07101915ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10446" - ], - "x-ms-correlation-request-id": [ - "8eec3a58-87c0-4871-b8af-f2524840f289" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220354Z:8eec3a58-87c0-4871-b8af-f2524840f289" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7269f37-a986-4429-b7d2-7ec0533c29d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10445" - ], - "x-ms-correlation-request-id": [ - "0e92f290-b1af-4950-a0ce-319641c2339b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220355Z:0e92f290-b1af-4950-a0ce-319641c2339b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93f8cac1-199a-4f54-953a-12609e6efaa2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10444" - ], - "x-ms-correlation-request-id": [ - "ab27a8ef-e941-4be3-aff0-e8d3fc88f85c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220355Z:ab27a8ef-e941-4be3-aff0-e8d3fc88f85c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0bd063e1-d973-44b0-91fb-6e2ebc641745" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10443" - ], - "x-ms-correlation-request-id": [ - "0dfb5571-dae5-43d0-acff-5f98fbf1d150" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220355Z:0dfb5571-dae5-43d0-acff-5f98fbf1d150" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c68ab431-50b7-49ee-ad5c-5a32a48da387" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10442" - ], - "x-ms-correlation-request-id": [ - "b558c03e-9eff-4aa6-b329-a09558efb770" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220355Z:b558c03e-9eff-4aa6-b329-a09558efb770" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "431c7dff-c73b-4d48-b87a-45f4fda3d8a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10441" - ], - "x-ms-correlation-request-id": [ - "742c8ef4-89a1-4319-b4ba-81cff0567780" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220355Z:742c8ef4-89a1-4319-b4ba-81cff0567780" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd5f53f9-6e35-46b5-b4e0-5deede79862f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10440" - ], - "x-ms-correlation-request-id": [ - "67c83cb9-b1e6-48f9-8f86-1e16d6091534" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220355Z:67c83cb9-b1e6-48f9-8f86-1e16d6091534" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3721a654-6c71-4ac1-b4af-13653e767650" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10439" - ], - "x-ms-correlation-request-id": [ - "30cfc196-5bd7-4ecd-90a5-9241f1e83e4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220356Z:30cfc196-5bd7-4ecd-90a5-9241f1e83e4b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a12d5e9a-c802-4620-b864-2499429990a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10438" - ], - "x-ms-correlation-request-id": [ - "84b4bc1a-d683-477b-8a52-d046428043de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220356Z:84b4bc1a-d683-477b-8a52-d046428043de" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb48ac6d-cd4c-40a4-8ebb-d075666bd713" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10437" - ], - "x-ms-correlation-request-id": [ - "ef4a9439-09df-448f-aa25-d4dabc399927" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220356Z:ef4a9439-09df-448f-aa25-d4dabc399927" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45548d36-b6e9-4ef7-a85b-83a5f862cc78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10436" - ], - "x-ms-correlation-request-id": [ - "bf244c0c-ff04-4bf0-b431-fb3f10cbb231" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220356Z:bf244c0c-ff04-4bf0-b431-fb3f10cbb231" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48dce2f1-82fb-4235-aa18-d5ed68a5c39f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10435" - ], - "x-ms-correlation-request-id": [ - "24ab92c3-75a7-4dcf-b211-70eb0afa1da9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220356Z:24ab92c3-75a7-4dcf-b211-70eb0afa1da9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0842647a-6ec4-4851-8e9f-459cf9fe08e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10434" - ], - "x-ms-correlation-request-id": [ - "f6f2f888-07a4-4aad-9b04-2eabf79b3f5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220356Z:f6f2f888-07a4-4aad-9b04-2eabf79b3f5e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0cb535ac-f501-4833-8776-2f2fade4b67d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10433" - ], - "x-ms-correlation-request-id": [ - "52871075-08ff-46cb-aaf1-1438132916c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220357Z:52871075-08ff-46cb-aaf1-1438132916c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80c58a9d-65ef-4d8d-8441-1036ff1aea2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10432" - ], - "x-ms-correlation-request-id": [ - "1fefe4c7-ac84-4cf3-8ee1-cb56803ac245" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220357Z:1fefe4c7-ac84-4cf3-8ee1-cb56803ac245" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6e9e22a-515a-4241-8210-750a2eef6f53" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10431" - ], - "x-ms-correlation-request-id": [ - "0ee075b0-2409-44d1-8ecc-a5913c8d6adf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220357Z:0ee075b0-2409-44d1-8ecc-a5913c8d6adf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84dbf529-a68a-40ed-9219-13c93c53f70a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10430" - ], - "x-ms-correlation-request-id": [ - "05a9f2c8-3117-4d82-a810-3948e0ec2247" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220357Z:05a9f2c8-3117-4d82-a810-3948e0ec2247" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ba059a8-d2dd-4721-a0db-055f200014e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10429" - ], - "x-ms-correlation-request-id": [ - "26d4e9b4-c705-4e29-9298-7836dec13b78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220357Z:26d4e9b4-c705-4e29-9298-7836dec13b78" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7fa30a87-824c-4cf3-b26f-2ebcc6d24067" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10428" - ], - "x-ms-correlation-request-id": [ - "5e468a02-3f38-4dec-9047-0bc90c1bb1bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220358Z:5e468a02-3f38-4dec-9047-0bc90c1bb1bf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "170f0ac4-4332-44e4-8c2a-7d45d6afc8eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10427" - ], - "x-ms-correlation-request-id": [ - "818026cd-c95f-4597-b2ae-06871e881c87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220358Z:818026cd-c95f-4597-b2ae-06871e881c87" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4b4e9cd-be2d-4549-8b59-a96ab666698f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10426" - ], - "x-ms-correlation-request-id": [ - "e353f3d6-80e1-491e-9658-599bde1dba5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220358Z:e353f3d6-80e1-491e-9658-599bde1dba5d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ecf3cd6c-d0e4-471e-bfc2-f89fb62f9144" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10425" - ], - "x-ms-correlation-request-id": [ - "3e1da07d-0139-4bff-8d18-dcfcdade42e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220358Z:3e1da07d-0139-4bff-8d18-dcfcdade42e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ac2df08-7637-43dc-a436-f97168251441" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10424" - ], - "x-ms-correlation-request-id": [ - "deeb24e3-e0d6-4f15-b504-1a38f6d0616b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220358Z:deeb24e3-e0d6-4f15-b504-1a38f6d0616b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d77c5c79-84b4-4369-82a9-5cb0c38d5c0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10423" - ], - "x-ms-correlation-request-id": [ - "88ac3fa0-5958-40f2-ba8d-175db3f42310" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220358Z:88ac3fa0-5958-40f2-ba8d-175db3f42310" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bd1e728-8d14-441e-89f0-6aa31f0ba3f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10422" - ], - "x-ms-correlation-request-id": [ - "42e27a09-93c4-4120-8d25-28c0bcd7431d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220359Z:42e27a09-93c4-4120-8d25-28c0bcd7431d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "451c8a06-816b-4add-9917-e9c2cd0f6f47" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10421" - ], - "x-ms-correlation-request-id": [ - "3f780437-d46b-40b4-8833-a5ee398d3b3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220359Z:3f780437-d46b-40b4-8833-a5ee398d3b3b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b4b5020-4cb0-409d-a30b-0b61e1dacd28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10420" - ], - "x-ms-correlation-request-id": [ - "142b9167-8852-42f5-8bec-ae08a011143d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220359Z:142b9167-8852-42f5-8bec-ae08a011143d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb284876-74eb-4807-b6f3-2a9ea85c7047" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10419" - ], - "x-ms-correlation-request-id": [ - "9e1696d3-776d-4dd5-a618-0e367cb476c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220359Z:9e1696d3-776d-4dd5-a618-0e367cb476c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "708c4bb0-d51e-432f-b3de-9fdbf8ad3655" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10418" - ], - "x-ms-correlation-request-id": [ - "d825679f-986b-48a6-82e8-13cadc74ac22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220359Z:d825679f-986b-48a6-82e8-13cadc74ac22" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e350e84b-45ad-4438-a428-9924c513a737" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10417" - ], - "x-ms-correlation-request-id": [ - "86c092cc-f6b0-484c-861f-8c3f3094c3e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220400Z:86c092cc-f6b0-484c-861f-8c3f3094c3e4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b19e01e-88f3-41c5-ba38-b3c7861a8d2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10416" - ], - "x-ms-correlation-request-id": [ - "38185915-6a1d-40b4-9cba-a8b9dee68963" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220400Z:38185915-6a1d-40b4-9cba-a8b9dee68963" - ], - "Date": [ - "Tue, 29 Aug 2017 22:03:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1abd31ab-7e12-4517-9cfb-89460030cc95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10415" - ], - "x-ms-correlation-request-id": [ - "c51c71b7-a1d3-4f5e-81c8-b6311574cf37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220400Z:c51c71b7-a1d3-4f5e-81c8-b6311574cf37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8787b100-4938-4e49-9c42-6a05ff86ee02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10414" - ], - "x-ms-correlation-request-id": [ - "49e1c53c-a11d-41f1-bace-4d99cb738b19" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220400Z:49e1c53c-a11d-41f1-bace-4d99cb738b19" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed83540d-6fc5-4bad-9e96-f61510539f82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10413" - ], - "x-ms-correlation-request-id": [ - "99e38814-d81f-4b4e-b7d0-a8ae80e55d8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220400Z:99e38814-d81f-4b4e-b7d0-a8ae80e55d8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a532a0ea-064e-4305-b497-a9147d174038" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10412" - ], - "x-ms-correlation-request-id": [ - "a2c24043-1e17-4a10-b72d-d3afa00cf715" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220401Z:a2c24043-1e17-4a10-b72d-d3afa00cf715" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7107ef63-f148-4ee9-89f4-7819a5f1a05a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10411" - ], - "x-ms-correlation-request-id": [ - "59cd6b2d-acf6-4053-a0b2-3e89a52224aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220401Z:59cd6b2d-acf6-4053-a0b2-3e89a52224aa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa739f1f-21b5-46a9-ad70-8cb1e8f0cb4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10410" - ], - "x-ms-correlation-request-id": [ - "c437d4b8-00e0-41ee-91e7-361d90f1ae8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220401Z:c437d4b8-00e0-41ee-91e7-361d90f1ae8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de6c4891-d5a8-4b8e-ad11-3a5c70ddab03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10409" - ], - "x-ms-correlation-request-id": [ - "8a403259-d1c8-48fa-9b7c-0f0630cb6275" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220401Z:8a403259-d1c8-48fa-9b7c-0f0630cb6275" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "724c94d3-ce8b-4fa8-9145-5c6bc2645945" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10408" - ], - "x-ms-correlation-request-id": [ - "84694915-bbbb-4629-b671-ee1f0428b9b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220402Z:84694915-bbbb-4629-b671-ee1f0428b9b7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92681f8b-6863-4d72-95dc-2577178c02c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10407" - ], - "x-ms-correlation-request-id": [ - "02ab01ab-7a24-4466-b158-b6fe70a3f78b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220402Z:02ab01ab-7a24-4466-b158-b6fe70a3f78b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78393d61-2d53-4927-932f-834105e600cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10406" - ], - "x-ms-correlation-request-id": [ - "134eca76-0c92-4e39-85d0-be07159c7c4f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220402Z:134eca76-0c92-4e39-85d0-be07159c7c4f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42bed665-dd20-4218-8418-820448d7afc5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10405" - ], - "x-ms-correlation-request-id": [ - "c0e8512b-e8f3-458c-a28c-0c767f3f3011" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220402Z:c0e8512b-e8f3-458c-a28c-0c767f3f3011" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47bda77d-3fce-4607-8575-93653478e58d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10404" - ], - "x-ms-correlation-request-id": [ - "2bb9bb03-22eb-42d9-8755-6986628023da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220402Z:2bb9bb03-22eb-42d9-8755-6986628023da" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8810584a-7490-40f9-bad7-6a45a78fdb16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10403" - ], - "x-ms-correlation-request-id": [ - "719ff3a9-d8f3-4d37-9296-d56b66c64ee2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220402Z:719ff3a9-d8f3-4d37-9296-d56b66c64ee2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a13891b2-98bf-4027-bef8-5884636c1a24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10402" - ], - "x-ms-correlation-request-id": [ - "e8977416-4b68-4add-aa34-62516221fbca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220403Z:e8977416-4b68-4add-aa34-62516221fbca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e73f5eb5-70d1-4c06-be2f-09ef26718b1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10401" - ], - "x-ms-correlation-request-id": [ - "15a12518-227c-457b-af58-20d87fa397c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220403Z:15a12518-227c-457b-af58-20d87fa397c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dad74a11-5b7c-4b66-8af2-91a461c8e239" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10400" - ], - "x-ms-correlation-request-id": [ - "67667fa2-6e16-48f5-95a3-2400489bbd79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220403Z:67667fa2-6e16-48f5-95a3-2400489bbd79" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "395c95cb-6eb9-4daa-b781-a39a43abbba1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10399" - ], - "x-ms-correlation-request-id": [ - "04faaf94-89ba-458e-87fa-ba6b500ef4ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220403Z:04faaf94-89ba-458e-87fa-ba6b500ef4ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef26840d-f7e6-408a-a8e5-0178183192d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10398" - ], - "x-ms-correlation-request-id": [ - "fc6c3b75-3498-4ec7-b677-62c16ab89db2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220403Z:fc6c3b75-3498-4ec7-b677-62c16ab89db2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c682bc88-0e0b-4e6a-a703-979f4987fd6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10397" - ], - "x-ms-correlation-request-id": [ - "f5b96ac6-9c7b-494e-8153-cf45a40c5283" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220403Z:f5b96ac6-9c7b-494e-8153-cf45a40c5283" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39d64971-3c96-4817-aaef-9bfd53b66288" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10396" - ], - "x-ms-correlation-request-id": [ - "88eb2a86-aba5-42a0-a736-d3ebb47dc79f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220404Z:88eb2a86-aba5-42a0-a736-d3ebb47dc79f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e020dc6-4d01-4980-acf2-93e1e28bd5e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10395" - ], - "x-ms-correlation-request-id": [ - "1fb143b3-532a-46bc-b34e-680082d87c45" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220404Z:1fb143b3-532a-46bc-b34e-680082d87c45" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9049162-74e2-4395-baf4-546c76bfe99c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10394" - ], - "x-ms-correlation-request-id": [ - "9dcf9b13-2e4f-41df-854f-b811921a1a97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220404Z:9dcf9b13-2e4f-41df-854f-b811921a1a97" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e10e8b78-02bf-47a2-af35-afd6cbc0a7f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10393" - ], - "x-ms-correlation-request-id": [ - "11b8789e-a146-4b43-b466-336b7fdaba2f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220404Z:11b8789e-a146-4b43-b466-336b7fdaba2f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80f0d8c3-646c-447f-b96a-23eed0ee7eb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10392" - ], - "x-ms-correlation-request-id": [ - "ff2d07e2-6244-4190-83bc-ef4af7e3d02c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220404Z:ff2d07e2-6244-4190-83bc-ef4af7e3d02c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd4d0003-930a-49eb-abc2-26188401fcd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10391" - ], - "x-ms-correlation-request-id": [ - "f9406101-cbb3-40af-9635-6a369fcbf749" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220405Z:f9406101-cbb3-40af-9635-6a369fcbf749" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82942bae-6878-4192-b7ec-0657a9344c60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10390" - ], - "x-ms-correlation-request-id": [ - "e0fe3a21-40e7-4fa4-b10f-4ff23776c0a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220405Z:e0fe3a21-40e7-4fa4-b10f-4ff23776c0a4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "143ff0da-7e19-441e-871a-8ff4d2683123" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10389" - ], - "x-ms-correlation-request-id": [ - "9e3672df-2b01-43d3-8161-56b87407dfbb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220405Z:9e3672df-2b01-43d3-8161-56b87407dfbb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1fc3dfa0-bb31-47a8-84e4-7d205ae9122a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10388" - ], - "x-ms-correlation-request-id": [ - "eaa7a6b0-4898-4c97-ba28-8929a2c1731e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220405Z:eaa7a6b0-4898-4c97-ba28-8929a2c1731e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b199d378-f4a8-4499-b838-82c5fb8fe298" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10387" - ], - "x-ms-correlation-request-id": [ - "182d1db2-1856-49da-bd3f-6ca5755af0be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220405Z:182d1db2-1856-49da-bd3f-6ca5755af0be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5613c9b9-4100-416b-a7db-6bd8f05d5ab2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10386" - ], - "x-ms-correlation-request-id": [ - "c8bc2b75-7474-4481-a83c-952e04d0cb23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220405Z:c8bc2b75-7474-4481-a83c-952e04d0cb23" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8615950e-562e-461f-a83d-143d9f46526b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10385" - ], - "x-ms-correlation-request-id": [ - "7f80ee9e-29dc-44db-85c5-af985f823f20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220406Z:7f80ee9e-29dc-44db-85c5-af985f823f20" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f19ad44f-3add-40b2-899e-539ebf1cab6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10384" - ], - "x-ms-correlation-request-id": [ - "c128ba8d-3ea6-47eb-99f8-d30227870dde" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220406Z:c128ba8d-3ea6-47eb-99f8-d30227870dde" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a9fb3bb-2b17-4637-9f5f-bc991d3204c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10383" - ], - "x-ms-correlation-request-id": [ - "800ed274-56a4-48b1-ab72-3b1529ffd298" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220406Z:800ed274-56a4-48b1-ab72-3b1529ffd298" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f76a5f9-2461-49cb-a8d0-6ee4b445eeb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10382" - ], - "x-ms-correlation-request-id": [ - "43204364-6d6e-42ae-a0b7-66eb3767021c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220406Z:43204364-6d6e-42ae-a0b7-66eb3767021c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0707d684-ac87-41e7-aef3-62ada43fd825" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10381" - ], - "x-ms-correlation-request-id": [ - "988d264a-b6cf-4ae0-a28f-7b8a483f9716" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220406Z:988d264a-b6cf-4ae0-a28f-7b8a483f9716" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0dfbd82-56c8-49b5-86af-6a36cfbf93cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10380" - ], - "x-ms-correlation-request-id": [ - "bf4f7ae1-c51c-414c-add3-839e74dd5968" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220407Z:bf4f7ae1-c51c-414c-add3-839e74dd5968" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f50f8700-af5c-47ac-bb4b-41e6d1301766" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10379" - ], - "x-ms-correlation-request-id": [ - "3e91438e-be98-438f-aa3f-494063715dba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220407Z:3e91438e-be98-438f-aa3f-494063715dba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71ce9669-8aad-4820-90da-303787a4c2d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10378" - ], - "x-ms-correlation-request-id": [ - "0fd12032-e2e5-4e34-81ff-f430591a25b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220407Z:0fd12032-e2e5-4e34-81ff-f430591a25b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94499d96-d317-4085-9cfb-0451f147b51f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10377" - ], - "x-ms-correlation-request-id": [ - "583ed51e-34a9-4be3-8a1a-573d5694f708" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220407Z:583ed51e-34a9-4be3-8a1a-573d5694f708" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ae52414-6cae-400e-9bbe-0319ed100cee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10376" - ], - "x-ms-correlation-request-id": [ - "54ee9e0f-9511-41dc-b197-aace0990b557" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220407Z:54ee9e0f-9511-41dc-b197-aace0990b557" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62014e4c-dcd6-417a-b392-ed0a5f6caf7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10375" - ], - "x-ms-correlation-request-id": [ - "dce6c108-0171-4c42-9bda-c4e5fb56ea41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220407Z:dce6c108-0171-4c42-9bda-c4e5fb56ea41" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "766d1eb7-4b54-43d4-bc96-7463113e629c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10374" - ], - "x-ms-correlation-request-id": [ - "91603f15-0a0f-4e43-b456-527b8ca48714" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220407Z:91603f15-0a0f-4e43-b456-527b8ca48714" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b1852ba-cc62-4691-bf02-5e7762bad93f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10373" - ], - "x-ms-correlation-request-id": [ - "d5c775c6-0435-459a-8f52-1168e6fa144a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220408Z:d5c775c6-0435-459a-8f52-1168e6fa144a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9db7fb2-3577-49b3-9f51-7b9c3280f861" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10372" - ], - "x-ms-correlation-request-id": [ - "86f03f35-b5f3-4407-b982-f855b86f626c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220408Z:86f03f35-b5f3-4407-b982-f855b86f626c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ceb6403-1e77-4885-b227-5d9112f35fd5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10371" - ], - "x-ms-correlation-request-id": [ - "3d5c0bb6-2a3b-4f88-9a85-cb5f06165003" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220408Z:3d5c0bb6-2a3b-4f88-9a85-cb5f06165003" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3c85cc4-bc5e-465d-8236-e76bf8bb4739" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10370" - ], - "x-ms-correlation-request-id": [ - "d21e5120-4572-4277-aa5a-6a1bdd8fd2f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220408Z:d21e5120-4572-4277-aa5a-6a1bdd8fd2f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "454c5f1d-73a2-40e6-ab9a-d6baea939177" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10369" - ], - "x-ms-correlation-request-id": [ - "664e2734-f326-4650-94f9-9291ed18300d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220408Z:664e2734-f326-4650-94f9-9291ed18300d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae7d0d25-dc5e-49b9-8cb6-6216d9fc7e4f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10368" - ], - "x-ms-correlation-request-id": [ - "f7a20eb5-32e3-4b67-a1a9-ab75306ea84a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220408Z:f7a20eb5-32e3-4b67-a1a9-ab75306ea84a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4188ac1b-a530-414b-a4e2-6879e79c9837" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10367" - ], - "x-ms-correlation-request-id": [ - "395b20f2-42dd-4118-a85f-0ab383431b9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220409Z:395b20f2-42dd-4118-a85f-0ab383431b9d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f38c7210-6942-414a-bd31-9398033bf1dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10366" - ], - "x-ms-correlation-request-id": [ - "e6566148-8956-4638-9455-0e92157654a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220409Z:e6566148-8956-4638-9455-0e92157654a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3297417-04df-4e2f-adec-41ee4e7b75b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10365" - ], - "x-ms-correlation-request-id": [ - "695e0371-f4d1-4060-9c8b-0968ff42620c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220409Z:695e0371-f4d1-4060-9c8b-0968ff42620c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4cb3f00b-5b02-4dad-9465-f8e3fd5e696b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10364" - ], - "x-ms-correlation-request-id": [ - "7520c81f-37b6-437e-bc7b-995fec56c056" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220409Z:7520c81f-37b6-437e-bc7b-995fec56c056" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8efbc050-b71e-4909-b5ce-a9e275eaa779" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10363" - ], - "x-ms-correlation-request-id": [ - "a7d18fc1-8059-4212-8a8c-8055f7aa867f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220409Z:a7d18fc1-8059-4212-8a8c-8055f7aa867f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3e4859c6-e9af-44d6-acdd-27d0908de657" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10362" - ], - "x-ms-correlation-request-id": [ - "0e321a5f-5e05-4773-af9d-9d1e87fa16ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220409Z:0e321a5f-5e05-4773-af9d-9d1e87fa16ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a431fab-d6ea-42d2-8647-ddfc491b634e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10361" - ], - "x-ms-correlation-request-id": [ - "53bf81eb-4566-4e5d-b8c5-edbc8e34f935" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220410Z:53bf81eb-4566-4e5d-b8c5-edbc8e34f935" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "749c007c-4364-4c66-b7ae-8cc89a03831b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10360" - ], - "x-ms-correlation-request-id": [ - "ec641e56-0e41-49ce-997d-b3658ed7749c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220410Z:ec641e56-0e41-49ce-997d-b3658ed7749c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "107d7c23-ef70-4460-9075-5489240daced" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10359" - ], - "x-ms-correlation-request-id": [ - "51be1f9a-f674-40f0-8982-d5c73cf22d2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220410Z:51be1f9a-f674-40f0-8982-d5c73cf22d2c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba0adad0-8d40-406d-bf88-c9a876448a4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10358" - ], - "x-ms-correlation-request-id": [ - "ceea8aa2-ce4e-40b2-8300-2e3cf4dbd47b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220410Z:ceea8aa2-ce4e-40b2-8300-2e3cf4dbd47b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b61ddf9-c42e-4042-9917-c36e1d8e2786" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10357" - ], - "x-ms-correlation-request-id": [ - "145c91b1-f4fc-453b-a7cd-55ae19b89a2a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220410Z:145c91b1-f4fc-453b-a7cd-55ae19b89a2a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "247dd1c8-467c-4277-a92e-9fd59dcc9856" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10356" - ], - "x-ms-correlation-request-id": [ - "6d8301e8-4fe5-4608-9e22-5c2f151c0c7f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220410Z:6d8301e8-4fe5-4608-9e22-5c2f151c0c7f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0be9a1f9-b252-4da3-a575-e92735cea5e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10355" - ], - "x-ms-correlation-request-id": [ - "d7877bfc-7e1c-4761-b8af-89a0fa4877c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220411Z:d7877bfc-7e1c-4761-b8af-89a0fa4877c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37e9d66b-6013-489a-af4e-be8b312c6503" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10354" - ], - "x-ms-correlation-request-id": [ - "77736cf0-dd7a-442d-a65b-194a2dfc2355" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220411Z:77736cf0-dd7a-442d-a65b-194a2dfc2355" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b9bc87b-ccf1-4f8c-850b-f2a81cca7def" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10353" - ], - "x-ms-correlation-request-id": [ - "ab64366e-d4d9-40e9-8dde-051f1a64f986" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220411Z:ab64366e-d4d9-40e9-8dde-051f1a64f986" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b79a990-cc69-4a7c-bbec-ee1e9c126ee9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10352" - ], - "x-ms-correlation-request-id": [ - "8fbc53b8-2af6-41ad-a14a-ac2d299628a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220411Z:8fbc53b8-2af6-41ad-a14a-ac2d299628a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bfb4fb2f-0ca6-4aa4-a3fb-b33597fe41b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10351" - ], - "x-ms-correlation-request-id": [ - "1650d028-5cb9-44f1-a497-fc64f5eeb367" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220411Z:1650d028-5cb9-44f1-a497-fc64f5eeb367" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9513e86-c756-4132-bde2-757be23ad4dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10350" - ], - "x-ms-correlation-request-id": [ - "d46f0e57-ccd7-44bd-8ee6-11f6a38af81b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220411Z:d46f0e57-ccd7-44bd-8ee6-11f6a38af81b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69a1c935-94fd-454e-8868-cc8b87f52609" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10349" - ], - "x-ms-correlation-request-id": [ - "60594dc4-687a-40df-a0b2-f422e22146a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220411Z:60594dc4-687a-40df-a0b2-f422e22146a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea0dfdf7-ad42-4660-b8dd-02eb0430e42a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10348" - ], - "x-ms-correlation-request-id": [ - "fa6bc89c-66c2-4b61-a523-b6980328a608" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220412Z:fa6bc89c-66c2-4b61-a523-b6980328a608" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5a8c09f-d293-4259-b050-a9acba40873f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10347" - ], - "x-ms-correlation-request-id": [ - "56d0f39f-69d0-451e-b6d3-e36c66cddd4d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220412Z:56d0f39f-69d0-451e-b6d3-e36c66cddd4d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1e35582-df10-4826-b87f-5219220009b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10346" - ], - "x-ms-correlation-request-id": [ - "da91b355-0a9d-46c9-b821-cabdbc58d60b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220412Z:da91b355-0a9d-46c9-b821-cabdbc58d60b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "171e37f8-6ecf-49e3-9921-271e735abe5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10345" - ], - "x-ms-correlation-request-id": [ - "153938ba-faca-4089-b3c2-ce7e862f7317" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220412Z:153938ba-faca-4089-b3c2-ce7e862f7317" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9d9afc5-4dea-4c0e-9f2d-0fe40e3ade3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10344" - ], - "x-ms-correlation-request-id": [ - "65ca9162-4c20-451a-ae33-7b543deb9b6b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220412Z:65ca9162-4c20-451a-ae33-7b543deb9b6b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "837d7a19-3f5a-4cef-b113-583b64f4e948" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10343" - ], - "x-ms-correlation-request-id": [ - "262e7844-aa17-4126-aa80-1a7bbe3effa1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220412Z:262e7844-aa17-4126-aa80-1a7bbe3effa1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13d96967-3593-4532-889b-5d0ce299bb74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10342" - ], - "x-ms-correlation-request-id": [ - "6ef42bd2-41c9-479a-acd2-66cf232bd67c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220413Z:6ef42bd2-41c9-479a-acd2-66cf232bd67c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1de23da7-be41-404d-84e1-17fda96aae13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10341" - ], - "x-ms-correlation-request-id": [ - "7dd85cf2-0a4d-442e-b9a3-f09fc9dc2d47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220413Z:7dd85cf2-0a4d-442e-b9a3-f09fc9dc2d47" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e327923-2b6d-4ee2-94da-268611038f55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10340" - ], - "x-ms-correlation-request-id": [ - "3e30a6af-5aca-497a-a541-d22bd0ef4929" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220413Z:3e30a6af-5aca-497a-a541-d22bd0ef4929" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "259c4534-b561-49d0-a5c2-d5f596fbd5b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10339" - ], - "x-ms-correlation-request-id": [ - "393ece7e-dd45-42e6-93d3-18e6bd84cfab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220413Z:393ece7e-dd45-42e6-93d3-18e6bd84cfab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f88744ed-ab72-428c-9570-0af3b69611ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10338" - ], - "x-ms-correlation-request-id": [ - "f72b8dce-57d6-45c3-b689-d17b18cb8248" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220413Z:f72b8dce-57d6-45c3-b689-d17b18cb8248" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b915f2e-ba77-4b6e-a0e4-74e5904fd9fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10337" - ], - "x-ms-correlation-request-id": [ - "ac86dc6d-bf3e-4d79-b40d-d519aae76088" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220413Z:ac86dc6d-bf3e-4d79-b40d-d519aae76088" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1da372c4-dbce-426b-ba26-b8ececb9510c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10336" - ], - "x-ms-correlation-request-id": [ - "bbdc7599-60b4-443e-8698-c447000e8e60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220413Z:bbdc7599-60b4-443e-8698-c447000e8e60" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9bbc9221-5d3e-4592-972f-ec4901d5f7b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10335" - ], - "x-ms-correlation-request-id": [ - "5bb6abeb-4dfe-4f9e-b45f-cc055ccf3d0f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220414Z:5bb6abeb-4dfe-4f9e-b45f-cc055ccf3d0f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "479ad0ff-f487-4835-a6a0-a8ccc71dff20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10334" - ], - "x-ms-correlation-request-id": [ - "a6dce234-a192-4eec-82aa-97268afdec03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220414Z:a6dce234-a192-4eec-82aa-97268afdec03" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5ee277f-d7fc-4474-b492-9137e2d17098" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10333" - ], - "x-ms-correlation-request-id": [ - "582d2e00-8fb1-4911-91f4-155af9fac317" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220414Z:582d2e00-8fb1-4911-91f4-155af9fac317" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9537df97-3292-44cf-af6f-bc5569269ccd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10332" - ], - "x-ms-correlation-request-id": [ - "e02cbfcb-f307-4d9d-8412-42fab5b56790" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220414Z:e02cbfcb-f307-4d9d-8412-42fab5b56790" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8365bc2-6eb3-4e0b-b69c-ae8bd7b86e8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10331" - ], - "x-ms-correlation-request-id": [ - "12ad196e-5895-484b-9a0e-aab72e5af20f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220414Z:12ad196e-5895-484b-9a0e-aab72e5af20f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb3a6c6b-1c77-48ee-bd1a-15f3e0dbab0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10330" - ], - "x-ms-correlation-request-id": [ - "7c0a8ee8-0383-4224-ab1e-6969ea9eb0ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220414Z:7c0a8ee8-0383-4224-ab1e-6969ea9eb0ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e6ef7ce-4a15-4d07-9c0e-4dd00834f1e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10329" - ], - "x-ms-correlation-request-id": [ - "f744dddd-9cee-4f27-b247-0c5a12682fc6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220414Z:f744dddd-9cee-4f27-b247-0c5a12682fc6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "172d11eb-4c83-4d88-9c34-ed41fda198b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10328" - ], - "x-ms-correlation-request-id": [ - "58db4056-1e69-470d-974c-86f5d8741b53" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220415Z:58db4056-1e69-470d-974c-86f5d8741b53" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e22ac167-f003-4e3a-bb0f-06905e3fe57e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10327" - ], - "x-ms-correlation-request-id": [ - "9bb91ea3-e84a-46f0-8378-ed4c855eb968" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220415Z:9bb91ea3-e84a-46f0-8378-ed4c855eb968" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cdd82280-3a78-49e2-9f96-d38bfb0f0732" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10326" - ], - "x-ms-correlation-request-id": [ - "874a83a9-1c4e-4396-9cb2-c26d7986273a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220415Z:874a83a9-1c4e-4396-9cb2-c26d7986273a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ab8ff5b-0596-4e3c-8d3d-4eb45f4c5a38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10325" - ], - "x-ms-correlation-request-id": [ - "403cc2f6-9878-4ee7-ac08-59712fcd7b77" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220415Z:403cc2f6-9878-4ee7-ac08-59712fcd7b77" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a12b8e68-ef18-4174-bddc-ebddf4ab6a4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10324" - ], - "x-ms-correlation-request-id": [ - "02e86f2f-46e7-47ed-afbd-c9c8eb2463e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220415Z:02e86f2f-46e7-47ed-afbd-c9c8eb2463e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "424e5709-6f66-493f-ad59-f8e1533469e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10323" - ], - "x-ms-correlation-request-id": [ - "5c678d90-726e-46cb-92f4-1b11cc34b634" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220415Z:5c678d90-726e-46cb-92f4-1b11cc34b634" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "865dd1a2-c153-4b64-84b8-ff973a931f36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10322" - ], - "x-ms-correlation-request-id": [ - "71438ed6-834f-49ee-9667-7d5d737c91cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220416Z:71438ed6-834f-49ee-9667-7d5d737c91cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9797d45f-3764-4a33-b53a-245c6cdf3ba1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10321" - ], - "x-ms-correlation-request-id": [ - "a8f3ba65-3ce4-48a6-9280-0485b3119f7f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220416Z:a8f3ba65-3ce4-48a6-9280-0485b3119f7f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19f81227-0626-4eff-8c2b-5e720468c069" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10320" - ], - "x-ms-correlation-request-id": [ - "1e23bcb1-ed06-44e1-b93c-a5a606d36c86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220416Z:1e23bcb1-ed06-44e1-b93c-a5a606d36c86" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "27c20d17-3d72-4c56-828b-e3e2bb5fd35a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10319" - ], - "x-ms-correlation-request-id": [ - "f30d23ef-60bb-4384-ab18-219c308affd0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220416Z:f30d23ef-60bb-4384-ab18-219c308affd0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f23c271a-9efd-4287-9c73-a7005fa0f4fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10318" - ], - "x-ms-correlation-request-id": [ - "20265fca-bfd9-4a4b-8ed9-ca7a94dab138" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220416Z:20265fca-bfd9-4a4b-8ed9-ca7a94dab138" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03ecd763-68c2-45ca-ad99-c96919cf120e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10317" - ], - "x-ms-correlation-request-id": [ - "320849dc-3644-494e-ab3a-8f9332ea2b32" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220416Z:320849dc-3644-494e-ab3a-8f9332ea2b32" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47e00791-5417-4d78-a989-2153dce4a5ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10316" - ], - "x-ms-correlation-request-id": [ - "ef326c63-2cc5-42bc-8a44-65fdbd0513e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220417Z:ef326c63-2cc5-42bc-8a44-65fdbd0513e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bbe809c5-ff0b-425e-81dd-11de010fd1f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10315" - ], - "x-ms-correlation-request-id": [ - "c08dd673-4aab-4e80-9fa7-aac7833fb089" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220417Z:c08dd673-4aab-4e80-9fa7-aac7833fb089" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b733f83-00a5-4b47-92e4-facb45025dc4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10314" - ], - "x-ms-correlation-request-id": [ - "a2bed41a-f9b6-4f25-a8d5-6931f30c4acc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220417Z:a2bed41a-f9b6-4f25-a8d5-6931f30c4acc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70da0091-c57d-4d3e-a6f0-a7b7b2700f81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10313" - ], - "x-ms-correlation-request-id": [ - "a42ca77a-de88-4c85-9787-e049cfc0a736" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220417Z:a42ca77a-de88-4c85-9787-e049cfc0a736" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "061f9b73-e36b-47f9-b6c0-bb5b1107e091" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10312" - ], - "x-ms-correlation-request-id": [ - "abf39b1e-db53-431d-99cc-acebb4f14c09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220417Z:abf39b1e-db53-431d-99cc-acebb4f14c09" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88878479-6a08-4d61-a48b-da519efb435b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10311" - ], - "x-ms-correlation-request-id": [ - "80a6013d-9899-4e97-a53f-86b3f792f82b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220417Z:80a6013d-9899-4e97-a53f-86b3f792f82b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63a50676-2cb8-4824-bc2c-de55d3dd22bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10310" - ], - "x-ms-correlation-request-id": [ - "5225f11c-38c2-4ddf-8a4d-337e2bdf8e13" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220417Z:5225f11c-38c2-4ddf-8a4d-337e2bdf8e13" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1bdba45-88d3-4e21-af1f-62448627c2ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10309" - ], - "x-ms-correlation-request-id": [ - "ea7e14d9-6b27-44af-91a2-210062daefe3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220418Z:ea7e14d9-6b27-44af-91a2-210062daefe3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ee06c5e-5c21-4007-a91e-f6193669767b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10308" - ], - "x-ms-correlation-request-id": [ - "4f2ce12a-9929-4933-87a4-4e92d8a0ee0e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220418Z:4f2ce12a-9929-4933-87a4-4e92d8a0ee0e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c2432d7a-609f-4f44-be88-523939c926e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10307" - ], - "x-ms-correlation-request-id": [ - "9ebb2ac9-029b-4ecd-b5d5-e859dac38493" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220418Z:9ebb2ac9-029b-4ecd-b5d5-e859dac38493" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "026b5dc6-bc79-4249-b46d-05ca9ce02b37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10306" - ], - "x-ms-correlation-request-id": [ - "362a62a1-cc8c-4217-848d-67a0c79632a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220418Z:362a62a1-cc8c-4217-848d-67a0c79632a2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b85e1a30-b76c-48da-bc04-0849cab91228" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10305" - ], - "x-ms-correlation-request-id": [ - "548af317-2c5f-49ba-aab3-de9d22b5ae46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220418Z:548af317-2c5f-49ba-aab3-de9d22b5ae46" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac68738e-1fda-4ac8-8af0-6d448965cb00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10304" - ], - "x-ms-correlation-request-id": [ - "d6cf3661-bbd0-41c5-a45e-163a1b84e79d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220418Z:d6cf3661-bbd0-41c5-a45e-163a1b84e79d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3c59596a-f3dd-41cc-bf79-9d822f1d5cf4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10303" - ], - "x-ms-correlation-request-id": [ - "8e34f5c2-d39c-4d74-afcb-c9771f35ed30" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220419Z:8e34f5c2-d39c-4d74-afcb-c9771f35ed30" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01870afb-85be-426a-bad4-fa25ef6e84f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10302" - ], - "x-ms-correlation-request-id": [ - "bcb74f53-b17e-4326-9cfd-312a532fe0b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220419Z:bcb74f53-b17e-4326-9cfd-312a532fe0b5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "397d34ce-4cf8-4c2c-aa13-f2feb4999694" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10301" - ], - "x-ms-correlation-request-id": [ - "45e56b49-39d7-4225-a179-1feec5249db6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220419Z:45e56b49-39d7-4225-a179-1feec5249db6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0266bb50-7280-4129-8454-5e244f335617" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10300" - ], - "x-ms-correlation-request-id": [ - "86630ff6-0427-448f-b021-74564b8908e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220419Z:86630ff6-0427-448f-b021-74564b8908e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "806d2a02-4d7f-409f-b791-1d49111bcac5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10299" - ], - "x-ms-correlation-request-id": [ - "3044a2a9-7dff-4ee6-be8a-95d39b7656f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220419Z:3044a2a9-7dff-4ee6-be8a-95d39b7656f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf573543-ad00-4741-b3cc-979a50d17e71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10298" - ], - "x-ms-correlation-request-id": [ - "b02b600e-5617-4be7-9cec-205c4b12f85d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220419Z:b02b600e-5617-4be7-9cec-205c4b12f85d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7e751d1-b9f0-4153-8856-d4ac82c2df97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10297" - ], - "x-ms-correlation-request-id": [ - "8bc85b5c-3905-4fb3-926b-4a631e1586e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220419Z:8bc85b5c-3905-4fb3-926b-4a631e1586e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8ae3d93-33a8-4d3c-a5c1-ddafb53a6bcc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10296" - ], - "x-ms-correlation-request-id": [ - "847295f8-e188-4a6f-9b2a-4471543c9ee0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220420Z:847295f8-e188-4a6f-9b2a-4471543c9ee0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28751a2c-9d66-46db-841f-9a8409df082b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10295" - ], - "x-ms-correlation-request-id": [ - "47ab575e-52ce-4e42-b276-6cf2ab68c3c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220420Z:47ab575e-52ce-4e42-b276-6cf2ab68c3c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6afb175e-bdc3-4ba5-b0b6-675c9767cf1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10294" - ], - "x-ms-correlation-request-id": [ - "7673601e-8db1-4bb0-91de-e94a0ef9bcfd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220420Z:7673601e-8db1-4bb0-91de-e94a0ef9bcfd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65d37311-a359-4e0a-968a-213f27e03ce3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10293" - ], - "x-ms-correlation-request-id": [ - "62de8ab7-b261-4074-8706-83e2c75217e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220420Z:62de8ab7-b261-4074-8706-83e2c75217e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a2f67f2-4403-4464-a0d7-e6781d4fb0da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10292" - ], - "x-ms-correlation-request-id": [ - "f91618c7-82a6-407d-a5d3-7536e9051000" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220420Z:f91618c7-82a6-407d-a5d3-7536e9051000" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "21860643-7020-471b-becc-0fa95bc0e338" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10291" - ], - "x-ms-correlation-request-id": [ - "eb555c60-6c19-4418-965d-63ac13f39f0e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220420Z:eb555c60-6c19-4418-965d-63ac13f39f0e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee90650b-99c0-421c-9b28-f17667624385" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10290" - ], - "x-ms-correlation-request-id": [ - "424172cc-c0a7-4976-a70f-02fb8e3b900e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220421Z:424172cc-c0a7-4976-a70f-02fb8e3b900e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "807c9e94-04e2-4601-af36-cbdcd7398155" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10289" - ], - "x-ms-correlation-request-id": [ - "1e69b4cf-c036-4a59-9805-e0688626ef67" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220421Z:1e69b4cf-c036-4a59-9805-e0688626ef67" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6fd2dd65-361d-4aa2-81cd-ad67babca993" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10288" - ], - "x-ms-correlation-request-id": [ - "2eb4c99b-1c48-4916-b14d-53a7a215e087" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220421Z:2eb4c99b-1c48-4916-b14d-53a7a215e087" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37dcb304-6c1d-489d-b24a-854dd4b07f27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10287" - ], - "x-ms-correlation-request-id": [ - "ac70c7ab-94d2-4f95-a7bb-618f3ee81ea8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220421Z:ac70c7ab-94d2-4f95-a7bb-618f3ee81ea8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "022df386-40b3-44d6-a07d-a6cb08ce18db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10286" - ], - "x-ms-correlation-request-id": [ - "f3f8281f-2eb8-4e92-aece-d2e39a3d3664" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220421Z:f3f8281f-2eb8-4e92-aece-d2e39a3d3664" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3148beb7-5b8e-4655-8ac0-3d69356f315b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10285" - ], - "x-ms-correlation-request-id": [ - "254b1a2d-3f29-4b78-a900-279b21c4f5d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220422Z:254b1a2d-3f29-4b78-a900-279b21c4f5d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f24cebf-3a31-4f5c-9a1e-f6dae2852555" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10284" - ], - "x-ms-correlation-request-id": [ - "336d872e-2312-4011-aa10-0fd13663f824" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220422Z:336d872e-2312-4011-aa10-0fd13663f824" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6798c2d8-b9ed-45f9-8aa8-34b29550bd62" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10283" - ], - "x-ms-correlation-request-id": [ - "2fa46193-652d-4d91-a6e3-610c6b133fa6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220422Z:2fa46193-652d-4d91-a6e3-610c6b133fa6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1111a10c-5136-47e3-bfbc-5ea11528b64b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10282" - ], - "x-ms-correlation-request-id": [ - "8180c5d4-7147-432e-ae68-e6627f215091" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220422Z:8180c5d4-7147-432e-ae68-e6627f215091" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d75d0d10-9d68-44d9-ad1b-3bf07e42f489" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10281" - ], - "x-ms-correlation-request-id": [ - "383d1870-f251-4ab9-8db3-41a5c9a7be09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220422Z:383d1870-f251-4ab9-8db3-41a5c9a7be09" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4a150b3-e059-4d3e-b271-bce7bf0da055" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10280" - ], - "x-ms-correlation-request-id": [ - "824d188e-32e6-4de1-822d-931281c68282" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220422Z:824d188e-32e6-4de1-822d-931281c68282" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0158e60a-2eae-4ca8-a022-c393e2747681" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10279" - ], - "x-ms-correlation-request-id": [ - "c54c0603-4c67-44b1-a1fd-5d6b227369ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220423Z:c54c0603-4c67-44b1-a1fd-5d6b227369ed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5c33653-0723-4f4f-9093-6878c7b63318" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10278" - ], - "x-ms-correlation-request-id": [ - "6dc36b0d-87e7-4dc4-a846-a475589ca96e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220423Z:6dc36b0d-87e7-4dc4-a846-a475589ca96e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "af6810aa-64d1-4334-96d9-3f36ccb7d53f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10277" - ], - "x-ms-correlation-request-id": [ - "578bfa91-430f-4ec5-b004-208b88196fee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220423Z:578bfa91-430f-4ec5-b004-208b88196fee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac1be6ff-8c2e-48ea-8c7a-bec42ad561bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10276" - ], - "x-ms-correlation-request-id": [ - "8f1eead6-7233-420f-8f84-d7584b014ca1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220423Z:8f1eead6-7233-420f-8f84-d7584b014ca1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9df29a4c-bc03-4f6e-b470-a825d9512b9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10275" - ], - "x-ms-correlation-request-id": [ - "f825419a-ae87-4b01-857d-0c59aed8cc0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220423Z:f825419a-ae87-4b01-857d-0c59aed8cc0d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7eebfd06-5ba7-4070-b942-cf0a8e237d9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10274" - ], - "x-ms-correlation-request-id": [ - "8fd647f5-6e7e-4dba-8744-758a603e3ae0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220423Z:8fd647f5-6e7e-4dba-8744-758a603e3ae0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a24229e-f949-49eb-9873-118289f1c68c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10273" - ], - "x-ms-correlation-request-id": [ - "5338c6fc-5bdd-4419-ae8e-6653d8e81f8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220424Z:5338c6fc-5bdd-4419-ae8e-6653d8e81f8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae1dbd08-2e74-45c4-ada1-6c191e998220" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10272" - ], - "x-ms-correlation-request-id": [ - "89762b50-b31d-4000-853f-bd86de767d15" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220424Z:89762b50-b31d-4000-853f-bd86de767d15" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6650fa3-ac62-4813-a9ac-ca1c25b13048" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10271" - ], - "x-ms-correlation-request-id": [ - "47a6b332-ac63-423d-974d-2d437c004f3f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220424Z:47a6b332-ac63-423d-974d-2d437c004f3f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eba16836-08dd-41d5-aa2f-3646befc0881" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10270" - ], - "x-ms-correlation-request-id": [ - "9616da70-5d75-45d6-b68f-6592ea17dd4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220424Z:9616da70-5d75-45d6-b68f-6592ea17dd4c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "596e3403-e40c-425b-9278-1e8b94050a0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10269" - ], - "x-ms-correlation-request-id": [ - "fad8a21e-2d43-4be3-92a3-2c266fcb9a51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220424Z:fad8a21e-2d43-4be3-92a3-2c266fcb9a51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e330cf37-3183-4dcc-8955-1533f3beed6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10268" - ], - "x-ms-correlation-request-id": [ - "3af77d15-34be-42d5-84fe-83ea404c8bef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220424Z:3af77d15-34be-42d5-84fe-83ea404c8bef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f55c11d-06be-47eb-b060-2dda5ee52b48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10267" - ], - "x-ms-correlation-request-id": [ - "7bae432a-a70b-4c33-84fc-4a872b505e86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220425Z:7bae432a-a70b-4c33-84fc-4a872b505e86" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "050ba778-941f-4623-b631-6ff5c655ca81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10266" - ], - "x-ms-correlation-request-id": [ - "ea30c46f-a189-483f-92a7-2a4fef26de18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220425Z:ea30c46f-a189-483f-92a7-2a4fef26de18" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "138ff647-97f6-429a-b9a7-a5cf828613b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10265" - ], - "x-ms-correlation-request-id": [ - "978e0bd6-31a1-4d6d-961d-83ecf69e7e9e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220425Z:978e0bd6-31a1-4d6d-961d-83ecf69e7e9e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ccdefca-e790-4389-9d45-a26a6fc422b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10264" - ], - "x-ms-correlation-request-id": [ - "5df608db-3984-4e91-a356-7cf275534dcf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220425Z:5df608db-3984-4e91-a356-7cf275534dcf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "108e719e-1732-4841-9297-531ecb2e94c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10263" - ], - "x-ms-correlation-request-id": [ - "718c02b1-57b0-4ad7-a7e6-44976b2c6794" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220425Z:718c02b1-57b0-4ad7-a7e6-44976b2c6794" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2079b3fc-68f6-4f57-874a-a5457a7c1344" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10262" - ], - "x-ms-correlation-request-id": [ - "c187dc42-42dd-4711-a0e2-70cc88b67609" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220426Z:c187dc42-42dd-4711-a0e2-70cc88b67609" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "26b0bea8-2c24-4d2e-b3da-66042b60558d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10261" - ], - "x-ms-correlation-request-id": [ - "dae7f2f8-04b3-46aa-af1c-250bc131b44d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220426Z:dae7f2f8-04b3-46aa-af1c-250bc131b44d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f09e6a4b-7ef0-4dda-8ec5-d214473af20a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10260" - ], - "x-ms-correlation-request-id": [ - "7f023c0e-73b8-4fc3-9215-d806f8639162" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220426Z:7f023c0e-73b8-4fc3-9215-d806f8639162" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a05a8a0b-970b-4794-9d16-23ea69b7dd95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10259" - ], - "x-ms-correlation-request-id": [ - "6360e2dd-95fa-4d17-8c20-430436f75f06" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220426Z:6360e2dd-95fa-4d17-8c20-430436f75f06" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30d280de-ef4c-4cd6-abf6-723cca6b20b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10258" - ], - "x-ms-correlation-request-id": [ - "161ace66-f13b-4b45-8a7e-8b53eb99e8e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220426Z:161ace66-f13b-4b45-8a7e-8b53eb99e8e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5d48045-ccd0-4b62-bbd0-90998711ca5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10257" - ], - "x-ms-correlation-request-id": [ - "f58d4ce8-f8f2-47a4-9c75-30b1f214cf40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220426Z:f58d4ce8-f8f2-47a4-9c75-30b1f214cf40" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80a7689f-f442-4439-840c-718875580f16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10256" - ], - "x-ms-correlation-request-id": [ - "58d963b2-ba1e-401f-b52b-9820da5e9cb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220427Z:58d963b2-ba1e-401f-b52b-9820da5e9cb8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7bcd0ee2-b18e-4377-8768-0e320f3d668f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10255" - ], - "x-ms-correlation-request-id": [ - "d852e58a-0953-4924-bae5-aff7873091c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220427Z:d852e58a-0953-4924-bae5-aff7873091c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e64ee66c-6d8b-413d-8d10-bba3d317d135" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10254" - ], - "x-ms-correlation-request-id": [ - "107a108d-1800-4e61-afeb-57739b69732f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220427Z:107a108d-1800-4e61-afeb-57739b69732f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1b267e2-1fe0-4ce1-85b7-6a119ad016be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10253" - ], - "x-ms-correlation-request-id": [ - "7b38f049-6d75-4e4f-a853-93d5c5e7548f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220427Z:7b38f049-6d75-4e4f-a853-93d5c5e7548f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3fdd068d-63c9-4b2f-889b-9de5b0d4abe3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10252" - ], - "x-ms-correlation-request-id": [ - "debd9d34-7a8b-4cf7-b216-cc13cf1ab7bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220427Z:debd9d34-7a8b-4cf7-b216-cc13cf1ab7bf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0039671b-4edc-41aa-bea3-443f4cb4d0dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10251" - ], - "x-ms-correlation-request-id": [ - "4e862e83-2915-4b8f-9fc5-47b73b01f360" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220428Z:4e862e83-2915-4b8f-9fc5-47b73b01f360" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "034e0e18-5f38-4afa-8dba-51b56bf75640" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10250" - ], - "x-ms-correlation-request-id": [ - "45191a9c-0071-47ff-bc64-4b2556ecaf3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220428Z:45191a9c-0071-47ff-bc64-4b2556ecaf3e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad70f9ef-a99a-4476-b0df-1dea21abfe44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10249" - ], - "x-ms-correlation-request-id": [ - "49454e79-d6a0-4b77-9cc9-dae8ab676508" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220428Z:49454e79-d6a0-4b77-9cc9-dae8ab676508" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8f458f6-e91b-4ee1-9794-95213c9942dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10248" - ], - "x-ms-correlation-request-id": [ - "b06fba91-0855-4a76-8717-7c8241c1a8a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220428Z:b06fba91-0855-4a76-8717-7c8241c1a8a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0034b0dc-6af7-4c97-bdb7-925e0a25695e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10247" - ], - "x-ms-correlation-request-id": [ - "cc74d5c5-e4fb-4720-80c9-23a663dd167a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220428Z:cc74d5c5-e4fb-4720-80c9-23a663dd167a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7870172-615e-4ab2-9f7b-f7a67b8e1683" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10246" - ], - "x-ms-correlation-request-id": [ - "884c355c-77d3-4250-bf0d-83458328efa8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220428Z:884c355c-77d3-4250-bf0d-83458328efa8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f66854bf-ffd0-40dc-aab9-64fab2e7f79e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10245" - ], - "x-ms-correlation-request-id": [ - "da2c4dc6-c888-486f-96db-3ea4678da788" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220429Z:da2c4dc6-c888-486f-96db-3ea4678da788" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8949f8cc-856f-4d42-8bfb-7930aded7ed4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10244" - ], - "x-ms-correlation-request-id": [ - "732693d0-03c9-43e6-ad58-db524e201c15" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220429Z:732693d0-03c9-43e6-ad58-db524e201c15" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22f04787-0cde-48c4-8649-39cc51e88a45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10243" - ], - "x-ms-correlation-request-id": [ - "5d8cf52c-014d-400c-9b61-7faa3e624a78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220429Z:5d8cf52c-014d-400c-9b61-7faa3e624a78" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f2966fc-2f33-4247-91bf-54e224d10e25" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10242" - ], - "x-ms-correlation-request-id": [ - "71ea1ef0-4aab-4b61-8e0b-8ad6cfd66c1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220429Z:71ea1ef0-4aab-4b61-8e0b-8ad6cfd66c1c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a0d8776-68d8-4510-9078-f6e491a5a360" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10241" - ], - "x-ms-correlation-request-id": [ - "fb526a8e-143c-45be-805b-1e315f1aec97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220429Z:fb526a8e-143c-45be-805b-1e315f1aec97" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c9e08e5-720e-4ef8-b2a7-bcf02fe393df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10240" - ], - "x-ms-correlation-request-id": [ - "6d03c3ed-0304-45ee-8cfa-924b6d7cd907" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220429Z:6d03c3ed-0304-45ee-8cfa-924b6d7cd907" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf27174c-c3f2-4cb8-b7f4-aea329af2f3e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10239" - ], - "x-ms-correlation-request-id": [ - "00314011-6be1-4eef-837c-0a731c4d8746" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220430Z:00314011-6be1-4eef-837c-0a731c4d8746" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c435bd12-52e8-4949-b61e-6bc96376a7ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10238" - ], - "x-ms-correlation-request-id": [ - "d4ee49d1-922e-4892-a02f-feac352b4f6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220430Z:d4ee49d1-922e-4892-a02f-feac352b4f6f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "971f15f0-e296-4627-b205-975e238f6a7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10237" - ], - "x-ms-correlation-request-id": [ - "c6f02033-9caf-4646-9faf-000fb73210c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220430Z:c6f02033-9caf-4646-9faf-000fb73210c0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "799f5abe-5d09-4cc9-88e1-89fc8dfcef2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10236" - ], - "x-ms-correlation-request-id": [ - "849dc49b-92fd-432c-b157-75183ccc1079" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220430Z:849dc49b-92fd-432c-b157-75183ccc1079" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e9985c9b-a585-4237-9caf-6107d46c750a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10235" - ], - "x-ms-correlation-request-id": [ - "8e35e896-762d-402b-bd5a-411cf8a20a57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220430Z:8e35e896-762d-402b-bd5a-411cf8a20a57" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76be1b55-fe3e-4c22-b582-30b350398120" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10234" - ], - "x-ms-correlation-request-id": [ - "49071fe1-355d-4547-a9c7-eaaf6530b30c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220430Z:49071fe1-355d-4547-a9c7-eaaf6530b30c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2ac6963-fa3d-4e52-a49d-8aa318380421" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10233" - ], - "x-ms-correlation-request-id": [ - "97cee033-10a0-4f63-8174-eb425d279207" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220431Z:97cee033-10a0-4f63-8174-eb425d279207" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c20e9c67-f67b-47a6-9dd6-90f2839d215c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10232" - ], - "x-ms-correlation-request-id": [ - "392b9602-6293-4958-900a-27e341871ccf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220431Z:392b9602-6293-4958-900a-27e341871ccf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "632f87c4-0370-462a-b769-4d140ca4f30c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10231" - ], - "x-ms-correlation-request-id": [ - "1e4fb9b2-e645-4266-aa5e-ee907c70d142" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220431Z:1e4fb9b2-e645-4266-aa5e-ee907c70d142" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1542b7ea-bf69-44ad-8e22-e5cdab1d480f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10230" - ], - "x-ms-correlation-request-id": [ - "93a74858-6bca-4bcc-bc94-6c71a2f6aef4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220431Z:93a74858-6bca-4bcc-bc94-6c71a2f6aef4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a1f588d-e51b-4c14-b112-f5daac505327" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10229" - ], - "x-ms-correlation-request-id": [ - "fcc986f4-e2da-4444-8dcd-d784b123a50b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220431Z:fcc986f4-e2da-4444-8dcd-d784b123a50b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70696c2c-f347-481f-a29c-28abea8a6d43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10228" - ], - "x-ms-correlation-request-id": [ - "752ed432-13b6-417e-add0-088214fb4628" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220432Z:752ed432-13b6-417e-add0-088214fb4628" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f50ecfe-4792-41ab-9134-535f256d6cf9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10227" - ], - "x-ms-correlation-request-id": [ - "63444844-232b-4fd8-953b-062a5f0ee54d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220432Z:63444844-232b-4fd8-953b-062a5f0ee54d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed154577-2347-4d87-a291-3d2dd7af4f3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10226" - ], - "x-ms-correlation-request-id": [ - "a1e51a6a-e3fb-4043-b793-18232552a8e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220432Z:a1e51a6a-e3fb-4043-b793-18232552a8e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8149a8b5-f388-42c8-ac76-b4d13280ea19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10225" - ], - "x-ms-correlation-request-id": [ - "9348bd23-e0f7-4857-8afe-e2a5f54fd834" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220432Z:9348bd23-e0f7-4857-8afe-e2a5f54fd834" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c97e3147-185c-4180-b630-b110f1d1e362" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10224" - ], - "x-ms-correlation-request-id": [ - "e3ed0309-03a8-4300-9010-c61b118e376c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220433Z:e3ed0309-03a8-4300-9010-c61b118e376c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b3b0c11-6e19-49d7-9e18-8e7c9620021b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10223" - ], - "x-ms-correlation-request-id": [ - "4a1810dc-9755-4d31-90d1-e09111f1352d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220433Z:4a1810dc-9755-4d31-90d1-e09111f1352d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9cb958b-abb9-4eba-95f7-3289afd3eb81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10222" - ], - "x-ms-correlation-request-id": [ - "1d1bcea3-1d9a-4f23-8ee2-a15d3208c0eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220433Z:1d1bcea3-1d9a-4f23-8ee2-a15d3208c0eb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "478efa9b-aa1b-4fa8-9680-cb9b55359324" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10221" - ], - "x-ms-correlation-request-id": [ - "29a52c47-ffa2-44e4-a106-23dad055da8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220433Z:29a52c47-ffa2-44e4-a106-23dad055da8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1682e244-42fd-46c0-b2a6-cc804e0b7da3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10220" - ], - "x-ms-correlation-request-id": [ - "e759f3c1-9d57-4314-bf4e-779d1321cbed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220433Z:e759f3c1-9d57-4314-bf4e-779d1321cbed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb37fbd8-7b05-41f9-8a45-d1cf7b5b7f29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10219" - ], - "x-ms-correlation-request-id": [ - "b5bef588-b270-471d-8b48-6af1535f93fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220434Z:b5bef588-b270-471d-8b48-6af1535f93fb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f89130d-9f7c-4d46-8dec-f79270c84688" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10218" - ], - "x-ms-correlation-request-id": [ - "af676c48-63b2-4b4e-9589-59bfc710e33d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220434Z:af676c48-63b2-4b4e-9589-59bfc710e33d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a24aa1eb-6dea-4f64-9133-00c0d58d62cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10217" - ], - "x-ms-correlation-request-id": [ - "1e360039-47cd-421d-a5b2-d4981ee67616" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220434Z:1e360039-47cd-421d-a5b2-d4981ee67616" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1cc446fb-bde0-40fb-9d14-41fd7052f2f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10216" - ], - "x-ms-correlation-request-id": [ - "3eefd129-64fb-4f0f-a110-2563b2af1869" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220434Z:3eefd129-64fb-4f0f-a110-2563b2af1869" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c9f4bbc-b87e-4993-897a-f24b53ffe0ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10215" - ], - "x-ms-correlation-request-id": [ - "d9c33718-5c3e-4f9f-9f1a-82d15f3c6abd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220434Z:d9c33718-5c3e-4f9f-9f1a-82d15f3c6abd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "919840aa-06a0-44f4-ad2b-7fd70652aecd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10214" - ], - "x-ms-correlation-request-id": [ - "38732854-74ff-4060-8c4c-3d8e83420385" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220434Z:38732854-74ff-4060-8c4c-3d8e83420385" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61de6e12-7d0f-4214-bd5b-bc1f6dd1ea5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10213" - ], - "x-ms-correlation-request-id": [ - "0cda0322-c7f0-4b64-92a4-99abe7878f1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220435Z:0cda0322-c7f0-4b64-92a4-99abe7878f1b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a12af533-362b-43fd-9a97-5ed80113b2a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10212" - ], - "x-ms-correlation-request-id": [ - "4438d62b-71d9-4330-874d-65fbdfe7c7f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220435Z:4438d62b-71d9-4330-874d-65fbdfe7c7f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3dde5f37-8468-4438-b9b0-82cef1b35e21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10211" - ], - "x-ms-correlation-request-id": [ - "6b8b3daf-3bb6-41d0-ac53-96d0a8c0d92a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220435Z:6b8b3daf-3bb6-41d0-ac53-96d0a8c0d92a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "afb44e0b-2bbc-4c00-8b38-5c82a9f5167e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10210" - ], - "x-ms-correlation-request-id": [ - "4d3c0e1b-ac99-4c46-8dd2-b10ca4ab4349" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220435Z:4d3c0e1b-ac99-4c46-8dd2-b10ca4ab4349" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7bb506ee-62c1-41f9-b84a-7f8a5caafefd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10209" - ], - "x-ms-correlation-request-id": [ - "e6011ebb-53e3-4d49-affd-d01baf32ec06" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220435Z:e6011ebb-53e3-4d49-affd-d01baf32ec06" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b06175d8-a972-4403-81b2-c2978be5ba44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10208" - ], - "x-ms-correlation-request-id": [ - "d9dc3826-454d-40d5-86f8-db0be763fb54" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220435Z:d9dc3826-454d-40d5-86f8-db0be763fb54" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79e66d0e-6066-4a95-82d7-248483cf3f92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10207" - ], - "x-ms-correlation-request-id": [ - "cc7598eb-5e75-4eb7-be42-0d5f45b2cd75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220436Z:cc7598eb-5e75-4eb7-be42-0d5f45b2cd75" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "26a7995e-560d-4493-829a-28d8bc728b1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10206" - ], - "x-ms-correlation-request-id": [ - "87e1224e-047d-4d87-8723-1651a30081dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220436Z:87e1224e-047d-4d87-8723-1651a30081dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc6e92ab-ee94-45a0-b591-3f7bf8c2fbf8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10205" - ], - "x-ms-correlation-request-id": [ - "ef7e1921-249b-4f51-a161-63a69426381e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220436Z:ef7e1921-249b-4f51-a161-63a69426381e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c92780a-fc5f-4c64-bb27-4528db0fe2d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10204" - ], - "x-ms-correlation-request-id": [ - "57548644-beab-4189-80e6-a915ca2b7513" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220436Z:57548644-beab-4189-80e6-a915ca2b7513" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f896cbc7-6dfd-45d7-85d6-47ea99de9758" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10203" - ], - "x-ms-correlation-request-id": [ - "7da7848e-f090-431e-9bf7-55eda60d56a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220436Z:7da7848e-f090-431e-9bf7-55eda60d56a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a096099-dd76-40db-a1dd-0287e058d958" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10202" - ], - "x-ms-correlation-request-id": [ - "64031ae2-9277-4fb7-894a-154e7d827cf2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220436Z:64031ae2-9277-4fb7-894a-154e7d827cf2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2825a41-2929-4ca9-b52c-8de3a4653f3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10201" - ], - "x-ms-correlation-request-id": [ - "52aaba5d-59de-4819-b4d7-b8eaf9fdc8f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220436Z:52aaba5d-59de-4819-b4d7-b8eaf9fdc8f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4bbd7340-6300-4c29-9e5c-927f4f3d029d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10200" - ], - "x-ms-correlation-request-id": [ - "ad5c2677-6ec5-4b20-8903-1efcc57cb5f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220437Z:ad5c2677-6ec5-4b20-8903-1efcc57cb5f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77b10822-64eb-47a0-ad7a-fdabd9bb493d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10199" - ], - "x-ms-correlation-request-id": [ - "88c96150-7911-4c95-bac3-3c81d395864b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220437Z:88c96150-7911-4c95-bac3-3c81d395864b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aaf0dfef-5b0c-41a2-b9d8-d36ae306ac61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10198" - ], - "x-ms-correlation-request-id": [ - "edddadb2-07da-4a78-bfa9-0d26e414232e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220437Z:edddadb2-07da-4a78-bfa9-0d26e414232e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6befe395-f16d-4aaa-a8db-f2e86684135d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10197" - ], - "x-ms-correlation-request-id": [ - "651d5867-e820-44c7-bcc8-3378af9ed895" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220437Z:651d5867-e820-44c7-bcc8-3378af9ed895" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dbe3b8b3-b087-415e-8df9-01abb91d1af4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10196" - ], - "x-ms-correlation-request-id": [ - "88766509-4799-4882-bad8-3717cd948104" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220437Z:88766509-4799-4882-bad8-3717cd948104" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b94e607c-c061-4856-abe5-f986f3b7dbfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10195" - ], - "x-ms-correlation-request-id": [ - "910a658c-2cdd-443e-ba19-a2ee9b352460" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220438Z:910a658c-2cdd-443e-ba19-a2ee9b352460" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efa8b09a-683e-485c-af4b-eff096311796" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10194" - ], - "x-ms-correlation-request-id": [ - "b19e6bf4-a2eb-41f0-8564-681695aee4fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220438Z:b19e6bf4-a2eb-41f0-8564-681695aee4fa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b9bb0ee-1041-46f2-9953-7fc497239149" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10193" - ], - "x-ms-correlation-request-id": [ - "5d28cd6e-5d22-47a1-a463-5460f718f862" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220438Z:5d28cd6e-5d22-47a1-a463-5460f718f862" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47217c8e-0735-4fe5-a859-4073353f4aa3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10192" - ], - "x-ms-correlation-request-id": [ - "9586489d-2501-4729-93ec-419afeaa47f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220438Z:9586489d-2501-4729-93ec-419afeaa47f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "382c728b-579d-499c-b7ce-0f087edb3620" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10191" - ], - "x-ms-correlation-request-id": [ - "e0097afd-e08d-43bf-a218-b0c888badf4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220438Z:e0097afd-e08d-43bf-a218-b0c888badf4c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "58d8c47e-7d22-4b77-9807-a1819a668e98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10190" - ], - "x-ms-correlation-request-id": [ - "f81a8179-2d24-490f-a8c3-dfd55e0b97cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220438Z:f81a8179-2d24-490f-a8c3-dfd55e0b97cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "685be751-1c93-4f13-96af-e35c59930ea8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10189" - ], - "x-ms-correlation-request-id": [ - "47f1ff5e-938a-4d3d-a8ea-54bc5af5db4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220438Z:47f1ff5e-938a-4d3d-a8ea-54bc5af5db4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "616b9fc3-ccf0-4263-b3a7-c298a0970c2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10188" - ], - "x-ms-correlation-request-id": [ - "f1548085-a680-46ee-9302-dadfe86845e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220439Z:f1548085-a680-46ee-9302-dadfe86845e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44b57aaf-5734-44e8-8fe3-911f7ba09aef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10187" - ], - "x-ms-correlation-request-id": [ - "d439d703-a0ac-4856-8b6d-6b02e0ed608e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220439Z:d439d703-a0ac-4856-8b6d-6b02e0ed608e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4398980-3a4e-445b-8083-1dd90c8fda41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10186" - ], - "x-ms-correlation-request-id": [ - "d32c31c4-7fe7-4549-8f94-e88f63355f6e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220439Z:d32c31c4-7fe7-4549-8f94-e88f63355f6e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7248621-5ae5-447a-b762-40363ee09f1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10185" - ], - "x-ms-correlation-request-id": [ - "e683a868-bf3b-428a-b312-28d1ebb87250" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220439Z:e683a868-bf3b-428a-b312-28d1ebb87250" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "338aaf9e-c61e-46a7-ac6b-15ed4dfdd31a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10184" - ], - "x-ms-correlation-request-id": [ - "d99a3653-583d-415a-95b9-84fbdc51c5a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220439Z:d99a3653-583d-415a-95b9-84fbdc51c5a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97297ba6-150a-4860-a958-b52cd3226799" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10183" - ], - "x-ms-correlation-request-id": [ - "5fe96460-db16-4b30-a0db-abed1bfbeb6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220440Z:5fe96460-db16-4b30-a0db-abed1bfbeb6c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61556ba5-d535-4507-a604-1fec187355ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10182" - ], - "x-ms-correlation-request-id": [ - "e8964c21-fb68-423a-b139-96e990c59c89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220440Z:e8964c21-fb68-423a-b139-96e990c59c89" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3dd841d7-9a2b-4988-9c30-c47398db004c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10181" - ], - "x-ms-correlation-request-id": [ - "84189970-607a-48dd-9786-0ed1a6ee116b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220440Z:84189970-607a-48dd-9786-0ed1a6ee116b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d51db5ee-25e8-43e8-98f2-1af19ea5fd75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10180" - ], - "x-ms-correlation-request-id": [ - "9e9b76a4-f595-47f4-99ca-90be3f5a06d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220440Z:9e9b76a4-f595-47f4-99ca-90be3f5a06d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c041a53a-b007-43b2-ae27-16aaef72ca11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10179" - ], - "x-ms-correlation-request-id": [ - "74ffd7f1-a4fa-4284-9516-5fbdb46ff9de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220440Z:74ffd7f1-a4fa-4284-9516-5fbdb46ff9de" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "58ddc66c-1218-4400-8f07-88c481238ffa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10178" - ], - "x-ms-correlation-request-id": [ - "ee2757c8-bcb4-4829-be1f-c24ce5c26301" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220440Z:ee2757c8-bcb4-4829-be1f-c24ce5c26301" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63feea4e-ff64-4c02-83a3-a150c8b83d75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10177" - ], - "x-ms-correlation-request-id": [ - "9aa2fdb6-3854-4bfd-b57d-f02643200748" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220440Z:9aa2fdb6-3854-4bfd-b57d-f02643200748" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ecee387-1894-4ecc-a2c7-7e88c9bf5af7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10176" - ], - "x-ms-correlation-request-id": [ - "d498fb44-c8d0-42a4-9663-eabb99e8029a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220441Z:d498fb44-c8d0-42a4-9663-eabb99e8029a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b168ae88-e042-470f-aeae-36a6f42fb2fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10175" - ], - "x-ms-correlation-request-id": [ - "5e0c4883-9a4c-4470-b75b-456d7d21dbfd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220441Z:5e0c4883-9a4c-4470-b75b-456d7d21dbfd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "934a4adc-4b45-401b-a1fd-fa4f45be8d94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10174" - ], - "x-ms-correlation-request-id": [ - "720ff924-ce10-4e72-8b7f-d80595f8f70e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220441Z:720ff924-ce10-4e72-8b7f-d80595f8f70e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d68d063-694f-4b39-aec5-a517640f20a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10173" - ], - "x-ms-correlation-request-id": [ - "346a8631-f289-48a9-80b6-8bf05a3a7c71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220441Z:346a8631-f289-48a9-80b6-8bf05a3a7c71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ecddd88-5cb4-45c5-a69e-34e4f45f1965" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10172" - ], - "x-ms-correlation-request-id": [ - "a1684bf6-9d47-4d7e-a3b0-3322e960cd22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220441Z:a1684bf6-9d47-4d7e-a3b0-3322e960cd22" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6edbbeb-eb0d-43fc-a5fe-ee8e1b8deab0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10171" - ], - "x-ms-correlation-request-id": [ - "1c0129bb-844b-4bcb-83bc-1981b3e345b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220441Z:1c0129bb-844b-4bcb-83bc-1981b3e345b7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91cc4a4a-3286-497d-ab9e-54b2d05a5311" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10170" - ], - "x-ms-correlation-request-id": [ - "c74f63a2-9f26-45b7-adce-ba1e96d2947f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220441Z:c74f63a2-9f26-45b7-adce-ba1e96d2947f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca3f2053-e042-40b9-988c-9835524bf373" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10169" - ], - "x-ms-correlation-request-id": [ - "570b0977-e46e-4e6b-88f3-a0fe794437c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220442Z:570b0977-e46e-4e6b-88f3-a0fe794437c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f187a65d-32f2-4e3c-ae02-06f73fde4e7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10168" - ], - "x-ms-correlation-request-id": [ - "ee410229-a433-41e1-a875-26a41ec0cf60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220442Z:ee410229-a433-41e1-a875-26a41ec0cf60" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca6e73fd-1065-464f-b788-ef32ea47dc6b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10167" - ], - "x-ms-correlation-request-id": [ - "00000396-6dc2-4f77-a51a-2412910514e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220442Z:00000396-6dc2-4f77-a51a-2412910514e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28cef706-ae6e-4e8c-866e-ed0876294d22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10166" - ], - "x-ms-correlation-request-id": [ - "d73d56b3-f8d4-4801-bb01-42c9985a8df2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220442Z:d73d56b3-f8d4-4801-bb01-42c9985a8df2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e554efd1-8460-4ea4-838d-1312ac621a12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10165" - ], - "x-ms-correlation-request-id": [ - "bba5629b-af99-4c9d-9af8-ffac3de58061" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220442Z:bba5629b-af99-4c9d-9af8-ffac3de58061" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92aaf829-d7e5-4de5-aae2-066e9922f42e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10164" - ], - "x-ms-correlation-request-id": [ - "923f282f-301a-491c-9e38-2891dea4ca14" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220442Z:923f282f-301a-491c-9e38-2891dea4ca14" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1c45266-d5c1-47f8-94f4-a23d516484ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10163" - ], - "x-ms-correlation-request-id": [ - "434d7846-c05c-41f0-90f8-807983efd71f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220443Z:434d7846-c05c-41f0-90f8-807983efd71f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b3254e9a-84c0-4db7-aedc-059e299318f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10162" - ], - "x-ms-correlation-request-id": [ - "355d4569-b9f0-418a-8024-70d459325919" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220443Z:355d4569-b9f0-418a-8024-70d459325919" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2299979-b64c-499e-b48c-b7de95267ccf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10161" - ], - "x-ms-correlation-request-id": [ - "e14edc5e-04ca-4e32-90ab-99e2e0ffe683" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220443Z:e14edc5e-04ca-4e32-90ab-99e2e0ffe683" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18a32977-1de3-4f0e-91e9-11062fa5ea5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10160" - ], - "x-ms-correlation-request-id": [ - "b15a723e-cc17-485b-b82b-3fd6f7cf1a97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220443Z:b15a723e-cc17-485b-b82b-3fd6f7cf1a97" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94aad9f1-ef75-48a4-aad7-9c7a9710907b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10159" - ], - "x-ms-correlation-request-id": [ - "22cab15c-46af-4029-ac46-63246dba6b10" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220443Z:22cab15c-46af-4029-ac46-63246dba6b10" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85aea2f9-40f0-4604-b99e-27f9d52d5f46" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10158" - ], - "x-ms-correlation-request-id": [ - "8e88a194-2291-4050-8bef-4e55e6a0fe82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220443Z:8e88a194-2291-4050-8bef-4e55e6a0fe82" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "101a1806-b459-4295-b454-66077efe14f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10157" - ], - "x-ms-correlation-request-id": [ - "c313ce29-22a7-438c-a265-18207a197ea5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220444Z:c313ce29-22a7-438c-a265-18207a197ea5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48d2203e-bd8a-40a5-8a1a-d400413f3d02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10156" - ], - "x-ms-correlation-request-id": [ - "64c910bb-6211-47c2-ae94-7aead1fc2014" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220444Z:64c910bb-6211-47c2-ae94-7aead1fc2014" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88c163dc-aeeb-4a33-8a54-a9e5649cc95b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10155" - ], - "x-ms-correlation-request-id": [ - "347eb602-93b0-4fa8-92f6-cc28b10fba39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220444Z:347eb602-93b0-4fa8-92f6-cc28b10fba39" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a138a01-ecf1-466f-a7ac-0c4759fd85fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10154" - ], - "x-ms-correlation-request-id": [ - "8adbd305-1ae7-4188-8361-7b03765d9bb6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220444Z:8adbd305-1ae7-4188-8361-7b03765d9bb6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "180e9072-6222-4744-bbbc-bd5bf178adf4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10153" - ], - "x-ms-correlation-request-id": [ - "cd386023-95f7-49b8-9bcc-6a2e90c69f26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220444Z:cd386023-95f7-49b8-9bcc-6a2e90c69f26" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b44e99dc-d809-4916-afe9-54b601cf204a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10152" - ], - "x-ms-correlation-request-id": [ - "94b257d2-da65-4613-86a8-1463aa4d4441" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220444Z:94b257d2-da65-4613-86a8-1463aa4d4441" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b376bd5-a714-4364-b15b-ef98a36bcfd5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10151" - ], - "x-ms-correlation-request-id": [ - "4a048907-ec7d-4663-bc65-01456330ba83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220444Z:4a048907-ec7d-4663-bc65-01456330ba83" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24cc71ab-129c-451d-98ab-4b3e3856e490" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10150" - ], - "x-ms-correlation-request-id": [ - "7c93c96f-724e-41e9-b7e4-76d3118b3a1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220445Z:7c93c96f-724e-41e9-b7e4-76d3118b3a1f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80d22639-14a5-40bd-a745-58a1848ff78b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10149" - ], - "x-ms-correlation-request-id": [ - "93cb046a-54a4-4615-b5ed-7cfdd3f1c8ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220445Z:93cb046a-54a4-4615-b5ed-7cfdd3f1c8ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87f8e088-3a19-411b-951a-cc3610f32cb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10148" - ], - "x-ms-correlation-request-id": [ - "db8d4a02-71c5-4dac-ba11-2036bf7baf98" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220445Z:db8d4a02-71c5-4dac-ba11-2036bf7baf98" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "438ba776-e47e-4cf8-a26e-22e97cbfbfa7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10147" - ], - "x-ms-correlation-request-id": [ - "e9ddd8cd-aa7a-4bd5-b669-b231beeff67f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220445Z:e9ddd8cd-aa7a-4bd5-b669-b231beeff67f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a106ae6c-fd2d-4957-8b9f-9e07092a46c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10146" - ], - "x-ms-correlation-request-id": [ - "30e70f6a-b2f8-4f23-8157-4ebb1a80880f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220445Z:30e70f6a-b2f8-4f23-8157-4ebb1a80880f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a13e54b8-08fd-4b95-8130-a08ec86f234d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10145" - ], - "x-ms-correlation-request-id": [ - "700c264a-79d3-4bbd-bcbe-842857cd6316" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220445Z:700c264a-79d3-4bbd-bcbe-842857cd6316" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2bd51d4f-8661-4b65-a54a-f9b0617b9292" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10144" - ], - "x-ms-correlation-request-id": [ - "6b128e10-5c1c-4157-a756-c0e7cb3b269e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220445Z:6b128e10-5c1c-4157-a756-c0e7cb3b269e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1fc3d73-e232-4482-bea8-242688bae069" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10143" - ], - "x-ms-correlation-request-id": [ - "464364d6-33df-49d3-83e1-1bbd8808cd8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220446Z:464364d6-33df-49d3-83e1-1bbd8808cd8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee3914c5-5dea-4458-afbd-7646b08e821a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10142" - ], - "x-ms-correlation-request-id": [ - "dcf75067-c30d-497d-aab7-1fb7abc5522c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220446Z:dcf75067-c30d-497d-aab7-1fb7abc5522c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65f7595b-b6cf-4685-b29b-261cb398f8e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10141" - ], - "x-ms-correlation-request-id": [ - "ce5291c8-6cfc-430e-9bba-5d5acc748a07" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220446Z:ce5291c8-6cfc-430e-9bba-5d5acc748a07" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a69fc616-8a8e-46f8-b3f1-7b7ce02936fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10140" - ], - "x-ms-correlation-request-id": [ - "a78efda6-f834-43a4-9dc0-43641630aa72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220446Z:a78efda6-f834-43a4-9dc0-43641630aa72" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95716a33-a6cd-4ee9-85ef-718d99b6b7ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10139" - ], - "x-ms-correlation-request-id": [ - "d2619f31-2a39-43b1-abba-afa405b9436f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220446Z:d2619f31-2a39-43b1-abba-afa405b9436f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "639fd38a-ecf1-44bc-82cf-63a597ec1613" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10138" - ], - "x-ms-correlation-request-id": [ - "3970f86d-086d-4a36-ac25-714b0c7594ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220446Z:3970f86d-086d-4a36-ac25-714b0c7594ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad599c14-70f1-4ac0-a29c-fe4b2cdac2d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10137" - ], - "x-ms-correlation-request-id": [ - "3d2dab18-e58f-499f-9377-b042b47506c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220447Z:3d2dab18-e58f-499f-9377-b042b47506c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dfe7866c-7665-4b12-8a78-3c14dd647c00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10136" - ], - "x-ms-correlation-request-id": [ - "c2ae5918-4663-4bd0-a648-8d1b6071ae85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220447Z:c2ae5918-4663-4bd0-a648-8d1b6071ae85" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc4b975c-fd46-45c1-b453-8b49e19dacc0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10135" - ], - "x-ms-correlation-request-id": [ - "9d5eda26-9db3-4cd8-983b-0425753b7fda" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220447Z:9d5eda26-9db3-4cd8-983b-0425753b7fda" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3afc5db-1e6f-48b5-8723-3eedd5aa7ecb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10134" - ], - "x-ms-correlation-request-id": [ - "912bed24-fa42-4dfd-b344-19f9e0d59816" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220447Z:912bed24-fa42-4dfd-b344-19f9e0d59816" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "247abe95-14af-4b1a-b160-bbfb636249e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10133" - ], - "x-ms-correlation-request-id": [ - "50b95782-0341-4bd7-aa72-18dde5635260" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220447Z:50b95782-0341-4bd7-aa72-18dde5635260" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e07df97-54d6-420e-b761-c486154a7d82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10132" - ], - "x-ms-correlation-request-id": [ - "e7eebdbc-f79d-4f7e-8f97-864a27215f25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220447Z:e7eebdbc-f79d-4f7e-8f97-864a27215f25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6becee7-ca68-4fed-b0bd-7e087396c085" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10131" - ], - "x-ms-correlation-request-id": [ - "e3dae4d6-46d4-48fb-82d0-5eaaa71b2065" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220448Z:e3dae4d6-46d4-48fb-82d0-5eaaa71b2065" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d20474c2-6ca5-40b2-8038-f7e31124d336" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10130" - ], - "x-ms-correlation-request-id": [ - "4d5f9922-9fdd-4c4d-987d-4b1105fb64c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220448Z:4d5f9922-9fdd-4c4d-987d-4b1105fb64c9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69862035-d577-4102-b2f5-ae691d5f3716" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10129" - ], - "x-ms-correlation-request-id": [ - "8014d980-f253-4f6b-acd6-bafc16fc19e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220448Z:8014d980-f253-4f6b-acd6-bafc16fc19e1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e6d618e-d575-471a-84f4-0aa98ac1e43e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10128" - ], - "x-ms-correlation-request-id": [ - "f60ee3e0-cda5-4f19-ac21-3b06d39427c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220448Z:f60ee3e0-cda5-4f19-ac21-3b06d39427c9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a50206a-1806-4dfd-870d-ceed37cfccbb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10127" - ], - "x-ms-correlation-request-id": [ - "e2cbed08-a937-4ec4-8728-d83153dc943e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220448Z:e2cbed08-a937-4ec4-8728-d83153dc943e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f724beb7-e273-4e48-818d-2a0f27e84baf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10126" - ], - "x-ms-correlation-request-id": [ - "2d99f425-5d71-48db-9783-8743893b537c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220449Z:2d99f425-5d71-48db-9783-8743893b537c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38090a63-8566-4714-869e-5c5907498ab4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10125" - ], - "x-ms-correlation-request-id": [ - "4b40903d-ee77-49d8-9ce0-2a37635db4a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220449Z:4b40903d-ee77-49d8-9ce0-2a37635db4a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d993f3e5-2c83-48b9-9c2c-58e4defe4435" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10124" - ], - "x-ms-correlation-request-id": [ - "67dfe354-39df-4a02-af6c-7e045f8d4bc0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220449Z:67dfe354-39df-4a02-af6c-7e045f8d4bc0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf2d5a2a-7a23-4fd1-b80a-ea4362930493" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10123" - ], - "x-ms-correlation-request-id": [ - "c5ce88c5-a47e-4ae2-9ddc-ccc43a5ce9fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220449Z:c5ce88c5-a47e-4ae2-9ddc-ccc43a5ce9fb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81305872-5433-4521-8ee7-26f813942a98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10122" - ], - "x-ms-correlation-request-id": [ - "26bb694a-1fd1-474d-af51-c074adecf147" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220449Z:26bb694a-1fd1-474d-af51-c074adecf147" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e40f6d90-3f07-49a5-912c-143d352c187b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10121" - ], - "x-ms-correlation-request-id": [ - "9615ba67-2258-422b-8fbb-c039509c29be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220449Z:9615ba67-2258-422b-8fbb-c039509c29be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fedb5f69-233d-42d8-a550-4cf0a513c5b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10120" - ], - "x-ms-correlation-request-id": [ - "706614df-6b19-481e-9416-ead4978ae53c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220450Z:706614df-6b19-481e-9416-ead4978ae53c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33bce5c8-2195-4b54-ac5e-2a9d2f842405" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10119" - ], - "x-ms-correlation-request-id": [ - "10d0c65d-382e-4474-b8ee-b017020ae101" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220450Z:10d0c65d-382e-4474-b8ee-b017020ae101" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29a2ebcf-1935-47ae-ba2e-5bf0338b0d5f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10118" - ], - "x-ms-correlation-request-id": [ - "c0be39e9-0b30-4d02-b031-678cd6e8f35d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220450Z:c0be39e9-0b30-4d02-b031-678cd6e8f35d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6222489-66ac-4f49-83c6-83a608890748" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10117" - ], - "x-ms-correlation-request-id": [ - "5d243591-b49d-4f9b-a532-f43c79ef6f0a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220450Z:5d243591-b49d-4f9b-a532-f43c79ef6f0a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e443c2f2-571f-481f-9253-e0ed72c39dab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10116" - ], - "x-ms-correlation-request-id": [ - "15ad4702-07aa-4036-92e9-9aa4f6ae6f8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220450Z:15ad4702-07aa-4036-92e9-9aa4f6ae6f8c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3beff38-d341-4a3b-99cf-778042e128df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10115" - ], - "x-ms-correlation-request-id": [ - "3f3bd7bb-726b-4fa1-9aa1-fa2f74eefe98" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220450Z:3f3bd7bb-726b-4fa1-9aa1-fa2f74eefe98" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8964988-008c-4a27-98ef-55fb51e11aa2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10114" - ], - "x-ms-correlation-request-id": [ - "000cd5a8-bfe4-4e14-bcb2-245494e16813" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220451Z:000cd5a8-bfe4-4e14-bcb2-245494e16813" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca241918-158b-4862-add7-9b7a433c1803" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10113" - ], - "x-ms-correlation-request-id": [ - "a523a93f-e762-4672-b975-95b30a996cc7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220451Z:a523a93f-e762-4672-b975-95b30a996cc7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc42a7bb-b77f-48f9-aa7a-da4a6fb65353" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10112" - ], - "x-ms-correlation-request-id": [ - "5b417bff-731a-448d-a84c-73653758faac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220451Z:5b417bff-731a-448d-a84c-73653758faac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ac3152e-fe32-4a09-9515-8c309c8f7905" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10111" - ], - "x-ms-correlation-request-id": [ - "5d5a970b-e63d-4747-8028-37a705a866ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220451Z:5d5a970b-e63d-4747-8028-37a705a866ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "374a12b5-7e69-4bc9-b98d-3e1216dc3445" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10110" - ], - "x-ms-correlation-request-id": [ - "9ef1d743-38ab-4638-b0c9-dc12e9ac4763" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220451Z:9ef1d743-38ab-4638-b0c9-dc12e9ac4763" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41266a7c-6976-434e-b441-db5b9a72c4ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10109" - ], - "x-ms-correlation-request-id": [ - "1dbc2406-71e3-4e08-94d7-1e9d0ee83909" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220451Z:1dbc2406-71e3-4e08-94d7-1e9d0ee83909" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6aaf369d-990f-40c0-b9e8-513327057e23" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10108" - ], - "x-ms-correlation-request-id": [ - "3dfa1765-45da-4eeb-92ac-3e81230d62c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220452Z:3dfa1765-45da-4eeb-92ac-3e81230d62c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1504234a-c14f-4ac9-bac8-da5fe72d7556" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10107" - ], - "x-ms-correlation-request-id": [ - "3b959def-6db8-4ab5-a6ea-2919dcfc1c2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220452Z:3b959def-6db8-4ab5-a6ea-2919dcfc1c2c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b612257d-5aca-4e2a-91b3-a58b11655be5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10106" - ], - "x-ms-correlation-request-id": [ - "e671e77c-e212-4503-895f-00f8a519f286" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220452Z:e671e77c-e212-4503-895f-00f8a519f286" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd363656-531f-440d-9c6d-806beb08d1db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10105" - ], - "x-ms-correlation-request-id": [ - "677f889d-ad94-4eab-9113-6ad4d8ea3139" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220452Z:677f889d-ad94-4eab-9113-6ad4d8ea3139" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c716ae9f-ff90-4080-9fee-79f20e9a530e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10104" - ], - "x-ms-correlation-request-id": [ - "96ae03d9-9a25-4a0d-98f2-a6ff55205567" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220452Z:96ae03d9-9a25-4a0d-98f2-a6ff55205567" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0898735f-6776-4062-ab5f-97bf6843bc3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10103" - ], - "x-ms-correlation-request-id": [ - "090c96dc-fa14-455c-b9ad-1f585310b581" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220452Z:090c96dc-fa14-455c-b9ad-1f585310b581" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4d3fbbe-d4f1-4d3b-9778-136b78777b68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10102" - ], - "x-ms-correlation-request-id": [ - "54d17783-cc6c-42a1-a4e0-da6d07449219" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220452Z:54d17783-cc6c-42a1-a4e0-da6d07449219" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d07e855-aca9-41fa-90b8-70c762402ea5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10101" - ], - "x-ms-correlation-request-id": [ - "9e169d81-40b3-4a6a-8fd8-b11244e8ef9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220453Z:9e169d81-40b3-4a6a-8fd8-b11244e8ef9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "094005c7-d33e-4564-8368-f5427cfbbaa8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10100" - ], - "x-ms-correlation-request-id": [ - "bf9dd0e1-906f-490d-ae35-47225cb5136f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220453Z:bf9dd0e1-906f-490d-ae35-47225cb5136f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5ffd93f-8e63-4812-9055-c57295e44773" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10099" - ], - "x-ms-correlation-request-id": [ - "3df60ca8-ccb5-4014-8c33-b09a582d22e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220453Z:3df60ca8-ccb5-4014-8c33-b09a582d22e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "056f122d-802b-46c0-9a1a-9dbcd783c072" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10098" - ], - "x-ms-correlation-request-id": [ - "08d3f69c-b28e-4c51-9ea7-53aa9d6dc8a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220453Z:08d3f69c-b28e-4c51-9ea7-53aa9d6dc8a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1be7de8-267f-4dec-ba9d-1611b0541fc9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10097" - ], - "x-ms-correlation-request-id": [ - "61d58ac5-138a-408c-88a6-96cbc9d92c33" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220453Z:61d58ac5-138a-408c-88a6-96cbc9d92c33" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "445dba08-3006-4da1-857f-d662297be2b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10096" - ], - "x-ms-correlation-request-id": [ - "16aeee37-7cab-4530-b6e6-3fce17350173" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220453Z:16aeee37-7cab-4530-b6e6-3fce17350173" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff559d7e-8f95-4518-ad7a-8f14773951c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10095" - ], - "x-ms-correlation-request-id": [ - "17ec28d0-980c-43b3-a4ed-8dcf9a69c7a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220454Z:17ec28d0-980c-43b3-a4ed-8dcf9a69c7a4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16637b1d-d155-4853-a54a-dab7a83d76d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10094" - ], - "x-ms-correlation-request-id": [ - "f8db4877-bb97-4329-97b2-3b547eb8e756" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220454Z:f8db4877-bb97-4329-97b2-3b547eb8e756" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33c9991f-d082-438b-859a-58242b69ac35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10093" - ], - "x-ms-correlation-request-id": [ - "6563382a-4e4b-4403-af5b-ed9f995375a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220454Z:6563382a-4e4b-4403-af5b-ed9f995375a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7bff927d-5442-424e-ab34-5b5cdff5a5be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10092" - ], - "x-ms-correlation-request-id": [ - "ecaacc2b-dd1a-42ae-8190-06e3dab743e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220454Z:ecaacc2b-dd1a-42ae-8190-06e3dab743e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d6ce271-802f-4ea0-8cc5-0e9b0869ae58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10091" - ], - "x-ms-correlation-request-id": [ - "27b4792c-92d4-4ba4-85e3-7514b1b20183" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220454Z:27b4792c-92d4-4ba4-85e3-7514b1b20183" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc588ed5-5870-4612-b410-3b75530b3ad3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10090" - ], - "x-ms-correlation-request-id": [ - "fee4e603-87cc-4ba9-97df-33938d3679cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220454Z:fee4e603-87cc-4ba9-97df-33938d3679cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df43edeb-51be-49d0-8c05-fee306b42ed0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10089" - ], - "x-ms-correlation-request-id": [ - "9ba6ba7f-f5a1-435a-99c8-2d431ec14e94" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220455Z:9ba6ba7f-f5a1-435a-99c8-2d431ec14e94" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0055ce1-08f0-400b-b74d-cfd9d44bc203" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10088" - ], - "x-ms-correlation-request-id": [ - "51283579-0344-4cbd-8c6f-ae4851ac7690" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220455Z:51283579-0344-4cbd-8c6f-ae4851ac7690" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f7b1bfe-0cfa-473c-9142-f87166de8d51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10087" - ], - "x-ms-correlation-request-id": [ - "44454ddd-1146-4605-8f61-1a56a761c7a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220455Z:44454ddd-1146-4605-8f61-1a56a761c7a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f43f677-be50-48fa-9933-67e8789812c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10086" - ], - "x-ms-correlation-request-id": [ - "221d026d-4bde-4bef-8329-d7cdbff6c72c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220455Z:221d026d-4bde-4bef-8329-d7cdbff6c72c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4991eb5b-0a69-46ea-9933-ae624f19ee23" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10085" - ], - "x-ms-correlation-request-id": [ - "8b5b3e3a-6d83-4e60-afbe-8950bcf1420a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220455Z:8b5b3e3a-6d83-4e60-afbe-8950bcf1420a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae97c506-505c-46fb-a574-cce1363b03fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10084" - ], - "x-ms-correlation-request-id": [ - "9037c629-9156-4df4-8856-04a522806826" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220455Z:9037c629-9156-4df4-8856-04a522806826" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5e91bd0-67f4-4a38-a081-ebda1ac1ab7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10083" - ], - "x-ms-correlation-request-id": [ - "91814ccd-84e3-4ed9-8389-87de4cb5f434" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220456Z:91814ccd-84e3-4ed9-8389-87de4cb5f434" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01b2dd63-f1a4-4679-92b4-e3cacd731e57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10082" - ], - "x-ms-correlation-request-id": [ - "603a46ad-fc55-4db8-bb45-75a6889e5568" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220456Z:603a46ad-fc55-4db8-bb45-75a6889e5568" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20291083-03f8-4742-aeb3-2e526d03f2c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10081" - ], - "x-ms-correlation-request-id": [ - "6ea5bcd8-38d5-4707-ae8c-2d59e7794934" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220456Z:6ea5bcd8-38d5-4707-ae8c-2d59e7794934" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3080be54-979e-4cd1-a2c7-0e732bb62477" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10080" - ], - "x-ms-correlation-request-id": [ - "d09ebfd0-0cbb-43c5-862b-f62ef3520607" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220456Z:d09ebfd0-0cbb-43c5-862b-f62ef3520607" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84817527-ec03-4542-b9c7-a7426de12996" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10079" - ], - "x-ms-correlation-request-id": [ - "0a1cc1b3-9ace-4fc1-acdd-3faba3185ce5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220456Z:0a1cc1b3-9ace-4fc1-acdd-3faba3185ce5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5849ef00-a507-4dee-8576-02589195fce6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10078" - ], - "x-ms-correlation-request-id": [ - "c1aa8eb9-cba0-4218-a74d-42505eb39489" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220456Z:c1aa8eb9-cba0-4218-a74d-42505eb39489" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce5ef62e-2c72-4e21-a160-968adf4b4a05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10077" - ], - "x-ms-correlation-request-id": [ - "9b18194e-9d07-497d-a6e9-ff62b8503982" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220457Z:9b18194e-9d07-497d-a6e9-ff62b8503982" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2d29af7-6c5b-4cb3-9b46-4055593b1f06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10076" - ], - "x-ms-correlation-request-id": [ - "610689e2-8001-4ca6-944a-026b64c031d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220457Z:610689e2-8001-4ca6-944a-026b64c031d7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ca8a7e6-4186-49aa-a7a1-96574d3c91c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10075" - ], - "x-ms-correlation-request-id": [ - "65dd4e06-dbfd-4598-8d82-efa11056f457" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220457Z:65dd4e06-dbfd-4598-8d82-efa11056f457" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4870a3e-644d-42c4-a043-6d4ba85d54e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10074" - ], - "x-ms-correlation-request-id": [ - "fe78db87-bafe-4ccd-952b-a6880af7b3dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220457Z:fe78db87-bafe-4ccd-952b-a6880af7b3dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf645308-3a7b-4d46-afb8-8d955cbaa4fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10073" - ], - "x-ms-correlation-request-id": [ - "34e4996e-b4ae-40d0-a59e-c607c28332e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220458Z:34e4996e-b4ae-40d0-a59e-c607c28332e5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "baa585e7-229c-411b-9892-d416bc5dbc8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10072" - ], - "x-ms-correlation-request-id": [ - "b529ede0-a1a3-4597-81af-88d10a1afbe8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220458Z:b529ede0-a1a3-4597-81af-88d10a1afbe8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4893e730-58f6-4f56-90cc-99b61ee86820" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10071" - ], - "x-ms-correlation-request-id": [ - "97fa4da2-a094-4a46-9456-a779220f2134" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220458Z:97fa4da2-a094-4a46-9456-a779220f2134" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7fd3f93c-fe1d-4691-919b-7650960adb8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10070" - ], - "x-ms-correlation-request-id": [ - "f4c4f3a6-5494-4244-9a7b-7d8d17e14e16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220458Z:f4c4f3a6-5494-4244-9a7b-7d8d17e14e16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "643a5751-0bf3-4c4c-b9c0-a0f80fd4856a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10069" - ], - "x-ms-correlation-request-id": [ - "c6d465d7-7660-432f-9aa5-b53caf8b69f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220458Z:c6d465d7-7660-432f-9aa5-b53caf8b69f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "548a235b-7237-4afa-9e39-4299749c704a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10068" - ], - "x-ms-correlation-request-id": [ - "6c050909-1290-419a-b552-0ed8495fd7e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220458Z:6c050909-1290-419a-b552-0ed8495fd7e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "caab3960-3f0f-4abc-b80d-4eb6fa5e635c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10067" - ], - "x-ms-correlation-request-id": [ - "5838ea2c-9b68-4d58-a364-cb6dc2b86d84" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220459Z:5838ea2c-9b68-4d58-a364-cb6dc2b86d84" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48edde29-63cd-46e3-a41b-d84c11139896" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10066" - ], - "x-ms-correlation-request-id": [ - "d1a3be7e-a565-417e-97cf-89d3234e055a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220459Z:d1a3be7e-a565-417e-97cf-89d3234e055a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a45f7c7-41da-4436-b9d1-719022d9a34c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10065" - ], - "x-ms-correlation-request-id": [ - "2f06f62c-e515-4564-bbd7-95ccd37278b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220459Z:2f06f62c-e515-4564-bbd7-95ccd37278b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e9d696d-1e24-466d-8e9a-f272b76eef10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10064" - ], - "x-ms-correlation-request-id": [ - "fc1e3285-f77f-4ad6-85de-e5906634be65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220459Z:fc1e3285-f77f-4ad6-85de-e5906634be65" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f9c45c2-95eb-475b-ba1e-ff93eba2e35c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10063" - ], - "x-ms-correlation-request-id": [ - "f76e2fff-22c5-441c-92f2-d38b27b98e9e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220459Z:f76e2fff-22c5-441c-92f2-d38b27b98e9e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08505386-f1af-42c7-9122-4285a9fb7a8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10062" - ], - "x-ms-correlation-request-id": [ - "a56a2d3a-6a65-44f6-966b-a93e5d010b16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220459Z:a56a2d3a-6a65-44f6-966b-a93e5d010b16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:04:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c671356-74aa-4590-b7ee-cd3629ae23a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10061" - ], - "x-ms-correlation-request-id": [ - "c8c34a3a-1900-48d2-98bc-adf9a2b03acb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220500Z:c8c34a3a-1900-48d2-98bc-adf9a2b03acb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2863c63f-be17-467f-be4a-502d9423157d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10060" - ], - "x-ms-correlation-request-id": [ - "4c39bdaa-f47c-4657-b7d6-045ad3c807d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220500Z:4c39bdaa-f47c-4657-b7d6-045ad3c807d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0186caf8-ab32-4721-beec-da0e95746b85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10059" - ], - "x-ms-correlation-request-id": [ - "6d5fd6c1-e56c-435c-9c42-65d98aaa4d85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220500Z:6d5fd6c1-e56c-435c-9c42-65d98aaa4d85" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f2f5f4a-44de-4265-aeae-3b974bf520d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10058" - ], - "x-ms-correlation-request-id": [ - "d384aa6c-16f0-4571-9b28-6ef75c804e86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220500Z:d384aa6c-16f0-4571-9b28-6ef75c804e86" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a63b7fe-4a6c-4a7c-8bba-7fcbf61aa1b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10057" - ], - "x-ms-correlation-request-id": [ - "83656cb0-3183-47a6-a875-7b4b6c54315d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220500Z:83656cb0-3183-47a6-a875-7b4b6c54315d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f760c88-471a-4671-ae77-f34ad8521801" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10056" - ], - "x-ms-correlation-request-id": [ - "611d1652-2ed5-4333-b8ad-e0f413ae8cca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220501Z:611d1652-2ed5-4333-b8ad-e0f413ae8cca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5e081dd-f9a3-45bb-a9de-7a37a51a13c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10055" - ], - "x-ms-correlation-request-id": [ - "9e9eaa8c-bb5f-43ee-b8e2-187009523117" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220501Z:9e9eaa8c-bb5f-43ee-b8e2-187009523117" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33b3e2a5-c445-4ae6-a965-bfa10703c426" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10054" - ], - "x-ms-correlation-request-id": [ - "6a0a7624-e873-47f3-ad3a-797a74f218ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220501Z:6a0a7624-e873-47f3-ad3a-797a74f218ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c7971922-ce61-46cb-b40c-f56d4da08445" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10053" - ], - "x-ms-correlation-request-id": [ - "ad0064eb-a752-4189-b959-71ec0e856b36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220501Z:ad0064eb-a752-4189-b959-71ec0e856b36" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "129fd633-3321-43b2-9045-445cc8149921" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10052" - ], - "x-ms-correlation-request-id": [ - "7ea46664-3590-4cb4-b5d0-aa51db67ab19" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220501Z:7ea46664-3590-4cb4-b5d0-aa51db67ab19" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f190c64c-fe28-4726-8ed2-ccb996573cae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10051" - ], - "x-ms-correlation-request-id": [ - "10df482b-7766-424b-bf22-a3bd601573cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220502Z:10df482b-7766-424b-bf22-a3bd601573cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d3dbdba-d227-4674-a6a2-2ee5e0dd6393" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10050" - ], - "x-ms-correlation-request-id": [ - "b85433a1-0fbb-4d8c-b1ea-519a0d87d369" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220502Z:b85433a1-0fbb-4d8c-b1ea-519a0d87d369" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3afcd63f-3d36-49aa-8c87-5afc4b5b4b1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10049" - ], - "x-ms-correlation-request-id": [ - "07bebead-b2f2-460f-9c48-86cc21efaecb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220502Z:07bebead-b2f2-460f-9c48-86cc21efaecb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "827b22c0-fce6-4b6a-a819-28e9ae75d20b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10048" - ], - "x-ms-correlation-request-id": [ - "5ff7d547-a832-45da-b7f2-6b2730257e08" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220502Z:5ff7d547-a832-45da-b7f2-6b2730257e08" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4d89e3a-b4c0-4c59-8806-f0956ba83141" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10047" - ], - "x-ms-correlation-request-id": [ - "54e220ab-ba6c-44bc-86ab-52d0a1b59c50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220503Z:54e220ab-ba6c-44bc-86ab-52d0a1b59c50" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42003e3d-19ab-45c2-a733-76784b6d36c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10046" - ], - "x-ms-correlation-request-id": [ - "c5173570-7780-4648-b8d7-a9916f32631c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220503Z:c5173570-7780-4648-b8d7-a9916f32631c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25e8a36d-79ae-4640-bab0-fe9d3b12febe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10045" - ], - "x-ms-correlation-request-id": [ - "99290597-5fa8-4ee3-aca5-a534941f47f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220503Z:99290597-5fa8-4ee3-aca5-a534941f47f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1bf6d78-11bb-4569-84e9-64669f5b6306" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10044" - ], - "x-ms-correlation-request-id": [ - "311a1f17-dff1-4ee2-b00c-eaa9266a3d78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220503Z:311a1f17-dff1-4ee2-b00c-eaa9266a3d78" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56273ed1-c4ec-4574-84b2-94cec7b1df33" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10043" - ], - "x-ms-correlation-request-id": [ - "1775e4bc-7f2f-43fe-afdc-4c521624c5e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220503Z:1775e4bc-7f2f-43fe-afdc-4c521624c5e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ccca1cc-ec1a-43cd-99fb-466d64c674fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10042" - ], - "x-ms-correlation-request-id": [ - "d21a995f-a816-4871-9320-13121e23e39c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220504Z:d21a995f-a816-4871-9320-13121e23e39c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "775413f5-4f76-4998-b3a6-3a71aecdc137" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10041" - ], - "x-ms-correlation-request-id": [ - "a536c47a-f432-4eaf-b193-02fd6f232534" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220504Z:a536c47a-f432-4eaf-b193-02fd6f232534" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1014a1ab-253b-43ba-9f4b-ec9d547994e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10040" - ], - "x-ms-correlation-request-id": [ - "aba0c446-60a1-44d0-a612-922bf15155d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220504Z:aba0c446-60a1-44d0-a612-922bf15155d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3c5f1b95-9cef-487c-b1ca-2e03791fabd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10039" - ], - "x-ms-correlation-request-id": [ - "6791382d-6046-4034-af8b-70d7e387a14f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220504Z:6791382d-6046-4034-af8b-70d7e387a14f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b26eb513-0c95-435c-a454-d53fe3f6d3d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10038" - ], - "x-ms-correlation-request-id": [ - "a852e45e-c0d5-4dd1-92e3-dc2433d6aa6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220504Z:a852e45e-c0d5-4dd1-92e3-dc2433d6aa6c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae519222-464f-42ff-b9c3-d6b9396b42eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10037" - ], - "x-ms-correlation-request-id": [ - "86720cf1-bc01-4a3c-aa4b-ad690eaa12ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220504Z:86720cf1-bc01-4a3c-aa4b-ad690eaa12ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22d59cdf-d62a-4913-a1fd-fc54199bbbfc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10036" - ], - "x-ms-correlation-request-id": [ - "11c893db-5db0-4193-80df-0dab8027af52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220504Z:11c893db-5db0-4193-80df-0dab8027af52" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13cc848f-d1a9-4903-a371-a5f6c2504796" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10035" - ], - "x-ms-correlation-request-id": [ - "e1d81533-a680-4c41-a58a-9d65a2d67eca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220505Z:e1d81533-a680-4c41-a58a-9d65a2d67eca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03ee6821-07df-444c-9097-d839b7b883ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10034" - ], - "x-ms-correlation-request-id": [ - "bb671985-0d49-4d69-ba9c-2d8c3d6eae5c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220505Z:bb671985-0d49-4d69-ba9c-2d8c3d6eae5c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "862e3bb7-360b-448f-9a65-b7b19ff50f69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10033" - ], - "x-ms-correlation-request-id": [ - "dd1b0216-7714-405c-96e4-9530ed339ce0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220505Z:dd1b0216-7714-405c-96e4-9530ed339ce0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c7c5c05d-b514-47c9-abdd-024ecdf6d617" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10032" - ], - "x-ms-correlation-request-id": [ - "21d6eaae-6d0a-4768-bff0-be4b284cd679" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220505Z:21d6eaae-6d0a-4768-bff0-be4b284cd679" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b7eeee8-0c3c-457a-9a96-3018a6585e0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10031" - ], - "x-ms-correlation-request-id": [ - "0ec3c024-3a31-411d-9715-4f4000a1cd7f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220505Z:0ec3c024-3a31-411d-9715-4f4000a1cd7f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "deed1d9c-653e-4837-9163-c858f405d597" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10030" - ], - "x-ms-correlation-request-id": [ - "7edd93de-bcd8-43a7-8b2b-8387f80376fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220505Z:7edd93de-bcd8-43a7-8b2b-8387f80376fc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae3a4b86-af47-4b47-87fd-23a239b61e52" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10029" - ], - "x-ms-correlation-request-id": [ - "64a0d7f0-2ca9-479b-83a8-ae0826955140" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220505Z:64a0d7f0-2ca9-479b-83a8-ae0826955140" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e02cf3bd-ffc0-4bb3-a0aa-3449ebba4740" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10028" - ], - "x-ms-correlation-request-id": [ - "53a2eaf7-064d-4de3-91c5-f2cba620c451" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220506Z:53a2eaf7-064d-4de3-91c5-f2cba620c451" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a776b5ba-47dc-4158-b870-a0c02a436a7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10027" - ], - "x-ms-correlation-request-id": [ - "e84ccf2b-c909-49c3-9504-991b86782436" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220506Z:e84ccf2b-c909-49c3-9504-991b86782436" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e63ba563-1847-4e39-82dd-6e15be2c4944" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10026" - ], - "x-ms-correlation-request-id": [ - "5ee38907-3fab-416b-8010-a9b248d36df1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220506Z:5ee38907-3fab-416b-8010-a9b248d36df1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ebd1945-4207-4dff-be6d-fffd90a79bae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10025" - ], - "x-ms-correlation-request-id": [ - "9abfdbe9-74ed-4f6b-8d13-17f96546ef28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220506Z:9abfdbe9-74ed-4f6b-8d13-17f96546ef28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f736793-5594-4169-a277-908322f075aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10024" - ], - "x-ms-correlation-request-id": [ - "0b3ea948-f795-40cb-a48f-9eeb16b44488" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220506Z:0b3ea948-f795-40cb-a48f-9eeb16b44488" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "258fa46a-4668-410c-9b30-9dca0aafbfba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10023" - ], - "x-ms-correlation-request-id": [ - "71432ebf-a116-41a2-a62d-4dee471bed52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220506Z:71432ebf-a116-41a2-a62d-4dee471bed52" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c49816a-b8d1-4f82-b5a3-595f685435cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10022" - ], - "x-ms-correlation-request-id": [ - "be73d7d1-2d45-441b-8f11-faad58e37380" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220506Z:be73d7d1-2d45-441b-8f11-faad58e37380" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a1841ea-e3ce-4b90-9c08-538dfe738d1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10021" - ], - "x-ms-correlation-request-id": [ - "53896d28-a0bf-4f6e-a326-6e432a13914b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220507Z:53896d28-a0bf-4f6e-a326-6e432a13914b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b7574c7-3632-40bf-98a4-07ada7bb4a5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10020" - ], - "x-ms-correlation-request-id": [ - "28c21f67-f339-46e3-97cd-e4e5cbb5f211" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220507Z:28c21f67-f339-46e3-97cd-e4e5cbb5f211" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3880c37-1d83-406b-a50b-c8ace8a135f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10019" - ], - "x-ms-correlation-request-id": [ - "811acc80-8a06-4705-a1be-fd72cc54d71d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220507Z:811acc80-8a06-4705-a1be-fd72cc54d71d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e3bb413-d28f-4a9b-a59e-089878f17b10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10018" - ], - "x-ms-correlation-request-id": [ - "5b86fc5b-f0e0-4347-9d7a-94e288f541ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220507Z:5b86fc5b-f0e0-4347-9d7a-94e288f541ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2df5ee16-268e-4c74-a59d-7554d1c2bc89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10017" - ], - "x-ms-correlation-request-id": [ - "0efbc481-d378-42b1-bea6-ab445d4f03a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220507Z:0efbc481-d378-42b1-bea6-ab445d4f03a6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b08f3398-079d-4a41-9705-198f8657c152" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10016" - ], - "x-ms-correlation-request-id": [ - "b5138785-e4b3-4f94-8f68-ab0d90444d0e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220507Z:b5138785-e4b3-4f94-8f68-ab0d90444d0e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a444277-2173-4cb6-9278-05bbb674dd2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10015" - ], - "x-ms-correlation-request-id": [ - "e68c1ee3-bad1-4ddd-8b51-0726da1d8526" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220508Z:e68c1ee3-bad1-4ddd-8b51-0726da1d8526" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e764106-c4e9-4b41-853b-a4c92d03da39" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10014" - ], - "x-ms-correlation-request-id": [ - "d9994e6d-ef9e-4cf8-bacd-ce55ac37b73e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220508Z:d9994e6d-ef9e-4cf8-bacd-ce55ac37b73e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79efc9d7-61f1-4f14-9e56-424b4d690f71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10013" - ], - "x-ms-correlation-request-id": [ - "5f6c11ce-be0e-4d29-8a96-7f0eec9345bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220508Z:5f6c11ce-be0e-4d29-8a96-7f0eec9345bb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "572f1072-080e-4a80-871f-a20cd35476ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10012" - ], - "x-ms-correlation-request-id": [ - "c9179e36-e0fb-43a5-b283-4572c504095d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220508Z:c9179e36-e0fb-43a5-b283-4572c504095d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a66e7278-5447-4152-a01f-a6aa8fced7eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10011" - ], - "x-ms-correlation-request-id": [ - "a6770984-013d-4380-9372-f2bc9043343a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220508Z:a6770984-013d-4380-9372-f2bc9043343a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "070c20e5-c178-4f8c-bcbb-faec25fb8f05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10010" - ], - "x-ms-correlation-request-id": [ - "0c7ec0b1-595c-4dd7-94e0-9910e127a9d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220508Z:0c7ec0b1-595c-4dd7-94e0-9910e127a9d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7aff2c33-dffb-4273-b575-8178884a4537" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10009" - ], - "x-ms-correlation-request-id": [ - "b778269b-d39c-4868-bfdf-bffc77e1ac62" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220508Z:b778269b-d39c-4868-bfdf-bffc77e1ac62" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04880f66-022b-4f3b-b4a2-0b838bbd4634" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10008" - ], - "x-ms-correlation-request-id": [ - "82925221-63db-4ea8-b13b-32ad297b3f92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220509Z:82925221-63db-4ea8-b13b-32ad297b3f92" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0eba6f91-692d-4536-9d93-e2146dafb23c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10007" - ], - "x-ms-correlation-request-id": [ - "67de1066-a63e-4421-bd0b-4d2f9d06f44e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220509Z:67de1066-a63e-4421-bd0b-4d2f9d06f44e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e29cf499-87c2-402f-9d73-76c7e957e393" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10006" - ], - "x-ms-correlation-request-id": [ - "b7b23dcc-a43e-440f-9025-849a07fecd30" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220509Z:b7b23dcc-a43e-440f-9025-849a07fecd30" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b7bd4a6-be43-48be-98a5-8088d13ba480" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10005" - ], - "x-ms-correlation-request-id": [ - "333f205d-5f75-4ecc-adc1-de39689fc8eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220509Z:333f205d-5f75-4ecc-adc1-de39689fc8eb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0458a33-d96c-4513-b627-94b0e4c67392" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10004" - ], - "x-ms-correlation-request-id": [ - "d77b28d1-c499-4e96-85c6-0a6e6a3063ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220509Z:d77b28d1-c499-4e96-85c6-0a6e6a3063ba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c19f52cd-3a2e-49bb-96ef-3224ea1734a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10003" - ], - "x-ms-correlation-request-id": [ - "035f838f-dd25-4bd2-9f3a-c2d9a42fdd3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220510Z:035f838f-dd25-4bd2-9f3a-c2d9a42fdd3b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99de54e2-6ace-45c7-8d8d-d91c1caf5e13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10002" - ], - "x-ms-correlation-request-id": [ - "b310fe07-d190-478b-9a35-a44776b5f50e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220510Z:b310fe07-d190-478b-9a35-a44776b5f50e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aaf66e12-638d-45de-83eb-4029da836f9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10001" - ], - "x-ms-correlation-request-id": [ - "b1cb3a40-f33c-4c13-98f9-a63bd90ab62b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220510Z:b1cb3a40-f33c-4c13-98f9-a63bd90ab62b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8031c7e3-8bf5-4283-8a25-f925400bdc58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10000" - ], - "x-ms-correlation-request-id": [ - "7d089797-c010-4a27-b0b6-a2b320acac66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220510Z:7d089797-c010-4a27-b0b6-a2b320acac66" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2eb507d9-f6f7-47e7-8b01-00be1dcea6b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9999" - ], - "x-ms-correlation-request-id": [ - "ea0f431e-c0b3-45d1-addc-3eafd8b66083" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220510Z:ea0f431e-c0b3-45d1-addc-3eafd8b66083" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c781f52c-b1de-4c89-a9d8-256b57e15909" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9998" - ], - "x-ms-correlation-request-id": [ - "cbf7b096-f464-41e1-b462-d00ec6345f13" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220510Z:cbf7b096-f464-41e1-b462-d00ec6345f13" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3c4d39f-876c-41bd-a614-8f32b301e23f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9997" - ], - "x-ms-correlation-request-id": [ - "e29eeb02-1d6e-4af5-a670-266f23b716cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220511Z:e29eeb02-1d6e-4af5-a670-266f23b716cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "291d061f-80b4-4e73-8fdd-4f24b15ca9cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9996" - ], - "x-ms-correlation-request-id": [ - "916666b5-eb34-46af-ac77-5b9213d83897" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220511Z:916666b5-eb34-46af-ac77-5b9213d83897" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28916c50-5b2b-44f7-8a6b-0af0e5f37a7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9995" - ], - "x-ms-correlation-request-id": [ - "5f12f961-b540-4627-9d2b-2ee39b23760a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220511Z:5f12f961-b540-4627-9d2b-2ee39b23760a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89a15c61-cbaa-42ba-bcd7-41a414726669" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9994" - ], - "x-ms-correlation-request-id": [ - "7b51141a-6f64-4c37-bb9b-6296e80d42b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220511Z:7b51141a-6f64-4c37-bb9b-6296e80d42b1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a3a2d5a-b971-4880-8033-07bea9f0bce8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9993" - ], - "x-ms-correlation-request-id": [ - "76ee9897-6887-421f-a4ae-51260d49d082" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220511Z:76ee9897-6887-421f-a4ae-51260d49d082" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d289d2b1-9526-4950-b74a-7ef89a4dcb6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9992" - ], - "x-ms-correlation-request-id": [ - "e1ad71ca-bcdf-4e60-a484-2e5f0dc411f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220511Z:e1ad71ca-bcdf-4e60-a484-2e5f0dc411f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23bc40d7-b154-4c6f-871d-4c5051532c9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9991" - ], - "x-ms-correlation-request-id": [ - "d75e2108-f89d-487f-aa0a-f80dfafd228c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220512Z:d75e2108-f89d-487f-aa0a-f80dfafd228c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "379a9682-a563-45c4-8f48-91e68d4ea95b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9990" - ], - "x-ms-correlation-request-id": [ - "66bebbcd-8e57-41c5-8388-153c774d9e94" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220512Z:66bebbcd-8e57-41c5-8388-153c774d9e94" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e0d2576-fd59-4fb7-a4b3-47d84bf79338" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9989" - ], - "x-ms-correlation-request-id": [ - "6ca26a99-cb0d-4933-baf5-b10129eb1a14" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220512Z:6ca26a99-cb0d-4933-baf5-b10129eb1a14" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c850610a-cc5f-4f25-a354-214230d7c447" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9988" - ], - "x-ms-correlation-request-id": [ - "a21350e8-5aa8-4e8f-bacc-b8f814b8143c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220512Z:a21350e8-5aa8-4e8f-bacc-b8f814b8143c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de10c7f2-2c0d-4222-b8af-2b5b62d5aa1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9987" - ], - "x-ms-correlation-request-id": [ - "bacba716-3a5b-4a11-bb22-7a275548bcd9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220512Z:bacba716-3a5b-4a11-bb22-7a275548bcd9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bab3f192-060b-4a2a-9175-6e5d6bfa106d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9986" - ], - "x-ms-correlation-request-id": [ - "c6bd6682-2e9c-4d3a-ab09-eb2f189850ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220512Z:c6bd6682-2e9c-4d3a-ab09-eb2f189850ed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5e23001-4c41-438c-9d1f-ec52a05ccc29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9985" - ], - "x-ms-correlation-request-id": [ - "51ac8ab5-ad42-44a7-86db-0e743dd215e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220513Z:51ac8ab5-ad42-44a7-86db-0e743dd215e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a559a7f-f51b-4988-b41e-5927de8f96e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9984" - ], - "x-ms-correlation-request-id": [ - "1e9c24eb-7042-47ee-9f80-a6f67dd6dbe6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220513Z:1e9c24eb-7042-47ee-9f80-a6f67dd6dbe6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63d8c8f6-ad76-434f-9bbe-549feff5137c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9983" - ], - "x-ms-correlation-request-id": [ - "11fc73df-86c0-44f2-a381-c147a2fbdaa1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220513Z:11fc73df-86c0-44f2-a381-c147a2fbdaa1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4faa227-eec4-47f5-bccb-e4a8b3bfc76d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9982" - ], - "x-ms-correlation-request-id": [ - "ff550c61-d502-45fe-9a75-e2a83480d05b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220516Z:ff550c61-d502-45fe-9a75-e2a83480d05b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "030fd005-6fe3-4018-aa53-0d1725f330f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9981" - ], - "x-ms-correlation-request-id": [ - "0a37006e-ff6b-426a-a48c-d51a60e11adb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220516Z:0a37006e-ff6b-426a-a48c-d51a60e11adb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5e4eeb3-e9e4-4602-a9a2-0578b0d2e15a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9980" - ], - "x-ms-correlation-request-id": [ - "bc951c27-7523-4ca2-a244-839b5d6b6a1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220516Z:bc951c27-7523-4ca2-a244-839b5d6b6a1e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "07509185-3da2-4be6-8247-7a311354a1b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9979" - ], - "x-ms-correlation-request-id": [ - "d887fe9e-b10d-40df-8375-5f256d42ca1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220516Z:d887fe9e-b10d-40df-8375-5f256d42ca1f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b51da694-3488-49ea-8d55-e8a162747981" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9978" - ], - "x-ms-correlation-request-id": [ - "cc902179-30cf-491b-841f-660df3f5f12a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220516Z:cc902179-30cf-491b-841f-660df3f5f12a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e650c0a3-8d3c-4158-9f17-45ec65e946b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9977" - ], - "x-ms-correlation-request-id": [ - "650c32c4-418b-4a50-93fe-ca0ee5f9647d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220517Z:650c32c4-418b-4a50-93fe-ca0ee5f9647d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cdec61e6-c89f-4123-8a1a-35ba900106c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9976" - ], - "x-ms-correlation-request-id": [ - "8709f8aa-8883-46c7-8bbb-0a7984011d03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220517Z:8709f8aa-8883-46c7-8bbb-0a7984011d03" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac9f9715-7d23-428c-8631-88df18e6b224" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9975" - ], - "x-ms-correlation-request-id": [ - "681ab045-2d1a-47ed-b1d4-0a12c6be159c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220517Z:681ab045-2d1a-47ed-b1d4-0a12c6be159c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47a80b2b-cc1e-40f5-837e-fbf96c1afa98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9974" - ], - "x-ms-correlation-request-id": [ - "690511d6-5c3a-40bf-8e60-561e6bbd2f0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220517Z:690511d6-5c3a-40bf-8e60-561e6bbd2f0d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c62c3a52-f12c-4bfb-a44e-0558d8cfdc63" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9973" - ], - "x-ms-correlation-request-id": [ - "abf34891-64b1-4596-861f-89244a74db32" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220517Z:abf34891-64b1-4596-861f-89244a74db32" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aec6b89f-92e9-495c-bf7e-e0a728f8b4f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9972" - ], - "x-ms-correlation-request-id": [ - "12527310-5dad-47b7-8169-cf64108ed96d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220517Z:12527310-5dad-47b7-8169-cf64108ed96d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "feb00e1a-778f-48e7-86fd-a7238c74af97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9971" - ], - "x-ms-correlation-request-id": [ - "79ad1007-f3c0-4d9b-8cf5-999d86601c2a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220518Z:79ad1007-f3c0-4d9b-8cf5-999d86601c2a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72f2e157-5107-42d4-9ce7-9ca2fc8b7eb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9970" - ], - "x-ms-correlation-request-id": [ - "8956db8c-f740-4983-8c1d-c836b3a8b07f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220518Z:8956db8c-f740-4983-8c1d-c836b3a8b07f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2159ca9f-8aae-4ca2-8031-1c94e13f290c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9969" - ], - "x-ms-correlation-request-id": [ - "dd3469c4-c59b-4737-9a0a-e3efcb2d235d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220518Z:dd3469c4-c59b-4737-9a0a-e3efcb2d235d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0927cdfc-07cd-4342-af02-2eb261776f61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9968" - ], - "x-ms-correlation-request-id": [ - "9fac2ec2-abc0-4fe8-ab07-99415ab1e76c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220518Z:9fac2ec2-abc0-4fe8-ab07-99415ab1e76c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7f2d6cb-9a0a-4c5c-bb97-cb1b5024b5cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9967" - ], - "x-ms-correlation-request-id": [ - "83bf2113-3a52-4ce9-910b-a0f8f8159b35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220518Z:83bf2113-3a52-4ce9-910b-a0f8f8159b35" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "debda17c-f563-4671-8b77-7c7aa2f46bee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9966" - ], - "x-ms-correlation-request-id": [ - "91a5b461-6ed6-436e-9ebe-d14318396a00" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220519Z:91a5b461-6ed6-436e-9ebe-d14318396a00" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ffc477ee-7080-4fdd-9e25-d11cb33176de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9965" - ], - "x-ms-correlation-request-id": [ - "0942101d-9e23-4494-96ec-c51a43060c57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220519Z:0942101d-9e23-4494-96ec-c51a43060c57" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25d31764-a9f5-4740-b21e-d1a4bdea742c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9964" - ], - "x-ms-correlation-request-id": [ - "d2a9a39d-9aca-41b3-b4de-416856bc7403" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220519Z:d2a9a39d-9aca-41b3-b4de-416856bc7403" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4df5a109-1af1-4344-bfe9-4d4987a27702" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9963" - ], - "x-ms-correlation-request-id": [ - "dd3979c8-e4d1-4ca4-962c-7da32bd0fab0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220519Z:dd3979c8-e4d1-4ca4-962c-7da32bd0fab0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "659e07db-babb-4a40-b57c-ee30505b9835" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9962" - ], - "x-ms-correlation-request-id": [ - "414d1df8-52db-4295-83c0-a1f8215e4b2b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220519Z:414d1df8-52db-4295-83c0-a1f8215e4b2b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5cf5c7ae-5b63-4495-92df-b4ce4c4dda4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9961" - ], - "x-ms-correlation-request-id": [ - "eccf320c-c694-445d-b5fa-fc8c60d62b82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220519Z:eccf320c-c694-445d-b5fa-fc8c60d62b82" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc74de12-d396-401a-9c5a-419387103e79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9960" - ], - "x-ms-correlation-request-id": [ - "d412f96e-10d5-4edb-a760-076430a43e9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220520Z:d412f96e-10d5-4edb-a760-076430a43e9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a88679c-ad56-41df-a9c4-82528cdebe8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9959" - ], - "x-ms-correlation-request-id": [ - "8be23642-d6d5-4a70-8b6b-d35f6e945c41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220520Z:8be23642-d6d5-4a70-8b6b-d35f6e945c41" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ff95da9-b182-4746-990a-21fa17c8f7b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9958" - ], - "x-ms-correlation-request-id": [ - "94dc614a-332d-4e7b-ae0f-134c1c7f671d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220520Z:94dc614a-332d-4e7b-ae0f-134c1c7f671d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79675138-7261-4b2e-8b99-100a32ce83fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9957" - ], - "x-ms-correlation-request-id": [ - "aa153610-f305-44a3-8966-fb5f0e38069d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220520Z:aa153610-f305-44a3-8966-fb5f0e38069d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "564422c5-88ef-46e6-91dd-c978aa99d6c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9956" - ], - "x-ms-correlation-request-id": [ - "50790b32-c89b-4f89-820b-3cf7be268c2b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220520Z:50790b32-c89b-4f89-820b-3cf7be268c2b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b59ac2a-3f0e-49dc-a75f-501cc41348bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9955" - ], - "x-ms-correlation-request-id": [ - "3286ee84-e701-4d33-a6e0-590227eeb3d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220520Z:3286ee84-e701-4d33-a6e0-590227eeb3d6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3dee5d2a-f678-4183-ae50-ae1fc7ccee75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9954" - ], - "x-ms-correlation-request-id": [ - "79044a27-4907-42ff-af52-aa6ba509e89c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220521Z:79044a27-4907-42ff-af52-aa6ba509e89c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1646c26e-147e-4fce-8b54-66984261e88b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9953" - ], - "x-ms-correlation-request-id": [ - "31773d22-cc33-4dfd-a7a3-2c1116fa0f5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220521Z:31773d22-cc33-4dfd-a7a3-2c1116fa0f5a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a4da981-cbc4-426a-9425-4b41c7b523a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9952" - ], - "x-ms-correlation-request-id": [ - "cb5a3e45-675b-4b3f-8fc5-5ca1776eac0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220521Z:cb5a3e45-675b-4b3f-8fc5-5ca1776eac0c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b725320-d4e8-4e3e-8fb7-3bd8ebc25c0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9951" - ], - "x-ms-correlation-request-id": [ - "ec368832-e279-4734-a5d4-992a68cd1def" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220521Z:ec368832-e279-4734-a5d4-992a68cd1def" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "066ae2aa-f8c2-4e26-9bc6-8abe2d4debb9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9950" - ], - "x-ms-correlation-request-id": [ - "e93614ca-6968-4fe7-84e5-259602277b79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220521Z:e93614ca-6968-4fe7-84e5-259602277b79" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aebbb24a-d206-4482-a717-ec29d6f45ca8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9949" - ], - "x-ms-correlation-request-id": [ - "2f3a9c3c-297e-494f-b0fa-bece95c30b7c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220521Z:2f3a9c3c-297e-494f-b0fa-bece95c30b7c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c096dd7-9059-404a-a1c5-60340e01a25e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9948" - ], - "x-ms-correlation-request-id": [ - "23596417-f7d1-46b3-b04a-a70123a00e7b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220522Z:23596417-f7d1-46b3-b04a-a70123a00e7b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9772f30d-4b1c-4a40-8594-1de62bf737d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9947" - ], - "x-ms-correlation-request-id": [ - "a082c1d0-bd6d-4033-b54e-41c31e2134fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220522Z:a082c1d0-bd6d-4033-b54e-41c31e2134fa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a230cfd5-93ec-41fd-b2fe-4d39af5dca4f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9946" - ], - "x-ms-correlation-request-id": [ - "6c1fd437-7394-46bf-b8ac-3d908cf291b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220522Z:6c1fd437-7394-46bf-b8ac-3d908cf291b3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f66b244-03fe-4ecd-9edf-52f6a990423b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9945" - ], - "x-ms-correlation-request-id": [ - "aa489e61-0114-4826-ab50-ebbf8cde94e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220522Z:aa489e61-0114-4826-ab50-ebbf8cde94e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63c92adf-8045-4081-a07e-dc694a5a3fd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9944" - ], - "x-ms-correlation-request-id": [ - "19a88264-896d-4cad-bcef-89412a82e900" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220522Z:19a88264-896d-4cad-bcef-89412a82e900" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "540b702b-482f-475b-bd9d-9df6327c2375" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9943" - ], - "x-ms-correlation-request-id": [ - "b4a6e2ed-5baf-413f-bcf8-4db75cbc6c97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220522Z:b4a6e2ed-5baf-413f-bcf8-4db75cbc6c97" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4dec9755-1645-4f43-90cb-c2e84ef18c61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9942" - ], - "x-ms-correlation-request-id": [ - "0a124839-88b4-4837-b3fc-04531c2994e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220522Z:0a124839-88b4-4837-b3fc-04531c2994e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dbfb33c2-00d4-425a-8d2f-9e4dbd8d538e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9941" - ], - "x-ms-correlation-request-id": [ - "495e19b3-cc7d-44c0-953f-397b8269d1e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220523Z:495e19b3-cc7d-44c0-953f-397b8269d1e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7f087c3-6c88-4dbf-8442-7b652d506f62" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9940" - ], - "x-ms-correlation-request-id": [ - "1b856f02-67fa-45e1-a58a-97cc696eac57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220523Z:1b856f02-67fa-45e1-a58a-97cc696eac57" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "855be407-f1f1-4cb7-9e60-b22a0723ad49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9939" - ], - "x-ms-correlation-request-id": [ - "b7c49057-3797-4f10-ac0b-036b43d78b26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220523Z:b7c49057-3797-4f10-ac0b-036b43d78b26" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b32866cc-cc3b-48ce-a930-d6069e5b97de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9938" - ], - "x-ms-correlation-request-id": [ - "4ee464ca-3347-44c0-85b8-724724a7b9c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220523Z:4ee464ca-3347-44c0-85b8-724724a7b9c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4ab63f0-4e03-4414-9e10-1a7209700b6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9937" - ], - "x-ms-correlation-request-id": [ - "c214f829-5133-4ed0-8984-db13bcfc398e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220523Z:c214f829-5133-4ed0-8984-db13bcfc398e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5a47cb9-b74d-41d9-bcbd-2f03de8fe601" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9936" - ], - "x-ms-correlation-request-id": [ - "b99badd2-3241-49c9-a999-6e0d8811ee69" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220524Z:b99badd2-3241-49c9-a999-6e0d8811ee69" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "889a75ae-347d-4c1c-b4ab-477fae7201fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9935" - ], - "x-ms-correlation-request-id": [ - "27172a58-f1cc-4b05-923e-b7627fd78a5f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220524Z:27172a58-f1cc-4b05-923e-b7627fd78a5f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11f2f608-3f62-4d7d-a9f9-f3bb3d02c73a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9934" - ], - "x-ms-correlation-request-id": [ - "6a7038ce-6f49-4bdb-912c-b8258d09e6bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220524Z:6a7038ce-6f49-4bdb-912c-b8258d09e6bf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c87a944-e0e8-466c-8ee1-22235e3b4899" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9933" - ], - "x-ms-correlation-request-id": [ - "b8a9055c-e04b-4e5c-abc4-889f78b6cdb6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220524Z:b8a9055c-e04b-4e5c-abc4-889f78b6cdb6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "555225e7-dfef-4959-8e70-dade9fab5404" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9932" - ], - "x-ms-correlation-request-id": [ - "d3ebf8c5-d2d9-44b7-ad45-6586e298985f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220524Z:d3ebf8c5-d2d9-44b7-ad45-6586e298985f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e102c7f2-dfcb-4592-9876-8dce86180002" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9931" - ], - "x-ms-correlation-request-id": [ - "6e597b2b-25a0-4c71-9df5-e1279d7d9a96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220524Z:6e597b2b-25a0-4c71-9df5-e1279d7d9a96" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "764e1cfa-4df5-44f8-9bee-ef3f66548e7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9930" - ], - "x-ms-correlation-request-id": [ - "1119bc1b-081b-4b30-a325-3fd03f42d67f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220524Z:1119bc1b-081b-4b30-a325-3fd03f42d67f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43fdc4ff-c2f8-4397-a9b6-5a8a5a4aa6aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9929" - ], - "x-ms-correlation-request-id": [ - "0f454c98-a724-4852-9e12-da0cfe278276" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220525Z:0f454c98-a724-4852-9e12-da0cfe278276" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdc34085-4b1c-4622-a82b-0c73d5220ad9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9928" - ], - "x-ms-correlation-request-id": [ - "89556257-946e-47b9-b8f2-8eb8175aadb4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220525Z:89556257-946e-47b9-b8f2-8eb8175aadb4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6007462c-448c-4cee-b184-a54108c276c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9927" - ], - "x-ms-correlation-request-id": [ - "628c0b94-e517-4ab8-90a9-feaf6bfcb88d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220525Z:628c0b94-e517-4ab8-90a9-feaf6bfcb88d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02a6f777-e7a1-4101-8b43-04777640e309" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9926" - ], - "x-ms-correlation-request-id": [ - "dcda3f7b-7b51-4a9c-84b9-eb449579d671" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220525Z:dcda3f7b-7b51-4a9c-84b9-eb449579d671" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "573ddd83-cd46-4d58-8a19-9aba2d6bf788" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9925" - ], - "x-ms-correlation-request-id": [ - "c12655b9-a0f1-4019-a398-2b342820a298" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220525Z:c12655b9-a0f1-4019-a398-2b342820a298" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bcd76b32-c8f2-4094-ab52-f7fda05281ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9924" - ], - "x-ms-correlation-request-id": [ - "702e27ae-4488-4e0a-8715-66747ccc4c00" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220525Z:702e27ae-4488-4e0a-8715-66747ccc4c00" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56f9a4eb-4878-4269-bb2d-913e01332065" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9923" - ], - "x-ms-correlation-request-id": [ - "0a1680de-aa8a-443a-b586-51cdafd38d7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220526Z:0a1680de-aa8a-443a-b586-51cdafd38d7e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2344ded8-11c3-4347-a268-1386b95013fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9922" - ], - "x-ms-correlation-request-id": [ - "6d7088c2-adb4-4302-a7de-a31671a33ab9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220526Z:6d7088c2-adb4-4302-a7de-a31671a33ab9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf783117-9d62-4e8c-981b-257099283b3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9921" - ], - "x-ms-correlation-request-id": [ - "b5596f37-25b0-4116-be88-3cb7c858d324" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220526Z:b5596f37-25b0-4116-be88-3cb7c858d324" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "921c50c0-53b2-4d18-80ed-bf33961166fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9920" - ], - "x-ms-correlation-request-id": [ - "5103c760-70e5-4fd5-b37a-6cc0dcb9e888" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220526Z:5103c760-70e5-4fd5-b37a-6cc0dcb9e888" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82222369-302b-4047-8484-fb59f246afe3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9919" - ], - "x-ms-correlation-request-id": [ - "7943e47f-7447-448c-988c-df210f8f8f71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220526Z:7943e47f-7447-448c-988c-df210f8f8f71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e26a6801-d25b-4980-b986-07f1a4ebe933" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9918" - ], - "x-ms-correlation-request-id": [ - "7f6d1468-caf3-4a26-bd6d-6dbfcf81ac18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220526Z:7f6d1468-caf3-4a26-bd6d-6dbfcf81ac18" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6351ebc-72e5-4f60-bc4d-1a85a46155e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9917" - ], - "x-ms-correlation-request-id": [ - "8b34b4c3-d849-405a-81c1-c2725e96d016" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220527Z:8b34b4c3-d849-405a-81c1-c2725e96d016" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3eb7ae3f-2612-4235-9f92-22e5ff9ab06b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9916" - ], - "x-ms-correlation-request-id": [ - "f4b0fb7a-1f72-47ef-b98c-ac2df8b4d669" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220527Z:f4b0fb7a-1f72-47ef-b98c-ac2df8b4d669" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4c87585-82dd-45da-b031-7b837b3929d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9915" - ], - "x-ms-correlation-request-id": [ - "390b6928-05b0-40fb-919b-cfc0f9f9edba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220527Z:390b6928-05b0-40fb-919b-cfc0f9f9edba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea048f75-6f4c-407f-987f-00d2e40d5d8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9914" - ], - "x-ms-correlation-request-id": [ - "999c49d8-9d7a-4106-8fc7-d057d6e25189" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220527Z:999c49d8-9d7a-4106-8fc7-d057d6e25189" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71bb25e5-bd1c-4f06-a613-9c7fac16f105" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9913" - ], - "x-ms-correlation-request-id": [ - "76886faa-20a0-4fd4-a3be-d17695bcfe02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220527Z:76886faa-20a0-4fd4-a3be-d17695bcfe02" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5971163-6dbe-42de-9caf-b6f0f63151a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9912" - ], - "x-ms-correlation-request-id": [ - "2ca1e255-7d21-49d2-a363-793601e7f077" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220527Z:2ca1e255-7d21-49d2-a363-793601e7f077" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9fb7d8a4-4437-4373-bcea-532e562597e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9911" - ], - "x-ms-correlation-request-id": [ - "a6ac6302-a462-4117-ac20-ce774a6751b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220527Z:a6ac6302-a462-4117-ac20-ce774a6751b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d213f4ec-692a-4682-9e7b-c757faf0df32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9910" - ], - "x-ms-correlation-request-id": [ - "7c078173-2044-46f9-b934-92c22a96ee7f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220528Z:7c078173-2044-46f9-b934-92c22a96ee7f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5337672-ea1b-4cac-8490-8e0beee1f613" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9909" - ], - "x-ms-correlation-request-id": [ - "22704ebb-1d93-4fbb-8e37-b116bc7d2ee5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220528Z:22704ebb-1d93-4fbb-8e37-b116bc7d2ee5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be0a3938-b273-4e63-aa98-21ceb475a415" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9908" - ], - "x-ms-correlation-request-id": [ - "e362d441-1930-48b8-8ec3-e363607eea8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220528Z:e362d441-1930-48b8-8ec3-e363607eea8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a7d677a-5f1f-474e-ba74-4c50c3ec6713" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9907" - ], - "x-ms-correlation-request-id": [ - "d2d9224c-5981-42c8-a20a-240d4bd0b5fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220528Z:d2d9224c-5981-42c8-a20a-240d4bd0b5fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc813eb8-acdc-4910-90ce-3049aef53479" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9906" - ], - "x-ms-correlation-request-id": [ - "a8cf6c59-f41b-47ea-8799-a4674c02e417" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220528Z:a8cf6c59-f41b-47ea-8799-a4674c02e417" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb485406-5c65-4c25-9fbe-0851a27263b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9905" - ], - "x-ms-correlation-request-id": [ - "de34435a-2eff-4b55-8583-3d3031e1ca41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220529Z:de34435a-2eff-4b55-8583-3d3031e1ca41" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "032591d8-2bce-463a-9673-c3642ce15ddf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9904" - ], - "x-ms-correlation-request-id": [ - "5bae0647-bdc9-4e11-9443-be47a71eac08" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220529Z:5bae0647-bdc9-4e11-9443-be47a71eac08" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6ba2160-bebc-4f07-a386-48771fe1691b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9903" - ], - "x-ms-correlation-request-id": [ - "c95e89a7-8f86-4f5f-8aca-9b12dc95df96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220529Z:c95e89a7-8f86-4f5f-8aca-9b12dc95df96" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d18cf0f8-1c26-40eb-8f6c-40bba2223d40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9902" - ], - "x-ms-correlation-request-id": [ - "8618c7d7-ce3e-436d-b4c7-de7bb7a10931" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220529Z:8618c7d7-ce3e-436d-b4c7-de7bb7a10931" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19adc669-29a2-4d0f-a319-b5c879c831e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9901" - ], - "x-ms-correlation-request-id": [ - "d4486f83-713a-4911-a9ac-8447a4ecf81c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220529Z:d4486f83-713a-4911-a9ac-8447a4ecf81c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e108438-ae9f-4c19-bba1-efc0d3a178cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9900" - ], - "x-ms-correlation-request-id": [ - "bf4ee837-fa67-4203-ae71-ad86cd8b1258" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220530Z:bf4ee837-fa67-4203-ae71-ad86cd8b1258" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5750726e-7fa7-4aba-b925-aed8430e2745" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9899" - ], - "x-ms-correlation-request-id": [ - "2b37fad8-8eb0-4c53-9024-ba8c73e02a1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220530Z:2b37fad8-8eb0-4c53-9024-ba8c73e02a1c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f3fef4e-a97a-4284-a742-bf4608d8941f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9898" - ], - "x-ms-correlation-request-id": [ - "2099fcdc-4678-42d2-8931-89e58ed9d23c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220530Z:2099fcdc-4678-42d2-8931-89e58ed9d23c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa8c10b5-8886-4d34-9344-b75e737cbbfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9897" - ], - "x-ms-correlation-request-id": [ - "abca3ee9-9b2b-4892-94cf-01b407e265d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220530Z:abca3ee9-9b2b-4892-94cf-01b407e265d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a629e2e9-4b65-4a69-9873-2f17597c6613" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9896" - ], - "x-ms-correlation-request-id": [ - "febce21e-f665-4d00-96fd-b96e3434659a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220530Z:febce21e-f665-4d00-96fd-b96e3434659a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf3f578b-81ce-4968-834a-1781d408dba9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9895" - ], - "x-ms-correlation-request-id": [ - "1c407d07-560a-4e35-9e1b-fa789a638608" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220530Z:1c407d07-560a-4e35-9e1b-fa789a638608" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e494ce74-bd2a-4ffc-8f95-3c7e080980de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9894" - ], - "x-ms-correlation-request-id": [ - "0e786055-9454-4138-a47f-6638c6bce191" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220531Z:0e786055-9454-4138-a47f-6638c6bce191" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb8ad433-d3ff-472c-81fb-0179c8caa145" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9893" - ], - "x-ms-correlation-request-id": [ - "5d410f3c-4e4d-4477-8e4d-287ff591b560" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220531Z:5d410f3c-4e4d-4477-8e4d-287ff591b560" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71a6932e-f9bd-4b9e-8ffe-40c0bb3e9800" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9892" - ], - "x-ms-correlation-request-id": [ - "50cffe18-4697-45e3-bdf1-8aa9b97f836c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220531Z:50cffe18-4697-45e3-bdf1-8aa9b97f836c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42f483b4-c280-4dbb-9fb5-957e2fdc2bec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9891" - ], - "x-ms-correlation-request-id": [ - "b41d92c3-059e-449f-bee1-7d1065bf4559" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220531Z:b41d92c3-059e-449f-bee1-7d1065bf4559" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "daf28cc5-e77f-4b24-864d-f35eba93212e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9890" - ], - "x-ms-correlation-request-id": [ - "0d223ae0-7dc1-481c-acd0-3c9f5d3d01ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220531Z:0d223ae0-7dc1-481c-acd0-3c9f5d3d01ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "450a7855-b27b-4a8b-8778-c9037880cbe1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9889" - ], - "x-ms-correlation-request-id": [ - "4ae69d7a-4aae-4b2f-86f0-b804f201666f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220531Z:4ae69d7a-4aae-4b2f-86f0-b804f201666f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "440e1397-a765-4c43-842f-27c48a320fec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9888" - ], - "x-ms-correlation-request-id": [ - "2746257f-5840-4f85-b236-1eb2142c2dc1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220531Z:2746257f-5840-4f85-b236-1eb2142c2dc1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce8cdcb3-1acd-4dcb-bbf4-360fa782b855" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9887" - ], - "x-ms-correlation-request-id": [ - "33078433-24cd-4156-a796-551e1ba711c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220532Z:33078433-24cd-4156-a796-551e1ba711c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0092c208-0161-46df-b28c-1e46bfa92c1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9886" - ], - "x-ms-correlation-request-id": [ - "d36dbdf1-0780-4e51-a6d6-af5a3783838e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220532Z:d36dbdf1-0780-4e51-a6d6-af5a3783838e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7693c373-b900-4454-b4e0-590ebaf9362d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9885" - ], - "x-ms-correlation-request-id": [ - "66e744ca-529a-43b6-badf-b6c1ed763580" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220532Z:66e744ca-529a-43b6-badf-b6c1ed763580" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06fda448-1c4c-4b23-bac8-6971cf99a602" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9884" - ], - "x-ms-correlation-request-id": [ - "cb112cd7-26c6-4d3d-a4a2-92bf281ea92d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220532Z:cb112cd7-26c6-4d3d-a4a2-92bf281ea92d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "288c1352-0541-4795-ae17-c2e2a1cf1562" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9883" - ], - "x-ms-correlation-request-id": [ - "09a321c5-5e05-44b3-abfe-7fac2039d07f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220532Z:09a321c5-5e05-44b3-abfe-7fac2039d07f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80e215ef-45d8-4504-bab4-adc385ac6fb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9882" - ], - "x-ms-correlation-request-id": [ - "64491e0e-53bf-4733-9103-895dbf9c92e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220532Z:64491e0e-53bf-4733-9103-895dbf9c92e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17fc7231-def9-4902-b697-4a66e640b668" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9881" - ], - "x-ms-correlation-request-id": [ - "60d64f0f-d56e-4cce-8ef9-47e0c86f6e08" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220533Z:60d64f0f-d56e-4cce-8ef9-47e0c86f6e08" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "07160d45-fd1b-4c84-b686-24c881f30e95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9880" - ], - "x-ms-correlation-request-id": [ - "4105ee78-b331-4ce1-9671-f705c0fdc664" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220533Z:4105ee78-b331-4ce1-9671-f705c0fdc664" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94a83123-a97d-473b-a82c-6371a792f2c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9879" - ], - "x-ms-correlation-request-id": [ - "2c2dad1b-f9fa-454b-9ec2-5b199405e2af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220533Z:2c2dad1b-f9fa-454b-9ec2-5b199405e2af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ff13c75-29f5-47e8-951c-5109f37e6431" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9878" - ], - "x-ms-correlation-request-id": [ - "2f676a80-121a-41d5-bea4-0624fbdd89ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220533Z:2f676a80-121a-41d5-bea4-0624fbdd89ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6827f648-5607-4e8a-b6ab-03a07decaed8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9877" - ], - "x-ms-correlation-request-id": [ - "ca10a2da-b5f0-419d-bcc7-270d87215632" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220533Z:ca10a2da-b5f0-419d-bcc7-270d87215632" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "171e6b4d-4a3f-4e81-99c5-aaab986403f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9876" - ], - "x-ms-correlation-request-id": [ - "f0a662d3-7444-46da-ac67-b98edd438cdb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220534Z:f0a662d3-7444-46da-ac67-b98edd438cdb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a9e7bde3-4a8f-4b38-828b-d6a5c8611ca2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9875" - ], - "x-ms-correlation-request-id": [ - "7c4d37f3-e0e7-4ddb-b22c-800ed3d89dc6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220534Z:7c4d37f3-e0e7-4ddb-b22c-800ed3d89dc6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69ee5ad3-77dc-497f-95f2-0ac431419b9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9874" - ], - "x-ms-correlation-request-id": [ - "94d12007-7f66-48da-be4e-9e72bf14fc62" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220534Z:94d12007-7f66-48da-be4e-9e72bf14fc62" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0cd5f25b-5bea-4593-99ec-45e2ec5b9f76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9873" - ], - "x-ms-correlation-request-id": [ - "6b67ff3a-b4b4-434b-a849-0c19a443e8fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220534Z:6b67ff3a-b4b4-434b-a849-0c19a443e8fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be56ae75-d865-481f-bf57-c909bf9805e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9872" - ], - "x-ms-correlation-request-id": [ - "ccf805ef-4949-4503-b562-df40db8fa95d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220534Z:ccf805ef-4949-4503-b562-df40db8fa95d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ff7b4ad-1aad-4ab1-a795-2afa5268ad36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9871" - ], - "x-ms-correlation-request-id": [ - "51180a0a-10ce-4ade-b877-2a6ac14d3398" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220534Z:51180a0a-10ce-4ade-b877-2a6ac14d3398" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89d40e4b-d05f-4fdf-8264-23d15f10f390" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9870" - ], - "x-ms-correlation-request-id": [ - "a6ad2c8d-e3c6-4733-9dc6-32f704f44c74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220534Z:a6ad2c8d-e3c6-4733-9dc6-32f704f44c74" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8afb7fa-38e7-4055-a845-ea79f389dfd1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9869" - ], - "x-ms-correlation-request-id": [ - "6511a226-da81-4849-8af7-e46ed3591d2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220534Z:6511a226-da81-4849-8af7-e46ed3591d2e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f6a11c0-b474-40da-a8c9-38d43e9d01a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9868" - ], - "x-ms-correlation-request-id": [ - "7f655058-9264-42d1-a3aa-3a153ff6750f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220534Z:7f655058-9264-42d1-a3aa-3a153ff6750f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79950557-dc6a-416f-8cd0-f950d7980894" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9867" - ], - "x-ms-correlation-request-id": [ - "f655299d-1a0f-4138-84bc-32154e3245e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220535Z:f655299d-1a0f-4138-84bc-32154e3245e4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98b2b90a-f467-4035-b4ee-f051d997e9a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9866" - ], - "x-ms-correlation-request-id": [ - "13d6875f-9afb-41a7-bc28-43d93cf0bc30" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220535Z:13d6875f-9afb-41a7-bc28-43d93cf0bc30" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e89359ca-341f-4e4f-980b-c273c68ad994" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9865" - ], - "x-ms-correlation-request-id": [ - "617cd1ef-cec7-4b5e-a7b3-38e48e6250f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220535Z:617cd1ef-cec7-4b5e-a7b3-38e48e6250f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70ed2252-e933-41ce-aeaf-9eaa6c6ad6ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9864" - ], - "x-ms-correlation-request-id": [ - "a66cc531-0507-4659-bf15-0092ac923e18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220535Z:a66cc531-0507-4659-bf15-0092ac923e18" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ed1a775-13bf-426a-9967-6404ba62a683" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9863" - ], - "x-ms-correlation-request-id": [ - "ba523387-2c29-46a1-b861-01fa994023a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220535Z:ba523387-2c29-46a1-b861-01fa994023a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0dc8f4bf-dc85-43fc-bd39-c866ee443185" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9862" - ], - "x-ms-correlation-request-id": [ - "7fbd43ac-d266-4f00-817b-1ff3c7ebbbe6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220536Z:7fbd43ac-d266-4f00-817b-1ff3c7ebbbe6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7094998-935c-46af-9bbc-7ba1fe7885ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9861" - ], - "x-ms-correlation-request-id": [ - "15744d6d-2358-4635-9a83-07fedd575fd8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220536Z:15744d6d-2358-4635-9a83-07fedd575fd8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d340d58-2047-4c91-b891-626a39c24f33" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9860" - ], - "x-ms-correlation-request-id": [ - "840a0ee3-d915-494d-b5d9-64fe166a53d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220536Z:840a0ee3-d915-494d-b5d9-64fe166a53d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "575d222c-006c-4894-8b5f-09e1075c815a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9859" - ], - "x-ms-correlation-request-id": [ - "a83b1a25-f3d9-4542-be86-134806a9060c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220536Z:a83b1a25-f3d9-4542-be86-134806a9060c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c30722d7-9d14-465d-8b39-b3fb37f52e04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9858" - ], - "x-ms-correlation-request-id": [ - "c30b2004-1141-4b89-98b8-b9c01dfb2fda" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220536Z:c30b2004-1141-4b89-98b8-b9c01dfb2fda" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fa3b79b-72be-439b-b39f-db8420888a79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9857" - ], - "x-ms-correlation-request-id": [ - "5b403467-4807-416b-989a-0483aaa4319f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220536Z:5b403467-4807-416b-989a-0483aaa4319f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9be1637f-0764-4448-aa2a-73bc5e8eba67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9856" - ], - "x-ms-correlation-request-id": [ - "47ad579f-adae-431d-be3b-90742ba98afc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220537Z:47ad579f-adae-431d-be3b-90742ba98afc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4e1f91c-f70b-456b-8556-50919da4c6f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9855" - ], - "x-ms-correlation-request-id": [ - "13138401-6aaa-4c02-b7cb-aa16089cd434" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220537Z:13138401-6aaa-4c02-b7cb-aa16089cd434" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62d51c49-93fa-421f-9038-f56f313f386f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9854" - ], - "x-ms-correlation-request-id": [ - "cfb5d95c-36b2-4800-aeae-7d677ac40de7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220537Z:cfb5d95c-36b2-4800-aeae-7d677ac40de7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a7c9e9f-a43e-4181-a86f-5d8a6bdae74b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9853" - ], - "x-ms-correlation-request-id": [ - "a1484e75-1f54-4a81-bae4-9f5abdd865a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220537Z:a1484e75-1f54-4a81-bae4-9f5abdd865a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bfabac7-34a1-4b44-8aa6-b9653d4a76b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9852" - ], - "x-ms-correlation-request-id": [ - "3d5e2e40-3557-4dd9-bed7-1f98cceeaf75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220537Z:3d5e2e40-3557-4dd9-bed7-1f98cceeaf75" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39602ebf-a54a-476f-8b2c-0bb4ca999da9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9851" - ], - "x-ms-correlation-request-id": [ - "75050781-a39c-452b-89da-0f64d45d657b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220537Z:75050781-a39c-452b-89da-0f64d45d657b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00c37bf3-9970-402a-8fb2-b5c66d17e011" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9850" - ], - "x-ms-correlation-request-id": [ - "cec638f3-9415-4e37-9119-d0a0dc16efcf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220538Z:cec638f3-9415-4e37-9119-d0a0dc16efcf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc40f593-c2ea-4b48-aefb-f860e0af611b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9849" - ], - "x-ms-correlation-request-id": [ - "1f1a1721-93b9-42aa-9838-5f1aaca65e86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220538Z:1f1a1721-93b9-42aa-9838-5f1aaca65e86" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3452d64b-6f66-4957-abac-0d2624589341" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9848" - ], - "x-ms-correlation-request-id": [ - "f28fe286-4bf7-4ff4-960b-331029cd06d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220538Z:f28fe286-4bf7-4ff4-960b-331029cd06d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bbc19dd8-bce8-4198-a074-a4e705c30d82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9847" - ], - "x-ms-correlation-request-id": [ - "6a2dff6b-b867-42af-8c1d-3bf2e8c9e2ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220538Z:6a2dff6b-b867-42af-8c1d-3bf2e8c9e2ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e03e2a30-89cc-44c8-a338-25505e039f78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9846" - ], - "x-ms-correlation-request-id": [ - "703fa279-9f0f-41cc-ae19-a21e2eda10ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220538Z:703fa279-9f0f-41cc-ae19-a21e2eda10ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0726f37f-9812-4e1b-8326-adc4e90d0e18" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9845" - ], - "x-ms-correlation-request-id": [ - "6abfee1b-dcc9-4347-8299-3516a498a28b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220538Z:6abfee1b-dcc9-4347-8299-3516a498a28b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2baabeb6-51b7-4786-8724-501d7917be99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9844" - ], - "x-ms-correlation-request-id": [ - "6aebefc0-74c0-442c-ba72-3651729d13d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220539Z:6aebefc0-74c0-442c-ba72-3651729d13d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2412959e-5d99-4209-8720-9ff685da0276" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9843" - ], - "x-ms-correlation-request-id": [ - "381af98f-7775-4e50-b3a6-1c6c6364cf31" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220539Z:381af98f-7775-4e50-b3a6-1c6c6364cf31" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e24c577f-0807-4f8c-9e19-712421becdce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9842" - ], - "x-ms-correlation-request-id": [ - "95f2d3e2-2e75-454a-98f0-2fef3eb81f36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220539Z:95f2d3e2-2e75-454a-98f0-2fef3eb81f36" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95751585-0e51-4ee4-bd89-a1ff52b6002f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9841" - ], - "x-ms-correlation-request-id": [ - "a26e0bd9-4678-4a9c-906f-2381d105d749" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220539Z:a26e0bd9-4678-4a9c-906f-2381d105d749" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5ff26a2-e93e-4f6d-b171-a2aa260ad5c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9840" - ], - "x-ms-correlation-request-id": [ - "35570c8f-6bfd-4b45-877c-a3032d2fc5f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220539Z:35570c8f-6bfd-4b45-877c-a3032d2fc5f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81681731-8dbb-48bc-8b57-cde62ce20a84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9839" - ], - "x-ms-correlation-request-id": [ - "a6aad5f3-0810-4dd6-980e-d37336d2979f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220539Z:a6aad5f3-0810-4dd6-980e-d37336d2979f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2d674dd-d41b-4e4c-817e-a7c32705685d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9838" - ], - "x-ms-correlation-request-id": [ - "02beca5e-6fd6-44dc-8d28-c68f998cbf44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220539Z:02beca5e-6fd6-44dc-8d28-c68f998cbf44" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "203313a4-adb0-4572-a16b-b8000252abb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9837" - ], - "x-ms-correlation-request-id": [ - "ec42a1dd-c03a-48eb-8e35-41bc5ed258d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220540Z:ec42a1dd-c03a-48eb-8e35-41bc5ed258d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a24dd0a9-8067-440c-995b-2d8db6d519c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9836" - ], - "x-ms-correlation-request-id": [ - "dd69be64-eaa0-4fe1-876d-690ff7c77e06" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220540Z:dd69be64-eaa0-4fe1-876d-690ff7c77e06" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3fe4e7ec-d929-4a65-9543-2590efe5520b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9835" - ], - "x-ms-correlation-request-id": [ - "2adbe80a-29a0-45f6-89c6-f4aa156bc26b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220540Z:2adbe80a-29a0-45f6-89c6-f4aa156bc26b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3089be17-3cc2-45ae-939a-880e309f452c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9834" - ], - "x-ms-correlation-request-id": [ - "a9f7c85b-d3f3-4e17-85e9-5e4160e1dad5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220540Z:a9f7c85b-d3f3-4e17-85e9-5e4160e1dad5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3764ba78-588b-4dd3-9166-91546ef06ccc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9833" - ], - "x-ms-correlation-request-id": [ - "2b8dc16e-e851-40bb-b371-bdf9a600969a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220540Z:2b8dc16e-e851-40bb-b371-bdf9a600969a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "542b2ce6-ba4c-4831-8d7f-7f123b7e34f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9832" - ], - "x-ms-correlation-request-id": [ - "fdf6ce47-9619-4388-aa8d-5300c1c6f5c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220541Z:fdf6ce47-9619-4388-aa8d-5300c1c6f5c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d265bc12-403f-4303-aa9d-608051c7f6f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9831" - ], - "x-ms-correlation-request-id": [ - "8c45c593-8dea-4f2b-82a3-76035f341698" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220541Z:8c45c593-8dea-4f2b-82a3-76035f341698" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "924eb583-a373-4985-a12e-15d1dc2d3a72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9830" - ], - "x-ms-correlation-request-id": [ - "1d2e7a64-7100-47fe-bdd5-866988354f03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220541Z:1d2e7a64-7100-47fe-bdd5-866988354f03" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7febc22-b12e-42d8-9992-4bf591c17b32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9829" - ], - "x-ms-correlation-request-id": [ - "210e1da7-7a95-4a36-96aa-54678cd2da65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220541Z:210e1da7-7a95-4a36-96aa-54678cd2da65" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95f872fd-c99a-47ce-b8f5-755e389c1871" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9828" - ], - "x-ms-correlation-request-id": [ - "2b1f55c5-faf0-4877-920d-c474d879e545" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220541Z:2b1f55c5-faf0-4877-920d-c474d879e545" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3563a13b-5aeb-4df7-a463-21e7b18abe6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9827" - ], - "x-ms-correlation-request-id": [ - "0d9c2a1d-6ba5-4b04-84d9-61994ae34a3f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220541Z:0d9c2a1d-6ba5-4b04-84d9-61994ae34a3f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b624376-632f-47f8-a0d9-909405c95103" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9826" - ], - "x-ms-correlation-request-id": [ - "4d7c0f12-655d-484d-904c-0aa47a03c6ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220542Z:4d7c0f12-655d-484d-904c-0aa47a03c6ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "761b0d21-ea11-47c1-91c3-b7bc9d9fa745" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9825" - ], - "x-ms-correlation-request-id": [ - "bc5f3a7b-5ca4-437e-8087-8c2f30d93f9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220542Z:bc5f3a7b-5ca4-437e-8087-8c2f30d93f9f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19d846d8-1672-4c80-8477-68ad163fb009" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9824" - ], - "x-ms-correlation-request-id": [ - "45de1b04-e905-44d2-99d2-c6a7ee212b78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220542Z:45de1b04-e905-44d2-99d2-c6a7ee212b78" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "683c24c5-b8ff-445e-9d81-fbc14c42e8a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9823" - ], - "x-ms-correlation-request-id": [ - "61bc1b42-546f-4e26-9e2c-df2081646ac1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220542Z:61bc1b42-546f-4e26-9e2c-df2081646ac1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d48294a9-9146-442a-8788-512221cc45c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9822" - ], - "x-ms-correlation-request-id": [ - "dfdd16f8-7a1b-40fb-8182-a1c3dd20ae47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220542Z:dfdd16f8-7a1b-40fb-8182-a1c3dd20ae47" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f43dd306-5df4-47c2-aef6-ee5ea1b49b6d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9821" - ], - "x-ms-correlation-request-id": [ - "1809ae53-408c-4ac7-91a7-7fddfb8406f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220542Z:1809ae53-408c-4ac7-91a7-7fddfb8406f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c43612d-9f23-452f-b206-434bcb6b0b72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9820" - ], - "x-ms-correlation-request-id": [ - "acc20459-df62-4653-8fa3-b1acb9e86b8b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220542Z:acc20459-df62-4653-8fa3-b1acb9e86b8b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "274cdc20-feb8-42fa-8181-f7fe712ad9d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9819" - ], - "x-ms-correlation-request-id": [ - "ae1cfcee-2fe0-43fd-af9a-429944bc0f77" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220543Z:ae1cfcee-2fe0-43fd-af9a-429944bc0f77" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc009c37-2b05-48b5-97e3-52375bcfc1ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9818" - ], - "x-ms-correlation-request-id": [ - "4c791f0a-7d20-4ffe-9786-b9a621a4358c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220543Z:4c791f0a-7d20-4ffe-9786-b9a621a4358c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ceb87920-4c59-4d2a-9b0f-e2672a583601" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9817" - ], - "x-ms-correlation-request-id": [ - "24fc8d6e-e0c6-45ce-9804-d02c671b3934" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220543Z:24fc8d6e-e0c6-45ce-9804-d02c671b3934" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0fc21e5b-7a51-48ac-b564-76606dab2003" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9816" - ], - "x-ms-correlation-request-id": [ - "af247765-bcc2-4b1b-a0c7-7463832d3521" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220543Z:af247765-bcc2-4b1b-a0c7-7463832d3521" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "068d7247-7c7a-44ba-aea0-9c8bed41b41d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9815" - ], - "x-ms-correlation-request-id": [ - "4201bbaf-8240-4823-9f7b-d9ba254172c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220543Z:4201bbaf-8240-4823-9f7b-d9ba254172c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f66966d-9570-477e-902f-86d1eae3e649" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9814" - ], - "x-ms-correlation-request-id": [ - "2d1a861b-1905-4ad1-9225-6330fbadd0dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220544Z:2d1a861b-1905-4ad1-9225-6330fbadd0dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a7216fc-fed3-447c-81bd-470cc00e2da3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9813" - ], - "x-ms-correlation-request-id": [ - "1cb22a67-484d-4a35-aed2-12421a830c75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220544Z:1cb22a67-484d-4a35-aed2-12421a830c75" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "696f4dc3-5cc4-4031-8f1e-aa11a31ff450" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9812" - ], - "x-ms-correlation-request-id": [ - "4ab21561-0af8-4f54-9c2d-46dc01ce210b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220544Z:4ab21561-0af8-4f54-9c2d-46dc01ce210b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "082382a7-8f57-4886-b76a-fa79bdb66672" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9811" - ], - "x-ms-correlation-request-id": [ - "f1d6ae81-279b-41f6-9d18-46a982867db9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220544Z:f1d6ae81-279b-41f6-9d18-46a982867db9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa339915-7392-4c22-be9c-fbe358e7d498" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9810" - ], - "x-ms-correlation-request-id": [ - "5101138f-eda8-42af-a0c0-7b327d3c8ce4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220544Z:5101138f-eda8-42af-a0c0-7b327d3c8ce4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8dc58cbc-78ab-4c5d-b4bc-baabe34ccad6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9809" - ], - "x-ms-correlation-request-id": [ - "5feb7bd1-75a6-4b52-a201-5a2bc986f872" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220544Z:5feb7bd1-75a6-4b52-a201-5a2bc986f872" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa361a6f-505e-4782-8616-affba80d1793" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9808" - ], - "x-ms-correlation-request-id": [ - "e8429807-dc75-4dc9-91af-180756d788cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220545Z:e8429807-dc75-4dc9-91af-180756d788cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e0f44b0-2163-44ee-a1ca-124cd856cdf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9807" - ], - "x-ms-correlation-request-id": [ - "00f79eb3-cf85-4fbe-87a9-55376d454d8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220545Z:00f79eb3-cf85-4fbe-87a9-55376d454d8e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8455b0c1-8bc1-4eff-9410-225841785e5f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9806" - ], - "x-ms-correlation-request-id": [ - "9d977426-e92b-4620-a37e-669571426cf0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220545Z:9d977426-e92b-4620-a37e-669571426cf0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2743fdde-0cae-48c4-bb15-aea8464624d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9805" - ], - "x-ms-correlation-request-id": [ - "4621e606-eb9f-4128-85de-91796b746743" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220545Z:4621e606-eb9f-4128-85de-91796b746743" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76764c40-caea-4caf-805f-2470142c60a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9804" - ], - "x-ms-correlation-request-id": [ - "2378f3c2-cca4-4d3c-ab9a-471ea1899d99" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220545Z:2378f3c2-cca4-4d3c-ab9a-471ea1899d99" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "febef94c-a02f-4caf-9081-e501df031184" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9803" - ], - "x-ms-correlation-request-id": [ - "a608f213-4773-4755-9cb9-7f5791a1f51e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220545Z:a608f213-4773-4755-9cb9-7f5791a1f51e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d030e064-64ad-4dd4-8ec5-eff1a90d8b10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9802" - ], - "x-ms-correlation-request-id": [ - "e4b31636-8c1b-4684-b6ff-3db71eca5c27" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220545Z:e4b31636-8c1b-4684-b6ff-3db71eca5c27" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e935c348-8efb-48ef-8d01-dd03680f7dc9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9801" - ], - "x-ms-correlation-request-id": [ - "0183768d-8923-441d-b8e2-a1e672d6e879" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220546Z:0183768d-8923-441d-b8e2-a1e672d6e879" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41935f00-795c-46c9-9351-885ddb2309f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9800" - ], - "x-ms-correlation-request-id": [ - "6ccf7a34-d0c4-4397-93d5-833001f1e390" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220546Z:6ccf7a34-d0c4-4397-93d5-833001f1e390" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f228c83-a5b4-436c-a36f-ee31b3db21f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9799" - ], - "x-ms-correlation-request-id": [ - "d8f35efa-c1c9-478a-b655-f921a2160e58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220546Z:d8f35efa-c1c9-478a-b655-f921a2160e58" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7248cc8d-dd5a-43ae-9221-b684c88e0969" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9798" - ], - "x-ms-correlation-request-id": [ - "7afa6fdd-f0ee-47a8-9b47-19968a8e47ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220546Z:7afa6fdd-f0ee-47a8-9b47-19968a8e47ba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3e299200-ab6b-474c-86c9-107caac150c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9797" - ], - "x-ms-correlation-request-id": [ - "1dc44f4b-0554-431d-be7d-05cad3c38aac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220546Z:1dc44f4b-0554-431d-be7d-05cad3c38aac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1705cfea-d998-47ad-aabb-0aef1e6ac73b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9796" - ], - "x-ms-correlation-request-id": [ - "784dd4e3-a6c5-4b1d-a1fa-0f69e8a32b85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220546Z:784dd4e3-a6c5-4b1d-a1fa-0f69e8a32b85" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "09d7ffa3-90b2-42e6-82c5-5906da536247" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9795" - ], - "x-ms-correlation-request-id": [ - "d5d1decc-3008-472c-a132-afe929489279" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220547Z:d5d1decc-3008-472c-a132-afe929489279" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78743000-f4a9-42ed-830d-5a06f705e706" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9794" - ], - "x-ms-correlation-request-id": [ - "888cb77a-db2a-49f3-ac7b-56e03c01c2ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220547Z:888cb77a-db2a-49f3-ac7b-56e03c01c2ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "34a57de2-b182-4f14-881f-d9153f10c639" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9793" - ], - "x-ms-correlation-request-id": [ - "ab4267f1-27cb-4a8d-8669-e813baa32721" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220547Z:ab4267f1-27cb-4a8d-8669-e813baa32721" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "035e3f21-ed0b-482c-9005-b292c567ba4f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9792" - ], - "x-ms-correlation-request-id": [ - "7d0f718f-615a-417c-8dfb-bf7fa019adbd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220547Z:7d0f718f-615a-417c-8dfb-bf7fa019adbd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99d140ef-283b-4bb9-a2f8-602492c72c51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9791" - ], - "x-ms-correlation-request-id": [ - "d393cc45-200b-4856-a1ce-2d11939f95c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220547Z:d393cc45-200b-4856-a1ce-2d11939f95c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "348e56f9-0c80-4b18-bcd9-bd1a3f593726" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9790" - ], - "x-ms-correlation-request-id": [ - "87a3f219-6760-4e68-81f6-cdccc74db9d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220547Z:87a3f219-6760-4e68-81f6-cdccc74db9d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c2a73a6c-31e0-4380-bd39-9097d691582d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9789" - ], - "x-ms-correlation-request-id": [ - "8bbe1f44-d00f-485e-9442-d5a47711a9bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220548Z:8bbe1f44-d00f-485e-9442-d5a47711a9bb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6925577-4014-4302-a774-2f7b8719982d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9788" - ], - "x-ms-correlation-request-id": [ - "f2afe857-2b19-44c9-87fb-b09cbf8de55c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220548Z:f2afe857-2b19-44c9-87fb-b09cbf8de55c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c66da456-ddac-4a0d-aea0-8422caef2a0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9787" - ], - "x-ms-correlation-request-id": [ - "fbc9d3a9-14c7-48f3-b872-8161f8be2980" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220548Z:fbc9d3a9-14c7-48f3-b872-8161f8be2980" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25b3dc8b-4639-44c1-b65b-d9fdf5b092f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9786" - ], - "x-ms-correlation-request-id": [ - "670c1c4d-e4f3-49a9-a150-28060ed13bb2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220548Z:670c1c4d-e4f3-49a9-a150-28060ed13bb2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca95e79e-76d2-40e0-bdd1-b1b19f96c1ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9785" - ], - "x-ms-correlation-request-id": [ - "9acee641-9c16-4a74-92c1-3bd4047dd36d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220548Z:9acee641-9c16-4a74-92c1-3bd4047dd36d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac4a9b0d-9639-4817-9284-cc54a42bf7e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9784" - ], - "x-ms-correlation-request-id": [ - "cd688ea0-099e-47a9-af1e-ba781658c6ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220549Z:cd688ea0-099e-47a9-af1e-ba781658c6ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81cd9147-4682-49b4-bb69-1192bf352b68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9783" - ], - "x-ms-correlation-request-id": [ - "3b008b31-5d61-453b-a41d-3ec5d9261690" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220549Z:3b008b31-5d61-453b-a41d-3ec5d9261690" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70864cae-1e00-4622-b64c-553ec4e698fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9782" - ], - "x-ms-correlation-request-id": [ - "a1f7ad84-9d36-4056-b8be-5c3ae1389e1d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220549Z:a1f7ad84-9d36-4056-b8be-5c3ae1389e1d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37352cf8-9cb8-498c-8f4d-264104f89008" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9781" - ], - "x-ms-correlation-request-id": [ - "e9ae2d23-9eee-4dd1-b3b2-8473a24384dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220549Z:e9ae2d23-9eee-4dd1-b3b2-8473a24384dd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1698fa49-2f59-45a6-950b-63c5c6f0b9aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9780" - ], - "x-ms-correlation-request-id": [ - "707ed3ae-7257-418e-9f13-2e181d4ecd5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220549Z:707ed3ae-7257-418e-9f13-2e181d4ecd5e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f27f9ba-d17e-4843-97f8-433eb1261a65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9779" - ], - "x-ms-correlation-request-id": [ - "2ec582f5-da48-4dcf-865c-43004097df76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220549Z:2ec582f5-da48-4dcf-865c-43004097df76" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "150e5533-fc3d-4bf8-a007-bebc34a9f80c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9778" - ], - "x-ms-correlation-request-id": [ - "9fb8a47b-8370-494f-a7d9-bc39c550f395" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220549Z:9fb8a47b-8370-494f-a7d9-bc39c550f395" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7645915-68d4-4d3b-b076-8faef13b452d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9777" - ], - "x-ms-correlation-request-id": [ - "ea53c68f-a20a-4395-8e4d-03c3cbf9c748" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220550Z:ea53c68f-a20a-4395-8e4d-03c3cbf9c748" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77342401-934e-43cd-b1e9-897f15a313c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9776" - ], - "x-ms-correlation-request-id": [ - "752f350a-56eb-4706-97a2-6c5e706e8b25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220550Z:752f350a-56eb-4706-97a2-6c5e706e8b25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7420895-1a34-4579-a32f-fb75f9c47b6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9775" - ], - "x-ms-correlation-request-id": [ - "7b7eab45-5c63-46ec-a081-4bdcea9f1e76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220550Z:7b7eab45-5c63-46ec-a081-4bdcea9f1e76" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00071872-0491-41b8-9b93-766a7d5b4333" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9774" - ], - "x-ms-correlation-request-id": [ - "754b57fc-d318-409e-9e01-b251759c61c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220550Z:754b57fc-d318-409e-9e01-b251759c61c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96a6248d-e7b5-4af7-883c-95feee061150" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9773" - ], - "x-ms-correlation-request-id": [ - "bf4ad6ac-199d-4199-8f5a-c5d372850cf7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220550Z:bf4ad6ac-199d-4199-8f5a-c5d372850cf7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "523a7be0-6260-43dd-8ea7-b5138ddec529" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9772" - ], - "x-ms-correlation-request-id": [ - "b70582c7-b14a-4f83-833d-036c169d09c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220550Z:b70582c7-b14a-4f83-833d-036c169d09c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45a57182-3b28-4061-8c5d-b53cd52273b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9771" - ], - "x-ms-correlation-request-id": [ - "54b35563-c2d7-4a2c-b383-00082667f43c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220550Z:54b35563-c2d7-4a2c-b383-00082667f43c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c5e5dbd-3656-4075-856a-5a74627b215a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9770" - ], - "x-ms-correlation-request-id": [ - "7535f056-2193-4682-bd10-a4912e8adfbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220551Z:7535f056-2193-4682-bd10-a4912e8adfbf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c09177c-b381-408b-8c9f-db83422994bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9769" - ], - "x-ms-correlation-request-id": [ - "ccadc980-db87-4863-8f17-efc8ce25bde9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220551Z:ccadc980-db87-4863-8f17-efc8ce25bde9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "912e107c-0179-4ff1-b4d8-66bde739136b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9768" - ], - "x-ms-correlation-request-id": [ - "1e355539-e110-4265-9248-73fbbe8dc15e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220551Z:1e355539-e110-4265-9248-73fbbe8dc15e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "359e5074-9085-4dba-996a-336b098f1ec5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9767" - ], - "x-ms-correlation-request-id": [ - "7e691155-fd0c-4852-9dfc-6c2310f400f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220551Z:7e691155-fd0c-4852-9dfc-6c2310f400f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe4b93dc-c6f0-4d87-9db4-cf8516a1310e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9766" - ], - "x-ms-correlation-request-id": [ - "d8e01f26-4fab-4e45-9580-ba716510f83a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220551Z:d8e01f26-4fab-4e45-9580-ba716510f83a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31c06a42-0279-4e49-9cca-ab3cf5409313" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9765" - ], - "x-ms-correlation-request-id": [ - "292944cf-ca35-4640-afd5-04b289de8207" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220551Z:292944cf-ca35-4640-afd5-04b289de8207" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24fbe05f-d07e-4e21-aa1a-a17e1359a335" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9764" - ], - "x-ms-correlation-request-id": [ - "c7e7bcc4-665b-40ab-9e61-5cee2dff9eca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220552Z:c7e7bcc4-665b-40ab-9e61-5cee2dff9eca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01c10b7a-56c6-4baf-bfdf-c217d2fdb883" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9763" - ], - "x-ms-correlation-request-id": [ - "4066992b-b5ca-48b3-ad3f-d65623b29940" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220552Z:4066992b-b5ca-48b3-ad3f-d65623b29940" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c05ffeb5-f283-47a7-9a49-ea1a4d909f84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9762" - ], - "x-ms-correlation-request-id": [ - "5d3e9324-740e-49db-bd8f-1ff7d470a068" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220552Z:5d3e9324-740e-49db-bd8f-1ff7d470a068" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d70082e3-534a-40a2-b9d9-f371abd03d75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9761" - ], - "x-ms-correlation-request-id": [ - "cf53a7d4-0a00-4d88-bd1c-986750d73f49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220552Z:cf53a7d4-0a00-4d88-bd1c-986750d73f49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d57b1c99-73e6-4850-bcd3-42a8d4c70fb5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9760" - ], - "x-ms-correlation-request-id": [ - "55151861-aeaf-423e-9b55-9c77c494a54c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220552Z:55151861-aeaf-423e-9b55-9c77c494a54c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc5b076a-ee74-4438-8e9f-ed35fad32a72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9759" - ], - "x-ms-correlation-request-id": [ - "9b7619d0-c51b-4d17-8d5a-4c804e7b50c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220552Z:9b7619d0-c51b-4d17-8d5a-4c804e7b50c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0451b544-5e78-44db-9c95-855801215234" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9758" - ], - "x-ms-correlation-request-id": [ - "6591239c-6198-4d1d-9773-47dc94089ac1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220553Z:6591239c-6198-4d1d-9773-47dc94089ac1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e83b818-0618-44a5-9dae-edaf625c3299" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9757" - ], - "x-ms-correlation-request-id": [ - "eadfe1a2-1286-4399-8845-a33c571d00a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220553Z:eadfe1a2-1286-4399-8845-a33c571d00a0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19ec804f-0528-448e-b80d-b2c17d070a72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9756" - ], - "x-ms-correlation-request-id": [ - "ea6a4360-617f-438a-b001-6faa6177cd35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220553Z:ea6a4360-617f-438a-b001-6faa6177cd35" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb55ac3a-3078-4004-84c9-a8930d8b03e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9755" - ], - "x-ms-correlation-request-id": [ - "deb2ec34-79e0-4154-a1e0-617ea5a57341" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220553Z:deb2ec34-79e0-4154-a1e0-617ea5a57341" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e986c154-fb98-448b-bf75-47fede597b11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9754" - ], - "x-ms-correlation-request-id": [ - "5f48dd99-8ab7-49f2-a813-66939bcb317d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220553Z:5f48dd99-8ab7-49f2-a813-66939bcb317d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de7a444a-6aba-4ef4-bcc1-d579d65016f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9753" - ], - "x-ms-correlation-request-id": [ - "a6d67be6-794c-48c1-a07a-738edc2f863e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220553Z:a6d67be6-794c-48c1-a07a-738edc2f863e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f9c934a-11a6-453a-8b7a-77c708a6ee70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9752" - ], - "x-ms-correlation-request-id": [ - "b0f24025-ce46-42a0-bc49-359c70d45fe0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220553Z:b0f24025-ce46-42a0-bc49-359c70d45fe0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f03bc0e0-7754-4ef8-99bd-15d810a42932" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9751" - ], - "x-ms-correlation-request-id": [ - "0e04021e-4866-4062-94f4-5d14a0729118" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220554Z:0e04021e-4866-4062-94f4-5d14a0729118" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "521a9855-99a9-4366-bf12-26e11259298d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9750" - ], - "x-ms-correlation-request-id": [ - "720f7680-c915-4f7e-b631-8fadefb7b7a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220554Z:720f7680-c915-4f7e-b631-8fadefb7b7a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a172700f-2807-4177-a72b-b1a95a3cfd32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9749" - ], - "x-ms-correlation-request-id": [ - "e18201df-97b8-412a-a755-9bfe96155b1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220554Z:e18201df-97b8-412a-a755-9bfe96155b1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0e3f914-eec4-4a39-9a35-a4708d001754" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9748" - ], - "x-ms-correlation-request-id": [ - "cb3c9a1c-8b17-405e-9e62-7d1385a7878a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220554Z:cb3c9a1c-8b17-405e-9e62-7d1385a7878a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fc7b825-0143-46fa-bc51-ceb657520f8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9747" - ], - "x-ms-correlation-request-id": [ - "be3b0050-bee2-479f-9bf8-e3ba82389f7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220554Z:be3b0050-bee2-479f-9bf8-e3ba82389f7e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ad50b98-5bc7-4fba-9ed8-87830390b78e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9746" - ], - "x-ms-correlation-request-id": [ - "b97ccca7-0e1d-439e-8811-e29e7232750b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220554Z:b97ccca7-0e1d-439e-8811-e29e7232750b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "063480df-557c-46de-9c5b-bdb1dc244668" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9745" - ], - "x-ms-correlation-request-id": [ - "6d1095ab-3e14-4753-9a1e-198b71e88022" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220555Z:6d1095ab-3e14-4753-9a1e-198b71e88022" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ef0dcff-042d-404f-82aa-32a4a06bc867" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9744" - ], - "x-ms-correlation-request-id": [ - "7024cb9d-0e06-4d31-8e06-eeacb88357dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220555Z:7024cb9d-0e06-4d31-8e06-eeacb88357dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "927adb29-e74c-4976-9d3f-84808340f2fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9743" - ], - "x-ms-correlation-request-id": [ - "65ab245f-e1bb-406b-921a-a4c8548e845f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220555Z:65ab245f-e1bb-406b-921a-a4c8548e845f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28a1b053-5f85-4f28-8b17-0cf7f75682d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9742" - ], - "x-ms-correlation-request-id": [ - "5de47226-5b7e-45cf-8d8b-e11f6934141a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220555Z:5de47226-5b7e-45cf-8d8b-e11f6934141a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f0c8ca6-ff51-4efd-97c1-ac23556464ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9741" - ], - "x-ms-correlation-request-id": [ - "96d2c057-3727-479a-9a62-90f56f18323b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220555Z:96d2c057-3727-479a-9a62-90f56f18323b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7eb0e025-2483-4b26-a37d-77e383267498" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9740" - ], - "x-ms-correlation-request-id": [ - "557de931-87a2-4e02-905e-890994f8a675" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220556Z:557de931-87a2-4e02-905e-890994f8a675" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "573316fd-3856-440c-9f6a-7f168606d9a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9739" - ], - "x-ms-correlation-request-id": [ - "8ca9ca6e-5ce2-4433-8246-f7f1e881aa44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220556Z:8ca9ca6e-5ce2-4433-8246-f7f1e881aa44" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d40a2bbb-f47d-48a4-b715-15d6ce8d50da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9738" - ], - "x-ms-correlation-request-id": [ - "070afe90-584c-4793-96f6-2e64917d54a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220556Z:070afe90-584c-4793-96f6-2e64917d54a2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a7acb6b-2673-4e3c-8328-4b542ab43a19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9737" - ], - "x-ms-correlation-request-id": [ - "ac119f8a-9d99-47e9-b6eb-7023d6b2b204" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220556Z:ac119f8a-9d99-47e9-b6eb-7023d6b2b204" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9a2d761-ebdc-4f12-906d-946bf9ce2353" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9736" - ], - "x-ms-correlation-request-id": [ - "5edff10a-f3e6-4dbc-a0fb-bc379e3f2fa6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220556Z:5edff10a-f3e6-4dbc-a0fb-bc379e3f2fa6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d4511ef-156c-412e-a011-7f4222a3bc1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9735" - ], - "x-ms-correlation-request-id": [ - "ee2c460e-3a50-4ba4-aee4-186e76c0b906" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220556Z:ee2c460e-3a50-4ba4-aee4-186e76c0b906" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f3294cf-9fad-4399-839c-96726b38aaba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9734" - ], - "x-ms-correlation-request-id": [ - "e09c5541-6b3c-44d5-b1e4-46e231d184a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220557Z:e09c5541-6b3c-44d5-b1e4-46e231d184a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e76be95-ec0a-4ea9-8ec1-14e200621f01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9733" - ], - "x-ms-correlation-request-id": [ - "6210a2a4-47ac-4882-aebc-fa1089197d1d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220557Z:6210a2a4-47ac-4882-aebc-fa1089197d1d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3596659d-0395-4e66-bdb3-87a78275acd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9732" - ], - "x-ms-correlation-request-id": [ - "6811f071-fce4-4c6d-be45-839eb3684ea8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220557Z:6811f071-fce4-4c6d-be45-839eb3684ea8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c99fa100-23e4-415d-b018-2e1a3607d612" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9731" - ], - "x-ms-correlation-request-id": [ - "674ef8fa-5f0c-436a-8443-0c03a06851e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220557Z:674ef8fa-5f0c-436a-8443-0c03a06851e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c84dfb7-4c29-400d-9528-6c2e706d4d8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9730" - ], - "x-ms-correlation-request-id": [ - "07f999a1-621b-4df7-8218-05551edd9a0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220557Z:07f999a1-621b-4df7-8218-05551edd9a0c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da501cad-6591-4bac-8960-419681fa2cfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9729" - ], - "x-ms-correlation-request-id": [ - "4207d421-2b1c-4a0c-a8ee-6c5536935ee4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220557Z:4207d421-2b1c-4a0c-a8ee-6c5536935ee4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf173f91-8dc4-4230-8af7-c461482cd908" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9728" - ], - "x-ms-correlation-request-id": [ - "c77f3bb9-987a-4f72-9917-b921280b4dee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220558Z:c77f3bb9-987a-4f72-9917-b921280b4dee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c76ec2c4-e5a1-4a14-b677-d6fffc1aac49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9727" - ], - "x-ms-correlation-request-id": [ - "f6b57510-d011-492c-b209-4b8dae36f649" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220558Z:f6b57510-d011-492c-b209-4b8dae36f649" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3628bee6-7bd6-4a42-a094-4679ecaeed24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9726" - ], - "x-ms-correlation-request-id": [ - "f8cee0f0-4a5a-433a-806c-9b996583808e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220558Z:f8cee0f0-4a5a-433a-806c-9b996583808e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7d95129-0172-4b5e-baad-c4a6e8201b61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9725" - ], - "x-ms-correlation-request-id": [ - "1450b8a2-69aa-4b1c-a6b8-183b2796e497" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220558Z:1450b8a2-69aa-4b1c-a6b8-183b2796e497" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2e1839d-d0c1-437a-ac17-926f285ff1fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9724" - ], - "x-ms-correlation-request-id": [ - "eff8ea1c-d537-4e10-8008-306d947cde17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220558Z:eff8ea1c-d537-4e10-8008-306d947cde17" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b58da189-9162-4e84-a159-f5355ca9ab1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9723" - ], - "x-ms-correlation-request-id": [ - "bfe9a414-542a-4e6d-b625-7c6b031081df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220559Z:bfe9a414-542a-4e6d-b625-7c6b031081df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "adf9ba61-920c-4d92-bd53-9b474dfa43db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9722" - ], - "x-ms-correlation-request-id": [ - "42aa040b-7934-4c6c-87b3-47765eae99c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220559Z:42aa040b-7934-4c6c-87b3-47765eae99c4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ec18c943-c3b1-40a2-a789-bf463ae39d95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9721" - ], - "x-ms-correlation-request-id": [ - "e00a6e07-dd50-4ba6-8cec-e4275a9b7c20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220559Z:e00a6e07-dd50-4ba6-8cec-e4275a9b7c20" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "faae65af-fdd8-4bed-9486-182c0c3c5b1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9720" - ], - "x-ms-correlation-request-id": [ - "aa1ff280-a19f-4378-9923-e56f1a6ace48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220559Z:aa1ff280-a19f-4378-9923-e56f1a6ace48" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59e979c3-5204-4d52-a4bb-1b0f0cd97821" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9719" - ], - "x-ms-correlation-request-id": [ - "47f93064-ad97-4f29-962d-c792cc2df324" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220559Z:47f93064-ad97-4f29-962d-c792cc2df324" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e591bef8-dfa8-463e-8756-e46a995f97ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9718" - ], - "x-ms-correlation-request-id": [ - "7c387d6e-f2d3-4c23-b878-e5cfc2250fbd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220559Z:7c387d6e-f2d3-4c23-b878-e5cfc2250fbd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de696d90-aa63-4866-b603-d22213752460" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9717" - ], - "x-ms-correlation-request-id": [ - "9124bb19-3602-4f03-ad58-d2d16d58768f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220559Z:9124bb19-3602-4f03-ad58-d2d16d58768f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2148320-f86f-4690-a300-4b7b9e88de43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9716" - ], - "x-ms-correlation-request-id": [ - "4cc23bbd-f686-407e-9a6d-37474a589b7d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220600Z:4cc23bbd-f686-407e-9a6d-37474a589b7d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56f8b8da-0941-43db-94f9-c6f8c92f4696" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9715" - ], - "x-ms-correlation-request-id": [ - "2fbc5955-f1d0-48d1-8f4b-f3f991806229" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220600Z:2fbc5955-f1d0-48d1-8f4b-f3f991806229" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7bca5a41-9bc5-4ab9-a244-66f434afd2fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9714" - ], - "x-ms-correlation-request-id": [ - "5be63ce5-5439-499d-bfe0-c370fa96fa79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220600Z:5be63ce5-5439-499d-bfe0-c370fa96fa79" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46ec3a1f-cd04-4c57-8529-0a429ce1e4bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9713" - ], - "x-ms-correlation-request-id": [ - "9abaaa3d-09ab-44d1-872d-6da547c96384" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220600Z:9abaaa3d-09ab-44d1-872d-6da547c96384" - ], - "Date": [ - "Tue, 29 Aug 2017 22:05:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "242bc042-3229-4480-b15a-9541428a4843" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9712" - ], - "x-ms-correlation-request-id": [ - "711160a7-9e79-4ec7-8445-c97eccf32ebf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220600Z:711160a7-9e79-4ec7-8445-c97eccf32ebf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ef1e9a6-6025-4c3d-a656-bda4e62cbe59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9711" - ], - "x-ms-correlation-request-id": [ - "06125e84-c16d-4464-bb5a-0cc8dcadea81" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220600Z:06125e84-c16d-4464-bb5a-0cc8dcadea81" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d056956-96d3-4568-a272-3ad0716931e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9710" - ], - "x-ms-correlation-request-id": [ - "6e8ec938-4145-461f-9bb3-090994fbec2a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220600Z:6e8ec938-4145-461f-9bb3-090994fbec2a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ab95959-fd77-4ba1-b4f9-c6c3f84c3d4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9709" - ], - "x-ms-correlation-request-id": [ - "e639c334-19d6-42c4-aeb8-90317a8a072d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220601Z:e639c334-19d6-42c4-aeb8-90317a8a072d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1f7b267-36ca-4462-9f1c-6f5d8acafac5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9708" - ], - "x-ms-correlation-request-id": [ - "f48cebb9-67da-48e3-a75a-9c747cafd67e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220601Z:f48cebb9-67da-48e3-a75a-9c747cafd67e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c0a6bfd-b4c7-4e7c-a463-34ea055faff0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9707" - ], - "x-ms-correlation-request-id": [ - "058d457d-0e09-4128-8571-4074db4f7e50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220601Z:058d457d-0e09-4128-8571-4074db4f7e50" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "125dd74e-8a16-4e47-bab8-bab7b6e978c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9706" - ], - "x-ms-correlation-request-id": [ - "09823065-ae0b-4660-a71e-1f8efa21352e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220601Z:09823065-ae0b-4660-a71e-1f8efa21352e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3822650-421e-46dd-8c17-0347c8f4f849" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9705" - ], - "x-ms-correlation-request-id": [ - "91f3ce98-e3a7-4655-b44e-d97ba36ba25e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220601Z:91f3ce98-e3a7-4655-b44e-d97ba36ba25e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81c623c7-9684-414b-b06d-813f91d965b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9704" - ], - "x-ms-correlation-request-id": [ - "7a371bfc-f2d6-413b-8e07-7c8b67dddcb3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220601Z:7a371bfc-f2d6-413b-8e07-7c8b67dddcb3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d9ba0eb-13a6-4181-b74e-343fa3a461f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9703" - ], - "x-ms-correlation-request-id": [ - "ab4bb03e-9b4f-4fae-9c05-3f530a57823b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220601Z:ab4bb03e-9b4f-4fae-9c05-3f530a57823b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e56f0ee-47ec-4552-bec0-2f5668a521fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9702" - ], - "x-ms-correlation-request-id": [ - "30a86dac-777e-41a0-8138-8bf2f7229ef5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220602Z:30a86dac-777e-41a0-8138-8bf2f7229ef5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c4153c7-2930-4862-acb6-29dc712b039a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9701" - ], - "x-ms-correlation-request-id": [ - "bf32a906-c17b-4421-ba9f-2d62c131f5ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220602Z:bf32a906-c17b-4421-ba9f-2d62c131f5ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aeeacd63-d031-4f1f-b759-9281b0365c0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9700" - ], - "x-ms-correlation-request-id": [ - "ceaf667a-6943-46d8-960f-88b2e02e0ed4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220602Z:ceaf667a-6943-46d8-960f-88b2e02e0ed4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a7b8421-619e-4cac-8a75-37e46c2b80f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9699" - ], - "x-ms-correlation-request-id": [ - "eafc271c-2321-4db0-ba3a-776e6273c3f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220602Z:eafc271c-2321-4db0-ba3a-776e6273c3f3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36740175-8d8b-49d0-9a98-70ca58bd4732" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9698" - ], - "x-ms-correlation-request-id": [ - "740d2c75-f887-4762-a35b-e8d74a9c22d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220602Z:740d2c75-f887-4762-a35b-e8d74a9c22d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84714bbd-1cfe-49ed-ba53-3bcf5d2f1525" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9697" - ], - "x-ms-correlation-request-id": [ - "8fcf2dc1-cf02-429a-9412-e9be2fd284ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220602Z:8fcf2dc1-cf02-429a-9412-e9be2fd284ce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6a41bd8-a6d3-4f02-addc-09955f13cf4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9696" - ], - "x-ms-correlation-request-id": [ - "b4931e16-8ba6-4638-8fb7-fb4abb7d4ff0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220603Z:b4931e16-8ba6-4638-8fb7-fb4abb7d4ff0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f3eef35-a91e-4d50-b2e2-f1e5a9a8ce20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9695" - ], - "x-ms-correlation-request-id": [ - "86a95e70-d268-408d-bfaf-28ffee41d249" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220603Z:86a95e70-d268-408d-bfaf-28ffee41d249" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e70a67fb-0fa1-4adc-90eb-daee16640c1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9694" - ], - "x-ms-correlation-request-id": [ - "1d56529d-7e4e-4627-a42f-3975e547758e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220603Z:1d56529d-7e4e-4627-a42f-3975e547758e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7078385-ffc2-405f-aa01-6dcba0d95866" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9693" - ], - "x-ms-correlation-request-id": [ - "a5cf1708-7435-43ac-9db4-98cea4dc77b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220603Z:a5cf1708-7435-43ac-9db4-98cea4dc77b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8fb5ed8-cc2a-4333-be7a-cb6f52e1ab8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9692" - ], - "x-ms-correlation-request-id": [ - "f53914db-0b5b-4920-a3a3-2a3158f1ace5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220603Z:f53914db-0b5b-4920-a3a3-2a3158f1ace5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d6203cd-bf7c-4dbb-b88c-64b246e3ffa6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9691" - ], - "x-ms-correlation-request-id": [ - "76fd239c-3362-45cf-a79c-c29553620e1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220603Z:76fd239c-3362-45cf-a79c-c29553620e1e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "013a35db-1692-45e9-853c-0e1ddca2fbd5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9690" - ], - "x-ms-correlation-request-id": [ - "f0a993f2-d32b-45e2-9466-7cb53de89a4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220603Z:f0a993f2-d32b-45e2-9466-7cb53de89a4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b187f3d2-6e3f-4634-9a99-9971f95a223e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9689" - ], - "x-ms-correlation-request-id": [ - "caa3a58b-7a7a-49e3-99a1-517e2b22f981" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220604Z:caa3a58b-7a7a-49e3-99a1-517e2b22f981" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "402983ee-f1c1-4ce2-b1f7-c8464f85ee15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9688" - ], - "x-ms-correlation-request-id": [ - "592d6fdb-8cae-4f4c-8af0-69bdc89633e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220604Z:592d6fdb-8cae-4f4c-8af0-69bdc89633e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98cc3782-d94a-44e7-8d96-357cf49b4b56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9687" - ], - "x-ms-correlation-request-id": [ - "f38e15fd-3784-4cc0-b39b-6b0224e2fa7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220604Z:f38e15fd-3784-4cc0-b39b-6b0224e2fa7e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1ccc4f9-94df-48f2-9565-83c3ac532096" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9686" - ], - "x-ms-correlation-request-id": [ - "158171ba-b60d-4796-9bd4-ec044b67f6e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220604Z:158171ba-b60d-4796-9bd4-ec044b67f6e4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01ff973e-8861-4faf-9c66-2cb0b7b91e5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9685" - ], - "x-ms-correlation-request-id": [ - "ad73c9ed-6a42-401e-9f8e-8b47c600027e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220604Z:ad73c9ed-6a42-401e-9f8e-8b47c600027e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f0235b2-e6af-46fc-be4d-bdc97dca61db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9684" - ], - "x-ms-correlation-request-id": [ - "84435b6e-3809-4f68-9598-1985fcfc921c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220604Z:84435b6e-3809-4f68-9598-1985fcfc921c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dbc8871f-19bb-4a5e-9172-103781d1f394" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9683" - ], - "x-ms-correlation-request-id": [ - "95521c42-948b-446f-9447-2a4e7d17d77e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220605Z:95521c42-948b-446f-9447-2a4e7d17d77e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0537140d-c616-4b95-8d16-2d56c2881378" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9682" - ], - "x-ms-correlation-request-id": [ - "fbaa367e-6aa9-478e-8489-dbeaac093f5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220605Z:fbaa367e-6aa9-478e-8489-dbeaac093f5a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84a5f53d-0aa8-4a17-94b5-a7033c5591a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9681" - ], - "x-ms-correlation-request-id": [ - "50aa688a-141e-48fe-9a60-8ab515a34ef8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220605Z:50aa688a-141e-48fe-9a60-8ab515a34ef8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7be13331-7843-44d4-8604-53736df61b4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9680" - ], - "x-ms-correlation-request-id": [ - "c2d19d60-6483-4842-9453-b6395dc1518e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220605Z:c2d19d60-6483-4842-9453-b6395dc1518e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aff709f0-4e4e-4921-ae97-db641ec8b61d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9679" - ], - "x-ms-correlation-request-id": [ - "3aa2149a-6f4d-4d11-9a6c-94be9edcd266" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220605Z:3aa2149a-6f4d-4d11-9a6c-94be9edcd266" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b891d07-9710-4ecc-82ab-078a3a4296ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9678" - ], - "x-ms-correlation-request-id": [ - "c583c7fe-15ef-4b9c-99ec-1ad46600fd84" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220605Z:c583c7fe-15ef-4b9c-99ec-1ad46600fd84" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b359aaaa-970a-4bf3-ad9a-99c355e5e9d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9677" - ], - "x-ms-correlation-request-id": [ - "c26a3bc0-31b4-4b2e-9fdc-e3716ed072fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220606Z:c26a3bc0-31b4-4b2e-9fdc-e3716ed072fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9f6ef14-c640-4c4b-8238-10a9d44a0b9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9676" - ], - "x-ms-correlation-request-id": [ - "510c458b-2d7e-40de-ba23-7d05db557203" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220606Z:510c458b-2d7e-40de-ba23-7d05db557203" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5bade810-bede-4741-9883-68bce6a90f7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9675" - ], - "x-ms-correlation-request-id": [ - "b91264b7-b6ed-4db3-a17f-ff3f6e4b2801" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220606Z:b91264b7-b6ed-4db3-a17f-ff3f6e4b2801" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "adce73a1-f9d3-413a-a7ad-42e7759e0b0a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9674" - ], - "x-ms-correlation-request-id": [ - "2c3a071f-eaea-4e8b-9507-2643e6207e67" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220606Z:2c3a071f-eaea-4e8b-9507-2643e6207e67" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc7e104b-9d7b-4dee-b4d2-b1f84ce1a334" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9673" - ], - "x-ms-correlation-request-id": [ - "6ab4bc08-99ac-4a5c-8eda-30a1f4250a96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220606Z:6ab4bc08-99ac-4a5c-8eda-30a1f4250a96" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51cc611c-ce1e-4e69-a6d4-99d35495c8b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9672" - ], - "x-ms-correlation-request-id": [ - "291ca530-c908-44ec-b856-141aa05bb1bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220607Z:291ca530-c908-44ec-b856-141aa05bb1bc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c3efdd7-1f61-46bb-a41a-05d2b7de01bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9671" - ], - "x-ms-correlation-request-id": [ - "c86e34c4-b534-4a9f-ab7b-a4e4568c699b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220607Z:c86e34c4-b534-4a9f-ab7b-a4e4568c699b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dcb0dfbc-a49a-4c49-9f08-c4f1b8ce2e78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9670" - ], - "x-ms-correlation-request-id": [ - "0886ce64-6031-41f3-8fc7-a4dddfe2f104" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220607Z:0886ce64-6031-41f3-8fc7-a4dddfe2f104" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "043d41b9-9f5d-4e3a-bee9-4bf3bc7abc40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9669" - ], - "x-ms-correlation-request-id": [ - "8041cbec-885d-4cb1-bd3f-748d41d52b28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220607Z:8041cbec-885d-4cb1-bd3f-748d41d52b28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3783c256-08f1-42cc-af4f-78388edad365" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9668" - ], - "x-ms-correlation-request-id": [ - "d1541cb2-da52-4282-a937-22e71124ef00" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220608Z:d1541cb2-da52-4282-a937-22e71124ef00" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "591cd271-bdbe-4dcd-834d-8bda83f16b81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9667" - ], - "x-ms-correlation-request-id": [ - "b8d5249c-8c8d-40d2-aab1-3e5d04e8cee7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220608Z:b8d5249c-8c8d-40d2-aab1-3e5d04e8cee7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4abab2cd-6a1a-4e0c-9e1d-0b3ca88c8e84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9666" - ], - "x-ms-correlation-request-id": [ - "29e97646-0491-4d12-9750-a862267d7091" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220608Z:29e97646-0491-4d12-9750-a862267d7091" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b365b9b6-acab-47e7-80c5-6ec82dae1914" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9665" - ], - "x-ms-correlation-request-id": [ - "026f1a81-d1a4-41e4-a3b3-ceca3dd777c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220608Z:026f1a81-d1a4-41e4-a3b3-ceca3dd777c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f090204-1806-4aa4-88b7-ada245b59903" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9664" - ], - "x-ms-correlation-request-id": [ - "b71447e3-029d-486c-95bf-22569ed532ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220608Z:b71447e3-029d-486c-95bf-22569ed532ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ad32a24-3a05-45f9-824b-56b107868b01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9663" - ], - "x-ms-correlation-request-id": [ - "0f1645a4-a4d5-4567-b850-f883a3fa6e3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220609Z:0f1645a4-a4d5-4567-b850-f883a3fa6e3e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a48b7f01-03f4-4bd5-b31b-bc854f1b4118" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9662" - ], - "x-ms-correlation-request-id": [ - "d99a418b-454f-4850-99f2-baedb6bfbbe6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220609Z:d99a418b-454f-4850-99f2-baedb6bfbbe6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8235d9e8-4926-4084-9ed1-3c3707d0a199" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9661" - ], - "x-ms-correlation-request-id": [ - "1c24cc55-07e6-43d2-8c44-732fe69836c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220609Z:1c24cc55-07e6-43d2-8c44-732fe69836c4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e6b7333-72c8-41f9-866f-6dff69fc71fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9660" - ], - "x-ms-correlation-request-id": [ - "5840079c-7a31-4f7b-870f-e3e4bd87454d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220609Z:5840079c-7a31-4f7b-870f-e3e4bd87454d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9f82d13-eb58-4aa1-a3e4-284fa830f9c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9659" - ], - "x-ms-correlation-request-id": [ - "39cdab26-7f58-4e7c-bd3a-464606ab940e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220609Z:39cdab26-7f58-4e7c-bd3a-464606ab940e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1702fed2-b97d-4029-86b5-3a0782b1e74e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9658" - ], - "x-ms-correlation-request-id": [ - "adbc3b40-bd49-4193-a755-7e3f47a67839" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220609Z:adbc3b40-bd49-4193-a755-7e3f47a67839" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "833fba4d-cc0f-47cf-9360-e12ff0036bfe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9657" - ], - "x-ms-correlation-request-id": [ - "36e838a2-5c63-4098-9df8-cefa143478c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220609Z:36e838a2-5c63-4098-9df8-cefa143478c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c2a9b66-63c5-4d7e-b249-27f467d82ae8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9656" - ], - "x-ms-correlation-request-id": [ - "8db81c45-c2a8-42aa-9298-63ba39dc50f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220610Z:8db81c45-c2a8-42aa-9298-63ba39dc50f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6edc8545-1ce6-463e-8baa-296a1d0ede6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9655" - ], - "x-ms-correlation-request-id": [ - "367110b0-092b-4cea-b796-e768462d7021" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220610Z:367110b0-092b-4cea-b796-e768462d7021" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd7a9508-2ce4-41d7-aafa-d6716cfd7973" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9654" - ], - "x-ms-correlation-request-id": [ - "073af278-df0e-4140-b086-967bc39f74cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220610Z:073af278-df0e-4140-b086-967bc39f74cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86fc57d2-0167-4e68-a59f-718d6d2724dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9653" - ], - "x-ms-correlation-request-id": [ - "3dd24ed3-20c8-4adf-89eb-d61dbf232a80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220610Z:3dd24ed3-20c8-4adf-89eb-d61dbf232a80" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d491ba1c-01c6-49ae-b46a-34d13ec7cf5d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9652" - ], - "x-ms-correlation-request-id": [ - "276f81cd-09ce-4932-8a89-db64e0f92d5c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220610Z:276f81cd-09ce-4932-8a89-db64e0f92d5c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3665f6cb-c1ce-4422-abc7-68c732b1b7e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9651" - ], - "x-ms-correlation-request-id": [ - "960a6cbd-40af-4257-905e-21f5a67b90bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220610Z:960a6cbd-40af-4257-905e-21f5a67b90bf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74467f1c-e931-4483-91af-be1180d6eb73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9650" - ], - "x-ms-correlation-request-id": [ - "7a13b59a-1c97-4635-92a1-ee8021bb95c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220611Z:7a13b59a-1c97-4635-92a1-ee8021bb95c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "812104ea-13d7-4a0c-bb2c-9c5a706270b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9649" - ], - "x-ms-correlation-request-id": [ - "0773f2ad-4f49-4a15-8f99-72220be9503b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220611Z:0773f2ad-4f49-4a15-8f99-72220be9503b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eca14657-7927-4fff-9c3b-c393f6e24ed3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9648" - ], - "x-ms-correlation-request-id": [ - "85c80776-3eec-4598-992e-88e75a2d2e85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220611Z:85c80776-3eec-4598-992e-88e75a2d2e85" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f8b0837-dc9f-4aff-874f-309802e64bf2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9647" - ], - "x-ms-correlation-request-id": [ - "98830750-ff8b-4919-b6cb-9b5b654ece42" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220611Z:98830750-ff8b-4919-b6cb-9b5b654ece42" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d63c4eee-c6a0-43a5-98f6-137e7417fa96" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9646" - ], - "x-ms-correlation-request-id": [ - "77f01fa5-ae54-44c5-b5cd-ee4b9dedcb97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220611Z:77f01fa5-ae54-44c5-b5cd-ee4b9dedcb97" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "32587cac-a4cd-45ce-bdbd-3f5bb36abd5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9645" - ], - "x-ms-correlation-request-id": [ - "8dae10c4-2411-409d-bcff-ee60d533e5c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220612Z:8dae10c4-2411-409d-bcff-ee60d533e5c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ced3844e-e1ba-44ab-a96d-0d724dd6a1a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9644" - ], - "x-ms-correlation-request-id": [ - "ec36ea07-3e1a-4b21-8bb7-c7fac6605eae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220612Z:ec36ea07-3e1a-4b21-8bb7-c7fac6605eae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0116a59-3639-4930-950e-666a1b11a98d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9643" - ], - "x-ms-correlation-request-id": [ - "f52c93bf-b9d2-4e2e-a53d-fd317266e5f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220612Z:f52c93bf-b9d2-4e2e-a53d-fd317266e5f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe2359ce-7a70-41da-ac83-bde05a4eb084" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9642" - ], - "x-ms-correlation-request-id": [ - "4d73e55c-4ff0-42da-b8d1-624fc4495a28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220612Z:4d73e55c-4ff0-42da-b8d1-624fc4495a28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bcd98a7-78bd-4833-96e0-2354098b2aa6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9641" - ], - "x-ms-correlation-request-id": [ - "359e8206-561f-49ae-bb78-7c69d3044012" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220612Z:359e8206-561f-49ae-bb78-7c69d3044012" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cea67e2b-9c95-470a-a397-39fd9125393e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9640" - ], - "x-ms-correlation-request-id": [ - "ea738ec9-61f4-43da-abbd-10ad00b39028" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220612Z:ea738ec9-61f4-43da-abbd-10ad00b39028" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8638dd45-5c75-4573-afc7-a4531f344596" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9639" - ], - "x-ms-correlation-request-id": [ - "42185356-bc5d-47d2-957f-538e2be5e305" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220613Z:42185356-bc5d-47d2-957f-538e2be5e305" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c3782b3-349a-4b59-925e-797bb0691c81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9638" - ], - "x-ms-correlation-request-id": [ - "d69d5050-a58b-48db-9855-ad35e708621a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220613Z:d69d5050-a58b-48db-9855-ad35e708621a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c54c37e8-bc65-40e2-8e54-6a5412b7f0f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9637" - ], - "x-ms-correlation-request-id": [ - "d26a1069-0895-4ca0-b782-85acc8fd9cae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220613Z:d26a1069-0895-4ca0-b782-85acc8fd9cae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "136b47e7-a728-450e-8609-202a8b3db6ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9636" - ], - "x-ms-correlation-request-id": [ - "bf30facb-9bf7-4944-af59-2ac07e4b4a12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220613Z:bf30facb-9bf7-4944-af59-2ac07e4b4a12" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45aac844-fc3c-46d5-ad06-c0261755ad14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9635" - ], - "x-ms-correlation-request-id": [ - "f43bc5c6-26f5-4e4b-8ede-9884a35b1838" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220613Z:f43bc5c6-26f5-4e4b-8ede-9884a35b1838" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54fe5015-3f0a-463e-b5d1-f9cb172d6840" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9634" - ], - "x-ms-correlation-request-id": [ - "8d910fd4-cb02-431e-98d2-4cbf3f6e9aee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220613Z:8d910fd4-cb02-431e-98d2-4cbf3f6e9aee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e37ddf96-f955-4da2-811e-0f0ca733d01e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9633" - ], - "x-ms-correlation-request-id": [ - "e9f6c9be-f2da-455c-8f27-fda7c8b79e74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220613Z:e9f6c9be-f2da-455c-8f27-fda7c8b79e74" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dfd67db6-adb7-474c-8820-a67b858264e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9632" - ], - "x-ms-correlation-request-id": [ - "5203948d-305f-4bff-b75f-2d735c136103" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220613Z:5203948d-305f-4bff-b75f-2d735c136103" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5a29c7e-ea14-4abf-9433-87a63fb68f4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9631" - ], - "x-ms-correlation-request-id": [ - "2458533a-88af-4bd8-8b12-e26c30398d6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220614Z:2458533a-88af-4bd8-8b12-e26c30398d6c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11afe185-8ac0-44b9-b0ca-8a0fafc72ab9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9630" - ], - "x-ms-correlation-request-id": [ - "ead386f9-dd4c-4253-8db6-f7885e2058bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220614Z:ead386f9-dd4c-4253-8db6-f7885e2058bd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4bcffb3c-2b32-4fd0-bbb6-1eda735178e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9629" - ], - "x-ms-correlation-request-id": [ - "abc4d6a6-6229-4d30-b5ae-b4718bce9b31" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220614Z:abc4d6a6-6229-4d30-b5ae-b4718bce9b31" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3a7b41f-87e8-45b5-89b2-06335cb1cbcb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9628" - ], - "x-ms-correlation-request-id": [ - "e6c3fb1b-3c0b-4e1e-8241-736a95406ee4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220614Z:e6c3fb1b-3c0b-4e1e-8241-736a95406ee4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1faad0e-3bf7-492e-bb86-3f75e76ddd15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9627" - ], - "x-ms-correlation-request-id": [ - "d0521697-3846-4561-84fa-4a71017f06b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220614Z:d0521697-3846-4561-84fa-4a71017f06b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac7369db-273a-435f-bd9d-8ac63849e803" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9626" - ], - "x-ms-correlation-request-id": [ - "6e0c1566-6b0a-4afa-a3e3-49bcceff3891" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220614Z:6e0c1566-6b0a-4afa-a3e3-49bcceff3891" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43f4a1f6-1414-4cb5-bebf-7b18f2b6f09a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9625" - ], - "x-ms-correlation-request-id": [ - "c72afa44-4e8b-4a5e-94df-c43640e0ae09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220615Z:c72afa44-4e8b-4a5e-94df-c43640e0ae09" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "402ae353-0537-4aca-80eb-714dae3fb748" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9624" - ], - "x-ms-correlation-request-id": [ - "bdcc9663-3e19-4797-a803-c644d23c12b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220615Z:bdcc9663-3e19-4797-a803-c644d23c12b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9e51d3d-4dac-4c69-a2df-a73252251d78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9623" - ], - "x-ms-correlation-request-id": [ - "ff8ed3b7-96ef-44c7-858c-94dce23085b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220615Z:ff8ed3b7-96ef-44c7-858c-94dce23085b0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08bb13ab-e4ce-4774-b48c-ecaaf4d7ed00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9622" - ], - "x-ms-correlation-request-id": [ - "15e1338c-3dad-4483-9a8a-9f010ec708ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220615Z:15e1338c-3dad-4483-9a8a-9f010ec708ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "903151d5-0776-40c0-8de1-2074b8a5338e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9621" - ], - "x-ms-correlation-request-id": [ - "62d5797c-2bde-4970-a4fa-b514620d9b8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220615Z:62d5797c-2bde-4970-a4fa-b514620d9b8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b456ac77-c0bd-4d48-b640-e05cc2f05468" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9620" - ], - "x-ms-correlation-request-id": [ - "53186e83-6643-4b14-8b3b-863d0bdf38ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220615Z:53186e83-6643-4b14-8b3b-863d0bdf38ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9ce2096-a690-4a54-9ec1-c654c7a3af68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9619" - ], - "x-ms-correlation-request-id": [ - "dd0934d1-a050-4f90-a141-20f1f290be0a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220615Z:dd0934d1-a050-4f90-a141-20f1f290be0a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bef22cb7-62a5-4df2-ac4e-3fb1f81a7640" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9618" - ], - "x-ms-correlation-request-id": [ - "b200e713-59b5-484d-9132-2e7836dcfd71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220616Z:b200e713-59b5-484d-9132-2e7836dcfd71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88effef1-23df-438d-8b3a-f41890416452" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9617" - ], - "x-ms-correlation-request-id": [ - "85f56d96-5741-4551-8e08-00793f580d24" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220616Z:85f56d96-5741-4551-8e08-00793f580d24" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01099ae1-f567-4889-accd-ccd5d2ae0bbd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9616" - ], - "x-ms-correlation-request-id": [ - "ef9d1714-6a6d-4ff1-9bdb-0df40729f863" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220616Z:ef9d1714-6a6d-4ff1-9bdb-0df40729f863" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ffded3fa-4bd9-4ec3-a4c9-d39b49b57b16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9615" - ], - "x-ms-correlation-request-id": [ - "eb6d3782-8f3b-41ca-b192-06b96d071de5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220616Z:eb6d3782-8f3b-41ca-b192-06b96d071de5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "839e88fc-fa7a-4300-9ac9-c328285fca0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9614" - ], - "x-ms-correlation-request-id": [ - "c793b140-04ca-4757-b249-c118a3c9c292" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220616Z:c793b140-04ca-4757-b249-c118a3c9c292" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "067e6b83-9a9b-41d6-8680-76a6cdaab8b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9613" - ], - "x-ms-correlation-request-id": [ - "71ab8c9f-ae77-4d2e-8f83-bd69b67fa222" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220616Z:71ab8c9f-ae77-4d2e-8f83-bd69b67fa222" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "55520635-75de-4cec-add6-13af0ebbb6e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9612" - ], - "x-ms-correlation-request-id": [ - "e98208d1-cf34-4cbd-99b2-b526b594e7b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220617Z:e98208d1-cf34-4cbd-99b2-b526b594e7b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0acbd2fc-20f2-4901-a3e9-af17862df2d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9611" - ], - "x-ms-correlation-request-id": [ - "a0fa30dd-e835-4e86-92f2-1f94403c5715" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220617Z:a0fa30dd-e835-4e86-92f2-1f94403c5715" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6dc275e-bdca-4713-970e-cd9a9d2373af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9610" - ], - "x-ms-correlation-request-id": [ - "32ad201f-2db9-4673-89c7-04265c234f96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220617Z:32ad201f-2db9-4673-89c7-04265c234f96" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78c6d6ea-02a5-4289-ab1d-e0672b995f10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9609" - ], - "x-ms-correlation-request-id": [ - "a8abb7f6-2097-4803-8aea-a2970219bea1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220617Z:a8abb7f6-2097-4803-8aea-a2970219bea1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16584615-1076-472d-8970-22697028dd78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9608" - ], - "x-ms-correlation-request-id": [ - "2c316707-f20f-4abc-b66b-c672e7aa1f16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220617Z:2c316707-f20f-4abc-b66b-c672e7aa1f16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ff02256-380f-48ae-ba53-7d0636169890" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9607" - ], - "x-ms-correlation-request-id": [ - "009e5551-a614-4e8b-a49b-1d766d03bb5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220617Z:009e5551-a614-4e8b-a49b-1d766d03bb5e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86dc55d3-08d4-4f85-be71-5dc9d8605090" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9606" - ], - "x-ms-correlation-request-id": [ - "a726650b-8946-4843-b966-e518cf9389f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220618Z:a726650b-8946-4843-b966-e518cf9389f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aadf8323-88b6-4a16-8539-e9ea71a04cbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9605" - ], - "x-ms-correlation-request-id": [ - "859537ed-8403-4fb9-ae1e-1dcda7f3ade1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220618Z:859537ed-8403-4fb9-ae1e-1dcda7f3ade1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1eae7d53-6edf-4bf9-a422-168538655a2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9604" - ], - "x-ms-correlation-request-id": [ - "d6192fda-1ce0-4801-a50c-8c9f0be9171e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220618Z:d6192fda-1ce0-4801-a50c-8c9f0be9171e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "adafd167-9486-4fa0-bc1a-f7be08ef8549" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9603" - ], - "x-ms-correlation-request-id": [ - "ff59d915-dee1-4c7e-9e1f-a7d6c7f2c07f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220618Z:ff59d915-dee1-4c7e-9e1f-a7d6c7f2c07f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc4c86fa-5ffe-438d-9715-a2836d70346a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9602" - ], - "x-ms-correlation-request-id": [ - "8202a2db-6252-416c-a9e0-01050995fdcb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220618Z:8202a2db-6252-416c-a9e0-01050995fdcb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "435cece9-7fc9-4604-b1f8-bfd7b7545b2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9601" - ], - "x-ms-correlation-request-id": [ - "7a4b48f5-947b-4640-9552-ec6707deba85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220618Z:7a4b48f5-947b-4640-9552-ec6707deba85" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16bea198-1c6f-42d6-83bf-c18bc97440b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9600" - ], - "x-ms-correlation-request-id": [ - "005458f9-edae-4a44-a1c2-d50c3a322e50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220619Z:005458f9-edae-4a44-a1c2-d50c3a322e50" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "155708fe-296b-4586-b048-b4f48621bb26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9599" - ], - "x-ms-correlation-request-id": [ - "726c9bf3-a4a3-4de3-8d6e-34a81a6b11a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220619Z:726c9bf3-a4a3-4de3-8d6e-34a81a6b11a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "21485e6e-27bd-4fe2-9996-600b3b97cc12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9598" - ], - "x-ms-correlation-request-id": [ - "bc6327d1-b872-465a-bb9c-acd9c26b2b4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220619Z:bc6327d1-b872-465a-bb9c-acd9c26b2b4b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "747df833-5291-44dc-b861-fb062c0a7603" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9597" - ], - "x-ms-correlation-request-id": [ - "39c4a396-e895-4275-bf22-842b898d8fb5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220619Z:39c4a396-e895-4275-bf22-842b898d8fb5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7500850f-d56c-466c-9021-d70e8eaaccaa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9596" - ], - "x-ms-correlation-request-id": [ - "24b8461f-024c-472b-bac4-906b8e07c8ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220619Z:24b8461f-024c-472b-bac4-906b8e07c8ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a48a21ee-c0ed-4d89-90b7-b8591d0dee60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9595" - ], - "x-ms-correlation-request-id": [ - "37c28bc3-fe30-40cd-9778-bc7a303493ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220619Z:37c28bc3-fe30-40cd-9778-bc7a303493ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3e73f4c9-6434-4593-adec-25c942eabaf8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9594" - ], - "x-ms-correlation-request-id": [ - "6a56e2d5-ca9c-47df-8552-cbfd63c7b196" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220619Z:6a56e2d5-ca9c-47df-8552-cbfd63c7b196" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14819160-3002-4399-b874-18cbc10281c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9593" - ], - "x-ms-correlation-request-id": [ - "003683ed-2441-439c-aa54-6eb53275b961" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220620Z:003683ed-2441-439c-aa54-6eb53275b961" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4d2cf7f-5aad-4e97-b2e4-274d7dcd3f27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9592" - ], - "x-ms-correlation-request-id": [ - "c8023085-1071-4311-ab5c-27933dddbfb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220620Z:c8023085-1071-4311-ab5c-27933dddbfb1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2df79bce-91a9-4928-ab90-79cd16d31e74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9591" - ], - "x-ms-correlation-request-id": [ - "187d8303-a525-4cb6-b611-d0827d85c0bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220620Z:187d8303-a525-4cb6-b611-d0827d85c0bc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3adc8dd3-5a33-4689-a5bf-e9f1b224866f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9590" - ], - "x-ms-correlation-request-id": [ - "00fa13a9-bd63-48ce-973d-5ac4e7e2fa75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220620Z:00fa13a9-bd63-48ce-973d-5ac4e7e2fa75" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad3a78e4-f2ba-4ee2-91fd-30ffed5ee93f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9589" - ], - "x-ms-correlation-request-id": [ - "938f3d32-8f6a-448e-8758-9a66b1fbde9b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220620Z:938f3d32-8f6a-448e-8758-9a66b1fbde9b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ed4b59b-7eb6-4321-b9b7-92a095d8a043" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9588" - ], - "x-ms-correlation-request-id": [ - "575174c8-5f87-4e2d-9369-94f4e6eb9dd1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220621Z:575174c8-5f87-4e2d-9369-94f4e6eb9dd1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3483cc2-393b-44f3-8931-f3545f0e1228" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9587" - ], - "x-ms-correlation-request-id": [ - "4b35dfbc-817d-4bcc-929a-f16e9624f320" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220621Z:4b35dfbc-817d-4bcc-929a-f16e9624f320" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1caaa98-4f0a-4659-bf93-6f75909d0e92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9586" - ], - "x-ms-correlation-request-id": [ - "2150e0bb-9b9c-4ac9-b245-d2c4da463528" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220621Z:2150e0bb-9b9c-4ac9-b245-d2c4da463528" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "330541c3-680a-4ef3-947e-4060c9cc4702" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9585" - ], - "x-ms-correlation-request-id": [ - "9196a178-d2e5-4b41-ad3b-721b45000573" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220621Z:9196a178-d2e5-4b41-ad3b-721b45000573" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0c100d5a-044a-4808-9180-872a0a7e40e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9584" - ], - "x-ms-correlation-request-id": [ - "36382b89-2314-4afc-ad7f-e2ed7b911b8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220621Z:36382b89-2314-4afc-ad7f-e2ed7b911b8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d1aea84-41f6-4baf-b23f-82a6389c7c8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9583" - ], - "x-ms-correlation-request-id": [ - "2d55cebe-aafb-4cf2-859c-c07ef7734036" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220621Z:2d55cebe-aafb-4cf2-859c-c07ef7734036" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70de34e5-4acb-4426-a729-c4623760c98d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9582" - ], - "x-ms-correlation-request-id": [ - "6f7eaea3-a0d0-4225-ac11-aef1c437727d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220622Z:6f7eaea3-a0d0-4225-ac11-aef1c437727d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4676ddf9-1c94-4bc4-969b-48ea6b28d8dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9581" - ], - "x-ms-correlation-request-id": [ - "b777514e-0e4e-477c-aee5-064b8b70c883" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220622Z:b777514e-0e4e-477c-aee5-064b8b70c883" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d81c7958-33ab-45c7-8fe8-e29fa1878ab9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9580" - ], - "x-ms-correlation-request-id": [ - "c1add655-f210-4f5f-a415-e78b86f811e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220622Z:c1add655-f210-4f5f-a415-e78b86f811e1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80f1c5e3-e401-495f-8109-800cc9de5c66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9579" - ], - "x-ms-correlation-request-id": [ - "cd80c36a-50c6-436e-8ab9-97c0ec9ff952" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220622Z:cd80c36a-50c6-436e-8ab9-97c0ec9ff952" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "66e4f9e3-fd43-4e44-979f-75a34ded0bdb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9578" - ], - "x-ms-correlation-request-id": [ - "c41506a2-b3e8-4d91-8311-f2de607415f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220622Z:c41506a2-b3e8-4d91-8311-f2de607415f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3216deda-5fd0-4e12-a6b2-642c8b26acde" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9577" - ], - "x-ms-correlation-request-id": [ - "4b9a2efe-d84c-461b-a5a1-22cb292a729c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220622Z:4b9a2efe-d84c-461b-a5a1-22cb292a729c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c257de9d-da99-443d-a77f-b7ff2ca1c78c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9576" - ], - "x-ms-correlation-request-id": [ - "3f79ee94-2fb2-4127-8e4d-f560a1fd47e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220623Z:3f79ee94-2fb2-4127-8e4d-f560a1fd47e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77d4be05-1c9c-481d-8eff-ce4248415aa4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9575" - ], - "x-ms-correlation-request-id": [ - "5e7410c4-f05e-458a-a757-e0290a27de09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220623Z:5e7410c4-f05e-458a-a757-e0290a27de09" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f651e466-c5c0-48ae-a3a1-9d3fac089b15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9574" - ], - "x-ms-correlation-request-id": [ - "ec6e2db4-30e5-43fa-adfe-17cbae3248d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220623Z:ec6e2db4-30e5-43fa-adfe-17cbae3248d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7cf6fc3-870c-47cd-a1c9-dcc95ee0c69b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9573" - ], - "x-ms-correlation-request-id": [ - "3ed6190e-a29f-47b1-ac24-fe21e8e5fca8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220623Z:3ed6190e-a29f-47b1-ac24-fe21e8e5fca8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b43e86a-64e8-44c8-9bbb-3ded5a9e9955" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9572" - ], - "x-ms-correlation-request-id": [ - "830b2a0b-68e7-4a42-bf0d-953b61437768" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220623Z:830b2a0b-68e7-4a42-bf0d-953b61437768" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60640bf2-6e14-4180-8d7a-ad320912b51f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9571" - ], - "x-ms-correlation-request-id": [ - "269bc878-0979-4bcd-af64-8a343a2e4779" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220623Z:269bc878-0979-4bcd-af64-8a343a2e4779" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1d101c9-a2bb-4a0d-93c2-ad8b6a9c6a03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9570" - ], - "x-ms-correlation-request-id": [ - "b4a5db79-3831-44f4-a183-27120daf42a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220624Z:b4a5db79-3831-44f4-a183-27120daf42a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1bbf82ff-b2ff-441f-8beb-243d90b5af95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9569" - ], - "x-ms-correlation-request-id": [ - "be1308ab-59e6-402a-bfad-9ffe55e34a38" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220624Z:be1308ab-59e6-402a-bfad-9ffe55e34a38" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "587882de-821e-45dc-9fc0-c91e2facf93a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9568" - ], - "x-ms-correlation-request-id": [ - "1460b1f8-e3ec-4056-bb54-7e06c9213f92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220624Z:1460b1f8-e3ec-4056-bb54-7e06c9213f92" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "226c6816-2789-448d-a335-d4feb3a0f90c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9567" - ], - "x-ms-correlation-request-id": [ - "9bd93311-feab-4000-9f5c-9d775e64cf59" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220624Z:9bd93311-feab-4000-9f5c-9d775e64cf59" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73d09bb9-7818-4e0a-8764-e4aa8c00a63b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9566" - ], - "x-ms-correlation-request-id": [ - "0aecf95e-931d-4591-bdcd-c8bcd1122815" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220624Z:0aecf95e-931d-4591-bdcd-c8bcd1122815" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d616945-da85-4d5d-ba7e-46bed771c0a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9565" - ], - "x-ms-correlation-request-id": [ - "da4483e3-0ed9-4403-89c0-cc47e15d6bab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220624Z:da4483e3-0ed9-4403-89c0-cc47e15d6bab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f7c7774-ec58-4d78-8ab3-a8c910b846e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9564" - ], - "x-ms-correlation-request-id": [ - "6ce4128b-0ac2-4f16-87b2-741b0e4a9d32" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220625Z:6ce4128b-0ac2-4f16-87b2-741b0e4a9d32" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b40ddff-62ec-45b3-8f6c-df82ed1627d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9563" - ], - "x-ms-correlation-request-id": [ - "0261b2d1-30a2-4944-9280-a3a32f659682" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220625Z:0261b2d1-30a2-4944-9280-a3a32f659682" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "821be7b2-370f-4204-acf2-18f8f8cdc664" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9562" - ], - "x-ms-correlation-request-id": [ - "e11b2e58-48ef-4ca2-b849-5dc27b03aaf4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220625Z:e11b2e58-48ef-4ca2-b849-5dc27b03aaf4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3160f8b3-50a9-491f-8307-790b1112b377" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9561" - ], - "x-ms-correlation-request-id": [ - "e707b173-5ca8-48f3-89c8-a6db1a8750d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220625Z:e707b173-5ca8-48f3-89c8-a6db1a8750d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "385fd8e5-c61f-4909-a6f2-da5e9050d60c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9560" - ], - "x-ms-correlation-request-id": [ - "05d34a7e-e7a5-4e29-8196-59f486b45975" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220625Z:05d34a7e-e7a5-4e29-8196-59f486b45975" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6cb28fa-97f8-4281-92ca-882a7a3ac51b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9559" - ], - "x-ms-correlation-request-id": [ - "e1b53506-198d-4062-a906-a114ee4e7fb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220626Z:e1b53506-198d-4062-a906-a114ee4e7fb9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ffedf8c-d9df-45e0-940f-4ec159d44479" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9558" - ], - "x-ms-correlation-request-id": [ - "16ec5ec5-ed9e-494c-b103-c4a1be2dfed7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220626Z:16ec5ec5-ed9e-494c-b103-c4a1be2dfed7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab1ee80b-c53e-4648-adf2-7cd65db5f376" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9557" - ], - "x-ms-correlation-request-id": [ - "70288810-6c16-44f2-afa5-dc36f81bd9c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220626Z:70288810-6c16-44f2-afa5-dc36f81bd9c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6972d43-b611-480c-9928-791add916683" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9556" - ], - "x-ms-correlation-request-id": [ - "9f9e0b0c-f413-4883-8e3f-f715f1726884" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220626Z:9f9e0b0c-f413-4883-8e3f-f715f1726884" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5707581-c597-4696-bb9b-0334dda3f10c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9555" - ], - "x-ms-correlation-request-id": [ - "b0639942-86df-4028-abcc-d0b50ee1f8e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220627Z:b0639942-86df-4028-abcc-d0b50ee1f8e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bced9487-faf2-46a8-bdac-303a625388b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9554" - ], - "x-ms-correlation-request-id": [ - "1bef7e96-51d5-495f-bc63-ed1e4a5f9f58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220627Z:1bef7e96-51d5-495f-bc63-ed1e4a5f9f58" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08b5a70b-4392-47ec-a539-e042c088d5d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9553" - ], - "x-ms-correlation-request-id": [ - "2ad7b990-6179-4fe3-bd4c-b37eb3344e87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220627Z:2ad7b990-6179-4fe3-bd4c-b37eb3344e87" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fba43f05-84b4-4a82-bbc3-e7a9a4d2a789" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9552" - ], - "x-ms-correlation-request-id": [ - "503a38ba-45d8-4f14-b60e-bf732e0bbb7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220627Z:503a38ba-45d8-4f14-b60e-bf732e0bbb7a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b291bde-3aa8-4a43-b23c-8f163871ed8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9551" - ], - "x-ms-correlation-request-id": [ - "ec3c88d1-6e22-4f60-adc0-f01db6240311" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220627Z:ec3c88d1-6e22-4f60-adc0-f01db6240311" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89aa6d2a-f10c-4b9a-ae19-117a36099ab0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9550" - ], - "x-ms-correlation-request-id": [ - "63402037-10b9-44fc-841e-f9c4912cf8c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220627Z:63402037-10b9-44fc-841e-f9c4912cf8c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "040dfaa2-3464-4aae-9065-e208b01c2f10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9549" - ], - "x-ms-correlation-request-id": [ - "34edfd50-6067-406a-a906-26276d1ba7e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220627Z:34edfd50-6067-406a-a906-26276d1ba7e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba236e51-3dce-4677-b241-d3674e6655c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9548" - ], - "x-ms-correlation-request-id": [ - "330b7fa9-90f9-4a90-ade3-fc3a6a59e648" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220628Z:330b7fa9-90f9-4a90-ade3-fc3a6a59e648" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82b2f5ee-1b5e-4d4c-a694-54a16e22c490" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9547" - ], - "x-ms-correlation-request-id": [ - "79e67fb8-9fb8-4e0d-a911-f9e4ed5db843" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220628Z:79e67fb8-9fb8-4e0d-a911-f9e4ed5db843" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bcd4c3cb-f69c-4f97-af16-bbb36194cffd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9546" - ], - "x-ms-correlation-request-id": [ - "fe830d54-1bca-4b19-b40a-2c30961a4a0b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220628Z:fe830d54-1bca-4b19-b40a-2c30961a4a0b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e9c933f-b0b2-481b-8bcf-2ec3057c15cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9545" - ], - "x-ms-correlation-request-id": [ - "03d70e60-0130-46a4-a930-882939b69c5f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220628Z:03d70e60-0130-46a4-a930-882939b69c5f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9796d59e-780c-42f9-900c-4fdd69530692" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9544" - ], - "x-ms-correlation-request-id": [ - "829f9154-a1b6-496b-99e9-2695999a5cfe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220628Z:829f9154-a1b6-496b-99e9-2695999a5cfe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb870bd8-5abc-4bf1-bf14-d13bcebb4edd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9543" - ], - "x-ms-correlation-request-id": [ - "053e5dc0-ce98-44a0-aa8e-b2a374ce21c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220629Z:053e5dc0-ce98-44a0-aa8e-b2a374ce21c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5759c562-6252-4495-b447-ddb04fdca5e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9542" - ], - "x-ms-correlation-request-id": [ - "c28d38cb-8dff-4303-ae5d-86aaf01af156" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220629Z:c28d38cb-8dff-4303-ae5d-86aaf01af156" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c1aad69-e80e-49e5-9320-f84756d29ac7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9541" - ], - "x-ms-correlation-request-id": [ - "3aaa8853-e565-4b8a-b736-465a7abb775e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220629Z:3aaa8853-e565-4b8a-b736-465a7abb775e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0172fc9f-fffd-47e7-9961-e6e035f05dc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9540" - ], - "x-ms-correlation-request-id": [ - "70fd49a5-4a0a-4c01-817f-4eb85269a8fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220629Z:70fd49a5-4a0a-4c01-817f-4eb85269a8fc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44a74128-932a-46f9-a9c8-aedd2aae7e7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9539" - ], - "x-ms-correlation-request-id": [ - "070779d5-3086-4f35-9006-40b789c29a4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220629Z:070779d5-3086-4f35-9006-40b789c29a4e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85be4653-a63a-45ea-90cb-94f167da4e03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9538" - ], - "x-ms-correlation-request-id": [ - "596f11ab-5f14-49b7-823a-d606ae2973c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220629Z:596f11ab-5f14-49b7-823a-d606ae2973c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9584a27d-eaf8-4827-9c63-de4763213c87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9537" - ], - "x-ms-correlation-request-id": [ - "aed78cff-a7ff-46cb-a5a5-9ffad3f37d8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220630Z:aed78cff-a7ff-46cb-a5a5-9ffad3f37d8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d205a80e-9e46-4c41-81d7-6416984cbd27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9536" - ], - "x-ms-correlation-request-id": [ - "705475a6-8807-48e7-92cf-e201d90c5553" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220630Z:705475a6-8807-48e7-92cf-e201d90c5553" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c17ae74-dc1f-4afb-9b6f-dad89951f0e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9535" - ], - "x-ms-correlation-request-id": [ - "dba3ad59-a98a-4685-b569-9c3f928f818b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220630Z:dba3ad59-a98a-4685-b569-9c3f928f818b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef780425-d8e1-4394-85dd-0704265ce411" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9534" - ], - "x-ms-correlation-request-id": [ - "43afa6bd-3cb8-4e8c-a227-af1bd33d1d00" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220630Z:43afa6bd-3cb8-4e8c-a227-af1bd33d1d00" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d4e5e72-4860-42dc-ab7e-fb6527099862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9533" - ], - "x-ms-correlation-request-id": [ - "f5d3ede6-e775-42e7-b4a4-9ef62d242652" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220630Z:f5d3ede6-e775-42e7-b4a4-9ef62d242652" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25434f5d-62f3-4d10-8bf6-1c6dc1a97cca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9532" - ], - "x-ms-correlation-request-id": [ - "7ad5df9d-d9ac-42dc-93ed-672d397cdf90" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220631Z:7ad5df9d-d9ac-42dc-93ed-672d397cdf90" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c872d8c-3570-4434-9151-1c9caa9036d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9531" - ], - "x-ms-correlation-request-id": [ - "43394287-a16d-4fa0-abee-0e808c933d41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220631Z:43394287-a16d-4fa0-abee-0e808c933d41" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4897ac3-bf44-4862-9770-58e832f79c92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9530" - ], - "x-ms-correlation-request-id": [ - "399c48d4-284e-4515-b2d1-675ed5928957" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220631Z:399c48d4-284e-4515-b2d1-675ed5928957" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa25c078-a54a-4c9b-9be0-9a3e99d6454e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9529" - ], - "x-ms-correlation-request-id": [ - "d6f42aa8-e365-47d0-b005-6d85d9aa5383" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220631Z:d6f42aa8-e365-47d0-b005-6d85d9aa5383" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f580b8fd-be6e-4c0d-8bdb-f61b78be6a14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9528" - ], - "x-ms-correlation-request-id": [ - "349035aa-492d-4f62-b25f-e4e6b843383d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220631Z:349035aa-492d-4f62-b25f-e4e6b843383d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40f5488c-0a12-4df1-bb94-2d08a576fd04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9527" - ], - "x-ms-correlation-request-id": [ - "afb074c3-8582-4560-9bb1-d8add17b0014" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220631Z:afb074c3-8582-4560-9bb1-d8add17b0014" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7192bf9-f6fe-4371-a10d-0111a825a68f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9526" - ], - "x-ms-correlation-request-id": [ - "e953db50-d014-4a92-860c-d2c5dd4f6cae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220632Z:e953db50-d014-4a92-860c-d2c5dd4f6cae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "58003fcb-fdf8-4d6e-b866-c1a109a561b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9525" - ], - "x-ms-correlation-request-id": [ - "73eb8d5d-7f9e-4b67-8427-3f3c214250e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220632Z:73eb8d5d-7f9e-4b67-8427-3f3c214250e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "508ff4d4-e84e-404d-8e98-2e28471b1e70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9524" - ], - "x-ms-correlation-request-id": [ - "2e79ce9b-7a63-4e51-bde0-ca178acdcd73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220632Z:2e79ce9b-7a63-4e51-bde0-ca178acdcd73" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67df7602-a0c4-432a-91f8-455f936e6f16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9523" - ], - "x-ms-correlation-request-id": [ - "c206a26f-197a-431c-bd18-83ce6275a5d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220632Z:c206a26f-197a-431c-bd18-83ce6275a5d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2461ffc4-c197-4efd-bb52-1a7943123542" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9522" - ], - "x-ms-correlation-request-id": [ - "2e0fee16-b947-420b-9764-6796ec5e08dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220632Z:2e0fee16-b947-420b-9764-6796ec5e08dd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e84623f4-170d-41a5-9ca7-31a26c04c88e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9521" - ], - "x-ms-correlation-request-id": [ - "b1d0bcfa-7821-4a71-8360-1d6deb99b2d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220632Z:b1d0bcfa-7821-4a71-8360-1d6deb99b2d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bcc780ad-56eb-4c90-babf-4cbd0900fc5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9520" - ], - "x-ms-correlation-request-id": [ - "d83a387b-a009-419c-a352-10d3b1b896c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220633Z:d83a387b-a009-419c-a352-10d3b1b896c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44dbda06-0b51-4313-aee0-31dac3ca56f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9519" - ], - "x-ms-correlation-request-id": [ - "c5a9877b-ba71-419e-a7d3-701c649f3b91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220633Z:c5a9877b-ba71-419e-a7d3-701c649f3b91" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8690d3a8-11cb-42da-86ff-cdb192dd0e3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9518" - ], - "x-ms-correlation-request-id": [ - "87eb4f93-9ab1-434f-9df5-1448ce4218a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220633Z:87eb4f93-9ab1-434f-9df5-1448ce4218a4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a380359-729a-4b3b-9f93-b18c0144aed1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9517" - ], - "x-ms-correlation-request-id": [ - "50c20a08-65aa-4ccc-bd82-1d6799950e68" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220633Z:50c20a08-65aa-4ccc-bd82-1d6799950e68" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9fca325d-bf2b-4e07-a0df-c12f22b36ae3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9516" - ], - "x-ms-correlation-request-id": [ - "f86a191a-f446-415a-91ef-90087e75d849" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220633Z:f86a191a-f446-415a-91ef-90087e75d849" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab7787bb-c8fb-4fa6-817f-667e1d991a4f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9515" - ], - "x-ms-correlation-request-id": [ - "7db72473-ff89-4acd-86a2-917f74e579bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220633Z:7db72473-ff89-4acd-86a2-917f74e579bf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "372c526a-0927-4dc2-b257-23ba19c74d2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9514" - ], - "x-ms-correlation-request-id": [ - "7473d6cf-8e7a-464e-8d90-942f1dbd35b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220634Z:7473d6cf-8e7a-464e-8d90-942f1dbd35b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4fa1093d-5dc6-4649-882a-b37ba1735074" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9513" - ], - "x-ms-correlation-request-id": [ - "16511b8d-58b5-4200-83c0-20a01890936c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220634Z:16511b8d-58b5-4200-83c0-20a01890936c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "26db581d-d283-498c-8582-a7c3a27a0bc6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9512" - ], - "x-ms-correlation-request-id": [ - "a24fba8d-5b3c-4a4d-a5a2-2991181d51de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220634Z:a24fba8d-5b3c-4a4d-a5a2-2991181d51de" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59b1802a-b3b7-4996-9114-70a1b286f7be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9511" - ], - "x-ms-correlation-request-id": [ - "bf3e3aa2-eef7-4343-a19a-de1b331c9473" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220634Z:bf3e3aa2-eef7-4343-a19a-de1b331c9473" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "afaf6902-b09d-4850-bf4a-9efb3ea397c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9510" - ], - "x-ms-correlation-request-id": [ - "dd39c2d1-1aac-46b2-a83a-d1ed7cbe3b02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220634Z:dd39c2d1-1aac-46b2-a83a-d1ed7cbe3b02" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3e06276f-cb20-4dd6-993b-860116f65b21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9509" - ], - "x-ms-correlation-request-id": [ - "c36ed590-1b5d-4e01-80c2-dc887a2b929d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220634Z:c36ed590-1b5d-4e01-80c2-dc887a2b929d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f186dad-2029-4928-9981-b57daaa59510" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9508" - ], - "x-ms-correlation-request-id": [ - "824a901b-20fa-41b9-92c6-c34316add940" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220635Z:824a901b-20fa-41b9-92c6-c34316add940" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86305136-1de7-4f67-8efc-d9abae906692" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9507" - ], - "x-ms-correlation-request-id": [ - "68314ee3-f248-4590-a4a8-aa19da21dc43" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220635Z:68314ee3-f248-4590-a4a8-aa19da21dc43" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17640308-d5e7-4274-b5aa-bfd5c45ee228" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9506" - ], - "x-ms-correlation-request-id": [ - "bee28411-e38f-4500-bdec-c3a5f541c0c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220635Z:bee28411-e38f-4500-bdec-c3a5f541c0c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1992bc46-b695-4f19-8fef-d228dab6e28d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9505" - ], - "x-ms-correlation-request-id": [ - "2d320c36-3146-4dfa-aede-f80e00b7bbfa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220635Z:2d320c36-3146-4dfa-aede-f80e00b7bbfa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89839e8c-1a51-48bb-9d78-a19fc69a0a2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9504" - ], - "x-ms-correlation-request-id": [ - "afbfd071-33a4-45c1-aadf-db8d2c315870" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220635Z:afbfd071-33a4-45c1-aadf-db8d2c315870" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b128c31-9917-4461-a90e-bb0201f7f6b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9503" - ], - "x-ms-correlation-request-id": [ - "dc7ea441-ac2b-4e04-9811-960ba3a7a8ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220635Z:dc7ea441-ac2b-4e04-9811-960ba3a7a8ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc8b818d-ee9b-4b73-b0b3-152226f16073" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9502" - ], - "x-ms-correlation-request-id": [ - "f67d3641-adb2-499f-8f5a-bcd15852382a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220635Z:f67d3641-adb2-499f-8f5a-bcd15852382a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "544da1e8-e5ea-4f3f-bf17-68246b89ce1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9501" - ], - "x-ms-correlation-request-id": [ - "fcebaad8-eb12-4e6c-adf2-03dcbd0612e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220636Z:fcebaad8-eb12-4e6c-adf2-03dcbd0612e4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b2e28bf-8db6-4198-84ef-586df9799dd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9500" - ], - "x-ms-correlation-request-id": [ - "6b8b4f49-347e-49f9-8e07-f8214294d1fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220636Z:6b8b4f49-347e-49f9-8e07-f8214294d1fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "666138ab-f3da-4da2-a19a-02f756c6db34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9499" - ], - "x-ms-correlation-request-id": [ - "69141dfb-5bdb-4c78-9367-a20401a4fd6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220636Z:69141dfb-5bdb-4c78-9367-a20401a4fd6d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f38d55e-1ac9-4053-a4e9-5f9b9a4bb1fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9498" - ], - "x-ms-correlation-request-id": [ - "be516faa-97bc-45b1-bf3f-b93c1058d2d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220636Z:be516faa-97bc-45b1-bf3f-b93c1058d2d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39190f00-5002-41fa-afde-361a3606c9f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9497" - ], - "x-ms-correlation-request-id": [ - "7cd5f6df-f203-4255-9c05-021afa9caf1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220636Z:7cd5f6df-f203-4255-9c05-021afa9caf1e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f2feae2-36ec-44e1-92d3-58d9e0e54403" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9496" - ], - "x-ms-correlation-request-id": [ - "12850e59-f67f-4348-b29d-9f7c22082081" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220637Z:12850e59-f67f-4348-b29d-9f7c22082081" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f361240-cd68-4dd1-95dd-c4fc7be103ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9495" - ], - "x-ms-correlation-request-id": [ - "bd78c43f-975c-42de-a876-c1d8bf050a66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220637Z:bd78c43f-975c-42de-a876-c1d8bf050a66" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "daf0660e-0182-49f4-876d-9dee73fa9fe6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9494" - ], - "x-ms-correlation-request-id": [ - "021623b1-4404-4973-87fe-74a6429e914d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220637Z:021623b1-4404-4973-87fe-74a6429e914d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e205e20-201a-42ad-991e-d9f5250256a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9493" - ], - "x-ms-correlation-request-id": [ - "0ed87576-f659-4311-896b-f43ef019befb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220637Z:0ed87576-f659-4311-896b-f43ef019befb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b277c02-4a02-4e4a-ae2d-18d70e0b5e90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9492" - ], - "x-ms-correlation-request-id": [ - "1edb7047-24fe-426f-83f5-db6f64c2156c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220637Z:1edb7047-24fe-426f-83f5-db6f64c2156c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9be646ca-4f8f-400b-9299-9ac36fece750" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9491" - ], - "x-ms-correlation-request-id": [ - "433a2ace-bb56-4532-8f48-97efb393f6eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220637Z:433a2ace-bb56-4532-8f48-97efb393f6eb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c216dd01-54dd-4d64-b8bc-79989922dce3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9490" - ], - "x-ms-correlation-request-id": [ - "132e90df-e3b8-44b9-a67d-e34330e31805" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220637Z:132e90df-e3b8-44b9-a67d-e34330e31805" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "64baee64-4df7-4286-ac8b-8e38a4583f49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9489" - ], - "x-ms-correlation-request-id": [ - "e8b4575a-a0d9-4089-bcbe-a9df5a226478" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220638Z:e8b4575a-a0d9-4089-bcbe-a9df5a226478" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ade2953-ae8e-492f-8250-b99aef429fe5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9488" - ], - "x-ms-correlation-request-id": [ - "8da19c73-0154-4210-ae57-a892802dcf3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220638Z:8da19c73-0154-4210-ae57-a892802dcf3d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "369729ec-a9c5-4ac9-8975-107a54276095" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9487" - ], - "x-ms-correlation-request-id": [ - "17d96c75-ed95-4bcc-9945-38f1667d071e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220638Z:17d96c75-ed95-4bcc-9945-38f1667d071e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c4d28532-5291-4ea4-b262-c32d87380271" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9486" - ], - "x-ms-correlation-request-id": [ - "ada41579-a2b5-4a88-8ea0-df83c92dfb85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220638Z:ada41579-a2b5-4a88-8ea0-df83c92dfb85" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a94d044-cfde-446a-9afb-31ceba6928aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9485" - ], - "x-ms-correlation-request-id": [ - "8de15608-4ea4-4a50-a14a-72de3d755197" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220638Z:8de15608-4ea4-4a50-a14a-72de3d755197" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac841e20-662b-4031-be6e-523debf45cfb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9484" - ], - "x-ms-correlation-request-id": [ - "b9ad4636-f2da-4dc4-802e-9c4115e61a21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220638Z:b9ad4636-f2da-4dc4-802e-9c4115e61a21" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c79f0c6-5c16-4a2b-ba62-6c9e08d918f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9483" - ], - "x-ms-correlation-request-id": [ - "54f2d4e6-88a7-4f18-94a2-d18af66c47b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220639Z:54f2d4e6-88a7-4f18-94a2-d18af66c47b7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94116b3d-09fd-4dd9-8622-19109ec56ce6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9482" - ], - "x-ms-correlation-request-id": [ - "71e4ee7b-fe41-414a-b114-a27a3e803f49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220639Z:71e4ee7b-fe41-414a-b114-a27a3e803f49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a8bc156-0198-44d5-b24b-626d98bd7bb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9481" - ], - "x-ms-correlation-request-id": [ - "a35c4bc9-037e-4c69-bb7c-10501553bc04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220639Z:a35c4bc9-037e-4c69-bb7c-10501553bc04" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0658580d-9ae5-4184-bfaf-92495b61e22e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9480" - ], - "x-ms-correlation-request-id": [ - "9452fd98-2e16-4d2d-9acc-f5395101a3f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220639Z:9452fd98-2e16-4d2d-9acc-f5395101a3f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a47c0f1-e620-4e46-88bb-8b22f417d446" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9479" - ], - "x-ms-correlation-request-id": [ - "227cdad8-e3bc-4afa-b7b4-6af4f59dbbf4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220639Z:227cdad8-e3bc-4afa-b7b4-6af4f59dbbf4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2b9c204-59ca-4f28-ae76-8d5860491f87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9478" - ], - "x-ms-correlation-request-id": [ - "5bc169b7-a73c-410e-bc14-e02267ea1b38" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220639Z:5bc169b7-a73c-410e-bc14-e02267ea1b38" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c2a98809-56c9-4f31-b8e6-ab6c5b0e89b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9477" - ], - "x-ms-correlation-request-id": [ - "4d339087-9a52-4ca9-9e7e-a5d8236b4808" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220640Z:4d339087-9a52-4ca9-9e7e-a5d8236b4808" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49436121-6088-4965-b199-713e5a30c464" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9476" - ], - "x-ms-correlation-request-id": [ - "e82766aa-cd35-4edc-9f1f-c39aa83b7bee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220640Z:e82766aa-cd35-4edc-9f1f-c39aa83b7bee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "55bf82a3-c6c4-4b4e-9c6e-730611e049a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9475" - ], - "x-ms-correlation-request-id": [ - "d76ca01e-673d-4578-b745-04cb8fe39c26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220640Z:d76ca01e-673d-4578-b745-04cb8fe39c26" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "821fc080-f967-43d0-bda0-7c29829757bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9474" - ], - "x-ms-correlation-request-id": [ - "b2cb4806-494c-4554-9696-8f16b13ec6b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220640Z:b2cb4806-494c-4554-9696-8f16b13ec6b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "381202c5-f999-449c-bcf3-c753b8119fb5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9473" - ], - "x-ms-correlation-request-id": [ - "b2610977-60e2-4b23-8c9f-a6dd6d8762cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220640Z:b2610977-60e2-4b23-8c9f-a6dd6d8762cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3fb30b7-0d69-4d56-9d67-07d51f7fb0da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9472" - ], - "x-ms-correlation-request-id": [ - "f9b00105-6521-42ae-a2df-77add314bbe4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220640Z:f9b00105-6521-42ae-a2df-77add314bbe4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "577232b0-5b1e-41f0-99e4-9e5e42dbb747" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9471" - ], - "x-ms-correlation-request-id": [ - "b0db69a1-8b3e-4fa7-9041-e42645c7744a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220640Z:b0db69a1-8b3e-4fa7-9041-e42645c7744a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a843cca-8c72-433b-912a-9c64af60c68f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9470" - ], - "x-ms-correlation-request-id": [ - "c3aac199-d6f4-473d-8166-735a9df14841" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220641Z:c3aac199-d6f4-473d-8166-735a9df14841" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b8371d2-6abd-4fbd-9d87-d7b264793b2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9469" - ], - "x-ms-correlation-request-id": [ - "91f968df-40c9-4887-abb1-bfa6ccaf64fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220641Z:91f968df-40c9-4887-abb1-bfa6ccaf64fa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92e30448-2f03-42f8-bf66-ae1d33afea9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9468" - ], - "x-ms-correlation-request-id": [ - "7c5be0ac-b41a-4241-b76e-c3977bf1d373" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220641Z:7c5be0ac-b41a-4241-b76e-c3977bf1d373" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7475391b-88a0-419f-aae7-89b61bbee99a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9467" - ], - "x-ms-correlation-request-id": [ - "9ed8c089-0f82-4df1-a98b-7f0727812ce3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220641Z:9ed8c089-0f82-4df1-a98b-7f0727812ce3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48391b3c-5e5e-4ad4-a7c3-d1c8b1b72093" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9466" - ], - "x-ms-correlation-request-id": [ - "bc9852ee-8cf8-4a48-9f13-456b868e1c58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220641Z:bc9852ee-8cf8-4a48-9f13-456b868e1c58" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61e25e25-cfea-441a-877e-d59e7c918716" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9465" - ], - "x-ms-correlation-request-id": [ - "b21c424f-8b0b-48e8-b225-ff2903455cf3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220641Z:b21c424f-8b0b-48e8-b225-ff2903455cf3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7eb38c30-1e7c-4a70-a69f-8e3e7f9350fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9464" - ], - "x-ms-correlation-request-id": [ - "e6a716da-319b-4986-87f6-ab6eef0b40e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220642Z:e6a716da-319b-4986-87f6-ab6eef0b40e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00cab068-e89c-4f47-b046-5fbaeb2e0736" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9463" - ], - "x-ms-correlation-request-id": [ - "90362fbc-eedd-4588-88fb-ccf94266fa2b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220642Z:90362fbc-eedd-4588-88fb-ccf94266fa2b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c877773d-690f-4a65-bd17-dbd06e5aa3bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9462" - ], - "x-ms-correlation-request-id": [ - "a00255c9-0435-4cdd-a35d-2f441f24ecd0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220642Z:a00255c9-0435-4cdd-a35d-2f441f24ecd0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb6374d5-f854-4ac8-bfa7-030572f153f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9461" - ], - "x-ms-correlation-request-id": [ - "f588a679-8367-4406-a820-413631eb8250" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220642Z:f588a679-8367-4406-a820-413631eb8250" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31cdeb43-c49a-4a4e-80ee-28bcc67f75c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9460" - ], - "x-ms-correlation-request-id": [ - "1c70e9f9-2d21-4810-a69f-c223e0cbf8b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220642Z:1c70e9f9-2d21-4810-a69f-c223e0cbf8b9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81eb5652-ed5d-4f3e-9bb2-4d0a84689d9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9459" - ], - "x-ms-correlation-request-id": [ - "6ff99458-655f-4ce4-bfa8-06e09476dc20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220642Z:6ff99458-655f-4ce4-bfa8-06e09476dc20" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "222e130c-59a4-4b96-86e0-ddeb59bc1635" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9458" - ], - "x-ms-correlation-request-id": [ - "d6cdd2bf-ff16-469c-acf0-8bd30f20b950" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220643Z:d6cdd2bf-ff16-469c-acf0-8bd30f20b950" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6fc5595b-7dfb-4f40-b843-bdc4070d0356" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9457" - ], - "x-ms-correlation-request-id": [ - "63c1d61e-0d5c-47f0-8a61-8a0e0da5a306" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220643Z:63c1d61e-0d5c-47f0-8a61-8a0e0da5a306" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7356ca10-1991-4c18-9c32-d03935ea3470" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9456" - ], - "x-ms-correlation-request-id": [ - "e9ed2c00-72c9-4034-ba79-662b63e8ccc6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220643Z:e9ed2c00-72c9-4034-ba79-662b63e8ccc6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e835bccd-9b1a-4839-9708-fa932c2a3e8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9455" - ], - "x-ms-correlation-request-id": [ - "719e0791-88b9-43b5-9df5-aa985ae02a2d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220643Z:719e0791-88b9-43b5-9df5-aa985ae02a2d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eebc4e44-8bb4-4c6a-af73-2056442c029c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9454" - ], - "x-ms-correlation-request-id": [ - "d665a014-417e-43da-b88b-603c1a63a0b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220643Z:d665a014-417e-43da-b88b-603c1a63a0b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b93b095a-3b5f-4cb3-ad3e-7c0f12fb7b49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9453" - ], - "x-ms-correlation-request-id": [ - "6ca44362-9439-4ca5-8aad-bd8c78603082" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220643Z:6ca44362-9439-4ca5-8aad-bd8c78603082" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51b22be4-f113-443b-b463-31b43127eaa2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9452" - ], - "x-ms-correlation-request-id": [ - "ef7ddb2e-0d80-489f-bb70-4c41a8a4565b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220643Z:ef7ddb2e-0d80-489f-bb70-4c41a8a4565b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa8c0a9c-2d22-46cd-b73c-30599a933770" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9451" - ], - "x-ms-correlation-request-id": [ - "9331b432-bc73-4637-a158-a8b5cc6e04db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220644Z:9331b432-bc73-4637-a158-a8b5cc6e04db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00027f37-1cf1-4885-b8ce-3fdf0607b607" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9450" - ], - "x-ms-correlation-request-id": [ - "b8ed9222-0ba1-4dd2-81cd-66855cebc974" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220644Z:b8ed9222-0ba1-4dd2-81cd-66855cebc974" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b74153e-5c5f-47c3-b029-a026e3fd1c4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9449" - ], - "x-ms-correlation-request-id": [ - "5d1cdb0c-5abf-4001-86fd-744269b5b907" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220644Z:5d1cdb0c-5abf-4001-86fd-744269b5b907" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a187edb8-27a4-4439-b89a-163b01580b34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9448" - ], - "x-ms-correlation-request-id": [ - "c544037f-4c3e-479b-ba2d-06d949c56f53" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220644Z:c544037f-4c3e-479b-ba2d-06d949c56f53" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0f8081c-3dfb-4d20-97ed-ce7b35d32d86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9447" - ], - "x-ms-correlation-request-id": [ - "0711fd52-0c45-43f2-a04f-0fe0e71bde7b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220644Z:0711fd52-0c45-43f2-a04f-0fe0e71bde7b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "620b5dab-508c-4270-87a0-56450df129b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9446" - ], - "x-ms-correlation-request-id": [ - "05847140-25c0-425e-a321-daa62b2bab51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220644Z:05847140-25c0-425e-a321-daa62b2bab51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3df15143-210f-426c-8ea8-87545220cb02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9445" - ], - "x-ms-correlation-request-id": [ - "65531399-eda4-490f-9ff1-05624caa7615" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220645Z:65531399-eda4-490f-9ff1-05624caa7615" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca551b30-9903-48b3-90d5-bc56579ea0fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9444" - ], - "x-ms-correlation-request-id": [ - "63bb8fc7-38ca-4350-ad30-248224ce9016" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220645Z:63bb8fc7-38ca-4350-ad30-248224ce9016" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0903a470-48b5-48fb-9e1f-3e1478fa1f8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9443" - ], - "x-ms-correlation-request-id": [ - "9067a2e2-a58c-45d6-b0f5-a4a0a908da12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220645Z:9067a2e2-a58c-45d6-b0f5-a4a0a908da12" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc5c548a-61e7-4661-a063-b1eb8f081922" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9442" - ], - "x-ms-correlation-request-id": [ - "7eef591a-06d0-4683-ba39-70bbea6dfe8b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220645Z:7eef591a-06d0-4683-ba39-70bbea6dfe8b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a9408bc-a6b2-487b-885e-160a3bc1f412" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9441" - ], - "x-ms-correlation-request-id": [ - "e731bbed-d22f-401d-b7bc-e9548d1d8e0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220645Z:e731bbed-d22f-401d-b7bc-e9548d1d8e0d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "55c0745b-9300-4a54-a1c0-ae7081a94b8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9440" - ], - "x-ms-correlation-request-id": [ - "1b979d34-cc36-4c75-ad41-b3a762996400" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220646Z:1b979d34-cc36-4c75-ad41-b3a762996400" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38e56129-98cb-43c8-bee2-67b3421b60ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9439" - ], - "x-ms-correlation-request-id": [ - "cfde653c-a0d1-4d8b-a232-2e5661a4d23a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220646Z:cfde653c-a0d1-4d8b-a232-2e5661a4d23a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8eae0d58-5253-4c1e-a6dc-9c100b7fc20b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9438" - ], - "x-ms-correlation-request-id": [ - "13b51759-33ca-4564-9315-9b879f4c9912" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220646Z:13b51759-33ca-4564-9315-9b879f4c9912" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f588ebb8-4caa-4fcb-bad0-3ff695e6c9cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9437" - ], - "x-ms-correlation-request-id": [ - "c9723ef4-ca57-4951-a130-9d32fdfa7ca6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220646Z:c9723ef4-ca57-4951-a130-9d32fdfa7ca6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1dc331b-4959-4cdf-9ff5-622fdcbfbf95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9436" - ], - "x-ms-correlation-request-id": [ - "501f5e18-0281-46e2-8ebf-65145b590479" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220646Z:501f5e18-0281-46e2-8ebf-65145b590479" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d71e8085-6c3a-47a7-9bc4-81369a9460f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9435" - ], - "x-ms-correlation-request-id": [ - "cf64c3a2-6da2-4c52-8f8b-b6213be4cf25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220646Z:cf64c3a2-6da2-4c52-8f8b-b6213be4cf25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d206778c-9836-4c69-9ba3-a2f9aca5124b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9434" - ], - "x-ms-correlation-request-id": [ - "335e8c27-eee3-4f32-84d9-c6c8de20fef4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220647Z:335e8c27-eee3-4f32-84d9-c6c8de20fef4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7cb950be-8553-4044-ab8b-5e9b3abf4dd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9433" - ], - "x-ms-correlation-request-id": [ - "ba0dc4af-86d9-42d5-8759-dcaccdc70d1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220647Z:ba0dc4af-86d9-42d5-8759-dcaccdc70d1c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8a84800-d921-4536-8d37-7eff1c4c5165" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9432" - ], - "x-ms-correlation-request-id": [ - "d5276d39-c052-46a0-8cea-83bca978f81d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220647Z:d5276d39-c052-46a0-8cea-83bca978f81d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dfed8320-b180-44ab-aaaf-82d1d02ea306" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9431" - ], - "x-ms-correlation-request-id": [ - "45448d98-2955-4188-a17a-4253bf637110" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220647Z:45448d98-2955-4188-a17a-4253bf637110" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90112418-0dd4-4dae-a622-96431ed32b1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9430" - ], - "x-ms-correlation-request-id": [ - "929f41f8-81f0-4219-8662-1609115e162d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220647Z:929f41f8-81f0-4219-8662-1609115e162d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3f779c5-897e-4c9d-8c04-64668d24126d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9429" - ], - "x-ms-correlation-request-id": [ - "8ac639dc-694b-4d64-aa1a-12f69142db81" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220648Z:8ac639dc-694b-4d64-aa1a-12f69142db81" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62d8736e-5fd3-4773-accf-956fbfd827e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9428" - ], - "x-ms-correlation-request-id": [ - "56792695-3316-4cfa-aa17-0c790f4e8887" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220648Z:56792695-3316-4cfa-aa17-0c790f4e8887" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68bc0341-3eea-4778-8030-17c5ba96ce78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9427" - ], - "x-ms-correlation-request-id": [ - "0748756a-f2e9-4e68-8f0b-84a454a43b36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220648Z:0748756a-f2e9-4e68-8f0b-84a454a43b36" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9eac96ff-1d9f-4461-8527-f3cefdc736c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9426" - ], - "x-ms-correlation-request-id": [ - "f43d16b5-33db-4f41-a6a1-76629a26887c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220648Z:f43d16b5-33db-4f41-a6a1-76629a26887c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0a65bad-7e94-495b-bb73-d1e9e12bdb5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9425" - ], - "x-ms-correlation-request-id": [ - "1139c294-4a1a-403f-88aa-f4e621a5f69e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220648Z:1139c294-4a1a-403f-88aa-f4e621a5f69e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a6b4c27-1939-4ed3-a581-e37f9a1e8aa3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9424" - ], - "x-ms-correlation-request-id": [ - "60e5f8f7-e494-4b36-a600-cd5e4f6c3c16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220649Z:60e5f8f7-e494-4b36-a600-cd5e4f6c3c16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36b2271f-d511-4132-925f-6ba2fb457c38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9423" - ], - "x-ms-correlation-request-id": [ - "bb3a0910-c2af-49d4-a66f-67daaaba1180" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220649Z:bb3a0910-c2af-49d4-a66f-67daaaba1180" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c7ab1516-fcb5-4106-9f64-79717b53d1ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9422" - ], - "x-ms-correlation-request-id": [ - "451a9653-7302-4110-8ab3-413a28f1ebd4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220649Z:451a9653-7302-4110-8ab3-413a28f1ebd4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0361efe-bb5a-4370-98d1-caab6b25dd2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9421" - ], - "x-ms-correlation-request-id": [ - "42bee041-dccb-4a68-98b6-de4043e75092" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220649Z:42bee041-dccb-4a68-98b6-de4043e75092" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac1d58ae-e268-4ab0-a10c-88b4b70beefb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9420" - ], - "x-ms-correlation-request-id": [ - "8bb3b059-99ee-44c8-9a16-d28d2204a910" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220649Z:8bb3b059-99ee-44c8-9a16-d28d2204a910" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "557518a4-98f1-4629-9641-e307b6402c16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9419" - ], - "x-ms-correlation-request-id": [ - "d63f6201-8eee-44b4-97ae-30ce8528159f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220649Z:d63f6201-8eee-44b4-97ae-30ce8528159f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5007406-b314-49ac-906d-dfeff6600ee7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9418" - ], - "x-ms-correlation-request-id": [ - "e6ea6343-c9cc-46bb-9377-3bea79b5c1ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220650Z:e6ea6343-c9cc-46bb-9377-3bea79b5c1ce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31b38d7b-6357-44e9-8068-7d0a9b3ec441" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9417" - ], - "x-ms-correlation-request-id": [ - "1133ce16-88cf-4b08-a9c8-866fa687807d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220650Z:1133ce16-88cf-4b08-a9c8-866fa687807d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf01ac4e-253b-4c40-9ac0-f14b1d2a198b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9416" - ], - "x-ms-correlation-request-id": [ - "cc339817-938c-4c76-831d-bce6b7bc9a7c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220650Z:cc339817-938c-4c76-831d-bce6b7bc9a7c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "633deaba-0835-4c72-b970-f3427f5cff00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9415" - ], - "x-ms-correlation-request-id": [ - "b52a6f79-0328-4033-9982-ece22d1691af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220650Z:b52a6f79-0328-4033-9982-ece22d1691af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ffaae88d-b723-4846-8880-af791355e816" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9414" - ], - "x-ms-correlation-request-id": [ - "f9e222d4-bcae-4f8e-8c71-26a12edab00f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220650Z:f9e222d4-bcae-4f8e-8c71-26a12edab00f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "004380da-2cc4-4065-a7bc-8749b34995ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9413" - ], - "x-ms-correlation-request-id": [ - "c4df3741-6c7e-4b8f-bb7f-ef299b5934e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220651Z:c4df3741-6c7e-4b8f-bb7f-ef299b5934e5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d8d15f0-9fe7-45d0-b6e4-beece15ec640" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9412" - ], - "x-ms-correlation-request-id": [ - "3d7b5792-4420-4efb-9f41-1c4d72b36196" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220651Z:3d7b5792-4420-4efb-9f41-1c4d72b36196" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a189e0e5-2a38-4ab1-acd9-665cb7b02af2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9411" - ], - "x-ms-correlation-request-id": [ - "963b9772-e7c2-4870-b0a2-517ea7668142" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220651Z:963b9772-e7c2-4870-b0a2-517ea7668142" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb4f90f0-1aa2-4f75-ac1b-a3acb394c44c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9410" - ], - "x-ms-correlation-request-id": [ - "ffa47269-5363-4828-ae69-cbe7022f2ccd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220651Z:ffa47269-5363-4828-ae69-cbe7022f2ccd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a48e74b-a2c8-4fa3-a0a1-f970d773ed3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9409" - ], - "x-ms-correlation-request-id": [ - "eb60b8dc-605f-4902-8201-a19c0ab5e96b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220651Z:eb60b8dc-605f-4902-8201-a19c0ab5e96b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2bb62331-4873-46cf-9065-975648ef6cc5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9408" - ], - "x-ms-correlation-request-id": [ - "1ee39206-92f9-453b-b877-5f5030a4b041" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220651Z:1ee39206-92f9-453b-b877-5f5030a4b041" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d96fa938-b046-46a4-a60c-47b543e7a31e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9407" - ], - "x-ms-correlation-request-id": [ - "5fad4bb4-40f3-4bd4-bc9e-02e7462f6217" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220651Z:5fad4bb4-40f3-4bd4-bc9e-02e7462f6217" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e228e07-899e-4276-87af-69f9dcdd6830" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9406" - ], - "x-ms-correlation-request-id": [ - "52a51233-d3e5-4e59-b2be-12fca98f0e0f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220652Z:52a51233-d3e5-4e59-b2be-12fca98f0e0f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5fc80bb-064f-43cf-bfaf-4d47d7f6f61c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9405" - ], - "x-ms-correlation-request-id": [ - "ab01c686-7cb7-40e7-b388-9f9b5a059999" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220652Z:ab01c686-7cb7-40e7-b388-9f9b5a059999" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3e1bffeb-b7f6-4216-9189-80ebd1b2cf79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9404" - ], - "x-ms-correlation-request-id": [ - "d18221e2-6494-40d8-9742-b5fbe8d764e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220652Z:d18221e2-6494-40d8-9742-b5fbe8d764e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e395557e-ab94-4e95-b410-54fbe94dd097" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9403" - ], - "x-ms-correlation-request-id": [ - "ceb0b24e-c279-485d-b5ea-ea0930354055" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220652Z:ceb0b24e-c279-485d-b5ea-ea0930354055" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ade45efb-6ee7-44ab-8c9e-634b0ce6f2d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9402" - ], - "x-ms-correlation-request-id": [ - "d7bd6c4d-7995-4e0c-a062-87f5cfdb48a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220652Z:d7bd6c4d-7995-4e0c-a062-87f5cfdb48a9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "716c6760-7ccd-4f2f-8824-94b6eef9214b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9401" - ], - "x-ms-correlation-request-id": [ - "7f0bf343-e1d5-4f08-bc42-96ccf2a1e1e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220652Z:7f0bf343-e1d5-4f08-bc42-96ccf2a1e1e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57bfabd5-63c3-48ad-a80e-ec413f69610a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9400" - ], - "x-ms-correlation-request-id": [ - "55b5066a-a570-46b5-96df-0ce04e319722" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220653Z:55b5066a-a570-46b5-96df-0ce04e319722" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3cc3790-1b90-4191-b61b-d9305ba49622" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9399" - ], - "x-ms-correlation-request-id": [ - "684e9fff-4bac-4073-a26d-db87ffcac8be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220653Z:684e9fff-4bac-4073-a26d-db87ffcac8be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a51bc52-ebca-49c4-aedb-b36ff8875927" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9398" - ], - "x-ms-correlation-request-id": [ - "650e69e3-b672-4127-ae8e-8c496321d29e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220653Z:650e69e3-b672-4127-ae8e-8c496321d29e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23e083f2-769b-4ed0-85a8-476cce5e0ca7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9397" - ], - "x-ms-correlation-request-id": [ - "0343fc74-505b-4dae-bb54-453efaac2d44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220653Z:0343fc74-505b-4dae-bb54-453efaac2d44" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61561b01-2827-4fbe-8f8b-30e0baf3bee5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9396" - ], - "x-ms-correlation-request-id": [ - "77e46e85-173b-432d-837b-d54610993867" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220653Z:77e46e85-173b-432d-837b-d54610993867" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f29060e-ef80-4d5d-9146-7c13aaf8edc4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9395" - ], - "x-ms-correlation-request-id": [ - "f91c5fec-d5cf-49e4-8725-e0f747f149da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220654Z:f91c5fec-d5cf-49e4-8725-e0f747f149da" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4cccf48-0228-4a6d-a175-e9f1c23f01d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9394" - ], - "x-ms-correlation-request-id": [ - "7ef19b35-0c46-4c9a-8dfe-e916f3c85c16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220654Z:7ef19b35-0c46-4c9a-8dfe-e916f3c85c16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d26b8cb7-e180-4447-a0ae-6143d8533abd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9393" - ], - "x-ms-correlation-request-id": [ - "0cd0f959-e5aa-4b42-940f-49dec98c627d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220654Z:0cd0f959-e5aa-4b42-940f-49dec98c627d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9df9e3ca-a145-4555-85a8-8ed320c3da35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9392" - ], - "x-ms-correlation-request-id": [ - "fe19f1a8-d53d-43c2-86ac-9216a9062069" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220654Z:fe19f1a8-d53d-43c2-86ac-9216a9062069" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4b3248c-3958-47e2-9171-f0c15e6897e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9391" - ], - "x-ms-correlation-request-id": [ - "2d4289e7-7a7c-425c-a068-9d9e01f099de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220654Z:2d4289e7-7a7c-425c-a068-9d9e01f099de" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1275c82f-a700-4d47-8287-1e6b9f81ba6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9390" - ], - "x-ms-correlation-request-id": [ - "d530cdff-e452-403a-8945-4cddc7654d8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220654Z:d530cdff-e452-403a-8945-4cddc7654d8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f920be8-131a-4519-b5bb-ad935a51b5b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9389" - ], - "x-ms-correlation-request-id": [ - "8d3d9176-17e0-4510-8e66-5ca52526ce9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220654Z:8d3d9176-17e0-4510-8e66-5ca52526ce9f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1928d6d-67b6-4734-b8a8-1f6144780813" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9388" - ], - "x-ms-correlation-request-id": [ - "09d65a5f-14b6-47bc-9255-f67916844602" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220655Z:09d65a5f-14b6-47bc-9255-f67916844602" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3bf77b8-7096-4cf6-baa3-312c5ce9201d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9387" - ], - "x-ms-correlation-request-id": [ - "66581ec5-b058-491e-82fe-11d31c7322cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220655Z:66581ec5-b058-491e-82fe-11d31c7322cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8473a646-2705-4f9e-afa4-d47ec5b5140a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9386" - ], - "x-ms-correlation-request-id": [ - "8a27f188-c1f0-4e1d-9821-dd52c97a2ebd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220655Z:8a27f188-c1f0-4e1d-9821-dd52c97a2ebd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee296f61-243b-4390-bc96-477f6b2ec317" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9385" - ], - "x-ms-correlation-request-id": [ - "dc8ff2af-f0e4-4042-9e45-d12250ce46ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220655Z:dc8ff2af-f0e4-4042-9e45-d12250ce46ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "634a6497-e186-42ad-ba53-b1b396d56c8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9384" - ], - "x-ms-correlation-request-id": [ - "b3d7e8b8-4636-4c81-920a-807677f703c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220655Z:b3d7e8b8-4636-4c81-920a-807677f703c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aae67d68-8f31-47bd-a1b8-b8ac20eb1fa2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9383" - ], - "x-ms-correlation-request-id": [ - "887f1543-48ad-41d1-b5e4-1a0ad6bd63f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220655Z:887f1543-48ad-41d1-b5e4-1a0ad6bd63f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7be8eda-8017-4f40-8abb-cf484d4a325b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9382" - ], - "x-ms-correlation-request-id": [ - "76c42595-4816-4092-bbcf-2acca71a7457" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220656Z:76c42595-4816-4092-bbcf-2acca71a7457" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "09953266-dd3f-47fd-a5f2-eec51f6c6720" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9381" - ], - "x-ms-correlation-request-id": [ - "5c76a960-bbeb-4296-a3ae-df7b62121e9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220656Z:5c76a960-bbeb-4296-a3ae-df7b62121e9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da570bc2-45e7-4ed9-b6cd-6e0ec0091c59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9380" - ], - "x-ms-correlation-request-id": [ - "85fdb60a-426c-4b50-bdc4-6d9bfc57e7e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220656Z:85fdb60a-426c-4b50-bdc4-6d9bfc57e7e0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe970cb6-5e33-452a-a260-6ad67bd6f963" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9379" - ], - "x-ms-correlation-request-id": [ - "448860a0-cd5e-4740-82fd-a03ac6f7b5f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220656Z:448860a0-cd5e-4740-82fd-a03ac6f7b5f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4bc82fbb-ab65-47e5-ab94-5e3e9b92cf2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9378" - ], - "x-ms-correlation-request-id": [ - "3e4b0c43-86d7-4023-b0a8-3ea2aa76b2a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220656Z:3e4b0c43-86d7-4023-b0a8-3ea2aa76b2a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0631c6ab-e0ba-4e6c-b820-8f39cb805bc6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9377" - ], - "x-ms-correlation-request-id": [ - "75d31c17-bcde-48fa-b329-b400d7644116" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220656Z:75d31c17-bcde-48fa-b329-b400d7644116" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03d91476-27f3-483e-b408-42aaac4c8789" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9376" - ], - "x-ms-correlation-request-id": [ - "094b3a78-88bf-4bae-8628-2d43c0748a85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220657Z:094b3a78-88bf-4bae-8628-2d43c0748a85" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5eaf6dc-949e-45e2-8835-ddc6e286364b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9375" - ], - "x-ms-correlation-request-id": [ - "d152fb04-0d37-4246-9052-699c89f7836f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220657Z:d152fb04-0d37-4246-9052-699c89f7836f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f28ee38-c0e3-47e7-871a-215fc74ee37c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9374" - ], - "x-ms-correlation-request-id": [ - "98d989fa-0f60-45ce-ab0a-aeca0b329dcd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220657Z:98d989fa-0f60-45ce-ab0a-aeca0b329dcd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33a579f3-0f0c-497a-b335-59f3559b6292" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9373" - ], - "x-ms-correlation-request-id": [ - "fa28fa86-3b8a-4d1b-b356-df23925cb55e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220657Z:fa28fa86-3b8a-4d1b-b356-df23925cb55e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ecc15521-b041-4d2d-83e5-0b6f18c4b269" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9372" - ], - "x-ms-correlation-request-id": [ - "856022bc-9523-450c-b262-3adc7ab7d4a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220657Z:856022bc-9523-450c-b262-3adc7ab7d4a6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c823b99-3930-4706-927e-4b60a6044fac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9371" - ], - "x-ms-correlation-request-id": [ - "f7f42671-7330-47d7-92f9-3920131134b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220657Z:f7f42671-7330-47d7-92f9-3920131134b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab4b52af-4831-44f1-bd60-fddca96e3ee5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9370" - ], - "x-ms-correlation-request-id": [ - "36edd265-aefb-43b0-bd1c-71fb795f9aa1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220658Z:36edd265-aefb-43b0-bd1c-71fb795f9aa1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51c9dca6-5822-42d0-940c-111957a201f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9369" - ], - "x-ms-correlation-request-id": [ - "ebcda606-a837-4170-8d4c-da90de464945" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220658Z:ebcda606-a837-4170-8d4c-da90de464945" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc3b1eb3-030c-43ff-ac50-d620102af1c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9368" - ], - "x-ms-correlation-request-id": [ - "914ace5b-ab9e-48d1-9dab-2d98a5b01238" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220658Z:914ace5b-ab9e-48d1-9dab-2d98a5b01238" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "21d04a4b-bb02-4c79-9bc6-d82e39234ca0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9367" - ], - "x-ms-correlation-request-id": [ - "78f13c0a-38e9-48cb-9386-b360cd4ad5ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220658Z:78f13c0a-38e9-48cb-9386-b360cd4ad5ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8fbb7037-dcca-4ee4-aca1-f090a5c1321f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9366" - ], - "x-ms-correlation-request-id": [ - "b0c4ac71-8d34-4529-94d3-b431fbf4161e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220658Z:b0c4ac71-8d34-4529-94d3-b431fbf4161e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "443d5140-5567-4a07-ae0a-b0a1008224bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9365" - ], - "x-ms-correlation-request-id": [ - "517ad67f-49b2-4de4-a7fa-ae92cb66c8f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220658Z:517ad67f-49b2-4de4-a7fa-ae92cb66c8f3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7bc77010-8808-4b67-a021-eb95978bfbe2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9364" - ], - "x-ms-correlation-request-id": [ - "7740952c-7b2f-40c5-99d4-2f46c8c0daa9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220659Z:7740952c-7b2f-40c5-99d4-2f46c8c0daa9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "292a4290-e989-462e-a2c8-dae8bbbd58a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9363" - ], - "x-ms-correlation-request-id": [ - "ba9d72c3-62b0-4b79-9a60-2f12b56479dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220659Z:ba9d72c3-62b0-4b79-9a60-2f12b56479dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8064a990-1668-43a6-b437-2c35bab83327" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9362" - ], - "x-ms-correlation-request-id": [ - "596fde03-fc58-4fec-9085-90d546a712ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220659Z:596fde03-fc58-4fec-9085-90d546a712ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2d5907b-80aa-4c0a-b402-0b89767f349d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9361" - ], - "x-ms-correlation-request-id": [ - "8e37ad9e-79be-4e85-86fc-9714a2aee54f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220659Z:8e37ad9e-79be-4e85-86fc-9714a2aee54f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c6d8cc0-d7db-41da-8cf1-541bba3353b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9360" - ], - "x-ms-correlation-request-id": [ - "f6796be2-cfd8-40a6-9a87-006b7aaffce4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220659Z:f6796be2-cfd8-40a6-9a87-006b7aaffce4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac3c3d27-e649-4ebf-8058-caddfe1c4658" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9359" - ], - "x-ms-correlation-request-id": [ - "1b8c8dad-9045-4ed3-a9d1-9be57dde65f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220659Z:1b8c8dad-9045-4ed3-a9d1-9be57dde65f3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a153e4ef-ff21-4134-8ef9-729fb7428b9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9358" - ], - "x-ms-correlation-request-id": [ - "e3e338b9-598b-44df-9a34-921154895cca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220700Z:e3e338b9-598b-44df-9a34-921154895cca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f7a40f3-659d-476e-ab17-e63e7e483c71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9357" - ], - "x-ms-correlation-request-id": [ - "e3151399-b760-4513-8303-5b6ee1cfafdc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220700Z:e3151399-b760-4513-8303-5b6ee1cfafdc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f93e6a4-bd97-4401-b756-2b3a270c4593" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9356" - ], - "x-ms-correlation-request-id": [ - "4e196658-5672-42ca-90a4-8f1a656cad63" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220700Z:4e196658-5672-42ca-90a4-8f1a656cad63" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80e55d49-cf73-4dc1-a974-609b43ddd7a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9355" - ], - "x-ms-correlation-request-id": [ - "5c1cc48f-c542-4cf5-b216-2ccd31d8605d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220700Z:5c1cc48f-c542-4cf5-b216-2ccd31d8605d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "587d3a5a-1aad-45ff-8f34-4f419f696bf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9354" - ], - "x-ms-correlation-request-id": [ - "00e9e9ad-55ee-4c15-8724-661a826a546b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220700Z:00e9e9ad-55ee-4c15-8724-661a826a546b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5983d6c-571d-4510-996c-f8ee3f408433" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9353" - ], - "x-ms-correlation-request-id": [ - "060b74a2-a93a-4805-96de-68df2e0eb7d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220700Z:060b74a2-a93a-4805-96de-68df2e0eb7d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:06:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70b15787-9e72-420c-afb1-b6d0f8fad736" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9352" - ], - "x-ms-correlation-request-id": [ - "fdea42a7-26e2-41d2-9543-4fb443450a2b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220701Z:fdea42a7-26e2-41d2-9543-4fb443450a2b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d9e44c5-2d24-4595-89b5-83fc8332ca36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9351" - ], - "x-ms-correlation-request-id": [ - "ededca5d-cb0b-4ec6-9382-c6a1837bd9c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220701Z:ededca5d-cb0b-4ec6-9382-c6a1837bd9c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "807c5666-b04b-4fb0-a611-4623c05adcbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9350" - ], - "x-ms-correlation-request-id": [ - "642f08af-9bc7-47ff-958d-64ce2055d2f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220701Z:642f08af-9bc7-47ff-958d-64ce2055d2f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d38cb6c-05cf-496b-9446-28dc098cf60f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9349" - ], - "x-ms-correlation-request-id": [ - "49e1b671-96d6-48b1-a3d6-3638cc4f5b62" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220701Z:49e1b671-96d6-48b1-a3d6-3638cc4f5b62" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "727af1c2-3bca-4231-ac17-e55a99c53329" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9348" - ], - "x-ms-correlation-request-id": [ - "57d31ecc-4513-491a-ae8f-13c96d156aaf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220701Z:57d31ecc-4513-491a-ae8f-13c96d156aaf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4599693-1831-4186-9b03-7e14d95af399" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9347" - ], - "x-ms-correlation-request-id": [ - "6aad2ebf-84a7-4582-8b4b-cb6d792327e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220702Z:6aad2ebf-84a7-4582-8b4b-cb6d792327e5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a646b285-ac7e-4113-afbb-fa4853ee38d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9346" - ], - "x-ms-correlation-request-id": [ - "0cde0579-8304-4094-a3c7-2dbe2c443cd8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220702Z:0cde0579-8304-4094-a3c7-2dbe2c443cd8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de28258c-1a99-42f9-a473-2a3acaef48c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9345" - ], - "x-ms-correlation-request-id": [ - "555bd198-86e7-4ed0-bac7-ad812c94c18a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220702Z:555bd198-86e7-4ed0-bac7-ad812c94c18a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0cf9077b-c2f1-4042-a9dc-0d174a2c0388" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9344" - ], - "x-ms-correlation-request-id": [ - "19f41bb0-378a-497b-a85a-884a39a9aa0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220702Z:19f41bb0-378a-497b-a85a-884a39a9aa0c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4221e3b6-6cc0-462f-b044-e92cd31fc88b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9343" - ], - "x-ms-correlation-request-id": [ - "d2db0c50-edc9-4920-bf5c-b287d81279ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220702Z:d2db0c50-edc9-4920-bf5c-b287d81279ba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90ee34e3-aab5-4401-8e07-78f730ac6321" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9342" - ], - "x-ms-correlation-request-id": [ - "75d92bc2-7889-4a33-b8d1-778e5c731dbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220702Z:75d92bc2-7889-4a33-b8d1-778e5c731dbe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce2bb6f2-8d69-4785-a921-466033c9a26e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9341" - ], - "x-ms-correlation-request-id": [ - "f375c57d-2be0-40ed-aff6-3b7afa9561d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220703Z:f375c57d-2be0-40ed-aff6-3b7afa9561d0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74c5ea6b-122f-4549-84d1-7d61cd355310" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9340" - ], - "x-ms-correlation-request-id": [ - "0d1967c1-10ce-4f77-80df-33d9d83ac908" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220703Z:0d1967c1-10ce-4f77-80df-33d9d83ac908" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "173ea6f4-1b61-4d49-877d-f00a92e14053" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9339" - ], - "x-ms-correlation-request-id": [ - "28393810-7b7f-4552-bb14-773174dc6bdd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220703Z:28393810-7b7f-4552-bb14-773174dc6bdd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6581065-e9ec-402d-bb8d-3f8d2f8ecd80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9338" - ], - "x-ms-correlation-request-id": [ - "4d16b9b6-197a-485a-8af4-ed21731a6d3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220703Z:4d16b9b6-197a-485a-8af4-ed21731a6d3d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65257b0e-bc61-44f6-956b-feb1e6950dd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9337" - ], - "x-ms-correlation-request-id": [ - "3bc2c0b3-b155-47f9-9d97-bcdfe40427bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220703Z:3bc2c0b3-b155-47f9-9d97-bcdfe40427bd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdfdab84-e9fc-4866-94e1-e8b851ec084c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9336" - ], - "x-ms-correlation-request-id": [ - "a0c0a298-cc19-47c5-9140-637945baf099" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220704Z:a0c0a298-cc19-47c5-9140-637945baf099" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9acfe1df-b1f6-4cb8-8313-1e8611a6b61e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9335" - ], - "x-ms-correlation-request-id": [ - "96ec2d3c-871b-4188-81fc-69e17332aacb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220704Z:96ec2d3c-871b-4188-81fc-69e17332aacb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04060d1a-d6cd-49eb-9c14-78a83789800e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9334" - ], - "x-ms-correlation-request-id": [ - "e609c4d2-5a69-4f1e-baf9-0492b92b73d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220704Z:e609c4d2-5a69-4f1e-baf9-0492b92b73d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d378cbeb-7000-46c2-baa9-5c3aa1e8b100" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9333" - ], - "x-ms-correlation-request-id": [ - "56b17466-9610-4d33-8672-2846ad79ca7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220704Z:56b17466-9610-4d33-8672-2846ad79ca7a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19ffc1ea-6298-400c-8297-30bd8f112be6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9332" - ], - "x-ms-correlation-request-id": [ - "5cc637bb-c50e-4500-ad29-4a3f0ed2e48d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220704Z:5cc637bb-c50e-4500-ad29-4a3f0ed2e48d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23a3c169-9dd5-4040-ab7d-6b0e4e38e72d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9331" - ], - "x-ms-correlation-request-id": [ - "c8ece848-59de-4836-a7c6-f78306f82808" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220705Z:c8ece848-59de-4836-a7c6-f78306f82808" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb4a4f2b-d404-4e00-a946-4b90f7bd6865" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9330" - ], - "x-ms-correlation-request-id": [ - "7bc479a0-711b-4bd6-a0e3-b0d03388c09d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220705Z:7bc479a0-711b-4bd6-a0e3-b0d03388c09d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "714566fc-9b83-4296-9067-12a1434632f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9329" - ], - "x-ms-correlation-request-id": [ - "4a8e3079-95af-46ce-8415-22e3874810f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220705Z:4a8e3079-95af-46ce-8415-22e3874810f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f096c2d7-33cf-4df3-a1fd-f9b709c3179e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9328" - ], - "x-ms-correlation-request-id": [ - "8180ed31-f6ec-41f7-9aed-3293e537189f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220705Z:8180ed31-f6ec-41f7-9aed-3293e537189f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "282354ec-3495-4cfc-90e6-79470b281b61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9327" - ], - "x-ms-correlation-request-id": [ - "15a7233c-62d7-4ecb-a8eb-2c6ef7503785" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220705Z:15a7233c-62d7-4ecb-a8eb-2c6ef7503785" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7ad1fa4-9b86-4f4f-ba23-8cb6f8aaf062" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9326" - ], - "x-ms-correlation-request-id": [ - "0bdc3841-ad61-4d9c-a6fb-1fa84ff4ec9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220705Z:0bdc3841-ad61-4d9c-a6fb-1fa84ff4ec9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "15f7f533-0a2e-4f32-86ff-0b81997c9b6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9325" - ], - "x-ms-correlation-request-id": [ - "c9889e60-da22-4f40-94e4-caea2c6de5b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220706Z:c9889e60-da22-4f40-94e4-caea2c6de5b7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c1336fa-7f43-48cf-aa89-8564ec50056e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9324" - ], - "x-ms-correlation-request-id": [ - "17925952-c065-4a78-b573-3f718c7005f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220706Z:17925952-c065-4a78-b573-3f718c7005f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b88b3b3-7787-40c7-ac38-e0b7dac44554" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9323" - ], - "x-ms-correlation-request-id": [ - "7384c3a7-2e91-49ad-b5de-18fccc14224d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220706Z:7384c3a7-2e91-49ad-b5de-18fccc14224d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8884b4dd-af2e-4a94-a9b3-ead7c785e0e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9322" - ], - "x-ms-correlation-request-id": [ - "a2d75e7b-cb70-4154-b793-8992c990e560" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220706Z:a2d75e7b-cb70-4154-b793-8992c990e560" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6dab2910-a9b1-4a22-8636-89056d87d338" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9321" - ], - "x-ms-correlation-request-id": [ - "d3e09eaa-107e-409e-8bf4-21cd5b7f3086" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220706Z:d3e09eaa-107e-409e-8bf4-21cd5b7f3086" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "740193c2-909e-468d-ab3d-fea62c065746" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9320" - ], - "x-ms-correlation-request-id": [ - "ba26fd5e-171f-4580-b31b-957582918869" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220706Z:ba26fd5e-171f-4580-b31b-957582918869" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ea83f70-a63d-4ef2-9a05-93aae11ca80c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9319" - ], - "x-ms-correlation-request-id": [ - "5190497b-7dc4-4ab0-92ff-0e3ccc2b17cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220707Z:5190497b-7dc4-4ab0-92ff-0e3ccc2b17cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "182bd3fa-acfe-47ce-a83e-c43fc2491c55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9318" - ], - "x-ms-correlation-request-id": [ - "a0da1ed6-1e04-4fae-ae8f-cde640c9620f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220707Z:a0da1ed6-1e04-4fae-ae8f-cde640c9620f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1768c3fc-3fbf-45b1-9717-ad2e987a0c0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9317" - ], - "x-ms-correlation-request-id": [ - "68c85e19-4878-46e8-837e-81121bda24d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220707Z:68c85e19-4878-46e8-837e-81121bda24d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ca6c3c5-f0c1-4dfc-9512-1429fd37f945" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9316" - ], - "x-ms-correlation-request-id": [ - "e5530fd7-46a2-41c6-859b-c8073ed151ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220707Z:e5530fd7-46a2-41c6-859b-c8073ed151ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de62ff64-4a12-453d-b107-6e1b401c24c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9315" - ], - "x-ms-correlation-request-id": [ - "a3b4a2cd-be26-4e30-9c37-601b0a32309b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220707Z:a3b4a2cd-be26-4e30-9c37-601b0a32309b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ee3bef7-3509-4d1f-903d-fb395beb4aa9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9314" - ], - "x-ms-correlation-request-id": [ - "de89f5e8-5fc9-41f5-a2de-5d9b1c5808b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220708Z:de89f5e8-5fc9-41f5-a2de-5d9b1c5808b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a83a0be-ebfe-41c2-9fc6-5ec8c3f2857a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9313" - ], - "x-ms-correlation-request-id": [ - "e77b351c-f608-4ccf-b5d2-bfd062cf0966" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220708Z:e77b351c-f608-4ccf-b5d2-bfd062cf0966" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03fc0ab5-73b4-4649-8a54-53d6e9de6843" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9312" - ], - "x-ms-correlation-request-id": [ - "bdf0bfad-9f41-4ea4-85d5-3164bf985d8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220708Z:bdf0bfad-9f41-4ea4-85d5-3164bf985d8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef293ced-2c0b-40f5-b536-0c42018e7f6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9311" - ], - "x-ms-correlation-request-id": [ - "5e81ccaa-c0b0-4bca-8365-a5f03158b23b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220708Z:5e81ccaa-c0b0-4bca-8365-a5f03158b23b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13568ac3-7d1e-4a2c-8aaf-6ec4742979f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9310" - ], - "x-ms-correlation-request-id": [ - "1bb3ec26-214a-44a0-b802-a93d938a26ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220708Z:1bb3ec26-214a-44a0-b802-a93d938a26ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95dec449-7e8e-464e-a745-1c9278fc1edd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9309" - ], - "x-ms-correlation-request-id": [ - "b7cecc59-1701-47ee-a994-bde8032ea8de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220708Z:b7cecc59-1701-47ee-a994-bde8032ea8de" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6379ce2-0913-41a4-af8e-18b7248d7c56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9308" - ], - "x-ms-correlation-request-id": [ - "f4f9f728-05f0-45ad-b1b8-05375584b128" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220709Z:f4f9f728-05f0-45ad-b1b8-05375584b128" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2dad3aef-2fd5-46d1-b916-229342b25fb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9307" - ], - "x-ms-correlation-request-id": [ - "5a61ba94-517d-431e-b445-b5b8f9c6c956" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220709Z:5a61ba94-517d-431e-b445-b5b8f9c6c956" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d7e601b-1c69-4960-8a53-e61c8b736b39" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9306" - ], - "x-ms-correlation-request-id": [ - "ee8734d4-65d6-4bcf-bdc4-56b9e69b5983" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220709Z:ee8734d4-65d6-4bcf-bdc4-56b9e69b5983" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19a6302f-adbb-46ae-98de-e7eb8d052a76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9305" - ], - "x-ms-correlation-request-id": [ - "82bf3d88-dc3b-41d0-ad42-863f742194c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220709Z:82bf3d88-dc3b-41d0-ad42-863f742194c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b943455e-75f6-426f-a2af-1d113a718be9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9304" - ], - "x-ms-correlation-request-id": [ - "9985da03-fe9f-47ca-9b05-b70ff2b24830" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220709Z:9985da03-fe9f-47ca-9b05-b70ff2b24830" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2ad5d4a-acec-4858-b48e-d0e403a85cc6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9303" - ], - "x-ms-correlation-request-id": [ - "c3ae1f77-c24e-4193-9f2c-f1aa2e57c8bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220709Z:c3ae1f77-c24e-4193-9f2c-f1aa2e57c8bf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5178bcb-9058-4954-af18-e6ee62843499" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9302" - ], - "x-ms-correlation-request-id": [ - "913137ed-da3b-4ab2-a104-1ae104eb687c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220709Z:913137ed-da3b-4ab2-a104-1ae104eb687c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4119b5bf-18b4-4181-b72e-841397698344" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9301" - ], - "x-ms-correlation-request-id": [ - "6366d0cc-ccf2-4552-8c0d-dae022289049" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220710Z:6366d0cc-ccf2-4552-8c0d-dae022289049" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2039d1f2-430f-466e-ad94-94eff5504fc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9300" - ], - "x-ms-correlation-request-id": [ - "15c0e044-cda7-4aea-b07e-f90f6cf02888" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220710Z:15c0e044-cda7-4aea-b07e-f90f6cf02888" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99c1d841-b4c4-47c5-b84e-ca46934b7925" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9299" - ], - "x-ms-correlation-request-id": [ - "63e7bd61-d3e2-4b50-8c37-5b9af825139b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220710Z:63e7bd61-d3e2-4b50-8c37-5b9af825139b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccfcadbb-ec5e-401a-81bb-2645a7fc3fb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9298" - ], - "x-ms-correlation-request-id": [ - "0eaa54be-1bd7-42b0-acae-d9f9ce5db7e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220710Z:0eaa54be-1bd7-42b0-acae-d9f9ce5db7e4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93fb61a6-65df-4a0a-9b0f-593e9f3842b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9297" - ], - "x-ms-correlation-request-id": [ - "2c44f5b8-7962-4ceb-a564-5277543826f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220710Z:2c44f5b8-7962-4ceb-a564-5277543826f5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "26620aba-7ef5-42c6-b930-ec418445892a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9296" - ], - "x-ms-correlation-request-id": [ - "7fd6b7dc-f23c-42a0-9d5c-298063fff7fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220710Z:7fd6b7dc-f23c-42a0-9d5c-298063fff7fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b157529-5963-45ea-84fd-b9fa0fd60aa0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9295" - ], - "x-ms-correlation-request-id": [ - "0a6bfe2b-11a6-4684-b90e-611304c60f34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220711Z:0a6bfe2b-11a6-4684-b90e-611304c60f34" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e8287ce-6bf5-4393-806d-7924531f9d1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9294" - ], - "x-ms-correlation-request-id": [ - "117e7625-4dde-416b-ac9d-8ffdae17403c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220711Z:117e7625-4dde-416b-ac9d-8ffdae17403c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19f1b04a-2db4-4804-af87-69e11786c2eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9293" - ], - "x-ms-correlation-request-id": [ - "d3968251-7378-487b-b216-963761ebc287" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220711Z:d3968251-7378-487b-b216-963761ebc287" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "305476e1-e7fc-429c-8f1b-1505a35f60ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9292" - ], - "x-ms-correlation-request-id": [ - "1aaae0c8-7ac7-4b4d-b18e-a319a9dbd898" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220711Z:1aaae0c8-7ac7-4b4d-b18e-a319a9dbd898" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e78e067c-c304-4b71-aa1c-de819c8dd144" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9291" - ], - "x-ms-correlation-request-id": [ - "11993310-0803-477c-bbcb-58d845812e05" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220711Z:11993310-0803-477c-bbcb-58d845812e05" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39f8ff12-dc80-48c1-9e76-75ef7bec7df1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9290" - ], - "x-ms-correlation-request-id": [ - "dc2357ae-68b6-415f-8efd-ddc17e7eb539" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220711Z:dc2357ae-68b6-415f-8efd-ddc17e7eb539" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d7852b2-8f6d-4d33-9db6-ecc8685df4ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9289" - ], - "x-ms-correlation-request-id": [ - "0fad924b-588e-41b5-acd7-0ad7ac82cf9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220712Z:0fad924b-588e-41b5-acd7-0ad7ac82cf9f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4caed690-3ddc-49eb-bca4-d87ced171492" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9288" - ], - "x-ms-correlation-request-id": [ - "8f241f8a-cd46-484f-b797-7b9c3b680687" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220712Z:8f241f8a-cd46-484f-b797-7b9c3b680687" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f517074-dc01-4e88-b7e9-1582509d63cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9287" - ], - "x-ms-correlation-request-id": [ - "a3f800d8-b015-49cb-bc1a-e3702c09a1ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220712Z:a3f800d8-b015-49cb-bc1a-e3702c09a1ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c7f57b7-5282-4868-a71c-e95f914faf80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9286" - ], - "x-ms-correlation-request-id": [ - "437e67e8-2931-4a3c-b257-8a097bec4981" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220712Z:437e67e8-2931-4a3c-b257-8a097bec4981" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c300dc0-3642-40c1-8a6f-d8b21d63cf57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9285" - ], - "x-ms-correlation-request-id": [ - "d772e09f-2423-4b9a-a164-cd2632dd5564" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220712Z:d772e09f-2423-4b9a-a164-cd2632dd5564" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c52422b-ce9b-4b76-ad24-761b906229a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9284" - ], - "x-ms-correlation-request-id": [ - "6f433bf3-c313-45b2-933d-44d8bd634c67" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220712Z:6f433bf3-c313-45b2-933d-44d8bd634c67" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed0869d8-33e2-4ebd-a1a6-03fec0bf1ca4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9283" - ], - "x-ms-correlation-request-id": [ - "6c8dd455-045c-400d-a378-4f21e779cc67" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220712Z:6c8dd455-045c-400d-a378-4f21e779cc67" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5dd3285d-e0ab-4179-83d8-056acd2b0a1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9282" - ], - "x-ms-correlation-request-id": [ - "674528b6-f857-4f9f-b2be-32b1671e6629" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220713Z:674528b6-f857-4f9f-b2be-32b1671e6629" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aefb031b-8501-41c8-ae80-72e186380618" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9281" - ], - "x-ms-correlation-request-id": [ - "48ab4981-eb0c-4e69-be25-ed9b543703c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220713Z:48ab4981-eb0c-4e69-be25-ed9b543703c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0823888-b9a1-49e2-88bf-68b87c41c685" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9280" - ], - "x-ms-correlation-request-id": [ - "ceb0926e-4143-4a94-9bd3-b23007702c09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220713Z:ceb0926e-4143-4a94-9bd3-b23007702c09" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62df6b75-921c-43f5-932c-381d258fd33e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9279" - ], - "x-ms-correlation-request-id": [ - "19b11cfd-cc80-4225-ae3a-e7538218ea54" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220713Z:19b11cfd-cc80-4225-ae3a-e7538218ea54" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "34d792a7-dc3d-403b-8366-8463429e0a9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9278" - ], - "x-ms-correlation-request-id": [ - "6c64e7ec-44e6-476c-b31b-ec78c5a2e41b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220713Z:6c64e7ec-44e6-476c-b31b-ec78c5a2e41b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81a92fd5-eae4-4eb8-8e93-e6117cc6016a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9277" - ], - "x-ms-correlation-request-id": [ - "87abe716-2b60-462e-8fd6-92f50dea435e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220714Z:87abe716-2b60-462e-8fd6-92f50dea435e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c1e483a-e5f1-481a-9edc-1b997a5b0cc4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9276" - ], - "x-ms-correlation-request-id": [ - "0e401c80-f81b-4613-835e-fdd08e0a1911" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220714Z:0e401c80-f81b-4613-835e-fdd08e0a1911" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f1d28f4-361f-4c58-b554-e36cda48550a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9275" - ], - "x-ms-correlation-request-id": [ - "603bb7c6-45f8-49c1-9ae9-94a7b5c049d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220714Z:603bb7c6-45f8-49c1-9ae9-94a7b5c049d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87e932df-3426-48bf-bfb7-13f6fbf52c5d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9274" - ], - "x-ms-correlation-request-id": [ - "d01eb6a8-8db4-4bab-aa68-1c3549c76624" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220714Z:d01eb6a8-8db4-4bab-aa68-1c3549c76624" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98f417f5-265e-4d1c-b522-f175d82f7567" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9273" - ], - "x-ms-correlation-request-id": [ - "7b8e4abb-227a-472e-bb99-b6cbfa9fded1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220714Z:7b8e4abb-227a-472e-bb99-b6cbfa9fded1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b9e95545-937b-47b5-8f76-6813ae411c9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9272" - ], - "x-ms-correlation-request-id": [ - "1e22188e-2b29-4c58-a1c6-9fedffdefafd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220714Z:1e22188e-2b29-4c58-a1c6-9fedffdefafd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f78f6518-1dad-4be4-8f49-a8419f55e182" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9271" - ], - "x-ms-correlation-request-id": [ - "4fdcb91e-982e-4958-b5d4-4b8c6ff3160c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220714Z:4fdcb91e-982e-4958-b5d4-4b8c6ff3160c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "15306596-4c16-42f8-834b-abf4c0bf7298" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9270" - ], - "x-ms-correlation-request-id": [ - "fc244e7a-35c6-4419-8a08-a1467921b942" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220715Z:fc244e7a-35c6-4419-8a08-a1467921b942" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "356fa776-4591-4e05-a36f-5b5fa45832dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9269" - ], - "x-ms-correlation-request-id": [ - "d60b59b3-563b-4b67-92a2-c4d1de4181fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220715Z:d60b59b3-563b-4b67-92a2-c4d1de4181fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ab0d594-c7b9-4d13-a187-0b5777891e65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9268" - ], - "x-ms-correlation-request-id": [ - "e3599bd8-3744-40a8-af2d-7925d9cc3f6a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220715Z:e3599bd8-3744-40a8-af2d-7925d9cc3f6a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37de3da1-661d-491f-aee4-a0ba93ae00a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9267" - ], - "x-ms-correlation-request-id": [ - "312095b9-5ca8-4736-a2c2-de266ecbf485" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220715Z:312095b9-5ca8-4736-a2c2-de266ecbf485" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61517c1f-85b2-4f56-876d-8aaf4eac8c13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9266" - ], - "x-ms-correlation-request-id": [ - "82419507-1e99-4315-b13b-26d827df027d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220715Z:82419507-1e99-4315-b13b-26d827df027d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cade0871-2efa-4d74-aa5c-50b5eac23abd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9265" - ], - "x-ms-correlation-request-id": [ - "d3a6be78-16d5-40ad-8d63-ddab7c99d81e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220716Z:d3a6be78-16d5-40ad-8d63-ddab7c99d81e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b209414-6ade-479b-8704-63c5a9bd4981" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9264" - ], - "x-ms-correlation-request-id": [ - "7366097b-09be-43db-bbee-99d75f4a64d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220716Z:7366097b-09be-43db-bbee-99d75f4a64d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86e2456b-961c-4c6c-b208-9b7459ac520b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9263" - ], - "x-ms-correlation-request-id": [ - "5e7e7586-e50c-4c3f-aab7-5ad354fde136" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220716Z:5e7e7586-e50c-4c3f-aab7-5ad354fde136" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7d837b7-5330-440b-a9bc-779752cb67b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9262" - ], - "x-ms-correlation-request-id": [ - "5fd25e92-42dd-48bc-a81f-a6ecaaa319f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220716Z:5fd25e92-42dd-48bc-a81f-a6ecaaa319f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "189d30ca-5793-45bd-83fd-9b05388b4560" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9261" - ], - "x-ms-correlation-request-id": [ - "e5a14c49-5da2-40cc-8332-cd3749c52d77" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220716Z:e5a14c49-5da2-40cc-8332-cd3749c52d77" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54121922-fd3c-483b-8dd9-1dd9d40e5ece" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9260" - ], - "x-ms-correlation-request-id": [ - "0116ccb7-9933-459a-b5c3-031cd2ea924d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220716Z:0116ccb7-9933-459a-b5c3-031cd2ea924d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3cb1d2a-852c-45f6-8353-9508024340be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9259" - ], - "x-ms-correlation-request-id": [ - "51acae03-27c2-45b8-ab5f-896f3004be63" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220717Z:51acae03-27c2-45b8-ab5f-896f3004be63" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "575e8f88-f41c-41fa-bc18-c6e1f8ecc260" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9258" - ], - "x-ms-correlation-request-id": [ - "0de8a64e-b31f-4ad2-b61f-e65aa21c8523" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220717Z:0de8a64e-b31f-4ad2-b61f-e65aa21c8523" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "739f1580-0558-465e-b287-ec31228187f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9257" - ], - "x-ms-correlation-request-id": [ - "7be601fb-c31e-44ce-b177-538cf34012de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220717Z:7be601fb-c31e-44ce-b177-538cf34012de" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f51221f4-e5bd-45c9-8df4-fbbb003f8d14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9256" - ], - "x-ms-correlation-request-id": [ - "27d1a3c5-654d-46a5-976e-1f2d1c5427f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220717Z:27d1a3c5-654d-46a5-976e-1f2d1c5427f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f12fc1b-7504-4a4a-88ed-48fc7b9669cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9255" - ], - "x-ms-correlation-request-id": [ - "f99d9262-a13e-45b4-ac87-19f4d10fecb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220717Z:f99d9262-a13e-45b4-ac87-19f4d10fecb1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "220651d9-7d9e-45c8-a964-15f4738d7833" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9254" - ], - "x-ms-correlation-request-id": [ - "37340eb1-4e28-4a12-aa69-20ed83162894" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220717Z:37340eb1-4e28-4a12-aa69-20ed83162894" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a62fffd-6097-4eca-85a1-88eee07cc8cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9253" - ], - "x-ms-correlation-request-id": [ - "5b1dadd8-9451-40ac-a2d2-fb5ab820a519" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220718Z:5b1dadd8-9451-40ac-a2d2-fb5ab820a519" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9fbb45ff-321a-4e88-ae33-304982e9a142" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9252" - ], - "x-ms-correlation-request-id": [ - "278e9941-d7a1-4061-a5a4-57060ff9a8eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220718Z:278e9941-d7a1-4061-a5a4-57060ff9a8eb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67fbf5f6-0a28-413a-8e78-469a1038bdcb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9251" - ], - "x-ms-correlation-request-id": [ - "b931e293-ceff-49cd-bb0f-889fbbdd4f95" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220718Z:b931e293-ceff-49cd-bb0f-889fbbdd4f95" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf94362b-98b1-46e1-917f-9a3911c76046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9250" - ], - "x-ms-correlation-request-id": [ - "06f17e25-a1f5-4074-93aa-35163fbadfe4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220718Z:06f17e25-a1f5-4074-93aa-35163fbadfe4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd0e59ab-eb6d-45b6-a5b3-6456d258cf9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9249" - ], - "x-ms-correlation-request-id": [ - "4de524ea-19aa-4e42-8efb-8a2ed07c05f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220718Z:4de524ea-19aa-4e42-8efb-8a2ed07c05f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4d53490-cd84-478b-aabc-c1c9f19f2567" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9248" - ], - "x-ms-correlation-request-id": [ - "cd1a84c8-155a-4d1d-ae70-260a589e8679" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220718Z:cd1a84c8-155a-4d1d-ae70-260a589e8679" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cafdf46d-7613-40c6-a732-476514e23e46" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9247" - ], - "x-ms-correlation-request-id": [ - "46103129-d7ef-45ca-b695-76a6be42b7c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220718Z:46103129-d7ef-45ca-b695-76a6be42b7c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf44125a-be73-4162-801e-e41aa87cdd23" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9246" - ], - "x-ms-correlation-request-id": [ - "343bbbd0-1676-478f-b00b-8aa4f5911c34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220719Z:343bbbd0-1676-478f-b00b-8aa4f5911c34" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "673d30fe-4705-4673-b499-ea029ef3497d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9245" - ], - "x-ms-correlation-request-id": [ - "9d66ff08-e34b-4739-8f0a-b960dc1f265c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220719Z:9d66ff08-e34b-4739-8f0a-b960dc1f265c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97086d6b-dd94-4727-add6-d8c89399a1e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9244" - ], - "x-ms-correlation-request-id": [ - "a71b1aa0-2e6f-4689-9943-1514babe4778" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220719Z:a71b1aa0-2e6f-4689-9943-1514babe4778" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6778e6db-360f-4ccf-8723-8f2b91d40c18" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9243" - ], - "x-ms-correlation-request-id": [ - "82c220d3-d630-4965-bbb7-569ee5cce66c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220719Z:82c220d3-d630-4965-bbb7-569ee5cce66c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36d81fa5-cc45-4168-9271-a7191630ac2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9242" - ], - "x-ms-correlation-request-id": [ - "570df879-e5c8-4cbc-8d05-43c1e4ab9f5b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220719Z:570df879-e5c8-4cbc-8d05-43c1e4ab9f5b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "007abe8a-5a57-4a14-b075-8d2149af714c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9241" - ], - "x-ms-correlation-request-id": [ - "4dc1d6f9-620c-4d06-935f-016f1535d273" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220720Z:4dc1d6f9-620c-4d06-935f-016f1535d273" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04f1d23c-3771-46b3-88cb-f07b18d1b747" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9240" - ], - "x-ms-correlation-request-id": [ - "325f26d6-8743-4454-9027-21917baa3cbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220720Z:325f26d6-8743-4454-9027-21917baa3cbe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e80b713-dd13-4a36-9d1a-be8cde72777f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9239" - ], - "x-ms-correlation-request-id": [ - "7f0a6389-d9ec-4f16-9dc6-a77a13eb675a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220720Z:7f0a6389-d9ec-4f16-9dc6-a77a13eb675a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dcef1d4e-90fa-4b94-9504-6d0a8c01aa27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9238" - ], - "x-ms-correlation-request-id": [ - "fe72d4a1-bffb-4b71-843d-50f1353f5966" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220720Z:fe72d4a1-bffb-4b71-843d-50f1353f5966" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e226f1f-10a7-456e-a991-b4e56986a020" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9237" - ], - "x-ms-correlation-request-id": [ - "b7e7b215-941c-477f-84a8-68085564df98" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220720Z:b7e7b215-941c-477f-84a8-68085564df98" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8cff2dfe-c3ed-457f-9f69-c285802b7741" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9236" - ], - "x-ms-correlation-request-id": [ - "82b6b4e7-290a-44ee-8ee5-1cb27ff30596" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220720Z:82b6b4e7-290a-44ee-8ee5-1cb27ff30596" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d97a0c42-bd12-4d0a-ba25-05cf6dbe15ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9235" - ], - "x-ms-correlation-request-id": [ - "7d995e4d-4995-47bd-b564-962787e77d1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220721Z:7d995e4d-4995-47bd-b564-962787e77d1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95781ae1-045b-405c-96bf-a8f07bafdca1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9234" - ], - "x-ms-correlation-request-id": [ - "4af1626e-b5fa-4654-b55b-d4f44b566078" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220721Z:4af1626e-b5fa-4654-b55b-d4f44b566078" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f444ce9a-062c-4a13-b638-38b4d6e78e59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9233" - ], - "x-ms-correlation-request-id": [ - "d30d2710-1fa0-4bf9-bb33-4f8fbaa6c249" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220721Z:d30d2710-1fa0-4bf9-bb33-4f8fbaa6c249" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "812b0f63-4005-4907-b22b-208b9faa32af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9232" - ], - "x-ms-correlation-request-id": [ - "72f8e227-979c-493e-a67e-7d48f2065633" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220721Z:72f8e227-979c-493e-a67e-7d48f2065633" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "27a534f8-4fb1-467b-bb3f-98bfe5dd281e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9231" - ], - "x-ms-correlation-request-id": [ - "28985ab9-acc7-40af-8e51-65ce530e6d9c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220721Z:28985ab9-acc7-40af-8e51-65ce530e6d9c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42077c8e-1676-4ab4-8c2f-6ed305741dde" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9230" - ], - "x-ms-correlation-request-id": [ - "552dd513-2d84-4b50-b2d0-803cd2a1e339" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220721Z:552dd513-2d84-4b50-b2d0-803cd2a1e339" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac4ff4f9-716e-4040-9a6a-afc59c55842b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9229" - ], - "x-ms-correlation-request-id": [ - "3863cc79-d7b0-47f5-9906-8fee73d5167d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220722Z:3863cc79-d7b0-47f5-9906-8fee73d5167d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6746aa9b-354e-4ccd-bf09-bc7dafd404d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9228" - ], - "x-ms-correlation-request-id": [ - "2ebf58d2-a8bc-4bd2-b524-b58b2cc8e38c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220722Z:2ebf58d2-a8bc-4bd2-b524-b58b2cc8e38c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2b1071c-9dc9-44ca-a711-3800baf201e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9227" - ], - "x-ms-correlation-request-id": [ - "43b13787-65ac-4a24-a3a9-a03aa9c6a7fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220722Z:43b13787-65ac-4a24-a3a9-a03aa9c6a7fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e3cf3da-657e-4cb8-99a6-82f3849e208d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9226" - ], - "x-ms-correlation-request-id": [ - "a662a7c0-23d1-45f9-b2f8-e49a9c8b7f8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220722Z:a662a7c0-23d1-45f9-b2f8-e49a9c8b7f8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9563fc74-37ea-4c91-b0d0-01a9c36a7872" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9225" - ], - "x-ms-correlation-request-id": [ - "9c6e978f-3b9e-4a3e-8add-bba33fb618b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220722Z:9c6e978f-3b9e-4a3e-8add-bba33fb618b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fcdbb61c-04a9-4975-a88d-247714cf0069" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9224" - ], - "x-ms-correlation-request-id": [ - "68d3dfa9-7f15-497b-a951-231870d4b871" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220722Z:68d3dfa9-7f15-497b-a951-231870d4b871" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e02afd2-5cd5-4fda-8ca7-85db738d4326" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9223" - ], - "x-ms-correlation-request-id": [ - "bb1407b7-8504-436c-91df-17e4925c614a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220723Z:bb1407b7-8504-436c-91df-17e4925c614a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7bbbd772-d205-41c3-9d8e-860dcb0011d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9222" - ], - "x-ms-correlation-request-id": [ - "62eece0a-9bf1-450f-80e9-c5b17deaab98" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220723Z:62eece0a-9bf1-450f-80e9-c5b17deaab98" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4ac8615-3bc6-4478-98b2-816197f237fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9221" - ], - "x-ms-correlation-request-id": [ - "c3bb38ab-a17d-400c-a65d-65d1be812f65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220723Z:c3bb38ab-a17d-400c-a65d-65d1be812f65" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "708d8b5a-f85f-4f10-b129-33a1cd5447c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9220" - ], - "x-ms-correlation-request-id": [ - "7f5bfbce-9d0a-4ef2-97d3-7bacb172d64d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220723Z:7f5bfbce-9d0a-4ef2-97d3-7bacb172d64d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "27eeecbd-7726-4c07-9aba-51d7b18d65ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9219" - ], - "x-ms-correlation-request-id": [ - "f8e39d97-6c50-48dc-b8de-bd5d4b3c6281" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220723Z:f8e39d97-6c50-48dc-b8de-bd5d4b3c6281" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e81fecf3-1e75-4d42-909f-f3a082e726f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9218" - ], - "x-ms-correlation-request-id": [ - "17c7eb88-0380-470f-a2be-ada0d3f7d455" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220723Z:17c7eb88-0380-470f-a2be-ada0d3f7d455" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79dbe307-d04a-4d03-abea-e7653e0d506a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9217" - ], - "x-ms-correlation-request-id": [ - "21a4c217-355c-4030-b19b-741eb679fb8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220724Z:21a4c217-355c-4030-b19b-741eb679fb8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c7de714-9b67-4b2c-b080-bb46ed06de26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9216" - ], - "x-ms-correlation-request-id": [ - "a9d1bdc3-0d40-4269-9df1-330837d260a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220724Z:a9d1bdc3-0d40-4269-9df1-330837d260a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8260524c-1349-42f1-8952-ea9341cab458" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9215" - ], - "x-ms-correlation-request-id": [ - "39c792d2-dbb9-4b47-832d-57770bb8b329" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220724Z:39c792d2-dbb9-4b47-832d-57770bb8b329" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d047e05c-bcb3-4409-83af-0d444e7b2673" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9214" - ], - "x-ms-correlation-request-id": [ - "416e8692-9efc-4fca-b27d-3a587cf28f9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220724Z:416e8692-9efc-4fca-b27d-3a587cf28f9f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a8f981c-881e-489e-a607-91dd6f164cec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9213" - ], - "x-ms-correlation-request-id": [ - "ec2651e8-596b-4cc5-89da-5d5ac7f733a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220724Z:ec2651e8-596b-4cc5-89da-5d5ac7f733a6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0fea4dde-1037-4e44-afbb-624e1afc1a87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9212" - ], - "x-ms-correlation-request-id": [ - "2dcb3a89-ee8e-45aa-a3b1-3165a01ffec1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220724Z:2dcb3a89-ee8e-45aa-a3b1-3165a01ffec1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d43740c-0909-4305-9f70-f92cb630eb8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9211" - ], - "x-ms-correlation-request-id": [ - "87b6b813-b5e1-4c40-94fe-158cca531dec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220725Z:87b6b813-b5e1-4c40-94fe-158cca531dec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28a05a9e-ad06-455f-a4e7-6be107a2f5d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9210" - ], - "x-ms-correlation-request-id": [ - "f85742c1-ed73-4eac-a5e4-e2e024e019dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220725Z:f85742c1-ed73-4eac-a5e4-e2e024e019dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c23e210-a841-4c22-9b2b-82c579c65a48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9209" - ], - "x-ms-correlation-request-id": [ - "ecffa739-1488-49cd-86a5-a47ff2367feb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220725Z:ecffa739-1488-49cd-86a5-a47ff2367feb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ec2942ac-0e0f-4c51-8b18-3ba2c08dc772" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9208" - ], - "x-ms-correlation-request-id": [ - "d193e19b-5572-4cbb-af5a-c18e88c95ac5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220725Z:d193e19b-5572-4cbb-af5a-c18e88c95ac5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e3e4ce3-d979-4b24-8863-9a80504af2a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9207" - ], - "x-ms-correlation-request-id": [ - "b4c9c493-e8c9-4c39-962f-57729819a196" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220725Z:b4c9c493-e8c9-4c39-962f-57729819a196" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bef86826-7fc3-4778-a401-e4c273ffef86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9206" - ], - "x-ms-correlation-request-id": [ - "81b5292a-3693-4021-a8b2-f3491d3d61c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220726Z:81b5292a-3693-4021-a8b2-f3491d3d61c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1baba30c-98ff-4c1d-ad7f-6e5a79f77038" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9205" - ], - "x-ms-correlation-request-id": [ - "41a53dbe-f447-4ee7-a90c-710fde2301f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220726Z:41a53dbe-f447-4ee7-a90c-710fde2301f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b373c603-c2aa-41bf-94d0-f0dfd310b9a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9204" - ], - "x-ms-correlation-request-id": [ - "796c2334-c31d-4d7a-ab86-39b9cac9bf5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220726Z:796c2334-c31d-4d7a-ab86-39b9cac9bf5d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b14395e-d300-4069-9b8f-df65d227fe09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9203" - ], - "x-ms-correlation-request-id": [ - "f6afa84f-3e09-4379-88c2-f4827eeff033" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220726Z:f6afa84f-3e09-4379-88c2-f4827eeff033" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1c07567-af80-494a-b183-601f049c4c5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9202" - ], - "x-ms-correlation-request-id": [ - "22657e8f-e161-44f2-8caa-84eac6a1d36e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220726Z:22657e8f-e161-44f2-8caa-84eac6a1d36e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b38d2ec-f98f-40b2-b729-46838c618b92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9201" - ], - "x-ms-correlation-request-id": [ - "d05b064f-8c7b-43ea-950f-d5e5a45a8fe9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220726Z:d05b064f-8c7b-43ea-950f-d5e5a45a8fe9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "638c941a-a36f-4d7f-8bdd-543dcccad196" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9200" - ], - "x-ms-correlation-request-id": [ - "a39714ac-5c7e-4559-895b-b0bd155820e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220727Z:a39714ac-5c7e-4559-895b-b0bd155820e0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10c2c316-edd5-499b-88a9-df883a16630a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9199" - ], - "x-ms-correlation-request-id": [ - "faed10e2-9a9c-4fe9-9ace-567e00fe59b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220727Z:faed10e2-9a9c-4fe9-9ace-567e00fe59b5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61d3584d-7a46-4ac2-abc0-cf51c89e7242" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9198" - ], - "x-ms-correlation-request-id": [ - "3b2e7570-b182-4a81-ab9c-971ad7389a04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220727Z:3b2e7570-b182-4a81-ab9c-971ad7389a04" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2bea4255-7055-40d2-8680-363f84ae53e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9197" - ], - "x-ms-correlation-request-id": [ - "1d5a1dac-36b9-4f12-8f4e-a5fa45d838ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220727Z:1d5a1dac-36b9-4f12-8f4e-a5fa45d838ba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38a24be5-934f-42ef-972d-9b71f43696d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9196" - ], - "x-ms-correlation-request-id": [ - "e0f39659-11ce-4c52-b5be-c41cebd3bb1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220727Z:e0f39659-11ce-4c52-b5be-c41cebd3bb1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2b44c9c-87e3-418f-94da-74e1021bbba3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9195" - ], - "x-ms-correlation-request-id": [ - "b554f306-a100-46f2-b81e-d1b03d74cdbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220727Z:b554f306-a100-46f2-b81e-d1b03d74cdbe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29b80be9-dca8-4e7b-b0f8-eddff236961c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9194" - ], - "x-ms-correlation-request-id": [ - "8684bfe0-0ce9-4c0c-bd3a-bd89d74c6bc3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220728Z:8684bfe0-0ce9-4c0c-bd3a-bd89d74c6bc3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3df48e75-7837-4299-9dea-f384bc732955" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9193" - ], - "x-ms-correlation-request-id": [ - "acee756a-d961-4976-b1ad-ba2ce70a46db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220728Z:acee756a-d961-4976-b1ad-ba2ce70a46db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "219434c1-2437-4425-9921-a8247971ae00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9192" - ], - "x-ms-correlation-request-id": [ - "9831a820-329a-405d-918d-7b554897cc20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220728Z:9831a820-329a-405d-918d-7b554897cc20" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40a851bb-877b-4865-b01b-7beb5bc29074" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9191" - ], - "x-ms-correlation-request-id": [ - "839a8584-b0c6-4009-bd59-14a74892822c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220728Z:839a8584-b0c6-4009-bd59-14a74892822c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b25a117-736c-4532-92d1-e315adef4334" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9190" - ], - "x-ms-correlation-request-id": [ - "4f0e9d83-ec68-4f7a-af9c-1e3c293c5b46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220728Z:4f0e9d83-ec68-4f7a-af9c-1e3c293c5b46" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce0e47ce-2086-4f6f-8470-d7ea071e36df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9189" - ], - "x-ms-correlation-request-id": [ - "645fa889-14ae-4ff4-9dff-3f8c8d49c4ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220728Z:645fa889-14ae-4ff4-9dff-3f8c8d49c4ec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d52bc24-06d9-4728-8449-69bbc900af8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9188" - ], - "x-ms-correlation-request-id": [ - "85272a8a-730a-41df-9b85-86d756cd97a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220729Z:85272a8a-730a-41df-9b85-86d756cd97a2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7199767-fad2-4b06-9b1c-5c4594715729" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9187" - ], - "x-ms-correlation-request-id": [ - "1cbeb448-408a-4632-83cf-c0445a6a5dfc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220729Z:1cbeb448-408a-4632-83cf-c0445a6a5dfc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38e12bd3-bb51-47b9-b568-c2162e6ea25a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9186" - ], - "x-ms-correlation-request-id": [ - "e5098766-24ca-45ca-9784-b775d539dcc0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220729Z:e5098766-24ca-45ca-9784-b775d539dcc0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db204a16-a884-481f-9e57-6caf8301b4b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9185" - ], - "x-ms-correlation-request-id": [ - "d20fcbe2-fc16-439c-a646-fdef69e98572" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220729Z:d20fcbe2-fc16-439c-a646-fdef69e98572" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7c55a87-fe68-473d-9a56-ebcef72f2121" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9184" - ], - "x-ms-correlation-request-id": [ - "749e4b49-a9e6-4d3d-9989-ad404c57196c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220729Z:749e4b49-a9e6-4d3d-9989-ad404c57196c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce6ff3b1-c524-4cc5-8a25-9136f63e9481" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9183" - ], - "x-ms-correlation-request-id": [ - "193f859c-b9d2-49ff-9f5f-f741ce697e53" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220729Z:193f859c-b9d2-49ff-9f5f-f741ce697e53" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65dcb2a4-7cf0-42d1-8230-7246e18cb233" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9182" - ], - "x-ms-correlation-request-id": [ - "fad30e39-5069-469c-bccd-b083bc03d4c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220730Z:fad30e39-5069-469c-bccd-b083bc03d4c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36687493-c9c4-4a58-95fb-d9d654fdd062" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9181" - ], - "x-ms-correlation-request-id": [ - "6c456234-8033-48d0-a83d-31dc030a1c29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220730Z:6c456234-8033-48d0-a83d-31dc030a1c29" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9cbaecc7-29e9-452d-82d7-41fe584e51bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9180" - ], - "x-ms-correlation-request-id": [ - "e5d7deaa-1dd0-43ab-9d78-6570434e8821" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220730Z:e5d7deaa-1dd0-43ab-9d78-6570434e8821" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b3fc07b-32b3-49c7-8d6f-ea0e857aaa49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9179" - ], - "x-ms-correlation-request-id": [ - "61a45bae-922a-4405-87f9-03fb9a295199" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220730Z:61a45bae-922a-4405-87f9-03fb9a295199" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41c8c4ab-50b1-4a2d-952c-88bb544ed391" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9178" - ], - "x-ms-correlation-request-id": [ - "1dcce678-0ad8-45bd-955d-7e420a8c76d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220730Z:1dcce678-0ad8-45bd-955d-7e420a8c76d0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2d5e861-fb1d-49ab-a2b4-b6afb6dcf0f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9177" - ], - "x-ms-correlation-request-id": [ - "1074b404-7b89-4ed5-8d22-1ef220b1a7dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220730Z:1074b404-7b89-4ed5-8d22-1ef220b1a7dd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0d8cfee-0e98-413f-b985-0eddcaec232f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9176" - ], - "x-ms-correlation-request-id": [ - "6a00aa17-b3cc-44d0-91d6-a19557c77fc8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220731Z:6a00aa17-b3cc-44d0-91d6-a19557c77fc8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7acb8a1e-aaa2-4425-bc26-962725bce235" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9175" - ], - "x-ms-correlation-request-id": [ - "5c38aa17-3db1-4d42-a346-baa77efc3005" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220731Z:5c38aa17-3db1-4d42-a346-baa77efc3005" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a2b1883-45b7-48c3-ab06-5ee7f83d0c5d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9174" - ], - "x-ms-correlation-request-id": [ - "1056c27c-ef6d-4fbc-b489-398b8d721bd5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220731Z:1056c27c-ef6d-4fbc-b489-398b8d721bd5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "795f45e6-5f2d-4606-9014-9030d2afeff6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9173" - ], - "x-ms-correlation-request-id": [ - "75372f9a-8466-43ab-b61a-9157687c0310" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220731Z:75372f9a-8466-43ab-b61a-9157687c0310" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88db6021-b6df-461b-ad7e-2d60df948bf3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9172" - ], - "x-ms-correlation-request-id": [ - "12cddfd1-1e77-4dcd-8e19-38d3c63dcb33" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220731Z:12cddfd1-1e77-4dcd-8e19-38d3c63dcb33" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d99aed9b-6634-42d1-82fb-69bb29b1dbd7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9171" - ], - "x-ms-correlation-request-id": [ - "ba52295e-c287-400b-a149-9aae9d84269c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220731Z:ba52295e-c287-400b-a149-9aae9d84269c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4634bc39-0b15-4255-892e-67f0b9559bf8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9170" - ], - "x-ms-correlation-request-id": [ - "0f421c16-c573-4b65-8739-0e408a9cb83f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220732Z:0f421c16-c573-4b65-8739-0e408a9cb83f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6f3380c-1c67-4032-8f36-c28348e9e4ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9169" - ], - "x-ms-correlation-request-id": [ - "ff57e15c-b816-4355-900b-7f59c248a345" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220732Z:ff57e15c-b816-4355-900b-7f59c248a345" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6eb07d15-dfd6-42cc-921f-cd166a3f21e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9168" - ], - "x-ms-correlation-request-id": [ - "5e8a0557-8fb5-4397-bbcf-9b307208ff77" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220732Z:5e8a0557-8fb5-4397-bbcf-9b307208ff77" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ab0cc4c-993d-4660-8148-850e186a9a1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9167" - ], - "x-ms-correlation-request-id": [ - "4a8c1041-de95-431e-b525-4a96980201d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220732Z:4a8c1041-de95-431e-b525-4a96980201d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc0bc20a-ca20-471c-b9b0-71bc532e3cd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9166" - ], - "x-ms-correlation-request-id": [ - "c651b8c9-5d2c-4e1f-bd85-8f1dff561d12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220732Z:c651b8c9-5d2c-4e1f-bd85-8f1dff561d12" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4196c9c4-aedd-4b33-8189-f367484e6954" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9165" - ], - "x-ms-correlation-request-id": [ - "188e679a-2ca3-4483-92a5-673d0b4521cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220732Z:188e679a-2ca3-4483-92a5-673d0b4521cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b46e55be-39ef-4dee-9db4-e2ea236408cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9164" - ], - "x-ms-correlation-request-id": [ - "7423db35-1b76-4021-9709-879a89153957" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220732Z:7423db35-1b76-4021-9709-879a89153957" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39a86fc1-f9fd-4474-9129-6dbb351db544" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9163" - ], - "x-ms-correlation-request-id": [ - "b7cbfd89-12eb-4f73-a021-ac27c9831c34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220733Z:b7cbfd89-12eb-4f73-a021-ac27c9831c34" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "141fa44d-6d3d-4fcc-96d6-24508c12fbee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9162" - ], - "x-ms-correlation-request-id": [ - "9e0073ef-cd29-4a18-a45f-041f8793e74f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220733Z:9e0073ef-cd29-4a18-a45f-041f8793e74f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "386cd053-6a32-46be-a3b2-f7410b9b63e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9161" - ], - "x-ms-correlation-request-id": [ - "e94e13cc-7e52-451f-8125-5c2baec56c43" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220733Z:e94e13cc-7e52-451f-8125-5c2baec56c43" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e58bc4b-f3a1-476b-ba56-ea8cbf0c9866" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9160" - ], - "x-ms-correlation-request-id": [ - "95af717a-d098-49b3-a9cc-f16590c24d56" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220733Z:95af717a-d098-49b3-a9cc-f16590c24d56" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f812da2b-742b-4ea4-9982-f22e759247dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9159" - ], - "x-ms-correlation-request-id": [ - "c959460d-b0d8-4569-863b-f7524248840e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220734Z:c959460d-b0d8-4569-863b-f7524248840e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78409bfb-c2f4-4ad1-bc27-820fbaaf6492" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9158" - ], - "x-ms-correlation-request-id": [ - "982f0b6a-9822-4149-83a2-fe383b26a59b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220734Z:982f0b6a-9822-4149-83a2-fe383b26a59b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1dab041c-9b7f-4d80-ab5d-92337339490f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9157" - ], - "x-ms-correlation-request-id": [ - "98d52d02-ab22-4f90-ad03-676fe5fdb90f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220734Z:98d52d02-ab22-4f90-ad03-676fe5fdb90f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d83ecee8-01d1-4b58-a288-d39790abad37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9156" - ], - "x-ms-correlation-request-id": [ - "c5cea46b-7cd2-4998-9679-4fbdc0ee2b96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220734Z:c5cea46b-7cd2-4998-9679-4fbdc0ee2b96" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "378a74b4-e3ac-4cff-847e-53d60c27a887" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9155" - ], - "x-ms-correlation-request-id": [ - "26674fa7-05a8-4f6a-8cca-bc40fab52918" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220734Z:26674fa7-05a8-4f6a-8cca-bc40fab52918" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d9dc40b-75b9-4a13-8756-8dce989996fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9154" - ], - "x-ms-correlation-request-id": [ - "403baaf6-0bf7-40fe-845a-da1edc72335c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220734Z:403baaf6-0bf7-40fe-845a-da1edc72335c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2849ff0-7886-4ce0-8c8d-dfd93da285f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9153" - ], - "x-ms-correlation-request-id": [ - "da6fd6df-faa2-45ba-a053-6201631c447c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220735Z:da6fd6df-faa2-45ba-a053-6201631c447c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08021c96-ba8e-4da7-9303-9d52cd496828" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9152" - ], - "x-ms-correlation-request-id": [ - "1bdd719b-5a24-4522-9595-134c9bca90b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220735Z:1bdd719b-5a24-4522-9595-134c9bca90b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de1f5f67-5f79-47e4-9a44-bdd4c151c9b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9151" - ], - "x-ms-correlation-request-id": [ - "0922201e-8a03-4155-8b19-9e3733a004e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220735Z:0922201e-8a03-4155-8b19-9e3733a004e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fbba2118-8c54-4977-b4ac-433d6e073dd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9150" - ], - "x-ms-correlation-request-id": [ - "ec3434cb-c20a-4704-b085-202cda79cc2f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220735Z:ec3434cb-c20a-4704-b085-202cda79cc2f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f00fd373-c917-4cad-ba18-653fcdb0d033" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9149" - ], - "x-ms-correlation-request-id": [ - "ced29edc-dfc7-4827-98d4-741a96eb2117" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220735Z:ced29edc-dfc7-4827-98d4-741a96eb2117" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7760ed5e-d634-496b-a4b3-d5d4734d6fc7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9148" - ], - "x-ms-correlation-request-id": [ - "dc356822-0a5a-44d8-bb1b-280bcc4fe6ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220736Z:dc356822-0a5a-44d8-bb1b-280bcc4fe6ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7adc7d09-d187-4419-b436-b9ae55032c40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9147" - ], - "x-ms-correlation-request-id": [ - "25dffa77-2154-482d-b62e-ac7bcf580a28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220736Z:25dffa77-2154-482d-b62e-ac7bcf580a28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d408667-25b6-4163-9ccc-2519935084a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9146" - ], - "x-ms-correlation-request-id": [ - "f9d03aad-167c-4d29-88e9-671b6f4f36af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220736Z:f9d03aad-167c-4d29-88e9-671b6f4f36af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc04c19f-d66a-4c34-ba4b-86a949ff0bc9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9145" - ], - "x-ms-correlation-request-id": [ - "e9fbceab-ce02-404d-aec6-a17c799a7cb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220736Z:e9fbceab-ce02-404d-aec6-a17c799a7cb9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8774211-0120-4dd6-b811-4439a6f51c76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9144" - ], - "x-ms-correlation-request-id": [ - "9573f189-153b-401b-a010-c2be4bbc1c23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220736Z:9573f189-153b-401b-a010-c2be4bbc1c23" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1bb9aabe-915b-4394-a6cc-3e37f3aaf6be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9143" - ], - "x-ms-correlation-request-id": [ - "c02297c2-7697-4294-90ec-e897df2d5783" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220736Z:c02297c2-7697-4294-90ec-e897df2d5783" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca8ba875-6737-41fa-b0af-635018ab1665" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9142" - ], - "x-ms-correlation-request-id": [ - "6c1d822d-5218-490c-abdd-722f8590161f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220737Z:6c1d822d-5218-490c-abdd-722f8590161f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6655cf2a-c973-41db-88e2-76eb09412b21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9141" - ], - "x-ms-correlation-request-id": [ - "37f30c72-ba38-42f2-8b15-259cfe3fcfac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220737Z:37f30c72-ba38-42f2-8b15-259cfe3fcfac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e24d77cd-8e84-4bc7-9bcc-bbb5f45ce166" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9140" - ], - "x-ms-correlation-request-id": [ - "a1515230-da28-4f2d-8a00-9056b9258932" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220737Z:a1515230-da28-4f2d-8a00-9056b9258932" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ae422e4-6173-40c0-8d49-d4c30d4bdeb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9139" - ], - "x-ms-correlation-request-id": [ - "6a14ea79-6ab3-4a66-be9f-4fceb6db367b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220737Z:6a14ea79-6ab3-4a66-be9f-4fceb6db367b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2baa1047-f64d-42e7-b921-4e4b437870fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9138" - ], - "x-ms-correlation-request-id": [ - "b694e155-3457-4608-ac36-15a4d8d69ae7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220737Z:b694e155-3457-4608-ac36-15a4d8d69ae7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0d53d3f-be7d-42d5-a8a0-250ad5d54156" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9137" - ], - "x-ms-correlation-request-id": [ - "99e50a72-ef57-48aa-8c07-692d829db6e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220737Z:99e50a72-ef57-48aa-8c07-692d829db6e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56ba3595-c0fb-4ba3-ae86-38537b7fe402" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9136" - ], - "x-ms-correlation-request-id": [ - "2f0ac343-7eda-4b6d-a486-ddbbc4f359b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220738Z:2f0ac343-7eda-4b6d-a486-ddbbc4f359b0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77a3e791-a3c9-40a1-8efd-0947df94aa17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9135" - ], - "x-ms-correlation-request-id": [ - "38fbd5ad-c485-4f72-bd7e-8157b44cfec0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220738Z:38fbd5ad-c485-4f72-bd7e-8157b44cfec0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccc8c64d-41be-4915-a038-8783d94a6729" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9134" - ], - "x-ms-correlation-request-id": [ - "d00ac437-4ffd-4ea1-add2-3f4bcf29d9aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220738Z:d00ac437-4ffd-4ea1-add2-3f4bcf29d9aa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0165f4fd-e8f5-4d5d-9627-040901d1f952" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9133" - ], - "x-ms-correlation-request-id": [ - "ff835b8a-ce3f-4f84-9ffa-c4a296575967" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220738Z:ff835b8a-ce3f-4f84-9ffa-c4a296575967" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "58ab756b-f385-4067-9b88-f65517657bb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9132" - ], - "x-ms-correlation-request-id": [ - "fdcc6b61-4d0b-429d-8929-232ab6c4c3d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220738Z:fdcc6b61-4d0b-429d-8929-232ab6c4c3d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "313877ba-2f97-4f31-81ca-a149eb14b39c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9131" - ], - "x-ms-correlation-request-id": [ - "8502d322-661d-40dd-8dc9-30d9c019f1d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220738Z:8502d322-661d-40dd-8dc9-30d9c019f1d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "531a0581-8383-4ba4-adaf-c7d3782d02e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9130" - ], - "x-ms-correlation-request-id": [ - "dfb3af9e-1e56-41bf-bd38-62331b5bc31c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220739Z:dfb3af9e-1e56-41bf-bd38-62331b5bc31c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f59e244-c91e-4765-8382-e37e531429d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9129" - ], - "x-ms-correlation-request-id": [ - "70691385-9691-4854-b298-807e9d06231d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220739Z:70691385-9691-4854-b298-807e9d06231d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71e4f367-db1d-48a2-a572-7cbda102b62d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9128" - ], - "x-ms-correlation-request-id": [ - "09b46725-02eb-4cb1-801f-3eb133f32eb2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220739Z:09b46725-02eb-4cb1-801f-3eb133f32eb2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae297a73-fad0-4a57-bf7d-1b0c57753365" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9127" - ], - "x-ms-correlation-request-id": [ - "1807ab68-d2dc-4e2c-9309-4f36618ad6e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220739Z:1807ab68-d2dc-4e2c-9309-4f36618ad6e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f14719b-559a-48ae-b4b6-b1fc55cebebe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9126" - ], - "x-ms-correlation-request-id": [ - "59e44284-8241-45b3-979e-826a1606f3f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220739Z:59e44284-8241-45b3-979e-826a1606f3f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9effd0d-52ee-4dce-82db-2e05b26a3795" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9125" - ], - "x-ms-correlation-request-id": [ - "81175923-cf4b-45e6-8438-d19ad95d1c49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220739Z:81175923-cf4b-45e6-8438-d19ad95d1c49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c803f416-56b1-4d9e-88b9-da1b82444161" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9124" - ], - "x-ms-correlation-request-id": [ - "3cd0161c-ffe6-4ade-826f-8ebf8a32cc48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220740Z:3cd0161c-ffe6-4ade-826f-8ebf8a32cc48" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "460f14e0-ea09-4a87-9346-9a916201eddc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9123" - ], - "x-ms-correlation-request-id": [ - "dacd2a69-89dc-4fd8-ac7c-fe98e71f3a50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220740Z:dacd2a69-89dc-4fd8-ac7c-fe98e71f3a50" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d382c220-512c-452c-99ed-2c19ce7942dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9122" - ], - "x-ms-correlation-request-id": [ - "b16d8db3-ec30-4cc2-bdbe-d5df4d030605" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220740Z:b16d8db3-ec30-4cc2-bdbe-d5df4d030605" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35daaa55-de6d-45a2-9166-3edbc6f121de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9121" - ], - "x-ms-correlation-request-id": [ - "a4f40bd6-28ca-4f9b-ba0c-195c2ed0e1c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220740Z:a4f40bd6-28ca-4f9b-ba0c-195c2ed0e1c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "170ee347-f534-498f-b869-7c0271a3ec74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9120" - ], - "x-ms-correlation-request-id": [ - "8482488f-c27b-4789-8f01-6e474c449b92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220740Z:8482488f-c27b-4789-8f01-6e474c449b92" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e49366f6-70a1-4d29-ae40-9afaee41d826" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9119" - ], - "x-ms-correlation-request-id": [ - "f5c712dd-437d-4c0b-91c9-9fd6e754fcb4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220741Z:f5c712dd-437d-4c0b-91c9-9fd6e754fcb4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc775fe6-35d4-47e2-ba1b-efd0d8e78af2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9118" - ], - "x-ms-correlation-request-id": [ - "9de83d76-100a-4148-9b29-7d217e4b75bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220741Z:9de83d76-100a-4148-9b29-7d217e4b75bb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1286ed7-d525-4248-bff6-435e94f09f6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9117" - ], - "x-ms-correlation-request-id": [ - "8b73cf34-ed1c-4edb-b1cf-f1cebaa87260" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220741Z:8b73cf34-ed1c-4edb-b1cf-f1cebaa87260" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7beb7a67-6189-4d2b-9d4f-d9fa499f57c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9116" - ], - "x-ms-correlation-request-id": [ - "e3b07917-9306-406f-bd6a-b37a5c64d6b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220741Z:e3b07917-9306-406f-bd6a-b37a5c64d6b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1480bfc9-823d-497a-bdce-66f09bfdfc9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9115" - ], - "x-ms-correlation-request-id": [ - "83c818cf-df9b-470e-902e-0da77ca671c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220741Z:83c818cf-df9b-470e-902e-0da77ca671c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "470889d5-a62c-49b2-9d37-3c694fd0b98a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9114" - ], - "x-ms-correlation-request-id": [ - "eda6992b-c7b2-461f-9ffb-ca16260e9bbb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220741Z:eda6992b-c7b2-461f-9ffb-ca16260e9bbb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7920e096-ade1-4d4a-bf0a-7670b420234a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9113" - ], - "x-ms-correlation-request-id": [ - "00f981ed-0968-4645-bd7b-7f87f4028435" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220742Z:00f981ed-0968-4645-bd7b-7f87f4028435" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c78d8e5f-3bb9-4d6f-973c-c383d046a092" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9112" - ], - "x-ms-correlation-request-id": [ - "566014bb-be05-4a9d-80a1-b8e4786f1bdb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220742Z:566014bb-be05-4a9d-80a1-b8e4786f1bdb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e386e825-319e-41f8-ad39-0d10edac9a11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9111" - ], - "x-ms-correlation-request-id": [ - "35440e08-f618-441d-a209-0623010ad508" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220742Z:35440e08-f618-441d-a209-0623010ad508" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7873d171-1c7c-4c3c-ba11-41395da62a98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9110" - ], - "x-ms-correlation-request-id": [ - "04e49e68-2cec-4c61-861c-137cb7493c89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220742Z:04e49e68-2cec-4c61-861c-137cb7493c89" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a9fcd54-f2f1-46af-ac46-f5a399209866" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9109" - ], - "x-ms-correlation-request-id": [ - "faccd1ae-1894-4650-981d-5c79f627e698" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220742Z:faccd1ae-1894-4650-981d-5c79f627e698" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ac3bcc4-9a56-4938-b023-d2cd60b78fd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9108" - ], - "x-ms-correlation-request-id": [ - "3ccabace-efc0-43b9-97a5-89d3afd0aee9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220743Z:3ccabace-efc0-43b9-97a5-89d3afd0aee9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "489e3a93-0530-4494-a8f0-5b2c719defbb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9107" - ], - "x-ms-correlation-request-id": [ - "eb69ee4d-4129-40e1-941c-f7a7b5a01ff5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220743Z:eb69ee4d-4129-40e1-941c-f7a7b5a01ff5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "043f3dfa-a45d-4092-95ff-ba3334a395c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9106" - ], - "x-ms-correlation-request-id": [ - "7b450dfc-efbc-4f3c-8623-c337cbcc9115" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220743Z:7b450dfc-efbc-4f3c-8623-c337cbcc9115" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eaa5388c-5029-4ae6-94a5-924740a67285" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9105" - ], - "x-ms-correlation-request-id": [ - "76cc1be9-d502-4777-ac30-cc6ad4bfbf6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220743Z:76cc1be9-d502-4777-ac30-cc6ad4bfbf6f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "634eaf48-9bd9-4c8e-b4dc-ae9d61d2ab08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9104" - ], - "x-ms-correlation-request-id": [ - "3ea8f841-ccb5-4df8-9f1e-c9d5c721be6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220743Z:3ea8f841-ccb5-4df8-9f1e-c9d5c721be6d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ecf7e70e-0f45-44da-a21d-1ca1c4a06304" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9103" - ], - "x-ms-correlation-request-id": [ - "dec1dec7-b42c-4039-9665-17f86a774e76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220744Z:dec1dec7-b42c-4039-9665-17f86a774e76" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f304158-62e7-464a-b009-3761d5cf6b01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9102" - ], - "x-ms-correlation-request-id": [ - "eabcdcf1-4831-4061-beae-93bc24dd5ae6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220744Z:eabcdcf1-4831-4061-beae-93bc24dd5ae6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d778bc4-157a-401e-9cc3-3c85fd7bcb37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9101" - ], - "x-ms-correlation-request-id": [ - "7ccdbc45-fe87-4ab3-bde6-22f85cfaa892" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220744Z:7ccdbc45-fe87-4ab3-bde6-22f85cfaa892" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18619a95-a09f-4cc4-92cf-c335739a6670" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9100" - ], - "x-ms-correlation-request-id": [ - "52653a02-025a-4786-964a-1f1d4f0f0087" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220744Z:52653a02-025a-4786-964a-1f1d4f0f0087" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bcde9c33-19c1-451e-a824-4c8d58711177" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9099" - ], - "x-ms-correlation-request-id": [ - "b856af7e-b088-4eef-bfe0-ebdb856bf5cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220744Z:b856af7e-b088-4eef-bfe0-ebdb856bf5cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f517c891-ff66-4906-802c-6194e06a3364" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9098" - ], - "x-ms-correlation-request-id": [ - "6f3e5ad0-4017-4a1d-9624-180321793bc2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220744Z:6f3e5ad0-4017-4a1d-9624-180321793bc2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2dca103c-79f8-4658-a440-640cdd631067" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9097" - ], - "x-ms-correlation-request-id": [ - "e11285ca-0049-45fb-8c10-5d60ca4582e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220745Z:e11285ca-0049-45fb-8c10-5d60ca4582e4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "974c6ff5-4c2f-436a-bac0-be9fe0e87187" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9096" - ], - "x-ms-correlation-request-id": [ - "1bce3dee-2db4-40ac-b0f8-4fe21db582c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220745Z:1bce3dee-2db4-40ac-b0f8-4fe21db582c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e240e50-7e45-47e4-86e9-0dd94b268b8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9095" - ], - "x-ms-correlation-request-id": [ - "59cc7b35-cb17-459f-9c1c-c407e1e9b7a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220745Z:59cc7b35-cb17-459f-9c1c-c407e1e9b7a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3dd60719-d185-429c-b411-ad4c94c93a0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9094" - ], - "x-ms-correlation-request-id": [ - "cec9bcf6-7486-446d-bef9-e5f53df60e66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220745Z:cec9bcf6-7486-446d-bef9-e5f53df60e66" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "625fe84d-0f76-417c-a226-065398a42cff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9093" - ], - "x-ms-correlation-request-id": [ - "17c949f9-8f58-4a49-a467-de4d24891e6a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220745Z:17c949f9-8f58-4a49-a467-de4d24891e6a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68d0950c-9f34-42bd-991b-9ea9a4f47b27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9092" - ], - "x-ms-correlation-request-id": [ - "f3c8f546-a4b3-4611-a178-1b80aa808e4d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220746Z:f3c8f546-a4b3-4611-a178-1b80aa808e4d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a56134c-c22e-4cce-b730-ee857c509aff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9091" - ], - "x-ms-correlation-request-id": [ - "b04fb8ee-48c8-4007-a8bb-1536c9ac7685" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220746Z:b04fb8ee-48c8-4007-a8bb-1536c9ac7685" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccb6cb6f-b6e5-47e1-88b0-63f506ffb76b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9090" - ], - "x-ms-correlation-request-id": [ - "856ce77f-ceb0-425c-bf39-f45eb9137e39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220746Z:856ce77f-ceb0-425c-bf39-f45eb9137e39" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c371bb64-31a1-4116-a28e-3b3d1d97d699" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9089" - ], - "x-ms-correlation-request-id": [ - "1512b78f-cee5-4879-978e-f9292cd1981e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220746Z:1512b78f-cee5-4879-978e-f9292cd1981e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7494a6c-3dcf-4e0f-9906-77f6245c5b6b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9088" - ], - "x-ms-correlation-request-id": [ - "ce296715-f03f-4845-b85a-5ee0a0ac5dff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220746Z:ce296715-f03f-4845-b85a-5ee0a0ac5dff" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "747d3765-35fc-4f25-b56d-bd4d157ec37c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9087" - ], - "x-ms-correlation-request-id": [ - "c007b9b3-74b5-4ee0-8743-da7536c00048" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220747Z:c007b9b3-74b5-4ee0-8743-da7536c00048" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00022ec1-daca-42e6-b30b-db0ce57851e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9086" - ], - "x-ms-correlation-request-id": [ - "9a4d146b-a1a5-47a6-ba98-063ac5cf301e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220747Z:9a4d146b-a1a5-47a6-ba98-063ac5cf301e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c0c9252-1a7e-4d60-af72-ef1ae338703e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9085" - ], - "x-ms-correlation-request-id": [ - "e11ff9d0-8c80-4c41-a2c0-00dbe9c9333b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220747Z:e11ff9d0-8c80-4c41-a2c0-00dbe9c9333b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04debd96-0bc0-42bd-a0d1-4ebf2a643574" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9084" - ], - "x-ms-correlation-request-id": [ - "fcd29be7-a3c9-46f9-9c33-2f260840540e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220747Z:fcd29be7-a3c9-46f9-9c33-2f260840540e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dcd388f1-731a-4b2d-81ce-5ff430f81fe4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9083" - ], - "x-ms-correlation-request-id": [ - "aa7bc5f8-5272-4242-8d8c-c408a463141e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220747Z:aa7bc5f8-5272-4242-8d8c-c408a463141e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9d8c998-be28-4827-8add-86f30a054a8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9082" - ], - "x-ms-correlation-request-id": [ - "fb2658e1-805d-483e-8cd2-7858650e75f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220748Z:fb2658e1-805d-483e-8cd2-7858650e75f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "66a5efaf-05bf-45eb-8a79-e766d8fd0beb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9081" - ], - "x-ms-correlation-request-id": [ - "01811a6f-9fe5-480a-a1f6-70604711146f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220748Z:01811a6f-9fe5-480a-a1f6-70604711146f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad15aaf8-dd58-4d20-a8b4-91dc97d8ce58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9080" - ], - "x-ms-correlation-request-id": [ - "f5ac64a1-9871-4cac-a9cb-2e0e7f692ab9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220748Z:f5ac64a1-9871-4cac-a9cb-2e0e7f692ab9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a13ce451-6a3d-4dfc-a676-d507e7b41a9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9079" - ], - "x-ms-correlation-request-id": [ - "b7cc97f7-a7c7-4402-9cad-01cd17e3e9d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220748Z:b7cc97f7-a7c7-4402-9cad-01cd17e3e9d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b2df5e1-32c1-46c2-bcc3-5ea8096b461d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9078" - ], - "x-ms-correlation-request-id": [ - "1e51273d-a7bd-461d-86bb-61ce8d2d7b78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220748Z:1e51273d-a7bd-461d-86bb-61ce8d2d7b78" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e1692da-177c-48f7-98de-49e53b6e5678" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9077" - ], - "x-ms-correlation-request-id": [ - "b93860f2-8e46-43da-8dd0-161d7ae19abe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220748Z:b93860f2-8e46-43da-8dd0-161d7ae19abe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59a88eba-0ea5-4645-b3b2-6ca2367fdb0a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9076" - ], - "x-ms-correlation-request-id": [ - "e594ec97-e04d-48ce-a5fd-8ddb408f17bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220749Z:e594ec97-e04d-48ce-a5fd-8ddb408f17bd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c17c1c8-cf6d-46b6-9582-6d0408639655" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9075" - ], - "x-ms-correlation-request-id": [ - "1143e799-4f74-4229-80eb-52e17e697ea9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220749Z:1143e799-4f74-4229-80eb-52e17e697ea9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ebe49e2c-146e-4f0e-85f0-5392e8a1ba04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9074" - ], - "x-ms-correlation-request-id": [ - "d4f2e3f1-7015-4ef9-8040-dd190147513e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220749Z:d4f2e3f1-7015-4ef9-8040-dd190147513e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb4ad678-429f-471e-81c4-4b52f9d83d9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9073" - ], - "x-ms-correlation-request-id": [ - "388e683b-c266-4d22-a70d-b667e9ba597a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220749Z:388e683b-c266-4d22-a70d-b667e9ba597a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a80f895-7498-4523-860f-3b0566eb040c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9072" - ], - "x-ms-correlation-request-id": [ - "0b512bed-0522-4362-8714-8fd5b35a8e2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220749Z:0b512bed-0522-4362-8714-8fd5b35a8e2c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be55f71b-fd72-4bca-8254-4447908588b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9071" - ], - "x-ms-correlation-request-id": [ - "08f3d900-bb7b-4d57-bc7a-57111b7d55a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220750Z:08f3d900-bb7b-4d57-bc7a-57111b7d55a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c72af611-9e55-47e9-bbc6-d6fda6bcf251" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9070" - ], - "x-ms-correlation-request-id": [ - "0389d4ea-7d29-4bc2-9d2a-b0205c5a6cdc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220750Z:0389d4ea-7d29-4bc2-9d2a-b0205c5a6cdc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a2b1fe72-1468-4230-aefb-c32f1a42aa90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9069" - ], - "x-ms-correlation-request-id": [ - "d5908ddc-61e2-474a-8e1e-01642dba105c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220750Z:d5908ddc-61e2-474a-8e1e-01642dba105c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad8e643f-6cfc-4a9d-b8e1-a19a37a57841" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9068" - ], - "x-ms-correlation-request-id": [ - "38b065bd-53fe-47aa-ba70-b753a663f973" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220750Z:38b065bd-53fe-47aa-ba70-b753a663f973" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1822624-42c1-477c-a72b-5f66b762f177" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9067" - ], - "x-ms-correlation-request-id": [ - "64364c6b-6d24-46f7-9ffd-a1e8818c5da2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220750Z:64364c6b-6d24-46f7-9ffd-a1e8818c5da2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f48d4a3-e5e2-42b1-a367-cc67ef78c2ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9066" - ], - "x-ms-correlation-request-id": [ - "ec8a3250-a8ba-4f5a-af97-f28ddec97266" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220750Z:ec8a3250-a8ba-4f5a-af97-f28ddec97266" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f747857b-5f62-486a-8385-9034f4bb938c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9065" - ], - "x-ms-correlation-request-id": [ - "22631c46-9a24-482b-972f-9896c35f20a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220751Z:22631c46-9a24-482b-972f-9896c35f20a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5046dba8-156d-47ff-a3c2-8fb128aa4a2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9064" - ], - "x-ms-correlation-request-id": [ - "9eb8f7a1-376c-4d18-ac3f-b35577f24cf3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220751Z:9eb8f7a1-376c-4d18-ac3f-b35577f24cf3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dbbdc677-fedf-4a86-9948-441933e90cb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9063" - ], - "x-ms-correlation-request-id": [ - "b4b79939-8b68-44f0-9972-ec5d86ca855f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220751Z:b4b79939-8b68-44f0-9972-ec5d86ca855f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f02d3a70-939c-4027-b13b-57a79c1938fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9062" - ], - "x-ms-correlation-request-id": [ - "1ff99945-edcf-4879-badc-d7d0e1e87ad9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220751Z:1ff99945-edcf-4879-badc-d7d0e1e87ad9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ab18228-e2da-48e8-93e2-6189498897f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9061" - ], - "x-ms-correlation-request-id": [ - "55765950-e817-4f63-9665-9d59e7015223" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220751Z:55765950-e817-4f63-9665-9d59e7015223" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa9d7e81-6fd2-471d-8437-cd0bf647be2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9060" - ], - "x-ms-correlation-request-id": [ - "02c2349b-23d1-4672-b6ac-b0e068fbb772" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220751Z:02c2349b-23d1-4672-b6ac-b0e068fbb772" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "129bf1f5-4fab-44a5-b663-6c8168866f8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9059" - ], - "x-ms-correlation-request-id": [ - "09919baa-b134-401c-8030-0de86b9dbe15" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220752Z:09919baa-b134-401c-8030-0de86b9dbe15" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "15e995de-d094-4a38-ab3f-490a7b33beac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9058" - ], - "x-ms-correlation-request-id": [ - "a3a6bae5-1898-4217-b492-27cfeb620c39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220752Z:a3a6bae5-1898-4217-b492-27cfeb620c39" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87a270d6-0945-4c13-b3d1-81a6e3f6f87b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9057" - ], - "x-ms-correlation-request-id": [ - "73e8d745-1e42-4c2e-9a41-9b24a3abc153" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220752Z:73e8d745-1e42-4c2e-9a41-9b24a3abc153" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9103eb74-883d-4184-a87b-e34e2a42ab1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9056" - ], - "x-ms-correlation-request-id": [ - "9aa6bf88-b37f-4753-89c6-388bf9f181dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220752Z:9aa6bf88-b37f-4753-89c6-388bf9f181dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43935a22-75d0-4218-b96f-2c7e1fb746fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9055" - ], - "x-ms-correlation-request-id": [ - "812178e5-6778-4d83-ba68-31f154fcc15f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220753Z:812178e5-6778-4d83-ba68-31f154fcc15f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed7847d3-8db1-4cbc-88e0-e448f9898711" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9054" - ], - "x-ms-correlation-request-id": [ - "6d6abf67-7dba-463c-bbe1-5c0b16a2794a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220753Z:6d6abf67-7dba-463c-bbe1-5c0b16a2794a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6574bec-dfac-4677-b5f3-2d851d1cbdb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9053" - ], - "x-ms-correlation-request-id": [ - "4cd8a3ce-88a8-450c-a78c-ee9019649d41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220753Z:4cd8a3ce-88a8-450c-a78c-ee9019649d41" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eaa35d83-5529-4c45-ac5a-f8f1f5dc9429" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9052" - ], - "x-ms-correlation-request-id": [ - "c1bff104-8a6e-4624-be03-72475425d2d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220753Z:c1bff104-8a6e-4624-be03-72475425d2d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90094128-91d7-442a-9477-329d5db0ff73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9051" - ], - "x-ms-correlation-request-id": [ - "f34a22e4-c627-4c04-abde-db5a398685c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220753Z:f34a22e4-c627-4c04-abde-db5a398685c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b4ac769-227e-488e-92c8-05a08534e2c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9050" - ], - "x-ms-correlation-request-id": [ - "86974c68-d0f6-4a8f-a276-6939e3b84f48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220753Z:86974c68-d0f6-4a8f-a276-6939e3b84f48" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b9ad099-6efd-40e7-b405-23abcc8a397a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9049" - ], - "x-ms-correlation-request-id": [ - "2725e2d0-9f50-4dc7-80d6-ca49db37dcd1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220754Z:2725e2d0-9f50-4dc7-80d6-ca49db37dcd1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68e69b34-5623-4e3a-84c6-8f10eb7c0e5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9048" - ], - "x-ms-correlation-request-id": [ - "338d0c37-c793-4a37-ba52-0ce1f994f9a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220754Z:338d0c37-c793-4a37-ba52-0ce1f994f9a4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6c1ef6b-fd23-4826-8f63-6efbfc2ea63d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9047" - ], - "x-ms-correlation-request-id": [ - "d26b32b5-86a0-430f-b8e9-3965a7c5c5e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220754Z:d26b32b5-86a0-430f-b8e9-3965a7c5c5e5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ae83974-a8b8-4527-87cc-16f8fdd5d85d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9046" - ], - "x-ms-correlation-request-id": [ - "77086c14-dd5e-4d69-bdf0-b103f691cb31" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220754Z:77086c14-dd5e-4d69-bdf0-b103f691cb31" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd77e172-d615-4921-84e1-707cff65d793" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9045" - ], - "x-ms-correlation-request-id": [ - "ff3d4aa1-b8bd-47ce-a6ef-bb41a492e382" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220754Z:ff3d4aa1-b8bd-47ce-a6ef-bb41a492e382" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28b632a0-b193-400a-abe6-b5f3c8b31c12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9044" - ], - "x-ms-correlation-request-id": [ - "9c54adb0-b83a-4654-811e-3cebc26d27f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220755Z:9c54adb0-b83a-4654-811e-3cebc26d27f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b24bd57-609e-47d7-96a7-dac121ad5f09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9043" - ], - "x-ms-correlation-request-id": [ - "9d39e6fe-2657-4857-840a-5b21f1f889fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220755Z:9d39e6fe-2657-4857-840a-5b21f1f889fc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1a988b4-be85-4687-8fdb-b0799f48c71b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9042" - ], - "x-ms-correlation-request-id": [ - "4b271455-6b6d-4729-b4b8-ecd589a4d752" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220755Z:4b271455-6b6d-4729-b4b8-ecd589a4d752" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d845f9a1-7491-4df8-9baf-a056e88528d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9041" - ], - "x-ms-correlation-request-id": [ - "ee2202f9-da8f-4b67-8339-3dd1b541caee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220755Z:ee2202f9-da8f-4b67-8339-3dd1b541caee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2716a40b-6d35-4b12-a8b0-254e86b865a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9040" - ], - "x-ms-correlation-request-id": [ - "45777757-d129-485a-969e-4cf3fbe9ff03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220755Z:45777757-d129-485a-969e-4cf3fbe9ff03" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6adddce-7a17-477f-90c1-deb8b3c81387" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9039" - ], - "x-ms-correlation-request-id": [ - "7b986163-08bd-4cd0-b30d-690f04d3ed64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220756Z:7b986163-08bd-4cd0-b30d-690f04d3ed64" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb9812a6-c3ef-46b4-8adb-ae9734d3fb57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9038" - ], - "x-ms-correlation-request-id": [ - "19ee559e-3d3d-4953-81cb-ba29d72fde83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220756Z:19ee559e-3d3d-4953-81cb-ba29d72fde83" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73636ffd-9aac-4707-bfb6-7c006f251aab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9037" - ], - "x-ms-correlation-request-id": [ - "d3d93a65-89b1-439b-9373-b641edf65e6a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220756Z:d3d93a65-89b1-439b-9373-b641edf65e6a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99a195fe-dcde-4a93-8ceb-b2ba04363b21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9036" - ], - "x-ms-correlation-request-id": [ - "4e8f3094-4d88-4f87-9e8d-5a8858232090" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220756Z:4e8f3094-4d88-4f87-9e8d-5a8858232090" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "edd70157-4f74-40c5-8cde-dfb89ee3080a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9035" - ], - "x-ms-correlation-request-id": [ - "0d59463c-b2e1-421f-94f4-3de1fb83dc65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220756Z:0d59463c-b2e1-421f-94f4-3de1fb83dc65" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77fbdced-f29a-4686-90fa-1fba925d732b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9034" - ], - "x-ms-correlation-request-id": [ - "51aafa9c-9d3d-4fda-b241-f3e0ea7ea3ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220756Z:51aafa9c-9d3d-4fda-b241-f3e0ea7ea3ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8f03253-c9cd-4bdc-bf62-67e245aedc2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9033" - ], - "x-ms-correlation-request-id": [ - "db083375-43fe-4a6a-afda-01f1839db477" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220756Z:db083375-43fe-4a6a-afda-01f1839db477" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e49fdc70-f00b-4e40-9521-efd3f0001e95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9032" - ], - "x-ms-correlation-request-id": [ - "3e25dbf4-d605-4af2-8a06-a5b58f13af93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220757Z:3e25dbf4-d605-4af2-8a06-a5b58f13af93" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7fa6ee2a-caa8-454b-a658-3dcc2a746e40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9031" - ], - "x-ms-correlation-request-id": [ - "3b30463b-79f6-4b18-b02a-a944d11fc50e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220757Z:3b30463b-79f6-4b18-b02a-a944d11fc50e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce320d47-864b-47b8-aec0-5b8a53e06430" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9030" - ], - "x-ms-correlation-request-id": [ - "f378bb54-149c-40a3-9205-353b3b288300" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220757Z:f378bb54-149c-40a3-9205-353b3b288300" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00ac226d-ca3b-4a97-8c11-007f73a43895" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9029" - ], - "x-ms-correlation-request-id": [ - "b178eee2-7e8d-4fc0-bbd8-1791bd74a103" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220757Z:b178eee2-7e8d-4fc0-bbd8-1791bd74a103" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a3bcfe0-90fd-4444-96e8-332a10001ec6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9028" - ], - "x-ms-correlation-request-id": [ - "b5b0bb35-5cd4-4c22-8f67-ad39a46dc985" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220757Z:b5b0bb35-5cd4-4c22-8f67-ad39a46dc985" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83260858-5953-40c4-add2-ba5a62598688" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9027" - ], - "x-ms-correlation-request-id": [ - "32504ce0-1e22-4d89-b408-3011603989d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220758Z:32504ce0-1e22-4d89-b408-3011603989d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d6be085-bdf9-4688-9091-e0d5c593dd77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9026" - ], - "x-ms-correlation-request-id": [ - "5c0357c1-a952-45ce-808b-22f85a36c76c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220758Z:5c0357c1-a952-45ce-808b-22f85a36c76c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5b8277a-8aa3-4170-a9dc-9ed7b436adf8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9025" - ], - "x-ms-correlation-request-id": [ - "c33751c0-4f06-43a0-9efb-6844982edce4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220758Z:c33751c0-4f06-43a0-9efb-6844982edce4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d92e01e9-3254-4750-b8a3-5e0f352a4107" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9024" - ], - "x-ms-correlation-request-id": [ - "97ca59f8-61e9-477b-99b8-77239515f3f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220758Z:97ca59f8-61e9-477b-99b8-77239515f3f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72e5e087-0107-4da2-bd71-c7d35dc4d383" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9023" - ], - "x-ms-correlation-request-id": [ - "72e566ed-c366-4a61-bf0f-2d218772312d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220758Z:72e566ed-c366-4a61-bf0f-2d218772312d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0cbc4d0-204d-48aa-ba74-5346ca68e74d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9022" - ], - "x-ms-correlation-request-id": [ - "68b1e7de-08c0-44a6-86e5-ed5bbceacc9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220758Z:68b1e7de-08c0-44a6-86e5-ed5bbceacc9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36f300c8-1b67-404f-a502-9984d025e8cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9021" - ], - "x-ms-correlation-request-id": [ - "5afd9427-95ba-4209-bfd9-80e6910546fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220758Z:5afd9427-95ba-4209-bfd9-80e6910546fa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04b334ae-65d3-4b2c-a799-fde0d59a7de8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9020" - ], - "x-ms-correlation-request-id": [ - "cc86317e-42a1-4144-a912-d1c99040c4ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220759Z:cc86317e-42a1-4144-a912-d1c99040c4ed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ca691e2-e869-412a-8d68-1d5382e23fb8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9019" - ], - "x-ms-correlation-request-id": [ - "9b5eee45-aed7-42b9-a4f5-2391e5a2e24f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220759Z:9b5eee45-aed7-42b9-a4f5-2391e5a2e24f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0bfcf712-5b68-45b2-ad72-78e8833999d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9018" - ], - "x-ms-correlation-request-id": [ - "b7bbea24-751d-4826-95bf-164550a1fc0f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220759Z:b7bbea24-751d-4826-95bf-164550a1fc0f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b222ab66-e28d-4b7b-a7a7-c2713d278507" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9017" - ], - "x-ms-correlation-request-id": [ - "c30c1164-bfab-4035-9ba5-3e6db81e9c0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220759Z:c30c1164-bfab-4035-9ba5-3e6db81e9c0c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ae6792a-8d6c-4ae4-a7bb-53792a8157df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9016" - ], - "x-ms-correlation-request-id": [ - "6d778560-6f75-449e-95bb-5fa69494ab9c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220759Z:6d778560-6f75-449e-95bb-5fa69494ab9c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ba72a62-9f90-43d3-8c6c-7ae4befa6310" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9015" - ], - "x-ms-correlation-request-id": [ - "fa952c89-6f0c-440f-b3ba-5c20d3031999" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220759Z:fa952c89-6f0c-440f-b3ba-5c20d3031999" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8fe0da9-ee11-4d20-8be7-689ea216bfe1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9014" - ], - "x-ms-correlation-request-id": [ - "913073dd-2919-4444-be77-08e90530230f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220800Z:913073dd-2919-4444-be77-08e90530230f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4aae90df-9756-4da2-b38f-68780ce11925" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9013" - ], - "x-ms-correlation-request-id": [ - "712c9996-4e10-4f70-9aaa-3b8547dbc898" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220800Z:712c9996-4e10-4f70-9aaa-3b8547dbc898" - ], - "Date": [ - "Tue, 29 Aug 2017 22:07:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "351c10dd-8643-4eaa-a9af-e7f4439dbb18" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9012" - ], - "x-ms-correlation-request-id": [ - "814d2b25-80ed-4dac-a067-c0b03daeadf6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220800Z:814d2b25-80ed-4dac-a067-c0b03daeadf6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30a82d27-67e6-4b69-a7d3-1ded885de170" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9011" - ], - "x-ms-correlation-request-id": [ - "686738ca-94a4-4f1e-8014-7d4cad578dd0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220800Z:686738ca-94a4-4f1e-8014-7d4cad578dd0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aeae8cb1-43db-409d-94d4-f266b2e602e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9010" - ], - "x-ms-correlation-request-id": [ - "53556905-cedd-4fc7-80fe-6df102bbc4f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220800Z:53556905-cedd-4fc7-80fe-6df102bbc4f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0ad497e-1082-4c09-9c55-9c1f0e71fb2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9009" - ], - "x-ms-correlation-request-id": [ - "545556e8-8090-4fbb-b636-91630fcc9ebb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220801Z:545556e8-8090-4fbb-b636-91630fcc9ebb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dbb606a9-9931-4c7f-8d0b-8fa53c68053f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9008" - ], - "x-ms-correlation-request-id": [ - "3d517527-52cc-448e-83c7-821212454ea5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220801Z:3d517527-52cc-448e-83c7-821212454ea5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e9e42556-d2c1-4886-b3c7-4d4fc052d012" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9007" - ], - "x-ms-correlation-request-id": [ - "72db676e-0cc6-4e71-9366-6b29b18155b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220801Z:72db676e-0cc6-4e71-9366-6b29b18155b1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e44f4aee-8420-4548-a77a-126298277dc5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9006" - ], - "x-ms-correlation-request-id": [ - "2f2bb637-98fd-4559-a362-d4980026c1cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220801Z:2f2bb637-98fd-4559-a362-d4980026c1cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7e8e78d-2bb0-4a22-82cd-22635c831990" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9005" - ], - "x-ms-correlation-request-id": [ - "1c6c0195-b697-4a59-8365-d769460c1657" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220801Z:1c6c0195-b697-4a59-8365-d769460c1657" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5b2fbfb-7f85-4a15-aefb-fba475048bb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9004" - ], - "x-ms-correlation-request-id": [ - "20cfca00-e784-45c3-a44b-603f95f5991f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220801Z:20cfca00-e784-45c3-a44b-603f95f5991f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2d0b7bd-1407-4010-8841-5c627570c9cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9003" - ], - "x-ms-correlation-request-id": [ - "6a59f5dd-f17e-4974-8506-bb5344a60d40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220801Z:6a59f5dd-f17e-4974-8506-bb5344a60d40" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a86464dc-44c4-49f7-bca9-345efe366886" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9002" - ], - "x-ms-correlation-request-id": [ - "05cb9c0c-dbd0-4741-bbd8-4e8673de09db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220802Z:05cb9c0c-dbd0-4741-bbd8-4e8673de09db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9eb419c3-7cdd-4474-9928-ae320d83c51e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9001" - ], - "x-ms-correlation-request-id": [ - "292bc289-f029-48d7-acee-b07ae6c93468" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220802Z:292bc289-f029-48d7-acee-b07ae6c93468" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb08db4d-ee40-46f1-a526-43a1a233c050" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "9000" - ], - "x-ms-correlation-request-id": [ - "f42c83d3-8d28-49f9-8576-c06b9077f847" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220802Z:f42c83d3-8d28-49f9-8576-c06b9077f847" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98087167-0fb6-4253-ac8a-9a182e8eb2b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8999" - ], - "x-ms-correlation-request-id": [ - "c53bf26d-86d1-4bd8-8dd0-08a7f14d414f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220802Z:c53bf26d-86d1-4bd8-8dd0-08a7f14d414f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45a6cd0d-8b26-445b-872f-55416f996426" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8998" - ], - "x-ms-correlation-request-id": [ - "52e9548d-c222-4384-be91-9ee95b1881fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220802Z:52e9548d-c222-4384-be91-9ee95b1881fc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05e3dcc8-25e3-4fa6-9ce7-3ae00c02b0d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8997" - ], - "x-ms-correlation-request-id": [ - "2e0a400f-0a95-49c8-9d8c-9657f5a4b3c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220802Z:2e0a400f-0a95-49c8-9d8c-9657f5a4b3c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dbe57e99-5ad7-4b90-bc62-1c1bb92e2a3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8996" - ], - "x-ms-correlation-request-id": [ - "50fc4cb4-da74-4fc8-837d-b764012cc55e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220803Z:50fc4cb4-da74-4fc8-837d-b764012cc55e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46735110-7561-4d3d-a255-7ddf3c7bfae2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8995" - ], - "x-ms-correlation-request-id": [ - "f1d90ba9-8529-4689-a486-03f974117b1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220803Z:f1d90ba9-8529-4689-a486-03f974117b1c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0ff4645-78a3-443f-be85-be0af3b00099" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8994" - ], - "x-ms-correlation-request-id": [ - "6ee035d4-051b-44b1-a561-f32c9eed5c73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220803Z:6ee035d4-051b-44b1-a561-f32c9eed5c73" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "952b2226-2891-4b98-990d-2094c62d0802" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8993" - ], - "x-ms-correlation-request-id": [ - "76ec9b69-cab5-48c3-aa69-7283ac1cc022" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220803Z:76ec9b69-cab5-48c3-aa69-7283ac1cc022" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3fef93e3-9fcb-4722-b264-a91e908fb760" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8992" - ], - "x-ms-correlation-request-id": [ - "26ad3193-ebc0-4f0f-a813-4112ff37b772" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220803Z:26ad3193-ebc0-4f0f-a813-4112ff37b772" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41e51067-c751-4dbf-8b39-2abbcac70557" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8991" - ], - "x-ms-correlation-request-id": [ - "7beecc67-5c90-4b97-8096-a83224f731eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220803Z:7beecc67-5c90-4b97-8096-a83224f731eb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a3480e5-662d-4eb4-8c43-04025508b12d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8990" - ], - "x-ms-correlation-request-id": [ - "4b6271cb-7023-4909-a1fe-99ece478810b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220804Z:4b6271cb-7023-4909-a1fe-99ece478810b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3c94b824-1eea-4189-b9ca-b995ee433ac0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8989" - ], - "x-ms-correlation-request-id": [ - "25e04db0-a150-426c-a5eb-f1c434c41c1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220804Z:25e04db0-a150-426c-a5eb-f1c434c41c1e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "183d491d-9a3c-447a-9915-f54fce135db2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8988" - ], - "x-ms-correlation-request-id": [ - "99085dc9-8db4-4822-9721-7066c1c69366" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220804Z:99085dc9-8db4-4822-9721-7066c1c69366" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35e5101a-bd22-45eb-9ac2-81a20d5550b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8987" - ], - "x-ms-correlation-request-id": [ - "2ebcd0b8-5538-4747-a0b1-ea28f8cbf1aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220804Z:2ebcd0b8-5538-4747-a0b1-ea28f8cbf1aa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87837235-6a35-4304-8528-df8ef9c0af37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8986" - ], - "x-ms-correlation-request-id": [ - "ee589570-66fb-48a7-b604-d1b17b554fb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220804Z:ee589570-66fb-48a7-b604-d1b17b554fb8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8235f98-5a94-4e5d-995f-ba7d1fcba455" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8985" - ], - "x-ms-correlation-request-id": [ - "e27dfbbe-495f-4c27-9fa1-5f9ca253a2ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220804Z:e27dfbbe-495f-4c27-9fa1-5f9ca253a2ec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a063ffdd-422a-4049-822c-80d56f3a619c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8984" - ], - "x-ms-correlation-request-id": [ - "aa090b9b-3e1d-4fb9-9338-e1e6971e9cba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220805Z:aa090b9b-3e1d-4fb9-9338-e1e6971e9cba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e13b399-d993-44da-9484-cdd684e3938f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8983" - ], - "x-ms-correlation-request-id": [ - "32788db1-e656-4a7f-8e64-f516f9a0ec22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220805Z:32788db1-e656-4a7f-8e64-f516f9a0ec22" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab280950-c3e0-439c-8662-fcb78dd3126d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8982" - ], - "x-ms-correlation-request-id": [ - "7f012708-938f-4a5b-aa05-3f1315229be7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220805Z:7f012708-938f-4a5b-aa05-3f1315229be7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "806bfb0e-5429-487e-aaa2-ad1eca2ee406" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8981" - ], - "x-ms-correlation-request-id": [ - "083e0edf-362c-4a87-a7ea-34be70a459f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220805Z:083e0edf-362c-4a87-a7ea-34be70a459f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cba5841b-447b-4328-a5b0-6ba27f02fa71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8980" - ], - "x-ms-correlation-request-id": [ - "a6bc4977-e0d1-4def-9209-e9c7c92bc5c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220805Z:a6bc4977-e0d1-4def-9209-e9c7c92bc5c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa8d66e2-710e-4645-a0ac-af2a88fec2ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8979" - ], - "x-ms-correlation-request-id": [ - "b87ea27f-d6cb-4994-96bb-dd4bc4097bf5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220805Z:b87ea27f-d6cb-4994-96bb-dd4bc4097bf5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b9be5a06-4b6e-433d-9067-34556aef7647" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8978" - ], - "x-ms-correlation-request-id": [ - "e025f160-42aa-49c3-85c5-6d37001e9698" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220806Z:e025f160-42aa-49c3-85c5-6d37001e9698" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "857364e9-3323-45b4-917e-8f228277759a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8977" - ], - "x-ms-correlation-request-id": [ - "feac03a6-6e28-4073-952c-2c4cdac0cb4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220806Z:feac03a6-6e28-4073-952c-2c4cdac0cb4e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c4ff773a-0475-4118-89f1-ec032da5ef1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8976" - ], - "x-ms-correlation-request-id": [ - "779b4ab8-3f27-43da-add9-bdef54e68e4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220806Z:779b4ab8-3f27-43da-add9-bdef54e68e4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08d5b4c3-d058-41a3-acef-7e06624e51e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8975" - ], - "x-ms-correlation-request-id": [ - "9c04af71-2fc3-462e-9d97-0475f586f215" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220806Z:9c04af71-2fc3-462e-9d97-0475f586f215" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd73042f-3e35-4d0d-ac1f-c61f18ab1198" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8974" - ], - "x-ms-correlation-request-id": [ - "b9c1e7ce-41a0-439c-84dd-cb6ff5915b70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220806Z:b9c1e7ce-41a0-439c-84dd-cb6ff5915b70" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6b89280-5cbf-47e1-81da-6c9ba6a2aa91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8973" - ], - "x-ms-correlation-request-id": [ - "7ed7e393-0b6d-4492-a645-339cb636f24b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220806Z:7ed7e393-0b6d-4492-a645-339cb636f24b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f2d9684-9358-4d06-9c1c-f3d2d3d2f46c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8972" - ], - "x-ms-correlation-request-id": [ - "65caf572-32a4-4e88-9ddd-1a2f7ed4a40c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220807Z:65caf572-32a4-4e88-9ddd-1a2f7ed4a40c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cca107e0-632f-4c1a-8a90-8b1bab4bb0c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8971" - ], - "x-ms-correlation-request-id": [ - "4c7a102b-0c71-4fff-a67f-8c66dad2a484" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220807Z:4c7a102b-0c71-4fff-a67f-8c66dad2a484" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0fdecb5-dccb-46c9-b1d6-c64381aab170" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8970" - ], - "x-ms-correlation-request-id": [ - "01ea61e8-8383-4912-9762-e0c4a7447c8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220807Z:01ea61e8-8383-4912-9762-e0c4a7447c8c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "024b0d0e-9e9b-4aab-946f-71d3fa769af7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8969" - ], - "x-ms-correlation-request-id": [ - "cedc3137-90e0-44f8-860a-2108b7b55f43" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220807Z:cedc3137-90e0-44f8-860a-2108b7b55f43" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8ce9320-b37e-46f5-8428-370c94527969" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8968" - ], - "x-ms-correlation-request-id": [ - "11db93d7-064d-40ba-bcf3-b03889b0e918" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220808Z:11db93d7-064d-40ba-bcf3-b03889b0e918" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37b70f80-ca74-477d-8c1f-fd1a5a480b2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8967" - ], - "x-ms-correlation-request-id": [ - "4ca8f090-b9ec-47cf-82f0-182d8bbe9fa0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220808Z:4ca8f090-b9ec-47cf-82f0-182d8bbe9fa0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "717fb6aa-2353-4ee8-9c85-5a6169959fde" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8966" - ], - "x-ms-correlation-request-id": [ - "4543b20f-b561-437f-a930-ad8c88655956" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220808Z:4543b20f-b561-437f-a930-ad8c88655956" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3618040b-4121-42c4-97a1-a5c9e54a6f9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8965" - ], - "x-ms-correlation-request-id": [ - "a502ec00-7623-468b-96d8-f5318a62baed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220808Z:a502ec00-7623-468b-96d8-f5318a62baed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f3c3b9a-125a-496f-9b62-1ff6d450bc38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8964" - ], - "x-ms-correlation-request-id": [ - "5c4da3bc-fb63-47e0-8cb3-d9fe6b79f607" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220808Z:5c4da3bc-fb63-47e0-8cb3-d9fe6b79f607" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d51faee-56dd-47c5-af66-340b6e90e012" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8963" - ], - "x-ms-correlation-request-id": [ - "709bdf45-b1f9-443e-8ea0-d1093d5bf4e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220808Z:709bdf45-b1f9-443e-8ea0-d1093d5bf4e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7bae0101-4db0-4001-b975-134e22c3e13f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8962" - ], - "x-ms-correlation-request-id": [ - "c1127a93-55ff-4c3c-a4ea-a92c0efaac4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220809Z:c1127a93-55ff-4c3c-a4ea-a92c0efaac4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40211cba-b2e2-476b-8540-7832e92dba6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8961" - ], - "x-ms-correlation-request-id": [ - "88f7bce7-429e-4d5c-aa30-9a02aa10059a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220809Z:88f7bce7-429e-4d5c-aa30-9a02aa10059a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc622ce1-e905-443c-8809-e6d0f5aacb20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8960" - ], - "x-ms-correlation-request-id": [ - "e400916f-a930-415e-ada3-474a79c68587" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220809Z:e400916f-a930-415e-ada3-474a79c68587" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "468630bf-9b50-481d-a2cb-81b01dc85769" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8959" - ], - "x-ms-correlation-request-id": [ - "dca9319b-f41d-4ada-a5fe-7e13e1f272a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220809Z:dca9319b-f41d-4ada-a5fe-7e13e1f272a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d47f2e0f-3d85-481b-a8ef-9163df090d0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8958" - ], - "x-ms-correlation-request-id": [ - "6d5c54b4-ad1e-40b0-a938-065d4b680da7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220809Z:6d5c54b4-ad1e-40b0-a938-065d4b680da7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a79d2fe5-8c32-470b-830f-afe8226b322e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8957" - ], - "x-ms-correlation-request-id": [ - "76b9991c-e531-4c74-ad5c-6938ab8f6e76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220810Z:76b9991c-e531-4c74-ad5c-6938ab8f6e76" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d180ef3-2977-42e9-aa31-9123c75f200a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8956" - ], - "x-ms-correlation-request-id": [ - "a30127db-bb06-4461-bd65-1701cf30196e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220810Z:a30127db-bb06-4461-bd65-1701cf30196e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "092b54d3-1969-4133-9a30-adf74b66cbb9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8955" - ], - "x-ms-correlation-request-id": [ - "d2b713cc-4527-4384-b79c-bfc27dc7a305" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220810Z:d2b713cc-4527-4384-b79c-bfc27dc7a305" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5123110c-6086-4503-95f1-09fc693f185e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8954" - ], - "x-ms-correlation-request-id": [ - "ceacde34-6622-48d0-92a2-f365a9381baa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220810Z:ceacde34-6622-48d0-92a2-f365a9381baa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff8d7372-c104-4f4a-9ebe-aa8f3cc6ca7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8953" - ], - "x-ms-correlation-request-id": [ - "3e524d71-d595-4bd4-a28f-4cf582705c3a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220810Z:3e524d71-d595-4bd4-a28f-4cf582705c3a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8731ee4e-2df4-4a70-ba16-7cf41ec4fa5f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8952" - ], - "x-ms-correlation-request-id": [ - "6eac91ee-5421-4a86-9ab1-d4765854de6b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220810Z:6eac91ee-5421-4a86-9ab1-d4765854de6b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9accc1a0-3cfe-4026-8d38-a8bae2df101a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8951" - ], - "x-ms-correlation-request-id": [ - "1c5d89e2-7d7c-4366-b7be-03d1b5d13374" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220810Z:1c5d89e2-7d7c-4366-b7be-03d1b5d13374" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2986a8ac-4174-43e0-85c2-7b46b6cd6372" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8950" - ], - "x-ms-correlation-request-id": [ - "f3e7a7cd-0f22-4497-99f0-8fdf167a14ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220811Z:f3e7a7cd-0f22-4497-99f0-8fdf167a14ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5792499e-6f86-4699-8208-04b8c7a4d850" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8949" - ], - "x-ms-correlation-request-id": [ - "330da5d7-9473-4c8a-8c65-feb0cf167ece" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220811Z:330da5d7-9473-4c8a-8c65-feb0cf167ece" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a9d261af-b320-4b29-bcc8-a4e8b72f4cb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8948" - ], - "x-ms-correlation-request-id": [ - "57fe4513-8489-44b4-8fc1-1e40dfd76e92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220811Z:57fe4513-8489-44b4-8fc1-1e40dfd76e92" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9fabaa5c-6800-42c7-852c-2924200eeaff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8947" - ], - "x-ms-correlation-request-id": [ - "1633e1de-da7f-443a-a7ef-c90f69941d9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220811Z:1633e1de-da7f-443a-a7ef-c90f69941d9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9b093b9-acb6-499a-bf2d-113a80160b6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8946" - ], - "x-ms-correlation-request-id": [ - "69630b44-ff0c-4683-955d-03d202028e83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220811Z:69630b44-ff0c-4683-955d-03d202028e83" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8406bf10-c834-4fb7-98a7-8281b625e0b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8945" - ], - "x-ms-correlation-request-id": [ - "b3447fcc-8bb8-435b-9e9c-77a3fefff4d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220811Z:b3447fcc-8bb8-435b-9e9c-77a3fefff4d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "111a65c7-020b-4a91-a8de-1326b6fb0cf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8944" - ], - "x-ms-correlation-request-id": [ - "e4026403-8dcc-4d3c-9ffb-25ec43a38fc9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220811Z:e4026403-8dcc-4d3c-9ffb-25ec43a38fc9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73038f0b-7d19-4dca-b0cf-ad7310d26389" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8943" - ], - "x-ms-correlation-request-id": [ - "eff66abc-94a8-44c5-af46-596925372168" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220812Z:eff66abc-94a8-44c5-af46-596925372168" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d2e68b3-0069-488a-8259-25c2e2577d39" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8942" - ], - "x-ms-correlation-request-id": [ - "a1ecdba7-8871-459e-af1b-4a4f4c1382fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220812Z:a1ecdba7-8871-459e-af1b-4a4f4c1382fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "039cef72-6334-488e-b2a2-741cd9327aa9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8941" - ], - "x-ms-correlation-request-id": [ - "04a38bbc-0b66-407f-bf06-55e646a8f66d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220812Z:04a38bbc-0b66-407f-bf06-55e646a8f66d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db411b2d-3d52-4b1c-a345-f922cb9d9d35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8940" - ], - "x-ms-correlation-request-id": [ - "8688d1de-f0d3-4925-beab-6387a486f9a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220812Z:8688d1de-f0d3-4925-beab-6387a486f9a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54fceba7-80ba-469a-be9d-c610e8834b64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8939" - ], - "x-ms-correlation-request-id": [ - "8ab43c06-6760-48c8-8b21-163fad4d243e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220812Z:8ab43c06-6760-48c8-8b21-163fad4d243e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e40e9ac-611b-4446-9657-fbb8c022e40b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8938" - ], - "x-ms-correlation-request-id": [ - "394c23bf-1ff2-4736-9d79-2c28f1eb6e67" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220812Z:394c23bf-1ff2-4736-9d79-2c28f1eb6e67" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d00accf-bda0-47ec-b063-4fd324d29e67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8937" - ], - "x-ms-correlation-request-id": [ - "513f1e23-66c3-4fc7-9303-a4c0ea0d2913" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220813Z:513f1e23-66c3-4fc7-9303-a4c0ea0d2913" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d022e707-23f1-4010-a24e-f0de10121206" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8936" - ], - "x-ms-correlation-request-id": [ - "a95c4f73-735e-47dc-adcc-d2977b56ef4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220813Z:a95c4f73-735e-47dc-adcc-d2977b56ef4b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f78e622-19cf-4d28-8984-e2380a2def50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8935" - ], - "x-ms-correlation-request-id": [ - "c061b645-d5cd-4969-94cb-6da2e38a6afc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220813Z:c061b645-d5cd-4969-94cb-6da2e38a6afc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6548e37c-4a2e-4e64-93dc-f61c88629f06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8934" - ], - "x-ms-correlation-request-id": [ - "b913a5ee-892d-4c45-8cb6-813be5f9f7ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220813Z:b913a5ee-892d-4c45-8cb6-813be5f9f7ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c652a940-671c-4782-9f4e-9b41970cf6a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8933" - ], - "x-ms-correlation-request-id": [ - "4c4088bd-a681-4268-bc57-ae26d5e5d856" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220813Z:4c4088bd-a681-4268-bc57-ae26d5e5d856" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8b9428e-a84c-4e7a-a464-366cf9e655a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8932" - ], - "x-ms-correlation-request-id": [ - "8592b547-f7ae-4bd0-9536-248bb35d1ff8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220813Z:8592b547-f7ae-4bd0-9536-248bb35d1ff8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "053b7c14-474c-42e9-833d-8b496f56ec26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8931" - ], - "x-ms-correlation-request-id": [ - "85900f36-e739-4be4-b4b3-b11cd13f7313" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220813Z:85900f36-e739-4be4-b4b3-b11cd13f7313" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca2a02f6-170a-4b93-81d6-ca1921bbdbd1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8930" - ], - "x-ms-correlation-request-id": [ - "b03753b5-0d69-40f9-a107-889d1cad6101" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220814Z:b03753b5-0d69-40f9-a107-889d1cad6101" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44b771c0-1492-49bd-9256-ed568f173985" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8929" - ], - "x-ms-correlation-request-id": [ - "7ed677c9-6b6a-4cf8-a5fa-f52d7e3a88df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220814Z:7ed677c9-6b6a-4cf8-a5fa-f52d7e3a88df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53cf2e8a-4ff4-4c24-8d0c-97988236ba94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8928" - ], - "x-ms-correlation-request-id": [ - "6fa59ebc-1b24-4250-84c5-b60895d95b4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220814Z:6fa59ebc-1b24-4250-84c5-b60895d95b4b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0bb8240-44a2-4ad9-b02c-0f67f9548852" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8927" - ], - "x-ms-correlation-request-id": [ - "d080e934-46e9-4886-8140-2be70a5f1e4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220814Z:d080e934-46e9-4886-8140-2be70a5f1e4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b42b2abf-5fb5-4f36-b41e-5547f1bb683b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8926" - ], - "x-ms-correlation-request-id": [ - "62bc819d-5c14-4f33-97d8-407af492f621" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220814Z:62bc819d-5c14-4f33-97d8-407af492f621" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74425ce8-c733-464b-81a1-10f57200b07f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8925" - ], - "x-ms-correlation-request-id": [ - "b9a42c0c-d27f-407e-8366-5a6374e42b71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220815Z:b9a42c0c-d27f-407e-8366-5a6374e42b71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04c3a30b-d8cf-4f1f-bc7a-e126617d010f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8924" - ], - "x-ms-correlation-request-id": [ - "b4d117b8-0576-4336-a324-7de87c3934e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220815Z:b4d117b8-0576-4336-a324-7de87c3934e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "002e2542-317b-4388-9977-fbb417eb2d0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8923" - ], - "x-ms-correlation-request-id": [ - "f720ef19-0daf-4481-824e-d51b3b2500e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220815Z:f720ef19-0daf-4481-824e-d51b3b2500e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92991246-9bdf-4556-b787-55ee02502e4f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8922" - ], - "x-ms-correlation-request-id": [ - "34efd3a9-49be-48e2-a4ef-6e00b7dde3b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220815Z:34efd3a9-49be-48e2-a4ef-6e00b7dde3b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a9459f0f-17e3-48e7-b4d2-ddc8835e2b69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8921" - ], - "x-ms-correlation-request-id": [ - "b539dd49-6cce-4a37-a6e3-c4a2c0f544a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220815Z:b539dd49-6cce-4a37-a6e3-c4a2c0f544a0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "091a8509-7ac3-414d-933e-55ed83d4bac5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8920" - ], - "x-ms-correlation-request-id": [ - "bea18994-24c5-418b-b432-88781c780488" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220815Z:bea18994-24c5-418b-b432-88781c780488" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c152824-c52b-4fe5-ac2f-5b4bdf659a73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8919" - ], - "x-ms-correlation-request-id": [ - "e5b7cb5f-7484-448a-b9d0-2b0e676f91a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220815Z:e5b7cb5f-7484-448a-b9d0-2b0e676f91a4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe694c39-6a57-445d-89e7-7144ac5d5f42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8918" - ], - "x-ms-correlation-request-id": [ - "0226b6f5-46fb-46b6-a0aa-e519bd724ac6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220816Z:0226b6f5-46fb-46b6-a0aa-e519bd724ac6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6943b351-b601-40f0-86da-cc4c4282a870" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8917" - ], - "x-ms-correlation-request-id": [ - "e0c254bc-4da5-4444-b665-22a7300766d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220816Z:e0c254bc-4da5-4444-b665-22a7300766d6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd6ce951-9ac7-4548-b929-886c0ae27754" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8916" - ], - "x-ms-correlation-request-id": [ - "07bfb0d5-fbda-4125-a484-6a013be3b630" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220816Z:07bfb0d5-fbda-4125-a484-6a013be3b630" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8575427-3235-4ac4-aa6e-6410b94c5010" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8915" - ], - "x-ms-correlation-request-id": [ - "7c6420d0-3b95-4e28-9d47-35eb5c56a5e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220816Z:7c6420d0-3b95-4e28-9d47-35eb5c56a5e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c3a7cc5-e08b-46a4-ac32-f00da1455f01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8914" - ], - "x-ms-correlation-request-id": [ - "157df38e-78ed-4979-8aa8-3da9f2b01dc0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220816Z:157df38e-78ed-4979-8aa8-3da9f2b01dc0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5704248-dbe4-49a5-93f1-3935d6887cca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8913" - ], - "x-ms-correlation-request-id": [ - "03d5084a-dfc9-4d4d-99f2-0debc34bc0c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220816Z:03d5084a-dfc9-4d4d-99f2-0debc34bc0c9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18a409f3-e5af-444d-83d8-bf19b6b1a54f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8912" - ], - "x-ms-correlation-request-id": [ - "36d514d7-47fe-4d35-be78-e131f4f9e267" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220817Z:36d514d7-47fe-4d35-be78-e131f4f9e267" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42b0fcd0-19c2-4bde-8aff-a6e04aab3502" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8911" - ], - "x-ms-correlation-request-id": [ - "bd7f7ecd-0235-42a5-9784-85a72599d6df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220817Z:bd7f7ecd-0235-42a5-9784-85a72599d6df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac9301dd-3151-4192-888e-c2c63ba787cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8910" - ], - "x-ms-correlation-request-id": [ - "be399e8e-b2ef-47a7-9303-8b025b52d2df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220817Z:be399e8e-b2ef-47a7-9303-8b025b52d2df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d1d255b-7b20-49bf-8f67-e6c98817e668" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8909" - ], - "x-ms-correlation-request-id": [ - "91906d1b-e740-4dd9-b438-6069f6329ee1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220817Z:91906d1b-e740-4dd9-b438-6069f6329ee1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cef4ffa1-9c50-4bcc-9b42-475736e06f3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8908" - ], - "x-ms-correlation-request-id": [ - "65bdd7dc-9a7a-4c94-9fbe-3b2a3cb491c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220817Z:65bdd7dc-9a7a-4c94-9fbe-3b2a3cb491c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d63b56d-d8c1-48e6-8f07-d9c6e7561330" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8907" - ], - "x-ms-correlation-request-id": [ - "0220f777-4bc9-4eec-ba9e-748c0467bd84" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220817Z:0220f777-4bc9-4eec-ba9e-748c0467bd84" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2600ad3a-856e-44ae-a921-5b62fbb6feab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8906" - ], - "x-ms-correlation-request-id": [ - "8c1ea09c-423b-46fc-aabd-efb3c09860ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220818Z:8c1ea09c-423b-46fc-aabd-efb3c09860ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cace6dd1-c4f7-4e32-832e-161e7c5b1762" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8905" - ], - "x-ms-correlation-request-id": [ - "1ed11c90-8a79-439b-a365-4f3b00bb0d44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220818Z:1ed11c90-8a79-439b-a365-4f3b00bb0d44" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e34e0bd-4a7b-411a-8f18-b94de0497764" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8904" - ], - "x-ms-correlation-request-id": [ - "e42aee82-573f-4c1a-a950-e6a4c232c236" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220818Z:e42aee82-573f-4c1a-a950-e6a4c232c236" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13a417e1-ecbe-4b55-b827-c6772348fd0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8903" - ], - "x-ms-correlation-request-id": [ - "4bbf8077-a726-49db-bbff-1606832d7e3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220818Z:4bbf8077-a726-49db-bbff-1606832d7e3e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca0165e8-f967-42b4-8a64-aa79985330f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8902" - ], - "x-ms-correlation-request-id": [ - "47c0d5f2-cf7d-4230-ac78-b36f3d309418" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220819Z:47c0d5f2-cf7d-4230-ac78-b36f3d309418" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eaf59262-5fa4-4e91-90b2-bee4f6cc6156" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8901" - ], - "x-ms-correlation-request-id": [ - "122350d1-ea36-4b0d-bee1-7ddee0c68630" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220819Z:122350d1-ea36-4b0d-bee1-7ddee0c68630" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "013064bc-474f-4822-8ddd-14975689db8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8900" - ], - "x-ms-correlation-request-id": [ - "4d43bd45-bd40-4ceb-b437-f1c5170a8893" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220819Z:4d43bd45-bd40-4ceb-b437-f1c5170a8893" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1e80425-69e7-4687-bf6d-ced382ab8f67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8899" - ], - "x-ms-correlation-request-id": [ - "921c5653-5756-42ea-b6d7-477384711cd1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220819Z:921c5653-5756-42ea-b6d7-477384711cd1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "297ba7b7-e06e-4611-b451-c626846ff7ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8898" - ], - "x-ms-correlation-request-id": [ - "3222a434-9b65-46f4-8b51-33f75cc4d132" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220819Z:3222a434-9b65-46f4-8b51-33f75cc4d132" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "58fabd4a-ad93-4ad1-9d61-e61f109582a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8897" - ], - "x-ms-correlation-request-id": [ - "071e9457-6879-468b-a24c-c29815ca7f3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220819Z:071e9457-6879-468b-a24c-c29815ca7f3e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d43bac40-80c9-433b-9700-7ed8990ffe1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8896" - ], - "x-ms-correlation-request-id": [ - "21d941b9-05b1-4ae1-a172-16e9aea91b31" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220820Z:21d941b9-05b1-4ae1-a172-16e9aea91b31" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5693432c-1550-42f6-b058-081d96045b9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8895" - ], - "x-ms-correlation-request-id": [ - "016288f5-6acd-466b-8ab0-8ef849cc4cf0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220820Z:016288f5-6acd-466b-8ab0-8ef849cc4cf0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9595b414-ff2f-4ebb-9db8-74e38f58a546" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8894" - ], - "x-ms-correlation-request-id": [ - "ad4715eb-73ba-4318-9021-502f750e1a47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220820Z:ad4715eb-73ba-4318-9021-502f750e1a47" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b67597a-87b1-47d7-bdfe-dc31efc604d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8893" - ], - "x-ms-correlation-request-id": [ - "d0ad2562-6c72-4ecb-8fda-2b0fe99c6935" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220820Z:d0ad2562-6c72-4ecb-8fda-2b0fe99c6935" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5b87824-67b6-4207-a733-1f3c5689c08b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8892" - ], - "x-ms-correlation-request-id": [ - "d7b3d4a1-6652-4a17-8226-068046fcbb81" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220820Z:d7b3d4a1-6652-4a17-8226-068046fcbb81" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8e7bf28d-0051-4ba1-93dd-8ece1585d9e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8891" - ], - "x-ms-correlation-request-id": [ - "3bf6d5de-3be9-4d69-b40b-3a79630ffcfe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220820Z:3bf6d5de-3be9-4d69-b40b-3a79630ffcfe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93a061f4-09a1-4813-8761-d95d307c9a05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8890" - ], - "x-ms-correlation-request-id": [ - "29789efa-796c-4441-8bd4-7575f1df3bad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220821Z:29789efa-796c-4441-8bd4-7575f1df3bad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "972570aa-82e5-473a-bac6-6ae0861f8348" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8889" - ], - "x-ms-correlation-request-id": [ - "50a34cab-8fab-415f-ab13-c84a89795c0b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220821Z:50a34cab-8fab-415f-ab13-c84a89795c0b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "edc0feaf-e41f-445d-8075-9bf8ebc54888" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8888" - ], - "x-ms-correlation-request-id": [ - "07cb34df-a88e-43dd-b27d-53afe575373c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220821Z:07cb34df-a88e-43dd-b27d-53afe575373c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d480a43-69f9-4653-b759-4bd41da4d561" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8887" - ], - "x-ms-correlation-request-id": [ - "d69c60b1-ae14-45d8-b8a1-612ca6f58272" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220821Z:d69c60b1-ae14-45d8-b8a1-612ca6f58272" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ba35def-b622-4023-8467-1e021859768f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8886" - ], - "x-ms-correlation-request-id": [ - "75a83261-55df-4487-b030-718113014711" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220821Z:75a83261-55df-4487-b030-718113014711" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17b418d8-1023-4366-9e98-701de7bdc7af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8885" - ], - "x-ms-correlation-request-id": [ - "04679184-74fc-4695-ba4f-9df4b93561cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220821Z:04679184-74fc-4695-ba4f-9df4b93561cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7dce182-2d2c-496a-9252-d8f33c532b76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8884" - ], - "x-ms-correlation-request-id": [ - "ab48e98e-5e30-41ba-a69f-b973b0b13095" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220821Z:ab48e98e-5e30-41ba-a69f-b973b0b13095" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "693dc1a5-1018-469c-b89f-f0a324a6cce8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8883" - ], - "x-ms-correlation-request-id": [ - "8abb2226-47e0-4fe6-8f78-3e5288dc1ab0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220822Z:8abb2226-47e0-4fe6-8f78-3e5288dc1ab0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7690ece-f9ba-4f03-8e92-154e182016da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8882" - ], - "x-ms-correlation-request-id": [ - "bb8cce4a-d61f-4abd-b21d-e8028e91891e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220822Z:bb8cce4a-d61f-4abd-b21d-e8028e91891e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bcbaeca-0699-4974-886e-e4e6168d991c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8881" - ], - "x-ms-correlation-request-id": [ - "6cd960fb-3616-43dd-bb21-c2eb8121c0f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220822Z:6cd960fb-3616-43dd-bb21-c2eb8121c0f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b32b099-6f17-4f42-98bd-de2fa20738cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8880" - ], - "x-ms-correlation-request-id": [ - "2f2a0c89-d87e-480c-9cb5-c7ca13223129" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220822Z:2f2a0c89-d87e-480c-9cb5-c7ca13223129" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e89a32e3-738e-4e24-a032-3c82cffc3972" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8879" - ], - "x-ms-correlation-request-id": [ - "b6227019-d1fc-4ecd-819a-845090445d44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220822Z:b6227019-d1fc-4ecd-819a-845090445d44" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9cd409ce-7173-4099-93f8-157d591ef72c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8878" - ], - "x-ms-correlation-request-id": [ - "27e1e870-78ab-44a2-846f-317154298bdb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220823Z:27e1e870-78ab-44a2-846f-317154298bdb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24c5a728-8e78-4995-a1a1-67a96dc44563" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8877" - ], - "x-ms-correlation-request-id": [ - "e1df4833-297d-48d2-9a5b-866061b35bb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220823Z:e1df4833-297d-48d2-9a5b-866061b35bb9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94432740-66bf-473a-96fc-26dfe89b2b55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8876" - ], - "x-ms-correlation-request-id": [ - "9169c6ce-cc2d-4168-9d0c-dca1b7c25352" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220823Z:9169c6ce-cc2d-4168-9d0c-dca1b7c25352" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00e4c271-3279-45a8-8433-48e50d5ae5a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8875" - ], - "x-ms-correlation-request-id": [ - "eb6368e3-7b8c-4c35-be7f-c89b7dc307a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220823Z:eb6368e3-7b8c-4c35-be7f-c89b7dc307a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f87cff5d-5f50-46fa-bfa4-9db73b713433" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8874" - ], - "x-ms-correlation-request-id": [ - "f948335b-40db-445d-9c0f-94a94c1e885b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220823Z:f948335b-40db-445d-9c0f-94a94c1e885b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d75e2d2-c7ee-4921-8835-903e5ba5bb2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8873" - ], - "x-ms-correlation-request-id": [ - "e062cb45-55cf-44d9-b60b-cbca587e2570" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220823Z:e062cb45-55cf-44d9-b60b-cbca587e2570" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e37b2e2e-444d-490a-b24f-71b3c7bd1deb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8872" - ], - "x-ms-correlation-request-id": [ - "4448c451-64d0-4bdc-b142-234579f66d8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220824Z:4448c451-64d0-4bdc-b142-234579f66d8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5bcc6c6a-ac51-4e05-ae80-d4ced3a5a09b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8871" - ], - "x-ms-correlation-request-id": [ - "89978637-b29a-4600-817c-d759ca1aa0cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220824Z:89978637-b29a-4600-817c-d759ca1aa0cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f5d2011-ae61-446c-9bcc-9c48dace70e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8870" - ], - "x-ms-correlation-request-id": [ - "580977e1-3569-4a10-8ed3-fdf713267e96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220824Z:580977e1-3569-4a10-8ed3-fdf713267e96" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a0badce-eb0c-47b2-acad-9de42731cbf5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8869" - ], - "x-ms-correlation-request-id": [ - "8b524a88-6aa3-40a5-8900-be4f85d5e7b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220824Z:8b524a88-6aa3-40a5-8900-be4f85d5e7b9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c1b43db-6179-40e3-a785-aee357418cfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8868" - ], - "x-ms-correlation-request-id": [ - "730402fb-6cfc-428e-830d-58711e1b15f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220824Z:730402fb-6cfc-428e-830d-58711e1b15f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48288f81-a705-4fe8-8c47-0215b02acdb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8867" - ], - "x-ms-correlation-request-id": [ - "bb371236-e100-4aba-a16b-e159287511aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220824Z:bb371236-e100-4aba-a16b-e159287511aa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "26475535-528c-4548-861b-2d2f6d18c378" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8866" - ], - "x-ms-correlation-request-id": [ - "b08faf95-0783-49e3-8b24-34ccf8f97f37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220824Z:b08faf95-0783-49e3-8b24-34ccf8f97f37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb561045-c3b0-4730-8e44-286496262477" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8865" - ], - "x-ms-correlation-request-id": [ - "5d042e43-6fbb-4cee-ad49-2ae980a78f21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220825Z:5d042e43-6fbb-4cee-ad49-2ae980a78f21" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1154150e-6916-41ae-9021-ad1dfebfcdfe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8864" - ], - "x-ms-correlation-request-id": [ - "ba5c559b-b71f-4685-8441-1221accf7178" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220825Z:ba5c559b-b71f-4685-8441-1221accf7178" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22841293-42b1-4bcd-8b36-fc33c255a514" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8863" - ], - "x-ms-correlation-request-id": [ - "a16efb73-e96b-419c-9bbc-1c3a56e507e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220825Z:a16efb73-e96b-419c-9bbc-1c3a56e507e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "859cb7c3-f568-4673-9a13-1df3add9dcd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8862" - ], - "x-ms-correlation-request-id": [ - "b3626ff7-b9cd-4269-bbe8-024c5bbd368a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220825Z:b3626ff7-b9cd-4269-bbe8-024c5bbd368a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8fa2b5f2-8ad0-4bff-ae27-a94938ec50be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8861" - ], - "x-ms-correlation-request-id": [ - "f318f716-edd6-40b1-81a0-bc068e875558" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220825Z:f318f716-edd6-40b1-81a0-bc068e875558" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0492707-dcf7-4a12-b718-35d6d58547c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8860" - ], - "x-ms-correlation-request-id": [ - "e4d76b85-969a-4f46-b37d-45cb8f352ea7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220826Z:e4d76b85-969a-4f46-b37d-45cb8f352ea7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b836f9e-bea4-47ea-ba1f-8024270581bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8859" - ], - "x-ms-correlation-request-id": [ - "f9c2b81f-d35e-4f58-bbfc-90a623e9ad9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220826Z:f9c2b81f-d35e-4f58-bbfc-90a623e9ad9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f823974-38f8-42c8-83bf-6330e5002ea5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8858" - ], - "x-ms-correlation-request-id": [ - "1085fa73-f09f-4519-ac09-4c3d0c36bef2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220826Z:1085fa73-f09f-4519-ac09-4c3d0c36bef2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa8e4db2-f5a2-4c2b-9569-834d77808dcd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8857" - ], - "x-ms-correlation-request-id": [ - "ab621df9-c4d7-41b6-a8cc-b37aad588608" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220826Z:ab621df9-c4d7-41b6-a8cc-b37aad588608" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c367a566-cd7b-4a22-90d0-23df1915e333" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8856" - ], - "x-ms-correlation-request-id": [ - "48fb1658-fd1d-473c-a278-2491fda91468" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220826Z:48fb1658-fd1d-473c-a278-2491fda91468" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca9a7822-62db-4bcd-bdaf-4dc604029e06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8855" - ], - "x-ms-correlation-request-id": [ - "2717570e-1541-4a32-b133-9a7648abdb1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220826Z:2717570e-1541-4a32-b133-9a7648abdb1b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "07bbf992-3e42-44b0-90fd-e9b9f68304b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8854" - ], - "x-ms-correlation-request-id": [ - "e762c272-d0fa-4f03-b251-c90b391542c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220827Z:e762c272-d0fa-4f03-b251-c90b391542c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6062e53d-53ce-4ec4-8f6a-d3c65cf80591" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8853" - ], - "x-ms-correlation-request-id": [ - "fc2798df-ee89-4bf0-a577-f1c1949f6950" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220827Z:fc2798df-ee89-4bf0-a577-f1c1949f6950" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "26339555-ccd5-4649-bf9a-c191989010e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8852" - ], - "x-ms-correlation-request-id": [ - "e4f8d4d6-39bc-4cc3-b435-a93875f2c6d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220827Z:e4f8d4d6-39bc-4cc3-b435-a93875f2c6d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e8ad429-eb10-4ae5-8a80-df788eab49dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8851" - ], - "x-ms-correlation-request-id": [ - "0c7da277-2ac3-49ef-ab10-cae0dd6d9cb3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220827Z:0c7da277-2ac3-49ef-ab10-cae0dd6d9cb3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4dccfa62-d348-4d70-a73f-1f162dc215e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8850" - ], - "x-ms-correlation-request-id": [ - "1eb5bc78-902c-4b30-97d9-875d92d3ffeb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220827Z:1eb5bc78-902c-4b30-97d9-875d92d3ffeb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b607a9a-d52d-497a-b0ae-ff1318680442" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8849" - ], - "x-ms-correlation-request-id": [ - "cd7c82b8-66cb-4048-ae00-9edb1a12362f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220827Z:cd7c82b8-66cb-4048-ae00-9edb1a12362f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9346bd96-8138-4014-aff1-ed5297fafc8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8848" - ], - "x-ms-correlation-request-id": [ - "1df64d2d-780b-4a63-9ade-14def52ec7ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220828Z:1df64d2d-780b-4a63-9ade-14def52ec7ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2366e7d4-2332-4c50-9c9a-573e46c21355" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8847" - ], - "x-ms-correlation-request-id": [ - "1275411a-5d0f-4f0c-9d35-7bc771fd8cfa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220828Z:1275411a-5d0f-4f0c-9d35-7bc771fd8cfa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "09246ffe-0896-4839-ad34-0eecb6c6fcb9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8846" - ], - "x-ms-correlation-request-id": [ - "b01578e2-6172-435c-bd67-2768b5dfae45" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220828Z:b01578e2-6172-435c-bd67-2768b5dfae45" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e96b77c1-010c-482f-918c-b9cf976557a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8845" - ], - "x-ms-correlation-request-id": [ - "6ea42547-309f-47a1-a775-2f81c02cb2c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220828Z:6ea42547-309f-47a1-a775-2f81c02cb2c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9edd5100-cdea-4957-a1ae-e6b660cb2d69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8844" - ], - "x-ms-correlation-request-id": [ - "a06b49b8-6bb2-403f-8cbe-302ced97635e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220828Z:a06b49b8-6bb2-403f-8cbe-302ced97635e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bbaa600e-0e5a-4713-a956-f609d18ef9a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8843" - ], - "x-ms-correlation-request-id": [ - "521133ff-439d-467d-8ad8-da92df636e3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220828Z:521133ff-439d-467d-8ad8-da92df636e3b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93405656-fac5-41cc-9709-b810a79fb0d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8842" - ], - "x-ms-correlation-request-id": [ - "bcc9126f-0eda-43b0-9a4d-005a43458a8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220828Z:bcc9126f-0eda-43b0-9a4d-005a43458a8c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "387ddd06-93f5-4296-8813-42e8cc142db4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8841" - ], - "x-ms-correlation-request-id": [ - "290c9cfa-729c-439d-b12d-66a95dd84bd5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220829Z:290c9cfa-729c-439d-b12d-66a95dd84bd5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a534b5f5-d6f5-41e6-9066-906aba6e4bd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8840" - ], - "x-ms-correlation-request-id": [ - "aa336f32-db0c-4d65-b0e8-92a52b22c5fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220829Z:aa336f32-db0c-4d65-b0e8-92a52b22c5fb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43097991-19b8-40a2-8054-3fefba2b9d36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8839" - ], - "x-ms-correlation-request-id": [ - "024ee999-406c-4782-90c3-a44ab818291a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220829Z:024ee999-406c-4782-90c3-a44ab818291a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "584907fd-6c53-48b3-9967-37a4f9a40689" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8838" - ], - "x-ms-correlation-request-id": [ - "04b8e563-bec6-41a0-bd02-958032a0af22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220829Z:04b8e563-bec6-41a0-bd02-958032a0af22" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "516dfd20-b48a-4c9b-9b6c-b14b988d8251" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8837" - ], - "x-ms-correlation-request-id": [ - "b198144b-af40-4fa2-b1c8-4de3c10a7016" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220830Z:b198144b-af40-4fa2-b1c8-4de3c10a7016" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "057aca5f-4e3f-4c8b-a3a3-0ad5c0d936d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8836" - ], - "x-ms-correlation-request-id": [ - "8d2e5e12-2d3d-46e7-99df-59714a2b38c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220830Z:8d2e5e12-2d3d-46e7-99df-59714a2b38c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3218918c-044b-4f8f-b78f-f706fe9c11c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8835" - ], - "x-ms-correlation-request-id": [ - "6bbeec79-60b7-4949-9fad-5ceb6503ce51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220830Z:6bbeec79-60b7-4949-9fad-5ceb6503ce51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d33c1d4-eba3-4bc3-b972-1a234a157c22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8834" - ], - "x-ms-correlation-request-id": [ - "ac2af072-1644-4c8c-9c12-96b8ee3cf559" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220830Z:ac2af072-1644-4c8c-9c12-96b8ee3cf559" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "817b2aa0-7675-4179-9c0c-daab957ab167" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8833" - ], - "x-ms-correlation-request-id": [ - "d23092aa-f26d-4651-b580-d82ddf845de7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220830Z:d23092aa-f26d-4651-b580-d82ddf845de7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ea1db50-0405-4612-9204-e505d7546afe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8832" - ], - "x-ms-correlation-request-id": [ - "df0a7ca8-7a72-4b33-8cf2-c541d20c73c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220830Z:df0a7ca8-7a72-4b33-8cf2-c541d20c73c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ccc249f-6e5d-44bb-a987-860e6ea5cbbd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8831" - ], - "x-ms-correlation-request-id": [ - "6c04a43b-2cf2-4b07-b45a-44cdde89b507" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220831Z:6c04a43b-2cf2-4b07-b45a-44cdde89b507" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c6d94ad-e710-440e-a278-1c5ee4e96b93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8830" - ], - "x-ms-correlation-request-id": [ - "fff51490-bc22-4929-a007-7de1e422d343" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220831Z:fff51490-bc22-4929-a007-7de1e422d343" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "131085bd-509f-49f2-9346-14abf73ac8a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8829" - ], - "x-ms-correlation-request-id": [ - "9fbbd040-81fc-4893-8b7b-1ac6fa8bb94c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220831Z:9fbbd040-81fc-4893-8b7b-1ac6fa8bb94c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a2ff308-9c45-4a8b-9df0-f743eba0ad22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8828" - ], - "x-ms-correlation-request-id": [ - "1360eac2-7e8b-41b9-9806-a2c0d44af352" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220831Z:1360eac2-7e8b-41b9-9806-a2c0d44af352" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b36f16a0-e7bb-44a2-a54c-4c64ca7d8676" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8827" - ], - "x-ms-correlation-request-id": [ - "7d1dca26-26d1-4974-a5b6-0b4c640bd82c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220831Z:7d1dca26-26d1-4974-a5b6-0b4c640bd82c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "718e3d8e-b2d2-4c57-b25c-6d38efa2c328" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8826" - ], - "x-ms-correlation-request-id": [ - "1048dc86-ede9-4a7d-9973-86a19c81aae2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220831Z:1048dc86-ede9-4a7d-9973-86a19c81aae2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "deee53b3-1cd2-4a89-8230-d6e8163c6d83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8825" - ], - "x-ms-correlation-request-id": [ - "c73a5e19-f4ed-4525-8272-2eeca8b023ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220832Z:c73a5e19-f4ed-4525-8272-2eeca8b023ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7683ddde-40e5-4aff-b43c-e78cc0c22b84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8824" - ], - "x-ms-correlation-request-id": [ - "d2f387ed-a560-4d60-8c5d-004c64486c35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220832Z:d2f387ed-a560-4d60-8c5d-004c64486c35" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19981eaa-b3b7-4a92-a11a-15095edc4020" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8823" - ], - "x-ms-correlation-request-id": [ - "aa9828c1-c93a-4e3b-9cb4-46c1fe2fd939" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220832Z:aa9828c1-c93a-4e3b-9cb4-46c1fe2fd939" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4d8eb97-d31c-4086-a21f-a58b1516bb98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8822" - ], - "x-ms-correlation-request-id": [ - "a9481fed-66cc-45ea-92c3-ac3f749e28b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220832Z:a9481fed-66cc-45ea-92c3-ac3f749e28b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9874d28c-2ba2-4932-afdf-eaf39673bd16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8821" - ], - "x-ms-correlation-request-id": [ - "c9597b87-5f42-4164-8f42-e462eb4c80c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220832Z:c9597b87-5f42-4164-8f42-e462eb4c80c4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ea021bc-bfb4-487d-ba5b-350930168bf8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8820" - ], - "x-ms-correlation-request-id": [ - "1d23b8ad-8673-461d-b85e-dbb9cb7601b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220832Z:1d23b8ad-8673-461d-b85e-dbb9cb7601b7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "07030444-f29f-4254-b342-12fb31ee06c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8819" - ], - "x-ms-correlation-request-id": [ - "d36f6c40-1ac8-4526-ae84-4658f6a7ed87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220833Z:d36f6c40-1ac8-4526-ae84-4658f6a7ed87" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d64762bb-388f-4ede-b063-f86abc281e9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8818" - ], - "x-ms-correlation-request-id": [ - "42f6634c-e6da-4f8a-8554-8f577157ceac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220833Z:42f6634c-e6da-4f8a-8554-8f577157ceac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "923f7107-eed5-4f96-aacd-129e6f0527c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8817" - ], - "x-ms-correlation-request-id": [ - "e8579e7f-b59e-4111-a00c-b26b5ca25e1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220833Z:e8579e7f-b59e-4111-a00c-b26b5ca25e1c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3170f165-2efa-49a3-ad79-761d6e4d2c6d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8816" - ], - "x-ms-correlation-request-id": [ - "b0b747f4-1f06-4504-83f0-62693883e457" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220833Z:b0b747f4-1f06-4504-83f0-62693883e457" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3d41913-56ae-4270-a0fe-868cad2a26d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8815" - ], - "x-ms-correlation-request-id": [ - "c880ca45-2b8e-41fc-aff0-a13b3e9acfd3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220833Z:c880ca45-2b8e-41fc-aff0-a13b3e9acfd3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a04ac38-fd7f-4f49-8a45-70b630a27e8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8814" - ], - "x-ms-correlation-request-id": [ - "031ebea3-6609-4f01-99e5-699a051df4e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220833Z:031ebea3-6609-4f01-99e5-699a051df4e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "384ef579-bae2-4b7c-9b14-e3baa6cf447a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8813" - ], - "x-ms-correlation-request-id": [ - "9e408538-cefb-4c88-af19-f4eff13ec60f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220833Z:9e408538-cefb-4c88-af19-f4eff13ec60f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b094ff4-80ea-4e40-a855-4900817e5004" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8812" - ], - "x-ms-correlation-request-id": [ - "e455ca30-ab67-4eb4-b6e8-c4e9bfc70461" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220834Z:e455ca30-ab67-4eb4-b6e8-c4e9bfc70461" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "643446d1-367b-4937-bb63-6f7a3f9ed009" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8811" - ], - "x-ms-correlation-request-id": [ - "5657c806-994c-4d2c-b496-c975122a8af4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220834Z:5657c806-994c-4d2c-b496-c975122a8af4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d43a84dc-c0b5-411f-ac2a-e21c1a41b0f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8810" - ], - "x-ms-correlation-request-id": [ - "c81f5ba7-46a8-4916-92b6-9958a38ecc5f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220834Z:c81f5ba7-46a8-4916-92b6-9958a38ecc5f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b418096-07eb-4f15-a7a4-cd6b2c840320" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8809" - ], - "x-ms-correlation-request-id": [ - "55750883-dabe-4ec3-a0ea-0b9ea874a5be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220834Z:55750883-dabe-4ec3-a0ea-0b9ea874a5be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30dec098-4b75-4c30-8e8a-3bbc5b514fe6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8808" - ], - "x-ms-correlation-request-id": [ - "f45b8dda-d31c-432c-a682-06383e8c0286" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220834Z:f45b8dda-d31c-432c-a682-06383e8c0286" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c9d6fdc-68c9-43be-a01e-b766536cb98a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8807" - ], - "x-ms-correlation-request-id": [ - "aec3b200-6615-4dfe-84ba-82f984ddf214" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220835Z:aec3b200-6615-4dfe-84ba-82f984ddf214" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60627a2b-86c5-4f4d-9092-cd3e65748eaf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8806" - ], - "x-ms-correlation-request-id": [ - "68ce1c18-c064-46ef-9a22-a40230f725a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220835Z:68ce1c18-c064-46ef-9a22-a40230f725a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96c83ef2-1ec5-4348-bed4-6c1c9e60c0f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8805" - ], - "x-ms-correlation-request-id": [ - "66b92bcb-ee40-49be-97f8-5cc4b86185a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220835Z:66b92bcb-ee40-49be-97f8-5cc4b86185a2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "750b44a1-e1de-461e-87a9-0f6e1ba30804" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8804" - ], - "x-ms-correlation-request-id": [ - "9534ca51-bf08-40a1-8aa0-b2eaaa998d56" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220835Z:9534ca51-bf08-40a1-8aa0-b2eaaa998d56" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b857cd72-f9b1-41ae-994a-a66b267f7fcc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8803" - ], - "x-ms-correlation-request-id": [ - "2a086e8b-af72-4bfc-ae0c-c43b33ea1171" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220835Z:2a086e8b-af72-4bfc-ae0c-c43b33ea1171" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3127d80f-5d2f-46f2-b4e1-763dc811a01d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8802" - ], - "x-ms-correlation-request-id": [ - "5f5a051b-3de4-42c9-a00e-7e30c64a132a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220835Z:5f5a051b-3de4-42c9-a00e-7e30c64a132a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1482097a-0005-4b4c-a76f-8263f42ba520" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8801" - ], - "x-ms-correlation-request-id": [ - "cda26e28-4c62-42ba-a9ba-b4f35f8100d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220836Z:cda26e28-4c62-42ba-a9ba-b4f35f8100d0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89f7b2c3-2f3b-4d0c-8560-552c9929730e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8800" - ], - "x-ms-correlation-request-id": [ - "b4e010ae-d49c-4168-be10-aa007ceb848d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220836Z:b4e010ae-d49c-4168-be10-aa007ceb848d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94fbd928-0d06-4767-9f85-16c82f916081" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8799" - ], - "x-ms-correlation-request-id": [ - "798344f2-8525-4c21-ac68-718059c10d2d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220836Z:798344f2-8525-4c21-ac68-718059c10d2d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33411275-0540-4ddd-b83f-41e2e63f6930" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8798" - ], - "x-ms-correlation-request-id": [ - "9ce2aa08-1d03-40e4-a64d-1db7899f48be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220836Z:9ce2aa08-1d03-40e4-a64d-1db7899f48be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d071075d-a9c5-489d-975a-262ad40c598c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8797" - ], - "x-ms-correlation-request-id": [ - "ab9f96c5-3fc0-404b-812b-0f39952d5e01" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220836Z:ab9f96c5-3fc0-404b-812b-0f39952d5e01" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b49922ac-177b-48a6-a86a-1730add24633" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8796" - ], - "x-ms-correlation-request-id": [ - "2e7d5ce2-610f-408d-b284-80b1bf09e07e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220836Z:2e7d5ce2-610f-408d-b284-80b1bf09e07e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc8196c1-e8fa-4e82-ae88-85feaa403718" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8795" - ], - "x-ms-correlation-request-id": [ - "6b99dfe9-13ea-4b9c-a71c-5f2201ac1978" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220836Z:6b99dfe9-13ea-4b9c-a71c-5f2201ac1978" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "456407ae-aeef-4239-ac29-fddd07e9d541" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8794" - ], - "x-ms-correlation-request-id": [ - "2f84f219-5e69-48a2-9e13-ea96fa42c85d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220837Z:2f84f219-5e69-48a2-9e13-ea96fa42c85d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b46f6558-bb6a-457a-b64c-bef8de527afd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8793" - ], - "x-ms-correlation-request-id": [ - "03706033-c2bf-4928-a173-34cc4f8d7983" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220837Z:03706033-c2bf-4928-a173-34cc4f8d7983" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8eb3543f-5b5e-46c5-a923-8f2d442e4d03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8792" - ], - "x-ms-correlation-request-id": [ - "b962fae9-7854-4576-98ac-bb3b95c4b631" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220837Z:b962fae9-7854-4576-98ac-bb3b95c4b631" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb1cdac9-5290-4e4a-9ead-fa1e922a5242" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8791" - ], - "x-ms-correlation-request-id": [ - "64cb9c38-9a0e-4ff7-b8a4-5bae441b1209" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220837Z:64cb9c38-9a0e-4ff7-b8a4-5bae441b1209" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab167461-2bf9-4297-bc44-611c7682f127" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8790" - ], - "x-ms-correlation-request-id": [ - "49e26bb5-2ea8-4d3d-b08a-262b57450867" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220837Z:49e26bb5-2ea8-4d3d-b08a-262b57450867" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33c664ad-976f-4c83-941c-35ab1d3175ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8789" - ], - "x-ms-correlation-request-id": [ - "8dc206cb-fa83-4d22-9b30-66d2b29cc8b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220838Z:8dc206cb-fa83-4d22-9b30-66d2b29cc8b0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e244a885-15ab-460f-8b4d-6a3514257af2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8788" - ], - "x-ms-correlation-request-id": [ - "0c706787-590e-464a-806e-200c3de28864" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220838Z:0c706787-590e-464a-806e-200c3de28864" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de6fea9b-7ac0-440d-b3a3-b98a08bdd20e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8787" - ], - "x-ms-correlation-request-id": [ - "eac099c9-1a38-4549-9777-0637d341fff0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220838Z:eac099c9-1a38-4549-9777-0637d341fff0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "052efebc-3f7b-4a2b-b27f-a54fa446e999" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8786" - ], - "x-ms-correlation-request-id": [ - "1c5387ef-e937-4eba-a00e-627a489c24dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220838Z:1c5387ef-e937-4eba-a00e-627a489c24dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18cf5d18-1f43-4d88-a7ee-2de69827842f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8785" - ], - "x-ms-correlation-request-id": [ - "45510d7b-8f96-403a-b804-77aa2e6842fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220838Z:45510d7b-8f96-403a-b804-77aa2e6842fc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c15e52c-64fa-4fc2-a65a-28766479870a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8784" - ], - "x-ms-correlation-request-id": [ - "1f7a2189-d6df-4da9-8afb-9f71232e3993" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220838Z:1f7a2189-d6df-4da9-8afb-9f71232e3993" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0377267b-8f06-421c-b3d0-0d6d2ee6a59b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8783" - ], - "x-ms-correlation-request-id": [ - "18498b1f-4ef4-4c6b-addb-a294e09ee03f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220839Z:18498b1f-4ef4-4c6b-addb-a294e09ee03f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "074205b1-4fee-4b44-a173-fd176c75e2b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8782" - ], - "x-ms-correlation-request-id": [ - "5720027b-5e7b-49b6-a6b3-d084cc4a5795" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220839Z:5720027b-5e7b-49b6-a6b3-d084cc4a5795" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1dfae20c-376b-4dbd-94d5-8574a74badfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8781" - ], - "x-ms-correlation-request-id": [ - "f6af782a-ee43-486e-8df9-744cb247bce0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220839Z:f6af782a-ee43-486e-8df9-744cb247bce0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7282215e-cb1c-42f4-baa9-b836080c839d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8780" - ], - "x-ms-correlation-request-id": [ - "3e2b793d-cfcc-4e5a-ac50-efe0a85f4352" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220839Z:3e2b793d-cfcc-4e5a-ac50-efe0a85f4352" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ef81418-46b0-498f-a41c-04c8ee111f92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8779" - ], - "x-ms-correlation-request-id": [ - "190807d7-8f30-45f4-b6c2-67b52585f267" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220839Z:190807d7-8f30-45f4-b6c2-67b52585f267" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1db201d3-c46b-44a9-9f8a-dce56a0acb23" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8778" - ], - "x-ms-correlation-request-id": [ - "d93f4a96-4e5a-4049-ae31-436b42aa304a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220839Z:d93f4a96-4e5a-4049-ae31-436b42aa304a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f024309a-7004-4f05-ae55-afd4bfc27d1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8777" - ], - "x-ms-correlation-request-id": [ - "cab02d33-97a9-44a3-a81d-5a9be8ac6c3a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220840Z:cab02d33-97a9-44a3-a81d-5a9be8ac6c3a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7fc3f6a-fe73-45a3-a14c-b50e9e4bc40e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8776" - ], - "x-ms-correlation-request-id": [ - "2410080b-65ec-4671-a6a8-80d2b3e9dde0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220840Z:2410080b-65ec-4671-a6a8-80d2b3e9dde0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49cf5996-7aa3-4e3c-8286-ee0c2a2cbb0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8775" - ], - "x-ms-correlation-request-id": [ - "49c5e337-f70a-4645-83f2-bd3f31264072" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220840Z:49c5e337-f70a-4645-83f2-bd3f31264072" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29ea738d-d5ac-4146-a017-aa5f1ed91858" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8774" - ], - "x-ms-correlation-request-id": [ - "86f8c155-cc38-496c-9e70-98a588110784" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220840Z:86f8c155-cc38-496c-9e70-98a588110784" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e31a8c7-a2ed-4567-b0d2-9caf8d24c6f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8773" - ], - "x-ms-correlation-request-id": [ - "2c021cfa-27ad-474b-b400-1167af93d48c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220840Z:2c021cfa-27ad-474b-b400-1167af93d48c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d31fb0a-9357-4f09-b62d-bca524c8cf0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8772" - ], - "x-ms-correlation-request-id": [ - "6d380a33-daa2-46e6-8bee-4f633568dd16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220841Z:6d380a33-daa2-46e6-8bee-4f633568dd16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4b4fe88-4980-4290-a675-2cb1a636be36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8771" - ], - "x-ms-correlation-request-id": [ - "3dca9f19-c027-44f0-bf74-15f01c094a61" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220841Z:3dca9f19-c027-44f0-bf74-15f01c094a61" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0280512c-2417-4246-8306-25600d461967" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8770" - ], - "x-ms-correlation-request-id": [ - "668e4d1a-71be-4390-8ec8-d8314d087495" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220841Z:668e4d1a-71be-4390-8ec8-d8314d087495" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24f7a62b-8a67-4c26-9032-1e336e80fa90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8769" - ], - "x-ms-correlation-request-id": [ - "38c17215-9069-4d96-92a2-15d3f2886053" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220841Z:38c17215-9069-4d96-92a2-15d3f2886053" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "083ffc82-395e-4f63-88c2-85b145bbdcae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8768" - ], - "x-ms-correlation-request-id": [ - "2aeed328-a7f0-49de-890f-d8c4e5898097" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220841Z:2aeed328-a7f0-49de-890f-d8c4e5898097" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8024e029-7d38-4521-a807-9d943de3c234" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8767" - ], - "x-ms-correlation-request-id": [ - "297a811e-c86c-4e52-9c7e-20d4b117ce02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220841Z:297a811e-c86c-4e52-9c7e-20d4b117ce02" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98dfefc5-14a3-4f8f-9542-aca0ea2baa51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8766" - ], - "x-ms-correlation-request-id": [ - "b408ec19-b399-4c0d-8875-6aa4b769c217" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220842Z:b408ec19-b399-4c0d-8875-6aa4b769c217" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bd60bd8c-a1c6-4608-81ba-d2b63566265b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8765" - ], - "x-ms-correlation-request-id": [ - "2ccc7bd4-3a98-40d0-9f6a-c7624e59a068" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220842Z:2ccc7bd4-3a98-40d0-9f6a-c7624e59a068" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36829b9e-527b-4da4-a5b0-2289aa2d2d01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8764" - ], - "x-ms-correlation-request-id": [ - "844b7ef1-0152-42fa-ae55-b4a8d69a27ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220842Z:844b7ef1-0152-42fa-ae55-b4a8d69a27ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "496074de-78ae-4956-874d-aaa82ea8e18f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8763" - ], - "x-ms-correlation-request-id": [ - "6cf39262-5ccf-4152-b10a-d5e92d3f7b42" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220842Z:6cf39262-5ccf-4152-b10a-d5e92d3f7b42" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5c39cda-ed8c-4f98-a45f-eb545d159702" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8762" - ], - "x-ms-correlation-request-id": [ - "063ec887-9c76-4cec-80fb-fca959869011" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220842Z:063ec887-9c76-4cec-80fb-fca959869011" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "170aa883-277f-49ff-a2b8-1fd018247b48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8761" - ], - "x-ms-correlation-request-id": [ - "35ab2855-3d60-44fa-9586-7a7d430dacaa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220842Z:35ab2855-3d60-44fa-9586-7a7d430dacaa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d1ec894-6510-4039-8da5-8a12adf5da82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8760" - ], - "x-ms-correlation-request-id": [ - "b73bb771-8f40-4b02-88ee-2f8833216632" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220842Z:b73bb771-8f40-4b02-88ee-2f8833216632" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "298b4889-ce12-4a67-8b5d-d25af92eb614" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8759" - ], - "x-ms-correlation-request-id": [ - "681ae9b9-c946-47b9-b851-080008639020" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220843Z:681ae9b9-c946-47b9-b851-080008639020" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54d51034-9c74-4396-abfc-bfed1ccfed0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8758" - ], - "x-ms-correlation-request-id": [ - "800142b7-2cc4-42e6-b9f7-ae79553ba397" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220843Z:800142b7-2cc4-42e6-b9f7-ae79553ba397" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da80c3b5-3e3a-4f9f-8a51-56e13962969d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8757" - ], - "x-ms-correlation-request-id": [ - "51240009-25ec-49f4-b539-b00123920035" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220843Z:51240009-25ec-49f4-b539-b00123920035" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05f8244c-bb49-4d5b-89ad-4691b40720b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8756" - ], - "x-ms-correlation-request-id": [ - "ae760018-e527-4a68-827a-40ccf9143f1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220843Z:ae760018-e527-4a68-827a-40ccf9143f1b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b59141c3-b2f9-4dfa-977a-e870e35a85de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8755" - ], - "x-ms-correlation-request-id": [ - "cbbe0f5a-127f-48c4-b206-2cc8683e8d49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220843Z:cbbe0f5a-127f-48c4-b206-2cc8683e8d49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a9124fbd-0f0e-4cdc-bdb8-75fa9eb4c1a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8754" - ], - "x-ms-correlation-request-id": [ - "491fd427-3a7f-4246-bf23-f6a1d3793a9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220843Z:491fd427-3a7f-4246-bf23-f6a1d3793a9f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b293f55-751a-45fd-a4a5-a3ed84f6b74e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8753" - ], - "x-ms-correlation-request-id": [ - "c693aa92-bb9d-4c01-abd5-1c5656ffb913" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220844Z:c693aa92-bb9d-4c01-abd5-1c5656ffb913" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "962bc7c4-2b48-4b3e-b60b-55d76cfcce51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8752" - ], - "x-ms-correlation-request-id": [ - "4aaea9ad-52dc-4563-8b87-0b8cf1f9aea0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220844Z:4aaea9ad-52dc-4563-8b87-0b8cf1f9aea0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b31d9374-7b75-4815-9993-011abd8d4087" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8751" - ], - "x-ms-correlation-request-id": [ - "a2042065-7794-43bd-b7af-a4294c0de462" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220844Z:a2042065-7794-43bd-b7af-a4294c0de462" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8805343-512f-4df7-9817-2fdf184171fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8750" - ], - "x-ms-correlation-request-id": [ - "be5c7e37-6727-4d50-aff1-8bdc77a4f19b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220844Z:be5c7e37-6727-4d50-aff1-8bdc77a4f19b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd6f5118-bb12-4816-bd97-5b8ff82c5610" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8749" - ], - "x-ms-correlation-request-id": [ - "3a660cd2-2e68-4aa5-9739-942935e8555f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220844Z:3a660cd2-2e68-4aa5-9739-942935e8555f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4edd9b79-719c-42ac-998b-458ebde530dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8748" - ], - "x-ms-correlation-request-id": [ - "5472ba9e-74ce-4ccc-b793-e894dbab33f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220844Z:5472ba9e-74ce-4ccc-b793-e894dbab33f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "218a7d08-c726-46fd-ac53-74e851b60715" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8747" - ], - "x-ms-correlation-request-id": [ - "c392c256-5ae9-4b3c-9932-86d1fe903723" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220845Z:c392c256-5ae9-4b3c-9932-86d1fe903723" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2512c7e9-5374-473c-95b0-e7c7289f5447" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8746" - ], - "x-ms-correlation-request-id": [ - "04b26cc3-0e09-42ab-b51f-4c14df1a77e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220845Z:04b26cc3-0e09-42ab-b51f-4c14df1a77e5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d743209-6ab8-4675-8463-7a2995dd4a8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8745" - ], - "x-ms-correlation-request-id": [ - "a77709c9-b88d-4973-94f1-055ee3de83a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220845Z:a77709c9-b88d-4973-94f1-055ee3de83a0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bed3f5ab-5f99-4bb7-af4d-6652b7b3df2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8744" - ], - "x-ms-correlation-request-id": [ - "bc50b3a7-1220-4d1c-a7c9-98f51a270bb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220845Z:bc50b3a7-1220-4d1c-a7c9-98f51a270bb9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f3f11e0-fbea-43c8-9d2b-f73f11e7e265" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8743" - ], - "x-ms-correlation-request-id": [ - "325a59a0-1b2f-4b39-a367-7645d0c28a96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220845Z:325a59a0-1b2f-4b39-a367-7645d0c28a96" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37acef8a-bfbf-44a1-a406-cfcfb37ea794" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8742" - ], - "x-ms-correlation-request-id": [ - "fe688f33-19c8-48d4-93ba-9c8e37e5e972" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220845Z:fe688f33-19c8-48d4-93ba-9c8e37e5e972" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a49f9dc-1fdd-4ab4-99c4-abc129456e6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8741" - ], - "x-ms-correlation-request-id": [ - "2772506f-c2e8-44b5-a53c-c166a3abe8fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220845Z:2772506f-c2e8-44b5-a53c-c166a3abe8fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c6c544b-23c8-42b6-a908-1d30e1724027" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8740" - ], - "x-ms-correlation-request-id": [ - "d4a488eb-9a12-40d7-ad62-aef66c52eaf5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220846Z:d4a488eb-9a12-40d7-ad62-aef66c52eaf5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aab463fc-613a-4ebd-98dc-5d1284d53cd4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8739" - ], - "x-ms-correlation-request-id": [ - "6a6da990-6b63-4b5b-ba6c-453c4f9773ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220846Z:6a6da990-6b63-4b5b-ba6c-453c4f9773ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d855fc6b-0fde-40f5-8fec-2245a6645e26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8738" - ], - "x-ms-correlation-request-id": [ - "e0095a5e-9484-4972-909e-93a5105c42f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220846Z:e0095a5e-9484-4972-909e-93a5105c42f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f4465f4-ecc3-4990-9e94-bb30a2cdd82e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8737" - ], - "x-ms-correlation-request-id": [ - "0df62d44-b394-41ce-850a-e3c505404493" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220846Z:0df62d44-b394-41ce-850a-e3c505404493" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ec0d1b7-cce6-4144-9fa8-5736b16e82d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8736" - ], - "x-ms-correlation-request-id": [ - "acb6ee66-5cc7-4672-95bb-4bd979cf6fc8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220846Z:acb6ee66-5cc7-4672-95bb-4bd979cf6fc8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "931039ba-87d0-49bb-bb81-01fc367a598b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8735" - ], - "x-ms-correlation-request-id": [ - "8ac6ce5e-5647-4d0d-8172-a36410259d40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220847Z:8ac6ce5e-5647-4d0d-8172-a36410259d40" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf4be8ef-27a9-46e8-8b3b-bbde8b66004f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8734" - ], - "x-ms-correlation-request-id": [ - "65f53eb6-540b-4344-a0d5-5a5b4461ebd3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220847Z:65f53eb6-540b-4344-a0d5-5a5b4461ebd3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1fe1659-dedf-40b6-9504-c9ff838d639c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8733" - ], - "x-ms-correlation-request-id": [ - "d878860e-5c0c-4893-8bbc-3d07a06dfdbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220847Z:d878860e-5c0c-4893-8bbc-3d07a06dfdbf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6b1f308-4df6-4929-af1b-b3b32700995e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8732" - ], - "x-ms-correlation-request-id": [ - "52e181b2-fa74-4a95-924f-7bc152acc38a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220847Z:52e181b2-fa74-4a95-924f-7bc152acc38a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf55a052-f002-4444-9ed9-2c90a36e1b35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8731" - ], - "x-ms-correlation-request-id": [ - "ac177159-6538-427c-81e3-ef5138c80cb7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220847Z:ac177159-6538-427c-81e3-ef5138c80cb7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "401907f9-eb72-4b28-836b-22032708dc44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8730" - ], - "x-ms-correlation-request-id": [ - "ecb86eff-f791-4c68-a941-2654d5b6f633" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220848Z:ecb86eff-f791-4c68-a941-2654d5b6f633" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b8582a7-76d4-4fc1-bd95-b5993f71a94e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8729" - ], - "x-ms-correlation-request-id": [ - "b53e9501-6a94-4f9b-bdb8-7cfe23a7d4d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220848Z:b53e9501-6a94-4f9b-bdb8-7cfe23a7d4d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "beec6b68-7229-4b38-a1b8-3f04c8d4db28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8728" - ], - "x-ms-correlation-request-id": [ - "2cb1bdd5-8170-41a7-9a1a-37291953d545" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220848Z:2cb1bdd5-8170-41a7-9a1a-37291953d545" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e567200c-0266-4297-a8a1-76bba818a7d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8727" - ], - "x-ms-correlation-request-id": [ - "1ad437da-a1bf-4f33-9e4a-1eee45322837" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220848Z:1ad437da-a1bf-4f33-9e4a-1eee45322837" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "34cf0080-49a4-44ef-8789-272ac6fcc8da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8726" - ], - "x-ms-correlation-request-id": [ - "d956fa86-b781-4242-a75c-457450ed084d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220848Z:d956fa86-b781-4242-a75c-457450ed084d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e364348-a1c0-4cd1-89fb-a772714749fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8725" - ], - "x-ms-correlation-request-id": [ - "5b3a8177-b139-4c6a-8325-dd5b43745573" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220848Z:5b3a8177-b139-4c6a-8325-dd5b43745573" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "021babf2-1d5c-450f-84fc-6120a8169b3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8724" - ], - "x-ms-correlation-request-id": [ - "e26e0f29-40e0-4af7-a23d-4a50f1326ac1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220849Z:e26e0f29-40e0-4af7-a23d-4a50f1326ac1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4c239b4-641a-4467-941f-0700925271a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8723" - ], - "x-ms-correlation-request-id": [ - "f76844a2-f9b7-40c4-bd32-c571274c0561" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220849Z:f76844a2-f9b7-40c4-bd32-c571274c0561" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94b53252-d2a0-4f57-b248-2285bee325ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8722" - ], - "x-ms-correlation-request-id": [ - "0ad6e6c4-5a84-4c27-91b0-4aa1f9faff64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220849Z:0ad6e6c4-5a84-4c27-91b0-4aa1f9faff64" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f04305c-81df-4f22-b1a0-b524ddbad08d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8721" - ], - "x-ms-correlation-request-id": [ - "e9161296-cc72-4338-9c11-cb586e965aaa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220849Z:e9161296-cc72-4338-9c11-cb586e965aaa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8ff1a38-571d-4992-b686-4236113eff82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8720" - ], - "x-ms-correlation-request-id": [ - "59b1d6ec-c499-4549-916b-85d3916372d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220849Z:59b1d6ec-c499-4549-916b-85d3916372d7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1be42f48-ee16-45d9-9b3b-57dcad95912f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8719" - ], - "x-ms-correlation-request-id": [ - "d7848b12-6c22-43b2-bbfa-b17130d86164" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220849Z:d7848b12-6c22-43b2-bbfa-b17130d86164" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0fc9f4b1-d017-4ada-8fe7-86c2114b94d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8718" - ], - "x-ms-correlation-request-id": [ - "0dbce1ee-69db-480a-8734-f7d320b62dc6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220850Z:0dbce1ee-69db-480a-8734-f7d320b62dc6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41745d96-76cb-4efe-b1c8-bde4d1dc2168" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8717" - ], - "x-ms-correlation-request-id": [ - "d9b88597-db3f-4eb7-b2c4-a2585bf01f65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220850Z:d9b88597-db3f-4eb7-b2c4-a2585bf01f65" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53ed788a-31fc-4e29-8c86-1dd042ca0fe6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8716" - ], - "x-ms-correlation-request-id": [ - "a7f74e97-5c2b-4cb2-a663-ade027b0142c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220850Z:a7f74e97-5c2b-4cb2-a663-ade027b0142c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6330e56-3ff0-4768-b175-5374bd5d30c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8715" - ], - "x-ms-correlation-request-id": [ - "5847c3ce-3ca2-4b51-8596-da133cf72fb0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220850Z:5847c3ce-3ca2-4b51-8596-da133cf72fb0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "607f282e-7963-4c1d-8b7a-298048ff553d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8714" - ], - "x-ms-correlation-request-id": [ - "a063e232-51ba-4794-a999-737d15713470" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220850Z:a063e232-51ba-4794-a999-737d15713470" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c9bde86-2473-4963-9278-06096833df9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8713" - ], - "x-ms-correlation-request-id": [ - "95fa0040-01a6-485d-ab12-4a9b9a84be4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220850Z:95fa0040-01a6-485d-ab12-4a9b9a84be4b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d63b1a92-a7f7-4c2e-a2cc-f9ef895a4c8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8712" - ], - "x-ms-correlation-request-id": [ - "81951324-3275-4f9a-8c6f-885597dd0f16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220850Z:81951324-3275-4f9a-8c6f-885597dd0f16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85513a32-4acf-4d92-878e-543b73da5f01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8711" - ], - "x-ms-correlation-request-id": [ - "1381f514-2efd-4e29-bd12-2270919c626f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220851Z:1381f514-2efd-4e29-bd12-2270919c626f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33b0fb43-3c1d-4289-abcd-e9a0fccaaae5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8710" - ], - "x-ms-correlation-request-id": [ - "20bdbc65-abe5-47e2-8973-6bb6b6b3ba02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220851Z:20bdbc65-abe5-47e2-8973-6bb6b6b3ba02" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "362a3226-ae86-43a3-b270-04fc20a8717a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8709" - ], - "x-ms-correlation-request-id": [ - "12e585f9-711a-40d4-9797-474df23205fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220851Z:12e585f9-711a-40d4-9797-474df23205fb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3db53b0b-9439-412a-ae67-c3d5802a8e36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8708" - ], - "x-ms-correlation-request-id": [ - "9d3ec7bf-d9fe-4e99-8d1c-762c2907ffc7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220851Z:9d3ec7bf-d9fe-4e99-8d1c-762c2907ffc7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9acae95d-8445-4064-ba6b-721fec1313e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8707" - ], - "x-ms-correlation-request-id": [ - "40213e30-ed71-4174-b1b3-d41e001f2c43" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220851Z:40213e30-ed71-4174-b1b3-d41e001f2c43" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "906104b2-c912-4358-b6a0-95167b2ea8f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8706" - ], - "x-ms-correlation-request-id": [ - "73fb1da6-66e4-4445-8457-cceb3d6220e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220851Z:73fb1da6-66e4-4445-8457-cceb3d6220e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0dfb116-dc4f-4e3f-a107-93abc7e9a4ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8705" - ], - "x-ms-correlation-request-id": [ - "54f5a428-e39a-4857-ae77-fa9bad49ce75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220852Z:54f5a428-e39a-4857-ae77-fa9bad49ce75" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5af4e70-6085-47b1-a7fe-c76bd70d7935" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8704" - ], - "x-ms-correlation-request-id": [ - "ffa555fd-382e-42b7-9689-b249a1dda4a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220852Z:ffa555fd-382e-42b7-9689-b249a1dda4a9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "396c2082-d5ae-4d3b-aa17-8f76382f5c21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8703" - ], - "x-ms-correlation-request-id": [ - "732c4202-cb2b-4564-8c8e-d37485b98ba6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220852Z:732c4202-cb2b-4564-8c8e-d37485b98ba6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74458a11-dc8f-4040-95f8-030a649b5418" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8702" - ], - "x-ms-correlation-request-id": [ - "72f57c78-e053-4dcc-963b-7e909d26530b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220852Z:72f57c78-e053-4dcc-963b-7e909d26530b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b08b7523-0513-4341-a6ff-0a8049c053dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8701" - ], - "x-ms-correlation-request-id": [ - "b9df9aa8-36db-438a-9edf-40290c882b09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220852Z:b9df9aa8-36db-438a-9edf-40290c882b09" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94bf7020-021c-4654-bbfb-8f1919e4ad51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8700" - ], - "x-ms-correlation-request-id": [ - "8bebb23d-3091-4009-909b-007ee3918551" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220853Z:8bebb23d-3091-4009-909b-007ee3918551" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b74aabd-d2e5-4780-9a87-f6424db0068d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8699" - ], - "x-ms-correlation-request-id": [ - "11669e6d-a102-4602-9370-43f64e9b3a04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220853Z:11669e6d-a102-4602-9370-43f64e9b3a04" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "905b8357-cdb5-4978-adcc-95b2664d3fee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8698" - ], - "x-ms-correlation-request-id": [ - "9250ed89-3c8e-4042-9d6d-f700f753a28a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220853Z:9250ed89-3c8e-4042-9d6d-f700f753a28a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "954101de-1107-4ead-9422-5c60597335f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8697" - ], - "x-ms-correlation-request-id": [ - "86dc6e11-aa05-4815-af6a-8dc7b3b0d918" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220853Z:86dc6e11-aa05-4815-af6a-8dc7b3b0d918" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "742f554c-2149-4df6-a4b5-7570725cad05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8696" - ], - "x-ms-correlation-request-id": [ - "7fc9201e-8502-4e2c-8b71-28fce6f03ead" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220853Z:7fc9201e-8502-4e2c-8b71-28fce6f03ead" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d001879a-84cc-4b73-9e80-ebde56aebbc8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8695" - ], - "x-ms-correlation-request-id": [ - "6ad95ec3-bad1-4d86-84d1-4bf04d0880cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220853Z:6ad95ec3-bad1-4d86-84d1-4bf04d0880cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96e6d6c7-97b7-454e-9ed0-d87756f043f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8694" - ], - "x-ms-correlation-request-id": [ - "5e37a73b-4cf3-4796-a3e9-1eccd64395a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220853Z:5e37a73b-4cf3-4796-a3e9-1eccd64395a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3aa1511b-03e8-46fe-a467-d87c53376fcf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8693" - ], - "x-ms-correlation-request-id": [ - "203b6e5d-936c-4eda-8bca-d47c10525b2d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220854Z:203b6e5d-936c-4eda-8bca-d47c10525b2d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce5e4bba-ac48-4d27-a1f7-fec58f86387f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8692" - ], - "x-ms-correlation-request-id": [ - "ab68ca89-03b8-45d9-9d7e-3e4e8a332ad2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220854Z:ab68ca89-03b8-45d9-9d7e-3e4e8a332ad2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8ae7abc-1a7e-4d50-8559-cee41efac77d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8691" - ], - "x-ms-correlation-request-id": [ - "a0d76129-9244-4722-a88a-ce5ecdb41550" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220854Z:a0d76129-9244-4722-a88a-ce5ecdb41550" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d37e57a1-9c6f-4f8c-9543-77f701826375" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8690" - ], - "x-ms-correlation-request-id": [ - "ef67a3d9-c2aa-4750-9eb9-4ce31a6cba71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220854Z:ef67a3d9-c2aa-4750-9eb9-4ce31a6cba71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d8c27c4-023c-4549-ad0e-c11c79e43085" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8689" - ], - "x-ms-correlation-request-id": [ - "194ada09-b4b2-4a90-8795-f737bb7c62f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220854Z:194ada09-b4b2-4a90-8795-f737bb7c62f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1d19c48-924e-4dc3-8717-a3ec34ff8a0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8688" - ], - "x-ms-correlation-request-id": [ - "4a494d49-b0d3-45e1-bed3-de11b93c2ace" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220855Z:4a494d49-b0d3-45e1-bed3-de11b93c2ace" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4de18cf3-3fff-425e-9ea8-fc06eb58c75d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8687" - ], - "x-ms-correlation-request-id": [ - "123fbe8d-cf0b-4c37-bb05-a401a444ba90" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220855Z:123fbe8d-cf0b-4c37-bb05-a401a444ba90" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02be8f73-08c1-44b2-ba59-3929e59dbdc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8686" - ], - "x-ms-correlation-request-id": [ - "1d4023eb-e396-40b3-b1eb-1e81bc8ecfed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220855Z:1d4023eb-e396-40b3-b1eb-1e81bc8ecfed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b2cbe12-ae89-471b-9e48-105fa101fbcf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8685" - ], - "x-ms-correlation-request-id": [ - "ae58cbea-d73f-42c6-8701-2f4d91f6b141" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220855Z:ae58cbea-d73f-42c6-8701-2f4d91f6b141" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ea26d0e-4751-4858-b8e9-67a381b896a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8684" - ], - "x-ms-correlation-request-id": [ - "e4674df8-4cc1-484e-b07b-81f060a9e5c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220855Z:e4674df8-4cc1-484e-b07b-81f060a9e5c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df566e18-9468-4bb4-804d-6723b2e9b5f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8683" - ], - "x-ms-correlation-request-id": [ - "bf33230e-7106-4511-bcd8-916f1e262167" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220855Z:bf33230e-7106-4511-bcd8-916f1e262167" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "accc7ec8-6955-433e-ba82-fe5c838c15f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8682" - ], - "x-ms-correlation-request-id": [ - "7a70b00c-5f63-42eb-85ce-aab74d0f8dd3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220856Z:7a70b00c-5f63-42eb-85ce-aab74d0f8dd3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da88d6cd-35cb-4d2f-bb97-3f77fb747f22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8681" - ], - "x-ms-correlation-request-id": [ - "5d7c95f4-88b5-424b-8299-0f78a768a8bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220856Z:5d7c95f4-88b5-424b-8299-0f78a768a8bd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49bee94c-e358-4f6b-b25a-30cff04c4404" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8680" - ], - "x-ms-correlation-request-id": [ - "31e5591b-aed2-4d9e-8a94-aa23398ac308" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220856Z:31e5591b-aed2-4d9e-8a94-aa23398ac308" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fff1f7a7-f76e-4b2f-b73d-2b10a868db67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8679" - ], - "x-ms-correlation-request-id": [ - "566859cd-c98b-4f64-8596-ebeadd133393" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220856Z:566859cd-c98b-4f64-8596-ebeadd133393" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c12a8cfa-c1e4-472b-ab20-49c319b23795" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8678" - ], - "x-ms-correlation-request-id": [ - "bf7a7c3a-78e2-4ee5-a979-5710f1ce4cf1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220856Z:bf7a7c3a-78e2-4ee5-a979-5710f1ce4cf1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc02ff93-0a77-499a-b695-7ed9e7428c47" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8677" - ], - "x-ms-correlation-request-id": [ - "2c48de39-5ede-415a-bc9b-370e8e416fb4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220856Z:2c48de39-5ede-415a-bc9b-370e8e416fb4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f00608fc-290f-4b04-96a5-860ed048e66d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8676" - ], - "x-ms-correlation-request-id": [ - "b036efaa-b824-4099-bdee-ad0aa53c7345" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220856Z:b036efaa-b824-4099-bdee-ad0aa53c7345" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11b882a1-82b2-45b4-bb06-cbf5304108f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8675" - ], - "x-ms-correlation-request-id": [ - "39cce552-cba0-421c-9066-92132ae54f0a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220857Z:39cce552-cba0-421c-9066-92132ae54f0a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1018857a-380c-469a-9759-33a48006376a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8674" - ], - "x-ms-correlation-request-id": [ - "4bb6fb15-f2cc-4a98-844d-201dec6281b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220857Z:4bb6fb15-f2cc-4a98-844d-201dec6281b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46a54fb4-70e7-40d2-ad27-c018d67c22c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8673" - ], - "x-ms-correlation-request-id": [ - "29df6eb8-29a4-4ba3-afb6-2af7eb32e41a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220857Z:29df6eb8-29a4-4ba3-afb6-2af7eb32e41a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "664d1ac3-a4c7-4b70-b649-3e6f8b1c3d19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8672" - ], - "x-ms-correlation-request-id": [ - "5f12f37a-a44a-4307-99d0-4383b3d075ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220857Z:5f12f37a-a44a-4307-99d0-4383b3d075ce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70943972-1776-4cea-a51a-d68888be7653" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8671" - ], - "x-ms-correlation-request-id": [ - "27ac9447-3ad1-4bb2-b3ec-04a3788ef14c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220857Z:27ac9447-3ad1-4bb2-b3ec-04a3788ef14c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca20976d-76d8-48f2-ad51-45366f349a89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8670" - ], - "x-ms-correlation-request-id": [ - "9a2d92db-8c73-4f5c-8e5d-68342ca295c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220857Z:9a2d92db-8c73-4f5c-8e5d-68342ca295c0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e817c7e-eb02-4709-9f05-50f6f484a484" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8669" - ], - "x-ms-correlation-request-id": [ - "256b6615-7ec6-4f54-ac62-6902db163351" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220858Z:256b6615-7ec6-4f54-ac62-6902db163351" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe6daada-73d3-4dde-889c-e7ada6ff06f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8668" - ], - "x-ms-correlation-request-id": [ - "bd256e82-fa31-4dde-956d-096182e3c141" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220858Z:bd256e82-fa31-4dde-956d-096182e3c141" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "443b362e-d8a9-4525-9bc6-35ccd247a090" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8667" - ], - "x-ms-correlation-request-id": [ - "31510192-7a7c-4fb8-b4d5-656f1c08e81e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220858Z:31510192-7a7c-4fb8-b4d5-656f1c08e81e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43ece8e7-a846-4375-a093-57660d9c6983" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8666" - ], - "x-ms-correlation-request-id": [ - "1898d44a-1ef3-46db-ad94-02df5807f5be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220858Z:1898d44a-1ef3-46db-ad94-02df5807f5be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f47d991-abc6-476d-885f-e1be39aee623" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8665" - ], - "x-ms-correlation-request-id": [ - "ff0dadb2-ffb6-42e0-9640-baa82126309c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220858Z:ff0dadb2-ffb6-42e0-9640-baa82126309c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0dd4541e-7386-405b-8939-87ff8748469d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8664" - ], - "x-ms-correlation-request-id": [ - "c5e7761b-ce72-40a2-8784-3e3ff79a2740" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220859Z:c5e7761b-ce72-40a2-8784-3e3ff79a2740" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a19cfd8-703e-4711-9500-b1415727d20a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8663" - ], - "x-ms-correlation-request-id": [ - "c605599d-33f5-4b0b-9077-dbe427780477" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220859Z:c605599d-33f5-4b0b-9077-dbe427780477" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5feba631-60b0-4adb-9c34-4471ad95593a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8662" - ], - "x-ms-correlation-request-id": [ - "025cb845-4eb1-49aa-b40b-85dda00a7ecf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220859Z:025cb845-4eb1-49aa-b40b-85dda00a7ecf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f02499b6-74e2-4264-9f4a-0a3134958251" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8661" - ], - "x-ms-correlation-request-id": [ - "af315078-bae6-41bc-a07b-5bb1ef3a82c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220859Z:af315078-bae6-41bc-a07b-5bb1ef3a82c4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1bc24336-b061-453f-8503-12e2eef96e15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8660" - ], - "x-ms-correlation-request-id": [ - "343ef715-80a5-47fb-8fc4-80eea259b0da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220859Z:343ef715-80a5-47fb-8fc4-80eea259b0da" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77c38578-4925-4c9e-98c3-de5517d6e17c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8659" - ], - "x-ms-correlation-request-id": [ - "3202fc4c-1ce7-45f0-99bb-451d5762208a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220900Z:3202fc4c-1ce7-45f0-99bb-451d5762208a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d25d23ce-1cf0-4c82-92e7-38a08a976bad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8658" - ], - "x-ms-correlation-request-id": [ - "0edd4384-b7fa-4e42-afd5-8d80bf5c12c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220900Z:0edd4384-b7fa-4e42-afd5-8d80bf5c12c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2054fa46-ffba-4eaa-baa4-86d7ba635d10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8657" - ], - "x-ms-correlation-request-id": [ - "02d6349d-c92f-4af3-9945-20d496823f74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220900Z:02d6349d-c92f-4af3-9945-20d496823f74" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be177aec-82f8-4d46-b699-2a8e8427ba97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8656" - ], - "x-ms-correlation-request-id": [ - "e38961a1-550e-4771-b3c3-0800e575acff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220900Z:e38961a1-550e-4771-b3c3-0800e575acff" - ], - "Date": [ - "Tue, 29 Aug 2017 22:08:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6dd7a647-5312-4309-8523-a75967da6955" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8655" - ], - "x-ms-correlation-request-id": [ - "633037de-abd4-4d29-a7ec-879051515478" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220900Z:633037de-abd4-4d29-a7ec-879051515478" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81b5832e-8f5d-48a3-a2aa-42a6117b2bb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8654" - ], - "x-ms-correlation-request-id": [ - "bdf191bd-158f-4937-82a1-c8359d50b06f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220900Z:bdf191bd-158f-4937-82a1-c8359d50b06f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57e44aad-e820-43d9-97bd-5873caac66d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8653" - ], - "x-ms-correlation-request-id": [ - "84b55b4c-7593-43cf-8093-e5a58468a659" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220901Z:84b55b4c-7593-43cf-8093-e5a58468a659" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "745b43c7-6e44-4d80-97e8-5837b21fc74a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8652" - ], - "x-ms-correlation-request-id": [ - "cd88901a-d262-4252-aef8-04ba8015d207" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220901Z:cd88901a-d262-4252-aef8-04ba8015d207" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "50163811-720a-4f22-b3f7-47f5f8241661" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8651" - ], - "x-ms-correlation-request-id": [ - "54bbe855-b819-4aff-baa8-9041e7dc386a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220901Z:54bbe855-b819-4aff-baa8-9041e7dc386a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24f65bfc-c400-428e-bf63-9439821aca8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8650" - ], - "x-ms-correlation-request-id": [ - "7e67258f-3273-4c52-95db-6d1a52fa06b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220901Z:7e67258f-3273-4c52-95db-6d1a52fa06b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a98ddab-ea5d-42f1-8418-bfea675fa8d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8649" - ], - "x-ms-correlation-request-id": [ - "8dfb2d87-31e6-42be-bb92-a0d5e4db26ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220901Z:8dfb2d87-31e6-42be-bb92-a0d5e4db26ba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "660ba3fa-458f-4413-919c-ba1b7a91cb0a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8648" - ], - "x-ms-correlation-request-id": [ - "6784cdf1-420e-431c-b01f-ce3f37846ca8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220901Z:6784cdf1-420e-431c-b01f-ce3f37846ca8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "55c9f3e5-bdc4-4227-aa54-36b6c7d9a2dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8647" - ], - "x-ms-correlation-request-id": [ - "11bd6b20-0738-4c11-927e-82b530ca18c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220901Z:11bd6b20-0738-4c11-927e-82b530ca18c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95e2ed33-e03f-48d6-9477-d27b6b2ea7a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8646" - ], - "x-ms-correlation-request-id": [ - "82de8aeb-b4d9-47d4-9d0f-8d57b947548f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220902Z:82de8aeb-b4d9-47d4-9d0f-8d57b947548f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "887aeb90-f60e-44b1-a860-8addeda25158" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8645" - ], - "x-ms-correlation-request-id": [ - "758b46c3-fdd8-452b-8f00-d607fabdb590" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220902Z:758b46c3-fdd8-452b-8f00-d607fabdb590" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "251c1674-5c22-4387-bb6b-5aa2bddcb54b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8644" - ], - "x-ms-correlation-request-id": [ - "adb21018-f826-4921-b783-f3afbe86e57e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220902Z:adb21018-f826-4921-b783-f3afbe86e57e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c5b14f7-a995-44b6-bd4f-854696278c91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8643" - ], - "x-ms-correlation-request-id": [ - "8753cf31-cf12-4867-8ff1-b038619acd38" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220902Z:8753cf31-cf12-4867-8ff1-b038619acd38" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f159fc7-2299-4124-9782-7c8e1f2e9137" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8642" - ], - "x-ms-correlation-request-id": [ - "b30e65ef-caaf-4248-b112-055596b1d7cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220902Z:b30e65ef-caaf-4248-b112-055596b1d7cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59340ca9-1902-4a48-9435-64a14c5e5f4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8641" - ], - "x-ms-correlation-request-id": [ - "af55be96-68f5-4644-b8cc-b4692797f412" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220902Z:af55be96-68f5-4644-b8cc-b4692797f412" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87d8eb6e-df6b-4bf3-b5b2-7dbe5f32b215" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8640" - ], - "x-ms-correlation-request-id": [ - "9935bfea-d1ef-4261-a469-8355ad8901fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220903Z:9935bfea-d1ef-4261-a469-8355ad8901fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9fde880b-8562-47fa-a472-ab8df6cd3245" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8639" - ], - "x-ms-correlation-request-id": [ - "179177ff-8822-4e1c-be6a-54a932bc2e6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220903Z:179177ff-8822-4e1c-be6a-54a932bc2e6f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0495f0bb-589c-4069-ad93-3980be0994d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8638" - ], - "x-ms-correlation-request-id": [ - "5c9ff850-adf3-43a9-a87e-a79d2ad9e199" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220903Z:5c9ff850-adf3-43a9-a87e-a79d2ad9e199" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "434e79c7-e35b-4474-a8f9-fcbc86f01e26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8637" - ], - "x-ms-correlation-request-id": [ - "bcd128d9-4663-49e7-a0c0-359bfaa0f7e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220903Z:bcd128d9-4663-49e7-a0c0-359bfaa0f7e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a85beffb-c89e-4116-8761-fb200a965a65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8636" - ], - "x-ms-correlation-request-id": [ - "c58ff9f6-9492-450c-af03-716c3658f7fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220903Z:c58ff9f6-9492-450c-af03-716c3658f7fa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "377760ed-a1b4-4f09-a6db-0af063e33ff4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8635" - ], - "x-ms-correlation-request-id": [ - "25a582db-237c-4f4f-a71e-1b602a6a9b14" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220903Z:25a582db-237c-4f4f-a71e-1b602a6a9b14" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a040607-7976-413f-97c4-84ef5c95d88f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8634" - ], - "x-ms-correlation-request-id": [ - "2e11b8b9-7fdd-4714-9043-d9f52e89bf55" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220904Z:2e11b8b9-7fdd-4714-9043-d9f52e89bf55" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "750e8b09-4de2-4531-b2be-0d1548df0e43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8633" - ], - "x-ms-correlation-request-id": [ - "97fa0e78-45c6-443e-824a-a0cd5b47df03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220904Z:97fa0e78-45c6-443e-824a-a0cd5b47df03" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f731c94d-4dbb-4826-82ab-eab79e27dbca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8632" - ], - "x-ms-correlation-request-id": [ - "7ab2ce20-2ada-41c0-a6d9-86eb8209f343" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220904Z:7ab2ce20-2ada-41c0-a6d9-86eb8209f343" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c80a9d5c-7d87-456a-babb-76cd90e64541" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8631" - ], - "x-ms-correlation-request-id": [ - "795ff02a-4e20-460b-ac06-8dbb371658a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220904Z:795ff02a-4e20-460b-ac06-8dbb371658a4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9626de9-eda9-4210-ab6b-7d67930d08f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8630" - ], - "x-ms-correlation-request-id": [ - "3334e47d-b608-4954-b957-08d3c469a540" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220904Z:3334e47d-b608-4954-b957-08d3c469a540" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40f06e7d-cfe9-4524-8255-e806dd12275f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8629" - ], - "x-ms-correlation-request-id": [ - "50f25097-597e-46b2-92c2-b75edd134182" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220904Z:50f25097-597e-46b2-92c2-b75edd134182" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75fa43fc-ebf3-47c2-9804-68c82cb195fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8628" - ], - "x-ms-correlation-request-id": [ - "c43c2e8b-8713-4eff-b1fb-6dc5b7b16b71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220905Z:c43c2e8b-8713-4eff-b1fb-6dc5b7b16b71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "726bdd96-5158-46db-8ac9-ad4a1abdb446" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8627" - ], - "x-ms-correlation-request-id": [ - "abb97961-8530-46b7-84a0-9bdd57f7b693" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220905Z:abb97961-8530-46b7-84a0-9bdd57f7b693" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5943bf8-74b1-428e-8e18-49516479a6bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8626" - ], - "x-ms-correlation-request-id": [ - "7462bf63-c058-4e78-b7d7-d4c64215d82a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220905Z:7462bf63-c058-4e78-b7d7-d4c64215d82a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7880f7ec-771e-4566-9aab-90fafd6864eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8625" - ], - "x-ms-correlation-request-id": [ - "551587b5-647a-488c-81b1-20870241ac87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220905Z:551587b5-647a-488c-81b1-20870241ac87" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c760894-3acf-4dbf-bf42-5f970461bbd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8624" - ], - "x-ms-correlation-request-id": [ - "5e1e028a-387c-4749-a0dc-ac793774e857" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220905Z:5e1e028a-387c-4749-a0dc-ac793774e857" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6fdf4fbb-a0e4-4676-9571-5cd0d5a141ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8623" - ], - "x-ms-correlation-request-id": [ - "a5986b68-78f8-482a-b49b-571adebfa0cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220906Z:a5986b68-78f8-482a-b49b-571adebfa0cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42b0f022-b811-42bf-b011-20c71d94e135" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8622" - ], - "x-ms-correlation-request-id": [ - "8ba20cd3-ce55-4817-bed5-89e5e7a867e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220906Z:8ba20cd3-ce55-4817-bed5-89e5e7a867e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18c0434d-00e3-4404-86b9-b27efad4ae17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8621" - ], - "x-ms-correlation-request-id": [ - "292a3436-c6bc-4af6-9ce8-e55176cb805d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220906Z:292a3436-c6bc-4af6-9ce8-e55176cb805d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "daccb753-3b4e-40fc-a5fe-98f56079ed2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8620" - ], - "x-ms-correlation-request-id": [ - "0f557bbe-4a6b-49c7-86c1-302dca6857d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220906Z:0f557bbe-4a6b-49c7-86c1-302dca6857d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e3f20a5-233b-49b2-a589-0a79b8376950" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8619" - ], - "x-ms-correlation-request-id": [ - "391550c8-c5a6-4db5-81f3-856473e07505" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220906Z:391550c8-c5a6-4db5-81f3-856473e07505" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1b9208a-205e-4ab4-a9a9-2ccc1a987e27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8618" - ], - "x-ms-correlation-request-id": [ - "fd382987-5576-46d3-9839-3cfdb27f37be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220906Z:fd382987-5576-46d3-9839-3cfdb27f37be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59b047cd-d03c-4f21-aecc-a56302be1964" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8617" - ], - "x-ms-correlation-request-id": [ - "40ad06d2-ae3d-43f4-a382-dbe4a980df32" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220906Z:40ad06d2-ae3d-43f4-a382-dbe4a980df32" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3790b0ad-0e62-43b1-be72-220186d55972" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8616" - ], - "x-ms-correlation-request-id": [ - "974079d0-ddca-4150-ada2-003bca0c84e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220907Z:974079d0-ddca-4150-ada2-003bca0c84e5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7efea26d-6f2d-4118-8b40-df5accd4cb3d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8615" - ], - "x-ms-correlation-request-id": [ - "651923cf-a0c4-45c1-a4d3-e2a1b8a2cfca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220907Z:651923cf-a0c4-45c1-a4d3-e2a1b8a2cfca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a501f1c-3592-4504-9e84-a170cef038b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8614" - ], - "x-ms-correlation-request-id": [ - "1a6fa6b2-b745-4fe7-8745-a88fe32e93c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220907Z:1a6fa6b2-b745-4fe7-8745-a88fe32e93c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb0086d2-a536-46af-ac50-d17d6be6487a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8613" - ], - "x-ms-correlation-request-id": [ - "e1cd5e5f-fac3-4eb9-b9c9-71fcfec83bfe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220907Z:e1cd5e5f-fac3-4eb9-b9c9-71fcfec83bfe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5bd3fb26-a9b6-4303-8d74-36cd730cdf7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8612" - ], - "x-ms-correlation-request-id": [ - "0aacd012-5c07-4928-be24-03ed1cf80a17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220907Z:0aacd012-5c07-4928-be24-03ed1cf80a17" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa266bf5-2ce8-4dc6-86fe-4113be0694bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8611" - ], - "x-ms-correlation-request-id": [ - "72fd594d-44ee-4747-ad8e-f925365eb829" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220907Z:72fd594d-44ee-4747-ad8e-f925365eb829" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d141310-8bdf-4f03-9e58-dd11c752b43f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8610" - ], - "x-ms-correlation-request-id": [ - "ffcff362-4ef2-40bf-9feb-fe9398d853ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220908Z:ffcff362-4ef2-40bf-9feb-fe9398d853ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45337b5a-fdbd-40c2-b778-731a02984513" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8609" - ], - "x-ms-correlation-request-id": [ - "cb52d938-f0b5-4f7f-8f92-31f9ca4433d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220908Z:cb52d938-f0b5-4f7f-8f92-31f9ca4433d0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49fefd28-f586-4760-9ca0-27016772ad2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8608" - ], - "x-ms-correlation-request-id": [ - "ae8f6732-da5a-444e-ac0f-ef29801eeba4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220908Z:ae8f6732-da5a-444e-ac0f-ef29801eeba4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6cc2e6eb-9b4e-4a4a-95d4-9fdfc9fdcfb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8607" - ], - "x-ms-correlation-request-id": [ - "77845fba-3c17-402d-b0ec-25b8c9158a71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220908Z:77845fba-3c17-402d-b0ec-25b8c9158a71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1efa3f66-d5f3-4a86-b852-986eb0960b40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8606" - ], - "x-ms-correlation-request-id": [ - "e2fdf877-6a24-4558-9628-5a57c07471c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220908Z:e2fdf877-6a24-4558-9628-5a57c07471c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "895ccfe0-c2c6-44cc-9a97-17ee828b0907" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8605" - ], - "x-ms-correlation-request-id": [ - "89b59123-64ee-4e88-8fb7-08c133031d23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220908Z:89b59123-64ee-4e88-8fb7-08c133031d23" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d01841b2-aead-47ca-a460-8572cc9d54dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8604" - ], - "x-ms-correlation-request-id": [ - "ed36a8ad-d0e7-47e9-9a2b-fea73f49dd44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220908Z:ed36a8ad-d0e7-47e9-9a2b-fea73f49dd44" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0f28bdd-7b7b-43b2-9646-d25ee01176c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8603" - ], - "x-ms-correlation-request-id": [ - "41c3a43c-977b-4b7c-ad18-17b4bbd71ea5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220909Z:41c3a43c-977b-4b7c-ad18-17b4bbd71ea5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6fa878e5-9c6d-4c62-bf1c-987996a5c6eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8602" - ], - "x-ms-correlation-request-id": [ - "52e2ce90-b9ea-49fc-89cc-03ed0c697afc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220909Z:52e2ce90-b9ea-49fc-89cc-03ed0c697afc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7fc9be9a-3610-4a0e-9488-ab91e9cf72b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8601" - ], - "x-ms-correlation-request-id": [ - "630fbedb-88b0-4315-8e42-9a563f501698" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220909Z:630fbedb-88b0-4315-8e42-9a563f501698" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f432cf67-fcfd-4662-b813-2d0c6ecb1ed5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8600" - ], - "x-ms-correlation-request-id": [ - "bbfd55f0-351a-469d-8b40-ea9b9b51d51b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220909Z:bbfd55f0-351a-469d-8b40-ea9b9b51d51b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9487722b-2246-4fb4-a0d2-263bfc9f078f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8599" - ], - "x-ms-correlation-request-id": [ - "c9651600-18f2-4a9e-873f-1302564929d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220909Z:c9651600-18f2-4a9e-873f-1302564929d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f415ba1e-7309-4bf0-869f-a034b0e29a82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8598" - ], - "x-ms-correlation-request-id": [ - "6170a948-7a0b-42d8-a142-53a8c4b6d6ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220909Z:6170a948-7a0b-42d8-a142-53a8c4b6d6ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45963621-1fb6-4091-871c-e56c6a65d427" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8597" - ], - "x-ms-correlation-request-id": [ - "585d331d-8b3f-4a62-a311-af46dea6c7d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220910Z:585d331d-8b3f-4a62-a311-af46dea6c7d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f33bf0b-d126-4844-817b-2a422a9b0f3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8596" - ], - "x-ms-correlation-request-id": [ - "3676ce91-9530-45b4-9758-622a8b3cdd9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220910Z:3676ce91-9530-45b4-9758-622a8b3cdd9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bbd2d44c-adae-49b0-abe5-2ef81736d7df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8595" - ], - "x-ms-correlation-request-id": [ - "5bfd7dab-6091-4eb9-8012-e7c27dc756ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220910Z:5bfd7dab-6091-4eb9-8012-e7c27dc756ed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "309dbd0a-2ca1-40d6-bfe4-18463ecaf361" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8594" - ], - "x-ms-correlation-request-id": [ - "450bd824-4af2-4535-80ef-40963733b03e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220910Z:450bd824-4af2-4535-80ef-40963733b03e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35afdbff-b92c-4f72-9e3e-4de32e0f3542" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8593" - ], - "x-ms-correlation-request-id": [ - "8bb71cce-67f9-4264-86ca-fd57c9e6aa33" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220910Z:8bb71cce-67f9-4264-86ca-fd57c9e6aa33" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3206fa21-eb4a-4d10-a845-c6e5e2164bd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8592" - ], - "x-ms-correlation-request-id": [ - "f76f1881-5042-4e45-bb7f-037642531308" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220910Z:f76f1881-5042-4e45-bb7f-037642531308" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fdd1e27f-642a-4ae7-9c02-f8a6683c3956" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8591" - ], - "x-ms-correlation-request-id": [ - "ee0f8518-8d5f-4a61-ba9d-eefb51ee02d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220911Z:ee0f8518-8d5f-4a61-ba9d-eefb51ee02d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d372427-bd91-4d44-bdf7-5ced7ccc34a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8590" - ], - "x-ms-correlation-request-id": [ - "0c855497-8869-4184-bf33-f6aa107fc47c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220911Z:0c855497-8869-4184-bf33-f6aa107fc47c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0586a42f-c1ed-4739-89bd-6af6446fd36c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8589" - ], - "x-ms-correlation-request-id": [ - "63ec8617-008a-435e-ae48-c1a827da0b71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220911Z:63ec8617-008a-435e-ae48-c1a827da0b71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca92e559-a86f-4ff1-8c5c-b6b0c87f276f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8588" - ], - "x-ms-correlation-request-id": [ - "30cc223a-a534-43c0-8b5b-de58ee74d9c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220911Z:30cc223a-a534-43c0-8b5b-de58ee74d9c4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9db0b552-de91-424a-8613-daf1d256956a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8587" - ], - "x-ms-correlation-request-id": [ - "3dd96f83-55fe-4739-a0a5-1e01bb389201" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220911Z:3dd96f83-55fe-4739-a0a5-1e01bb389201" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1746f1b-3e92-439b-bcaf-799bc1ec56c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8586" - ], - "x-ms-correlation-request-id": [ - "78ce2cb9-65d2-4f0b-8219-6c98898db31c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220912Z:78ce2cb9-65d2-4f0b-8219-6c98898db31c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5aed6137-f303-4965-ac4f-c683338ee96e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8585" - ], - "x-ms-correlation-request-id": [ - "97e6377f-5fe9-4b64-a582-1d6270045e81" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220912Z:97e6377f-5fe9-4b64-a582-1d6270045e81" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fbcf0aa1-7a12-4e1c-80ae-2803e9b09db0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8584" - ], - "x-ms-correlation-request-id": [ - "1827e1a0-1d89-42b8-b711-0d75207352cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220912Z:1827e1a0-1d89-42b8-b711-0d75207352cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ddcf90b-f49f-45c0-a24b-61c2b4c3fc99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8583" - ], - "x-ms-correlation-request-id": [ - "72a82057-3194-41c5-a272-7e950df0fdfe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220912Z:72a82057-3194-41c5-a272-7e950df0fdfe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3cfae1b-8e81-41bb-bea0-402a872f00bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8582" - ], - "x-ms-correlation-request-id": [ - "cf34db29-1150-4e72-a0d0-3d2c6e85f15e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220912Z:cf34db29-1150-4e72-a0d0-3d2c6e85f15e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "55cf8d43-dac9-446d-83b5-9bb16715ef0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8581" - ], - "x-ms-correlation-request-id": [ - "9719e27c-eb53-4fd1-80f5-18a3b2ab7040" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220912Z:9719e27c-eb53-4fd1-80f5-18a3b2ab7040" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2373ff70-8e82-4910-8764-52446ad6b7f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8580" - ], - "x-ms-correlation-request-id": [ - "8e68ef39-671c-4f1b-8643-5f5965004bc9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220913Z:8e68ef39-671c-4f1b-8643-5f5965004bc9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3dffbd4-9f6b-410f-b457-3020bf7860cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8579" - ], - "x-ms-correlation-request-id": [ - "97433a16-9eb0-4053-9c49-4e521d13e83b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220913Z:97433a16-9eb0-4053-9c49-4e521d13e83b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38bfcd54-9fab-40c6-8212-a426e47b72be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8578" - ], - "x-ms-correlation-request-id": [ - "830e0353-c93f-4b54-89f2-deb32e5fd36f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220913Z:830e0353-c93f-4b54-89f2-deb32e5fd36f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8cd399a1-5eeb-4d1f-9b9a-e62cdd813cea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8577" - ], - "x-ms-correlation-request-id": [ - "253fc206-68f2-427a-9f04-910645d620a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220913Z:253fc206-68f2-427a-9f04-910645d620a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "715e255c-67bb-4924-b681-e29c55313b90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8576" - ], - "x-ms-correlation-request-id": [ - "81b2ca67-58d5-401b-b73b-91932be3002e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220913Z:81b2ca67-58d5-401b-b73b-91932be3002e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c83c5895-0b6b-47fc-b534-9e6f8226a52e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8575" - ], - "x-ms-correlation-request-id": [ - "61bd6eb8-b8ed-498b-a73d-29848d751c14" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220913Z:61bd6eb8-b8ed-498b-a73d-29848d751c14" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23151b96-53ee-43c3-8859-60cfc04493d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8574" - ], - "x-ms-correlation-request-id": [ - "2bd7815c-871c-4696-bd8e-ab10610a655b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220914Z:2bd7815c-871c-4696-bd8e-ab10610a655b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3c92cd6-673a-473a-bc8d-df0303836aa8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8573" - ], - "x-ms-correlation-request-id": [ - "757c377c-42ef-4119-b3d0-5a8e2234d48f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220914Z:757c377c-42ef-4119-b3d0-5a8e2234d48f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95881201-c69e-4279-abe9-7101d23bae5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8572" - ], - "x-ms-correlation-request-id": [ - "dadb18ec-0884-4394-a81d-08f61ff93d42" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220914Z:dadb18ec-0884-4394-a81d-08f61ff93d42" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1707cbc0-5546-4388-80e7-0c2a2496bed5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8571" - ], - "x-ms-correlation-request-id": [ - "15910742-fa35-49da-b50f-14b30d70ab12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220914Z:15910742-fa35-49da-b50f-14b30d70ab12" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee808de7-c061-4416-8cd7-222592ff7d88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8570" - ], - "x-ms-correlation-request-id": [ - "8c548b04-3996-4be2-9d22-61b99cbff812" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220914Z:8c548b04-3996-4be2-9d22-61b99cbff812" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b73f365c-f02d-4071-92c7-d582245b3a68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8569" - ], - "x-ms-correlation-request-id": [ - "c633a023-5bde-4530-add5-8b402212a6b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220915Z:c633a023-5bde-4530-add5-8b402212a6b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ec22061-ca87-4b12-8bca-735b38e37f77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8568" - ], - "x-ms-correlation-request-id": [ - "99d5789b-092e-401f-9d83-78219e9a9439" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220915Z:99d5789b-092e-401f-9d83-78219e9a9439" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6242d6ce-c267-4313-9c8d-bef23a64099c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8567" - ], - "x-ms-correlation-request-id": [ - "ac8626be-1f66-4f38-9815-173f9a07cfb2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220915Z:ac8626be-1f66-4f38-9815-173f9a07cfb2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "423f1f37-bf4e-400a-9533-a1701fad1300" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8566" - ], - "x-ms-correlation-request-id": [ - "90f39f43-f1f8-46ba-afe8-32cca28b8e59" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220915Z:90f39f43-f1f8-46ba-afe8-32cca28b8e59" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3651c28c-73ab-48c9-9ae7-b6c0e6f9625d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8565" - ], - "x-ms-correlation-request-id": [ - "0f32177a-5172-4c22-9d04-a94280465ef6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220915Z:0f32177a-5172-4c22-9d04-a94280465ef6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ca56c72-1f26-4e4a-8dfa-577a2f96664d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8564" - ], - "x-ms-correlation-request-id": [ - "853bce77-983b-4f18-973f-5b4fbc4e2ce3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220915Z:853bce77-983b-4f18-973f-5b4fbc4e2ce3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ef11d23-cb19-4330-865c-90917696f143" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8563" - ], - "x-ms-correlation-request-id": [ - "6378e759-d0c5-453c-ba43-5456c9c8733c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220916Z:6378e759-d0c5-453c-ba43-5456c9c8733c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3e57cbb2-71e7-4fbd-9802-671250139634" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8562" - ], - "x-ms-correlation-request-id": [ - "f4c7673e-f217-4cbc-8e13-fa24fbbabeb2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220916Z:f4c7673e-f217-4cbc-8e13-fa24fbbabeb2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "620766b9-8b31-406e-b15a-ff87ac7e159f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8561" - ], - "x-ms-correlation-request-id": [ - "d6efd9bb-9748-499b-8d22-27f0df326ce4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220916Z:d6efd9bb-9748-499b-8d22-27f0df326ce4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "646c3559-fa69-4cf6-81b2-9171d016ff13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8560" - ], - "x-ms-correlation-request-id": [ - "16edd1fc-542b-424b-8465-2f7d204cc7a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220916Z:16edd1fc-542b-424b-8465-2f7d204cc7a2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c08fe1ad-390f-45d2-9e94-80ed7fcb1826" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8559" - ], - "x-ms-correlation-request-id": [ - "604f9719-603f-4f05-a3e6-34b018f418d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220916Z:604f9719-603f-4f05-a3e6-34b018f418d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1eb96169-cfbd-412f-a279-638ce593dba4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8558" - ], - "x-ms-correlation-request-id": [ - "6929c3f9-4d59-419f-b506-6f41b17f3d3a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220917Z:6929c3f9-4d59-419f-b506-6f41b17f3d3a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da7bcdea-8be5-4f1a-a786-165f52d68644" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8557" - ], - "x-ms-correlation-request-id": [ - "040e8142-fdad-44f9-b8ae-0abfce296afe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220917Z:040e8142-fdad-44f9-b8ae-0abfce296afe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "096dc0fb-420a-477a-aed4-da1b0ca60aff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8556" - ], - "x-ms-correlation-request-id": [ - "30aaed66-c249-4f9b-a706-36619a456835" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220917Z:30aaed66-c249-4f9b-a706-36619a456835" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b593989-421a-40ff-8c91-ab5fe7352c49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8555" - ], - "x-ms-correlation-request-id": [ - "08843377-c863-486d-ac5c-3b918ac92b8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220917Z:08843377-c863-486d-ac5c-3b918ac92b8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdd16e23-1e05-4403-9f5a-11b3c4a1dd8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8554" - ], - "x-ms-correlation-request-id": [ - "598fbee9-4884-40b2-a0fb-3f84b47fa457" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220917Z:598fbee9-4884-40b2-a0fb-3f84b47fa457" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "655ca4db-ce13-4a03-a5d8-74d42f4a205d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8553" - ], - "x-ms-correlation-request-id": [ - "f7bad99c-caab-49f9-8817-9f0ad7b40b9b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220917Z:f7bad99c-caab-49f9-8817-9f0ad7b40b9b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa7f8316-ed29-4319-be01-29a54f65847b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8552" - ], - "x-ms-correlation-request-id": [ - "dc15799e-f02c-47be-b59d-b81ae6e6cab2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220918Z:dc15799e-f02c-47be-b59d-b81ae6e6cab2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd6d1a31-53af-4754-ab93-c89c69517e44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8551" - ], - "x-ms-correlation-request-id": [ - "0909d82d-e027-4a79-8a1f-abb42fb2ac8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220918Z:0909d82d-e027-4a79-8a1f-abb42fb2ac8c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc686ecd-48da-48db-820f-31c3e164b032" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8550" - ], - "x-ms-correlation-request-id": [ - "41248e1c-e84e-4471-875a-069c6eade681" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220918Z:41248e1c-e84e-4471-875a-069c6eade681" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0af117b0-55c8-4e9c-b8fa-86d6f521d170" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8549" - ], - "x-ms-correlation-request-id": [ - "8a5c4e4e-80ce-4d0c-9c58-d1fd321a537a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220918Z:8a5c4e4e-80ce-4d0c-9c58-d1fd321a537a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ace3c97-b4cc-4c31-bb43-18c3a8582590" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8548" - ], - "x-ms-correlation-request-id": [ - "23752141-a4b5-473f-b854-13ccd83bfb41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220918Z:23752141-a4b5-473f-b854-13ccd83bfb41" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05b06df2-e3d9-412c-819e-281d409d2318" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8547" - ], - "x-ms-correlation-request-id": [ - "34ed7ffa-c0aa-473e-b748-21afc3118ad1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220918Z:34ed7ffa-c0aa-473e-b748-21afc3118ad1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "771c21fb-512c-4018-9ef1-a9fbe9d16c78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8546" - ], - "x-ms-correlation-request-id": [ - "c539b2c8-003d-446c-bb75-2ef3e6cecf3f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220919Z:c539b2c8-003d-446c-bb75-2ef3e6cecf3f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da6f5278-68ad-4615-a494-8aa8755c8839" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8545" - ], - "x-ms-correlation-request-id": [ - "aecb408b-c6b1-4267-9b65-83cfae9d2cb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220919Z:aecb408b-c6b1-4267-9b65-83cfae9d2cb8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "023b86c8-ac7d-4ee8-9fb9-d340b08c324d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8544" - ], - "x-ms-correlation-request-id": [ - "8dd8732e-eba3-462a-9794-63a67bb6b1ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220919Z:8dd8732e-eba3-462a-9794-63a67bb6b1ed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "566bc1af-2bba-4a04-b5a3-b47dfab0119a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8543" - ], - "x-ms-correlation-request-id": [ - "befc99e3-bc9e-4f12-8a06-486875cd2e54" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220919Z:befc99e3-bc9e-4f12-8a06-486875cd2e54" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e25ed905-923a-4710-bd2c-aae8addef112" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8542" - ], - "x-ms-correlation-request-id": [ - "a4214f4e-ca74-49fe-b989-2934e92ef4ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220919Z:a4214f4e-ca74-49fe-b989-2934e92ef4ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b3d5fab4-4254-4952-8a86-87f4236dec65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8541" - ], - "x-ms-correlation-request-id": [ - "d034e737-5972-4fa8-84a7-503cea2ab02a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220919Z:d034e737-5972-4fa8-84a7-503cea2ab02a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d55173e-bfb5-470e-ba75-49642c0ce92c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8540" - ], - "x-ms-correlation-request-id": [ - "2b7d71dd-f548-4c8b-bf01-a47c5a228d49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220920Z:2b7d71dd-f548-4c8b-bf01-a47c5a228d49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf8948f7-3a4f-4520-8df2-226bb539ffa3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8539" - ], - "x-ms-correlation-request-id": [ - "e4411900-96d0-4290-b848-85de18c773ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220920Z:e4411900-96d0-4290-b848-85de18c773ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad32e9f3-3861-4aa3-97a2-adc96e8c7282" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8538" - ], - "x-ms-correlation-request-id": [ - "efe5de27-643a-4663-bf48-9dd4ca57c05e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220920Z:efe5de27-643a-4663-bf48-9dd4ca57c05e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89c8eda8-01b3-430f-b884-d19e2c4cb3f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8537" - ], - "x-ms-correlation-request-id": [ - "d3c0ed0a-ff6f-47f5-9c16-276fb3639585" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220920Z:d3c0ed0a-ff6f-47f5-9c16-276fb3639585" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6dd8632b-cf6b-4ed2-a2a5-44f7e3ef9a08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8536" - ], - "x-ms-correlation-request-id": [ - "edf824b3-ce8d-4c9b-9307-6bb44b92ab52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220920Z:edf824b3-ce8d-4c9b-9307-6bb44b92ab52" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8d363ce-9218-4c92-aa3d-bffb77689a3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8535" - ], - "x-ms-correlation-request-id": [ - "76b87674-53fb-4a66-9fad-f40f446d5823" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220920Z:76b87674-53fb-4a66-9fad-f40f446d5823" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0c6c7f1c-668c-4918-8e74-ad69bb018963" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8534" - ], - "x-ms-correlation-request-id": [ - "8cd95eaa-35f6-428a-899a-c914b5d674ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220921Z:8cd95eaa-35f6-428a-899a-c914b5d674ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc1a6442-b779-4169-bd9b-b92b6ccf248f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8533" - ], - "x-ms-correlation-request-id": [ - "b90648d0-a1df-4b9b-9401-5dfbc1ae2043" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220921Z:b90648d0-a1df-4b9b-9401-5dfbc1ae2043" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f1560ad-ae12-43e4-a10d-2ba4bae7f08d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8532" - ], - "x-ms-correlation-request-id": [ - "86494874-261f-41b8-a192-d7f9b2b08149" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220921Z:86494874-261f-41b8-a192-d7f9b2b08149" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1f5251b-49c2-42b2-8c9f-59b828340583" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8531" - ], - "x-ms-correlation-request-id": [ - "8270b669-09ca-4a1a-97d9-bd2ec15dd205" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220921Z:8270b669-09ca-4a1a-97d9-bd2ec15dd205" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3519bf8f-a929-4cca-b847-d78b98f7443f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8530" - ], - "x-ms-correlation-request-id": [ - "05bb9dda-92fd-4532-8aee-3625f39ea399" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220921Z:05bb9dda-92fd-4532-8aee-3625f39ea399" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5f3ef39-18da-4b00-9dc8-186212e07447" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8529" - ], - "x-ms-correlation-request-id": [ - "ccd5ca59-7ff3-4c4d-8932-376a3f163365" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220921Z:ccd5ca59-7ff3-4c4d-8932-376a3f163365" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ddcbfc38-290d-4cce-b814-76eb4967f4e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8528" - ], - "x-ms-correlation-request-id": [ - "30269d93-119e-4069-aaa2-6aa0e13ffd80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220922Z:30269d93-119e-4069-aaa2-6aa0e13ffd80" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ea97785-40ad-4147-8d5b-89ed862aaa89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8527" - ], - "x-ms-correlation-request-id": [ - "5c7ba2cb-2cee-413c-bd09-d22d8ab4a84f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220922Z:5c7ba2cb-2cee-413c-bd09-d22d8ab4a84f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1312793-d028-4f87-a33f-033fecc75171" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8526" - ], - "x-ms-correlation-request-id": [ - "badd8c44-d198-4e96-8dfa-37d02c5b6a59" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220922Z:badd8c44-d198-4e96-8dfa-37d02c5b6a59" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e41333d1-9626-4d10-9961-675df50b0c66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8525" - ], - "x-ms-correlation-request-id": [ - "b49f0e5e-2216-4bec-a069-a643d9ec0cc9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220922Z:b49f0e5e-2216-4bec-a069-a643d9ec0cc9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25d5297b-6fda-45eb-853d-6997c2727512" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8524" - ], - "x-ms-correlation-request-id": [ - "1041532a-5000-450a-bf4d-a9e1a33ade29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220922Z:1041532a-5000-450a-bf4d-a9e1a33ade29" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33e75115-79c8-4f8f-9c53-b473270c3403" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8523" - ], - "x-ms-correlation-request-id": [ - "b111b05f-4222-4dfe-9226-1dfb1479954a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220922Z:b111b05f-4222-4dfe-9226-1dfb1479954a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e93b572e-78e5-4902-8dc5-c3201c7500f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8522" - ], - "x-ms-correlation-request-id": [ - "b92e8b50-7000-4fca-b614-d07214338436" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220923Z:b92e8b50-7000-4fca-b614-d07214338436" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea1b079e-ee18-46f5-8763-c470c081ee21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8521" - ], - "x-ms-correlation-request-id": [ - "21a86afe-89c8-4277-b0b6-ca1853676e67" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220923Z:21a86afe-89c8-4277-b0b6-ca1853676e67" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "100fb316-61d6-4ce3-b8bf-042b3ef9b658" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8520" - ], - "x-ms-correlation-request-id": [ - "75f703ba-4989-4d2a-bfe8-cbb8f2f70b6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220923Z:75f703ba-4989-4d2a-bfe8-cbb8f2f70b6d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db4d3662-e472-40f5-85c4-0f9728733763" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8519" - ], - "x-ms-correlation-request-id": [ - "b512a82b-0420-4077-9342-88922b5c7e4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220923Z:b512a82b-0420-4077-9342-88922b5c7e4c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "701c412f-5458-4251-b887-03103ed4b519" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8518" - ], - "x-ms-correlation-request-id": [ - "4602e1b8-2e3c-491e-975e-55a48d170b5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220924Z:4602e1b8-2e3c-491e-975e-55a48d170b5e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d67fed0-dd17-443b-b084-2ffbc3f5d23d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8517" - ], - "x-ms-correlation-request-id": [ - "2ac1ee2d-9e68-42af-89e1-ae6e1e12322b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220924Z:2ac1ee2d-9e68-42af-89e1-ae6e1e12322b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a52de18d-9525-4cdd-8818-89c095b66b8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8516" - ], - "x-ms-correlation-request-id": [ - "593b5659-3e7b-41bf-85ad-09dce592e88e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220924Z:593b5659-3e7b-41bf-85ad-09dce592e88e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c24dd64-7899-4db1-82f5-b168428f5ae5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8515" - ], - "x-ms-correlation-request-id": [ - "265fa0d8-9bc9-46b4-b270-19d1866d40c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220924Z:265fa0d8-9bc9-46b4-b270-19d1866d40c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94cb2c0f-db31-457d-8ba7-4ca9b6dd04e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8514" - ], - "x-ms-correlation-request-id": [ - "13093bb5-9dcc-4811-b404-80a7d326f2f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220924Z:13093bb5-9dcc-4811-b404-80a7d326f2f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7c62e76-513c-4206-bbf9-c1b25dffaf42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8513" - ], - "x-ms-correlation-request-id": [ - "b4b2686e-3cc4-4c9d-80d7-c7b306059f6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220924Z:b4b2686e-3cc4-4c9d-80d7-c7b306059f6c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4df34e41-85fc-4800-b95e-1a30fa8050bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8512" - ], - "x-ms-correlation-request-id": [ - "65f29de7-7e69-4dcf-8cf6-259ff90ec8ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220925Z:65f29de7-7e69-4dcf-8cf6-259ff90ec8ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "329a9057-15bc-4203-92a3-503f92d3a24e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8511" - ], - "x-ms-correlation-request-id": [ - "b740d5f6-d817-4c26-935a-843f5f5790ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220925Z:b740d5f6-d817-4c26-935a-843f5f5790ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bcc23ec3-5a3f-498a-86bc-c49fc3fdfef5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8510" - ], - "x-ms-correlation-request-id": [ - "98913334-cedf-4ceb-bcb9-c3d88b26108f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220925Z:98913334-cedf-4ceb-bcb9-c3d88b26108f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36c6ce9a-9ffa-4611-b6ff-13134b203b59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8509" - ], - "x-ms-correlation-request-id": [ - "6a2ffb62-adc0-48f8-8c2b-9364dbade91d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220925Z:6a2ffb62-adc0-48f8-8c2b-9364dbade91d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e12e7e55-6153-4ca4-9d8b-b635fe9810e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8508" - ], - "x-ms-correlation-request-id": [ - "bd0208a0-1a00-49c8-817f-a43f914535b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220925Z:bd0208a0-1a00-49c8-817f-a43f914535b1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8987d7a4-a909-44a8-9aef-92f2b6b6316d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8507" - ], - "x-ms-correlation-request-id": [ - "b2a63c63-e223-45c9-86d0-f19c157ed1a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220926Z:b2a63c63-e223-45c9-86d0-f19c157ed1a2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a71665c8-622d-4755-8ef6-1caa70195d6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8506" - ], - "x-ms-correlation-request-id": [ - "f00cb853-c7f3-4a01-a652-41fcc0997083" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220926Z:f00cb853-c7f3-4a01-a652-41fcc0997083" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8e75d7c4-b82a-458d-8641-5db394b3ee88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8505" - ], - "x-ms-correlation-request-id": [ - "684f1140-26e4-43a8-8211-14761fb60562" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220926Z:684f1140-26e4-43a8-8211-14761fb60562" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf5601ec-0d0d-4a33-855b-bbc3c21eb512" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8504" - ], - "x-ms-correlation-request-id": [ - "a614df0b-9bbe-4bdd-b3e0-408ba2b506a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220926Z:a614df0b-9bbe-4bdd-b3e0-408ba2b506a4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0560068-6235-4243-ab52-91d297e828cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8503" - ], - "x-ms-correlation-request-id": [ - "95d2ed32-fd27-4e2a-b751-9a5deff39449" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220926Z:95d2ed32-fd27-4e2a-b751-9a5deff39449" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73202336-54ab-48dc-a899-b1b05a2d7b6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8502" - ], - "x-ms-correlation-request-id": [ - "8c8799f9-2816-4f83-a69f-c922ec6e4d49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220926Z:8c8799f9-2816-4f83-a69f-c922ec6e4d49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e97d8916-163c-4809-9455-9b18e9c8f9e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8501" - ], - "x-ms-correlation-request-id": [ - "7f547898-d708-4fb4-a862-3ee04368d054" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220927Z:7f547898-d708-4fb4-a862-3ee04368d054" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13a870df-b30f-415c-88c4-63bcdbe74e50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8500" - ], - "x-ms-correlation-request-id": [ - "3998dacd-2d1d-454e-8888-f91ce395438f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220927Z:3998dacd-2d1d-454e-8888-f91ce395438f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c0273ba-8535-4d09-914e-71f2b3fd86fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8499" - ], - "x-ms-correlation-request-id": [ - "6a632a5c-8649-4b9a-ad92-1139b82cfc8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220927Z:6a632a5c-8649-4b9a-ad92-1139b82cfc8e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ecb69a88-5c95-4dff-aee9-ccdbe7cb12c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8498" - ], - "x-ms-correlation-request-id": [ - "495d3e12-efc4-4796-97b5-13ed6e5520e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220927Z:495d3e12-efc4-4796-97b5-13ed6e5520e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8faae9c-6023-4af4-bbdd-9063400bb674" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8497" - ], - "x-ms-correlation-request-id": [ - "25217eae-ae81-40d7-86f2-816d2e2ffcd9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220928Z:25217eae-ae81-40d7-86f2-816d2e2ffcd9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7978e613-f8d4-4c0e-b9a8-e6da1d4ae3c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8496" - ], - "x-ms-correlation-request-id": [ - "19e6c33a-d19a-4ff4-96ef-283193a44e56" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220928Z:19e6c33a-d19a-4ff4-96ef-283193a44e56" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56824a31-3ca3-4673-9576-06faa1624a61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8495" - ], - "x-ms-correlation-request-id": [ - "9d3539ab-7ce0-4dec-937d-be0ed67b570f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220928Z:9d3539ab-7ce0-4dec-937d-be0ed67b570f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22d3daa0-540e-43c8-9fee-0c8cc0ee07d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8494" - ], - "x-ms-correlation-request-id": [ - "91652fe8-3351-497d-abcd-ee006faaf4fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220928Z:91652fe8-3351-497d-abcd-ee006faaf4fa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "212f71dd-1a5e-4923-a0a0-6159deeda76b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8493" - ], - "x-ms-correlation-request-id": [ - "860ca8bc-cee1-4e39-b660-12c9bde1d139" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220928Z:860ca8bc-cee1-4e39-b660-12c9bde1d139" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90489902-4bbc-45eb-8108-d61809212fc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8492" - ], - "x-ms-correlation-request-id": [ - "78ac7498-7a6f-44aa-891f-82dcf28bd27e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220929Z:78ac7498-7a6f-44aa-891f-82dcf28bd27e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f044847-a7de-47be-b41b-01d0da6a0e7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8491" - ], - "x-ms-correlation-request-id": [ - "69064888-0e45-467d-8288-1b9ae12560a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220929Z:69064888-0e45-467d-8288-1b9ae12560a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4d33c87-3079-4b19-b7cc-5c42fc9ebc30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8490" - ], - "x-ms-correlation-request-id": [ - "d16004e8-01e0-4cc3-83b3-dc25ad6fb991" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220929Z:d16004e8-01e0-4cc3-83b3-dc25ad6fb991" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9bb1f3a8-5653-493b-b139-3970acd49433" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8489" - ], - "x-ms-correlation-request-id": [ - "a566ada3-f306-497e-9186-08e0fac98d6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220929Z:a566ada3-f306-497e-9186-08e0fac98d6c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bdf51ed-9f0c-4648-a4e8-361f70c27dc8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8488" - ], - "x-ms-correlation-request-id": [ - "446695e3-fb03-45fe-8353-880a109cfbd0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220929Z:446695e3-fb03-45fe-8353-880a109cfbd0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5519812-3a91-4f1f-8978-c6f12d26d37f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8487" - ], - "x-ms-correlation-request-id": [ - "f3015db3-99c8-4f64-a70a-378e69d7df32" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220930Z:f3015db3-99c8-4f64-a70a-378e69d7df32" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be112531-425d-4b1f-b7bc-98ee736064e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8486" - ], - "x-ms-correlation-request-id": [ - "0bc2bfa7-6bac-4320-b5bf-99f48c9d4f9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220930Z:0bc2bfa7-6bac-4320-b5bf-99f48c9d4f9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "09809f9a-5776-4717-88f8-ccb99599f6d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8485" - ], - "x-ms-correlation-request-id": [ - "917087fe-caf8-42b7-b07f-8442c677d4e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220930Z:917087fe-caf8-42b7-b07f-8442c677d4e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d791629-1ff8-4a24-b938-6ba6fbc989fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8484" - ], - "x-ms-correlation-request-id": [ - "9aa39c27-64c1-475f-a246-2a75c1f1a114" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220930Z:9aa39c27-64c1-475f-a246-2a75c1f1a114" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9923eba2-3bf3-49f5-a344-f14a6764a96d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8483" - ], - "x-ms-correlation-request-id": [ - "a3db89e3-9857-471c-87a6-c5e1a3b73540" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220930Z:a3db89e3-9857-471c-87a6-c5e1a3b73540" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccf9fca9-0a13-4dc2-ab8e-7c35278213b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8482" - ], - "x-ms-correlation-request-id": [ - "93e033b3-3950-4dfb-ae17-6d2dcb6170d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220931Z:93e033b3-3950-4dfb-ae17-6d2dcb6170d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9639d9a2-6a06-42ba-b899-09366aa85ad5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8481" - ], - "x-ms-correlation-request-id": [ - "acf8f1de-4cce-4f58-8b08-6c844d39fe4d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220931Z:acf8f1de-4cce-4f58-8b08-6c844d39fe4d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d888b248-6221-4123-aed3-6fd609eb51cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8480" - ], - "x-ms-correlation-request-id": [ - "297e2e61-a90b-4b12-8d1a-29768e9ff80b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220931Z:297e2e61-a90b-4b12-8d1a-29768e9ff80b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4d8c3b3-eb09-40fb-a93d-65a9e8cd4e97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8479" - ], - "x-ms-correlation-request-id": [ - "5e5a14c2-6ca4-49a9-8113-5eb4e9fc6dbc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220931Z:5e5a14c2-6ca4-49a9-8113-5eb4e9fc6dbc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a34bf0a-2e1b-43d2-b7e4-effcec7e413a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8478" - ], - "x-ms-correlation-request-id": [ - "de2aee0f-2ce0-4667-8343-e2fedc99ad7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220931Z:de2aee0f-2ce0-4667-8343-e2fedc99ad7a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de753981-64f1-4cc2-b460-bc203c38f474" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8477" - ], - "x-ms-correlation-request-id": [ - "5d0f910f-b9c7-43ed-bf04-de18c4674201" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220931Z:5d0f910f-b9c7-43ed-bf04-de18c4674201" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6047dd03-f55e-4f07-aea8-b4dfcce0f0f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8476" - ], - "x-ms-correlation-request-id": [ - "60826d5c-08ce-45e8-b2dc-254cfa352f17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220931Z:60826d5c-08ce-45e8-b2dc-254cfa352f17" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b011d75d-a618-4a57-807d-1949540310b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8475" - ], - "x-ms-correlation-request-id": [ - "ceb68533-6d26-4b61-ae08-091cba39caa2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220932Z:ceb68533-6d26-4b61-ae08-091cba39caa2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a2f2277-60c9-4280-8d66-ac8fc72d6811" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8474" - ], - "x-ms-correlation-request-id": [ - "af9bc028-eb52-4bf1-94ea-3e61a54a03ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220932Z:af9bc028-eb52-4bf1-94ea-3e61a54a03ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef370d1a-0868-459a-bfbc-d99e9c933b03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8473" - ], - "x-ms-correlation-request-id": [ - "2a9e46aa-285f-4fff-9aa9-25a5f37730a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220932Z:2a9e46aa-285f-4fff-9aa9-25a5f37730a6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2b219f7-95dc-4ac3-83e6-3d0a4717baad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8472" - ], - "x-ms-correlation-request-id": [ - "fe7d5dde-59d2-4388-8f27-adcf7868732f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220932Z:fe7d5dde-59d2-4388-8f27-adcf7868732f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a86ef47-72ec-479b-9bab-80a5741430a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8471" - ], - "x-ms-correlation-request-id": [ - "5a1108b4-15c5-4682-9c58-6518595e3e20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220932Z:5a1108b4-15c5-4682-9c58-6518595e3e20" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b62b544c-3a84-42b5-adf8-17b3b666616c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8470" - ], - "x-ms-correlation-request-id": [ - "b8dc7a9a-5535-4190-a226-e70e25b597e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220932Z:b8dc7a9a-5535-4190-a226-e70e25b597e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efd463cd-2e17-4b17-b62b-693c90e64993" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8469" - ], - "x-ms-correlation-request-id": [ - "06c23f3b-d9d0-4ac3-b94d-21a67efc4cac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220932Z:06c23f3b-d9d0-4ac3-b94d-21a67efc4cac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3e62247-f3b6-48e1-9155-221aed6e06fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8468" - ], - "x-ms-correlation-request-id": [ - "36ba6158-da87-4b6a-8e3b-e04063dc797b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220933Z:36ba6158-da87-4b6a-8e3b-e04063dc797b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81293d2f-10ed-4fd2-be90-e991629686a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8467" - ], - "x-ms-correlation-request-id": [ - "78cb83c9-0b84-4d88-b8a9-857d41002139" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220933Z:78cb83c9-0b84-4d88-b8a9-857d41002139" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83f3c8d0-25c7-4dca-9c28-d18ca4b209e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8466" - ], - "x-ms-correlation-request-id": [ - "073d9e68-f16a-4277-adf8-d935fdde4a7b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220933Z:073d9e68-f16a-4277-adf8-d935fdde4a7b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d57cde42-9556-4fb7-9952-22c34c2eaa53" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8465" - ], - "x-ms-correlation-request-id": [ - "eb0556f0-610f-443d-9635-cdce68920380" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220933Z:eb0556f0-610f-443d-9635-cdce68920380" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a96eb9cb-da38-4710-8873-195f324a6286" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8464" - ], - "x-ms-correlation-request-id": [ - "ee964e29-8e95-4f8e-8f58-69ab1f4f022c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220933Z:ee964e29-8e95-4f8e-8f58-69ab1f4f022c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06b58807-761c-49a2-aa95-f2f8c4797eac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8463" - ], - "x-ms-correlation-request-id": [ - "1d736801-0129-4109-9e57-4d68bca95462" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220933Z:1d736801-0129-4109-9e57-4d68bca95462" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c2983b8f-3467-4fb0-8c44-16a6ecbdd3d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8462" - ], - "x-ms-correlation-request-id": [ - "8b3f37a2-b5c2-4a3d-b215-b837e54c3b06" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220934Z:8b3f37a2-b5c2-4a3d-b215-b837e54c3b06" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5deb5ff-382e-4413-b55e-06995702489b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8461" - ], - "x-ms-correlation-request-id": [ - "d387ff11-54d5-45e3-af64-25163928ac8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220934Z:d387ff11-54d5-45e3-af64-25163928ac8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0816ebe4-e633-47bc-a67f-8089f4a5f300" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8460" - ], - "x-ms-correlation-request-id": [ - "b5ebaf48-d23c-4974-ae96-6e9d39dc1c47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220934Z:b5ebaf48-d23c-4974-ae96-6e9d39dc1c47" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85ea2d83-ee1a-47be-b411-43563dcb72ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8459" - ], - "x-ms-correlation-request-id": [ - "da6e626c-3312-43fc-9fa0-414761f31bf4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220934Z:da6e626c-3312-43fc-9fa0-414761f31bf4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6aa63c84-abe4-422c-a6e0-bf86d41678e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8458" - ], - "x-ms-correlation-request-id": [ - "9b9000c7-370c-4476-ba8b-48db718c2ed2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220934Z:9b9000c7-370c-4476-ba8b-48db718c2ed2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03cbec54-20ce-4751-927c-35f5550ea3b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8457" - ], - "x-ms-correlation-request-id": [ - "91bf219d-faa9-4a7d-91f6-c941601f2232" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220934Z:91bf219d-faa9-4a7d-91f6-c941601f2232" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04ee8791-fc9c-4a0a-973f-62d18163d1f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8456" - ], - "x-ms-correlation-request-id": [ - "11b0ffba-40cc-4584-8ae0-c863c68c4417" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220935Z:11b0ffba-40cc-4584-8ae0-c863c68c4417" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c68554f-8629-446c-8d67-d43bdc58a334" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8455" - ], - "x-ms-correlation-request-id": [ - "d3aba7db-0bc5-4e0e-bf68-f6337cec80ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220935Z:d3aba7db-0bc5-4e0e-bf68-f6337cec80ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6646fb9a-b177-4294-8bad-b13baa547eec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8454" - ], - "x-ms-correlation-request-id": [ - "deb52cab-e18d-41e6-9564-354fd51a4428" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220935Z:deb52cab-e18d-41e6-9564-354fd51a4428" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "166bedec-3e97-4af5-aa41-f5fc5af22f21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8453" - ], - "x-ms-correlation-request-id": [ - "3fca390d-7502-478b-9da0-aa43cbca548d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220935Z:3fca390d-7502-478b-9da0-aa43cbca548d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40a25e88-85d6-49fa-937e-546460868544" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8452" - ], - "x-ms-correlation-request-id": [ - "36fee0c0-7e42-4dc2-96c7-f90d8b7ec98f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220936Z:36fee0c0-7e42-4dc2-96c7-f90d8b7ec98f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e9d67c3-ef90-46d7-bd58-55f068dfa2ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8451" - ], - "x-ms-correlation-request-id": [ - "12a6df06-8d3b-45ab-9a6e-ab46b78a74eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220936Z:12a6df06-8d3b-45ab-9a6e-ab46b78a74eb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0d85755-855a-4de5-b2b3-48704884acc5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8450" - ], - "x-ms-correlation-request-id": [ - "97d019db-c8f1-4d61-bb81-28167b2ddfd3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220936Z:97d019db-c8f1-4d61-bb81-28167b2ddfd3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c62872c8-cee0-4c6d-ae58-5b7dc404b8d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8449" - ], - "x-ms-correlation-request-id": [ - "8776d75c-9c99-4ea3-bdcc-fddf70386028" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220936Z:8776d75c-9c99-4ea3-bdcc-fddf70386028" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e402ba20-6710-4f33-b9f7-d8189d951795" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8448" - ], - "x-ms-correlation-request-id": [ - "e3c9f498-e0c1-4da4-b6b0-28f730112de6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220936Z:e3c9f498-e0c1-4da4-b6b0-28f730112de6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a46d66ee-0759-45a6-b86c-8f256c9a74f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8447" - ], - "x-ms-correlation-request-id": [ - "2d034640-123d-4b8e-af01-b3f543297aca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220936Z:2d034640-123d-4b8e-af01-b3f543297aca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3122304-98d3-4b60-a19b-e573083a5f67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8446" - ], - "x-ms-correlation-request-id": [ - "0409316e-c45f-414d-9f52-339ed653f1f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220937Z:0409316e-c45f-414d-9f52-339ed653f1f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf80fcfb-7a99-433b-a1fd-bda054c84ae8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8445" - ], - "x-ms-correlation-request-id": [ - "9d40317b-2db6-4bcd-8f7f-3aa4c61c133b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220937Z:9d40317b-2db6-4bcd-8f7f-3aa4c61c133b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65bbdb1a-014a-4f6f-affe-763704cdd818" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8444" - ], - "x-ms-correlation-request-id": [ - "8c8046a7-a6cc-406f-9db2-4610ac71e7c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220937Z:8c8046a7-a6cc-406f-9db2-4610ac71e7c4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "823594da-f6d6-4629-b0e7-308c13609536" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8443" - ], - "x-ms-correlation-request-id": [ - "c481b8b2-01ea-4b18-ac2f-688474843470" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220937Z:c481b8b2-01ea-4b18-ac2f-688474843470" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6b45dae-3147-4a9d-bd4c-91f30395cb4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8442" - ], - "x-ms-correlation-request-id": [ - "82495cce-94da-40b6-835f-5349411e4a66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220937Z:82495cce-94da-40b6-835f-5349411e4a66" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ca23248-8009-47a8-9cd9-6c62dfe3f150" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8441" - ], - "x-ms-correlation-request-id": [ - "e2dd65a5-3fb3-4c8a-8f14-525cd1037890" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220937Z:e2dd65a5-3fb3-4c8a-8f14-525cd1037890" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b9d5200-d47d-4bb2-9c28-4649751bdbff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8440" - ], - "x-ms-correlation-request-id": [ - "582e8f79-4299-48a4-aa0d-0d8fc17d4857" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220937Z:582e8f79-4299-48a4-aa0d-0d8fc17d4857" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "810303d1-9d24-484c-b235-8dfc56afd491" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8439" - ], - "x-ms-correlation-request-id": [ - "c5702f31-11c8-4b9f-9245-e44865d4f288" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220938Z:c5702f31-11c8-4b9f-9245-e44865d4f288" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae113538-c614-4166-8b6c-28881a867b7f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8438" - ], - "x-ms-correlation-request-id": [ - "d571a586-0efb-46ce-ab89-82c437a0191c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220938Z:d571a586-0efb-46ce-ab89-82c437a0191c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "399c4565-c986-48ad-b4b0-7fcf71b8a056" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8437" - ], - "x-ms-correlation-request-id": [ - "e7d54a8c-6277-40e2-a4b0-910567e57f0b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220938Z:e7d54a8c-6277-40e2-a4b0-910567e57f0b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e96bf16-db05-4427-8240-552f73218e67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8436" - ], - "x-ms-correlation-request-id": [ - "5df00531-5efb-421f-8416-74313c58895a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220938Z:5df00531-5efb-421f-8416-74313c58895a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8cad3a0-aae1-440d-a3a7-cd70b7a93f36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8435" - ], - "x-ms-correlation-request-id": [ - "55805697-d997-43c4-a5dd-bb87e7bb28d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220938Z:55805697-d997-43c4-a5dd-bb87e7bb28d7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "abc81877-f577-438e-b78e-892dd314422a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8434" - ], - "x-ms-correlation-request-id": [ - "b798e329-9c11-455e-b410-83a891d77ebd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220939Z:b798e329-9c11-455e-b410-83a891d77ebd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14603f66-0458-4541-9748-a096845156c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8433" - ], - "x-ms-correlation-request-id": [ - "cf45d1f4-2238-4e5c-aa74-ee6b78e7a469" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220939Z:cf45d1f4-2238-4e5c-aa74-ee6b78e7a469" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4716ec6-e2f3-439d-8df3-59b86676cf22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8432" - ], - "x-ms-correlation-request-id": [ - "3a80c354-b9c6-446c-be86-685db72fd5cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220939Z:3a80c354-b9c6-446c-be86-685db72fd5cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77f01ac4-13e4-4fd3-8737-f2e5e12d0129" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8431" - ], - "x-ms-correlation-request-id": [ - "2880b32b-c9d1-403d-a982-868cf535d9b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220939Z:2880b32b-c9d1-403d-a982-868cf535d9b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "530e46fa-472c-4949-9da2-756c6130883c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8430" - ], - "x-ms-correlation-request-id": [ - "aaf0c263-4e41-4210-9e48-ef695589d946" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220939Z:aaf0c263-4e41-4210-9e48-ef695589d946" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b601c2ca-d1c9-4f98-8a32-7fede42125ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8429" - ], - "x-ms-correlation-request-id": [ - "1cf9446f-32fd-4500-bc64-fbd166d2bbce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220939Z:1cf9446f-32fd-4500-bc64-fbd166d2bbce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1aa1cf5-4394-447d-9ba0-9111a41a4845" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8428" - ], - "x-ms-correlation-request-id": [ - "ca50fbbe-9880-4ae4-934c-bc5cb863eefb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220939Z:ca50fbbe-9880-4ae4-934c-bc5cb863eefb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "941fbb95-9d3a-4477-8031-a50a2055a28f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8427" - ], - "x-ms-correlation-request-id": [ - "974d97c8-3974-4c16-a979-5a43557e29ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220940Z:974d97c8-3974-4c16-a979-5a43557e29ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "060dac5b-ace5-4167-8ece-a99fe14be3c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8426" - ], - "x-ms-correlation-request-id": [ - "6c8f8fb7-cf99-4cea-9abb-93e153008e91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220940Z:6c8f8fb7-cf99-4cea-9abb-93e153008e91" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a28568b-4d1f-4f2d-95bf-b06cfca03e97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8425" - ], - "x-ms-correlation-request-id": [ - "017684ce-e893-4179-9454-1b314d34f71b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220940Z:017684ce-e893-4179-9454-1b314d34f71b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dae379bb-c828-4dd4-a914-4619bb3c4322" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8424" - ], - "x-ms-correlation-request-id": [ - "20ffeebe-9f82-4ec0-9952-f32385ed3814" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220940Z:20ffeebe-9f82-4ec0-9952-f32385ed3814" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7ee33b4-5c14-4b41-a8f8-9c7026f59c4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8423" - ], - "x-ms-correlation-request-id": [ - "96993e03-0bce-42a6-93c4-4ef90c648d50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220940Z:96993e03-0bce-42a6-93c4-4ef90c648d50" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf9076fb-d698-47d4-b114-6ee0fa0d1bf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8422" - ], - "x-ms-correlation-request-id": [ - "14e1e3bd-2c6f-441b-8701-5d4725b6a3ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220941Z:14e1e3bd-2c6f-441b-8701-5d4725b6a3ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8296fb4-ed87-4c6c-a42b-6617ed61f5eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8421" - ], - "x-ms-correlation-request-id": [ - "33933b71-8b3e-4283-9562-0dd4aacceff5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220941Z:33933b71-8b3e-4283-9562-0dd4aacceff5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "090d8791-c017-4281-a517-62a6b8352700" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8420" - ], - "x-ms-correlation-request-id": [ - "1c3dbd7a-4e8b-4cee-8a75-3204e5e7df8b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220941Z:1c3dbd7a-4e8b-4cee-8a75-3204e5e7df8b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "514f4f98-6ade-49c5-a5da-3b840d85f8e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8419" - ], - "x-ms-correlation-request-id": [ - "c89240f9-f9a5-4f92-a909-266834704481" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220941Z:c89240f9-f9a5-4f92-a909-266834704481" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "739e35e6-54fb-464e-9709-ef729edf98eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8418" - ], - "x-ms-correlation-request-id": [ - "71bb30ca-9238-4382-a6a9-9db8de213e2d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220941Z:71bb30ca-9238-4382-a6a9-9db8de213e2d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f5f5ea0-a5e7-4dfb-8c35-bfac62575dba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8417" - ], - "x-ms-correlation-request-id": [ - "7d239271-4d55-4d7f-b66e-2a97b2584666" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220941Z:7d239271-4d55-4d7f-b66e-2a97b2584666" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8451de37-6514-4e20-ab1b-bbbf41ca3e99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8416" - ], - "x-ms-correlation-request-id": [ - "ae6629fe-827f-4eb5-876b-42cf1b741301" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220942Z:ae6629fe-827f-4eb5-876b-42cf1b741301" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc68d480-02c8-486b-945a-1a87fa52cbea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8415" - ], - "x-ms-correlation-request-id": [ - "19a7a459-e5e2-4a97-a3d0-3f6b45af34e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220942Z:19a7a459-e5e2-4a97-a3d0-3f6b45af34e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a4171fc-a592-4e92-9e0e-a18e886d6d9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8414" - ], - "x-ms-correlation-request-id": [ - "502dbbc9-3a5e-45de-936c-57c36fdcbd28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220942Z:502dbbc9-3a5e-45de-936c-57c36fdcbd28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bbb2588-1768-4d2f-ac96-71f43884b35b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8413" - ], - "x-ms-correlation-request-id": [ - "14dcc9ab-c7da-4612-ad42-0fc7721e665c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220942Z:14dcc9ab-c7da-4612-ad42-0fc7721e665c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00620e74-c0bc-4bf4-b0e8-9225d0add382" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8412" - ], - "x-ms-correlation-request-id": [ - "800956d0-da57-4beb-a4a3-e80d0e14f0f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220942Z:800956d0-da57-4beb-a4a3-e80d0e14f0f3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4138501a-6ea4-4e94-8ab7-df73f9a38630" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8411" - ], - "x-ms-correlation-request-id": [ - "cfb71e92-a334-431b-a2bc-fa18acf953d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220943Z:cfb71e92-a334-431b-a2bc-fa18acf953d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad51c0f6-21de-4a95-ae48-c52a5a25cb09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8410" - ], - "x-ms-correlation-request-id": [ - "36b1d327-fa5f-4168-97e9-43c09e7076b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220943Z:36b1d327-fa5f-4168-97e9-43c09e7076b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51254c86-b49b-43fd-9a9a-af1a2fc62ed6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8409" - ], - "x-ms-correlation-request-id": [ - "98c33df9-1155-49db-9258-3fa5b840d689" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220943Z:98c33df9-1155-49db-9258-3fa5b840d689" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67df34cf-a90c-469d-84cd-73f4671d65d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8408" - ], - "x-ms-correlation-request-id": [ - "8ba75883-65ac-4bc8-9b5f-e5c0678eb90c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220943Z:8ba75883-65ac-4bc8-9b5f-e5c0678eb90c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70154f58-e14b-420c-a7c4-6438ad06f647" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8407" - ], - "x-ms-correlation-request-id": [ - "3391a98f-6cda-45c8-a50f-b566fa4aba67" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220943Z:3391a98f-6cda-45c8-a50f-b566fa4aba67" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "137e6fe8-767f-46b1-9e2f-d3e76e7e4a3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8406" - ], - "x-ms-correlation-request-id": [ - "b727eae5-93e4-48aa-9fe6-9a1a6ea9927c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220943Z:b727eae5-93e4-48aa-9fe6-9a1a6ea9927c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f1991a7-712b-4eab-832d-f0ca58a04192" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8405" - ], - "x-ms-correlation-request-id": [ - "705f8feb-8ba2-4a90-b4e8-68c68f6f63e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220944Z:705f8feb-8ba2-4a90-b4e8-68c68f6f63e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72d2ec5d-78fb-4f29-88f8-23efb7145a13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8404" - ], - "x-ms-correlation-request-id": [ - "10a19bda-16d9-498e-9e1e-d19864c17f61" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220944Z:10a19bda-16d9-498e-9e1e-d19864c17f61" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5085392-aefa-4824-9c42-636dd5fc288a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8403" - ], - "x-ms-correlation-request-id": [ - "0965d44d-f4d4-47c6-9736-7d8654d18a1d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220944Z:0965d44d-f4d4-47c6-9736-7d8654d18a1d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd12e6ac-c9d1-4ee2-8789-a47799d79e9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8402" - ], - "x-ms-correlation-request-id": [ - "4c59b5ae-80c2-4fe6-b9bc-ba9c88339a5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220944Z:4c59b5ae-80c2-4fe6-b9bc-ba9c88339a5d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe7e75f2-2979-4787-9141-fccc820975b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8401" - ], - "x-ms-correlation-request-id": [ - "080d3478-c9d0-4ca6-8abd-9b7cd3ed0e59" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220944Z:080d3478-c9d0-4ca6-8abd-9b7cd3ed0e59" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f477d14e-23b3-448c-b55d-7b282c239558" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8400" - ], - "x-ms-correlation-request-id": [ - "24d1418f-1fc4-419e-abdf-4a4429847fb4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220945Z:24d1418f-1fc4-419e-abdf-4a4429847fb4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46300267-55f1-474f-8d30-1534bf81b240" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8399" - ], - "x-ms-correlation-request-id": [ - "cac72f47-dd40-4398-a475-75dd0fabae8b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220945Z:cac72f47-dd40-4398-a475-75dd0fabae8b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0b931d2-fcf1-4c07-ac07-2a007b6c7a1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8398" - ], - "x-ms-correlation-request-id": [ - "17c82534-2368-47b0-a501-6dbecd759d8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220945Z:17c82534-2368-47b0-a501-6dbecd759d8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e04499b-f569-4c7a-bcf0-a488fc476a25" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8397" - ], - "x-ms-correlation-request-id": [ - "cad258e3-2bb1-45e4-9b7e-0b454a1bf3f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220945Z:cad258e3-2bb1-45e4-9b7e-0b454a1bf3f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4fb786f-42eb-46b9-a43b-0579f524ed60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8396" - ], - "x-ms-correlation-request-id": [ - "1a7f3b55-44f1-43f0-a9f8-2c6b6b2e0631" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220945Z:1a7f3b55-44f1-43f0-a9f8-2c6b6b2e0631" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff75f2b2-460a-4334-ba2e-9963c5281303" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8395" - ], - "x-ms-correlation-request-id": [ - "e3681514-7664-4aa2-a097-c4f6844be9da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220946Z:e3681514-7664-4aa2-a097-c4f6844be9da" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2bc31e0-880e-495b-bcf3-2b14dffa5761" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8394" - ], - "x-ms-correlation-request-id": [ - "06249ccc-41bb-4698-9b8c-2277e7c0b7a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220946Z:06249ccc-41bb-4698-9b8c-2277e7c0b7a0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25906bc7-a43c-4195-904a-9f25a8a43521" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8393" - ], - "x-ms-correlation-request-id": [ - "24dbc9a1-72e7-4545-8dad-037f6de9a3d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220946Z:24dbc9a1-72e7-4545-8dad-037f6de9a3d7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c969ecf-678e-4112-a24a-1a2439ff0901" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8392" - ], - "x-ms-correlation-request-id": [ - "dcdfc266-f95b-4d47-af9f-a05c4cf86370" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220946Z:dcdfc266-f95b-4d47-af9f-a05c4cf86370" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33a07ae9-2cf6-4248-9c92-4c77236bf784" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8391" - ], - "x-ms-correlation-request-id": [ - "2b72ffcb-db1e-41ef-9c20-f93ace9ee1ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220946Z:2b72ffcb-db1e-41ef-9c20-f93ace9ee1ff" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "798cc20d-2c0d-49e7-999b-ea2caac95428" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8390" - ], - "x-ms-correlation-request-id": [ - "7f7fc508-941b-4258-8974-ed5c9bd5f352" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220946Z:7f7fc508-941b-4258-8974-ed5c9bd5f352" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe1b49a9-ed80-471f-b0c0-79faa8822788" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8389" - ], - "x-ms-correlation-request-id": [ - "8f5a7b4d-3f30-4e5d-82cb-88e8827f8cc9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220947Z:8f5a7b4d-3f30-4e5d-82cb-88e8827f8cc9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd932d08-d789-44e8-b873-899e8ccc784e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8388" - ], - "x-ms-correlation-request-id": [ - "7b0556b6-1be9-415f-9be5-ed0e1f0d795e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220947Z:7b0556b6-1be9-415f-9be5-ed0e1f0d795e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2379b65a-9cb7-4056-8c96-a1edba3d73a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8387" - ], - "x-ms-correlation-request-id": [ - "82cbc1a2-b4bd-4743-a6a5-4ecf8499dc5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220947Z:82cbc1a2-b4bd-4743-a6a5-4ecf8499dc5d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c0c7c69-24be-4c6e-8a51-c945092651eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8386" - ], - "x-ms-correlation-request-id": [ - "297502c7-64db-4484-aba5-f639bfb5b833" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220947Z:297502c7-64db-4484-aba5-f639bfb5b833" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d57090b9-ac36-46ba-8cbd-f7f22ba287cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8385" - ], - "x-ms-correlation-request-id": [ - "609a40f7-28ff-4f41-a7df-d422886fd3fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220947Z:609a40f7-28ff-4f41-a7df-d422886fd3fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c094ea0c-1cf2-401a-acd4-b7ea8919d1e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8384" - ], - "x-ms-correlation-request-id": [ - "315aa5eb-d347-4470-9513-c52458c271f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220948Z:315aa5eb-d347-4470-9513-c52458c271f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b37f75db-3617-44aa-9e84-f87ef5a11d29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8383" - ], - "x-ms-correlation-request-id": [ - "46c856ae-a626-40d0-94fc-0ad83cf3af49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220948Z:46c856ae-a626-40d0-94fc-0ad83cf3af49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ef42ae4-2ec2-45f6-9c71-0721315d0ff6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8382" - ], - "x-ms-correlation-request-id": [ - "e2eee8ef-5cf4-4847-b2eb-cda809b905c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220948Z:e2eee8ef-5cf4-4847-b2eb-cda809b905c0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "634ac5a8-647b-43b3-881e-0fb16d7ec868" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8381" - ], - "x-ms-correlation-request-id": [ - "9b878df0-d532-4268-9c44-7482370ccc18" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220948Z:9b878df0-d532-4268-9c44-7482370ccc18" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ade7533-29bb-4e16-bf1e-06b114c6f565" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8380" - ], - "x-ms-correlation-request-id": [ - "43c5b9bf-d963-42b6-ba5b-be275e067a20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220948Z:43c5b9bf-d963-42b6-ba5b-be275e067a20" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c348c1d-3664-4671-bf5d-0843684c08aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8379" - ], - "x-ms-correlation-request-id": [ - "079d85db-1a73-4c31-a0c2-d9f0c51436df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220949Z:079d85db-1a73-4c31-a0c2-d9f0c51436df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7da6bb62-a147-499d-8240-e2ad7d19da61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8378" - ], - "x-ms-correlation-request-id": [ - "ba86071a-e8f9-4ca9-9919-b221416e8056" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220949Z:ba86071a-e8f9-4ca9-9919-b221416e8056" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1be831cb-4060-4029-98f6-2c3a24a70ed1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8377" - ], - "x-ms-correlation-request-id": [ - "1d98418b-023c-4269-b3cd-e61efa882843" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220949Z:1d98418b-023c-4269-b3cd-e61efa882843" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b1fdca0-60dd-4df9-9cce-9651a56c32da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8376" - ], - "x-ms-correlation-request-id": [ - "3bba82cc-a834-4979-a6d9-150561c1eff7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220949Z:3bba82cc-a834-4979-a6d9-150561c1eff7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b807a67-090b-4c79-84c9-693046ce8f38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8375" - ], - "x-ms-correlation-request-id": [ - "b369db48-1e72-48a8-83cf-49364cc75d9b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220949Z:b369db48-1e72-48a8-83cf-49364cc75d9b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d304f83d-95de-4e4f-81f2-e6aa171cc062" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8374" - ], - "x-ms-correlation-request-id": [ - "522a3582-7dc7-4f26-85c4-95348e6a30fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220950Z:522a3582-7dc7-4f26-85c4-95348e6a30fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43d21c1e-6634-4bb6-8af6-c99fcee36b5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8373" - ], - "x-ms-correlation-request-id": [ - "2545158b-e69a-415e-b1c5-a69d2f6327e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220950Z:2545158b-e69a-415e-b1c5-a69d2f6327e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6c6174c-e35d-4a8c-a385-185d778e5182" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8372" - ], - "x-ms-correlation-request-id": [ - "a624e67a-e014-4761-9089-265d573bba49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220950Z:a624e67a-e014-4761-9089-265d573bba49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "521d1581-2395-4e75-9dde-bd7d455f57aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8371" - ], - "x-ms-correlation-request-id": [ - "41ee26d2-4469-4d5a-ab61-aafb4f266ebd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220950Z:41ee26d2-4469-4d5a-ab61-aafb4f266ebd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d6a373a-2aeb-48cd-bbf0-2912110f111b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8370" - ], - "x-ms-correlation-request-id": [ - "56d59b57-6141-40e1-bdec-b084ecb5c63a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220950Z:56d59b57-6141-40e1-bdec-b084ecb5c63a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb316d93-5bd7-41b6-b17a-c0158ec5dd41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8369" - ], - "x-ms-correlation-request-id": [ - "a5c11ee8-ff29-4b31-a81c-8fa1766df0a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220950Z:a5c11ee8-ff29-4b31-a81c-8fa1766df0a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0441a627-26d6-4189-a540-e8fbcaf4f023" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8368" - ], - "x-ms-correlation-request-id": [ - "cd559569-e994-42ef-a2f2-ac5a76d9bf7f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220951Z:cd559569-e994-42ef-a2f2-ac5a76d9bf7f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46d7f74f-a769-493c-ab31-22fd3854406b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8367" - ], - "x-ms-correlation-request-id": [ - "1467d96c-da5f-459f-a605-0d191f9aeae9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220951Z:1467d96c-da5f-459f-a605-0d191f9aeae9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef54ddf0-342c-479c-8cfc-3be219772a31" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8366" - ], - "x-ms-correlation-request-id": [ - "edc172b2-18f2-455f-a5d9-7c60ec10e786" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220951Z:edc172b2-18f2-455f-a5d9-7c60ec10e786" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "080a52ed-7a67-4129-9771-42c0c1de824f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8365" - ], - "x-ms-correlation-request-id": [ - "29ad0826-87c4-429f-9627-936631327e74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220951Z:29ad0826-87c4-429f-9627-936631327e74" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00f35768-759a-4810-8d5c-eff32b5fb721" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8364" - ], - "x-ms-correlation-request-id": [ - "d635d2d2-079a-4aba-b1af-1c2e13852d9b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220951Z:d635d2d2-079a-4aba-b1af-1c2e13852d9b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d4f7161-0571-4dca-b1e5-c43f5a918eb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8363" - ], - "x-ms-correlation-request-id": [ - "aab6c884-3cb5-4ba4-9751-49c190e5987a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220951Z:aab6c884-3cb5-4ba4-9751-49c190e5987a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5872c591-a187-4b68-a48c-fd51e4874177" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8362" - ], - "x-ms-correlation-request-id": [ - "0625953b-275b-4add-917d-42cd49445494" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220951Z:0625953b-275b-4add-917d-42cd49445494" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "178f993b-b73a-44c8-b5b0-696f1d62e09c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8361" - ], - "x-ms-correlation-request-id": [ - "51fd9ecb-2502-47e9-88bf-daba28aee691" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220952Z:51fd9ecb-2502-47e9-88bf-daba28aee691" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41ff929e-fa94-4881-ba86-f8d923c70e73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8360" - ], - "x-ms-correlation-request-id": [ - "aeb3f051-ba2c-4fcb-a348-aabd10c5f116" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220952Z:aeb3f051-ba2c-4fcb-a348-aabd10c5f116" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c8fc538-311e-4b60-9459-3f724fc37ac0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8359" - ], - "x-ms-correlation-request-id": [ - "4ca8de0a-1da4-45ff-99c0-e332a086fa40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220952Z:4ca8de0a-1da4-45ff-99c0-e332a086fa40" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86689597-5e87-409f-b988-fff793975618" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8358" - ], - "x-ms-correlation-request-id": [ - "82080fa2-37f3-4ff0-abf9-179d23a0482e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220952Z:82080fa2-37f3-4ff0-abf9-179d23a0482e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73a96381-c703-42c7-b24f-b768473a5a09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8357" - ], - "x-ms-correlation-request-id": [ - "0521663a-e12b-49e7-b904-6e9b483e9af2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220952Z:0521663a-e12b-49e7-b904-6e9b483e9af2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eaae8a0e-46ff-47b8-a803-a9ff595d3b89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8356" - ], - "x-ms-correlation-request-id": [ - "a8fec90d-1555-4573-9d8e-ea8ccdad7340" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220952Z:a8fec90d-1555-4573-9d8e-ea8ccdad7340" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81f8f0bc-12f2-4972-8aaa-1aee87cb86f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8355" - ], - "x-ms-correlation-request-id": [ - "f4758606-3384-436f-af13-956563bedb08" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220953Z:f4758606-3384-436f-af13-956563bedb08" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "264b94c7-344f-479f-8c97-a0650f6d686d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8354" - ], - "x-ms-correlation-request-id": [ - "e84687ed-e725-42cd-a129-07612abeb042" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220953Z:e84687ed-e725-42cd-a129-07612abeb042" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5cf6d354-83c8-44a3-9822-666d54ad110b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8353" - ], - "x-ms-correlation-request-id": [ - "18383818-b029-4e9a-895e-e705c9c1458f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220953Z:18383818-b029-4e9a-895e-e705c9c1458f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63c08a8a-d709-4c48-bbbf-a7e0e3892897" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8352" - ], - "x-ms-correlation-request-id": [ - "6dd4e375-52fa-4cba-9b87-245aed4f34ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220953Z:6dd4e375-52fa-4cba-9b87-245aed4f34ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96f59aab-f79f-4272-848c-0c6f1a71909b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8351" - ], - "x-ms-correlation-request-id": [ - "db5f750d-2d8d-4692-9037-40695a3eb96a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220953Z:db5f750d-2d8d-4692-9037-40695a3eb96a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df249bec-c289-4f35-921d-321ac9776b52" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8350" - ], - "x-ms-correlation-request-id": [ - "ab9200f8-9a41-4add-9f31-d851409f8f39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220953Z:ab9200f8-9a41-4add-9f31-d851409f8f39" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a21dbd4-108a-4b37-adb5-46bd3e045093" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8349" - ], - "x-ms-correlation-request-id": [ - "6c7f9c34-1bc7-4a25-aaf1-10f663d2e55b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220954Z:6c7f9c34-1bc7-4a25-aaf1-10f663d2e55b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de516192-23dd-49a2-a75f-be23b6592405" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8348" - ], - "x-ms-correlation-request-id": [ - "e8efb5f5-1f39-4b47-8614-152e721f4d31" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220954Z:e8efb5f5-1f39-4b47-8614-152e721f4d31" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d7e7bc4-e475-4518-9141-f37c69fa44e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8347" - ], - "x-ms-correlation-request-id": [ - "e5441732-e004-4965-8b8f-362eeca30343" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220954Z:e5441732-e004-4965-8b8f-362eeca30343" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e066d2da-d2b7-4530-99fd-8cda9a9a61dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8346" - ], - "x-ms-correlation-request-id": [ - "e6d3365a-c582-4a94-b4d8-8ecfb6f16f3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220954Z:e6d3365a-c582-4a94-b4d8-8ecfb6f16f3d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bde4c2a8-0e0f-4bee-ad66-6b2cfa98f59d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8345" - ], - "x-ms-correlation-request-id": [ - "564d69f4-b13a-475f-8f37-1fae6d632efb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220954Z:564d69f4-b13a-475f-8f37-1fae6d632efb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a58142db-7c51-4072-880b-fcdde2fecacc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8344" - ], - "x-ms-correlation-request-id": [ - "0bc45ce0-258e-49a0-b8bd-ad066a00c732" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220954Z:0bc45ce0-258e-49a0-b8bd-ad066a00c732" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee74ec43-65b2-48c3-8e60-cbf551093f52" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8343" - ], - "x-ms-correlation-request-id": [ - "28fe3770-b82d-47e2-a090-6c94f301f58d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220955Z:28fe3770-b82d-47e2-a090-6c94f301f58d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2cfad79e-9e62-4e86-86fa-f8fc58f77b5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8342" - ], - "x-ms-correlation-request-id": [ - "3f3e639e-fea6-436a-a3e9-fdfb4afe61bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220955Z:3f3e639e-fea6-436a-a3e9-fdfb4afe61bf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e05a4816-5d78-4398-99b3-59c46c26ba2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8341" - ], - "x-ms-correlation-request-id": [ - "8dc9e620-30f8-494f-886a-41268c5c4911" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220955Z:8dc9e620-30f8-494f-886a-41268c5c4911" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "300d807e-daef-41fb-9a59-370627b75be3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8340" - ], - "x-ms-correlation-request-id": [ - "f284771f-00df-43fc-8f6b-a7326cc8be6e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220955Z:f284771f-00df-43fc-8f6b-a7326cc8be6e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "744812ab-d45e-483f-8904-898764629fb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8339" - ], - "x-ms-correlation-request-id": [ - "057cce19-45f7-4b16-bef5-89de3be0472d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220955Z:057cce19-45f7-4b16-bef5-89de3be0472d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dee21a43-2abb-47bf-b24e-0cbe9fe9a956" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8338" - ], - "x-ms-correlation-request-id": [ - "b9880e9a-4fac-4944-846f-a2cbb47d94b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220955Z:b9880e9a-4fac-4944-846f-a2cbb47d94b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fafa70a6-9808-4abe-9ea0-0e37be01a5bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8337" - ], - "x-ms-correlation-request-id": [ - "943deaf1-cc3f-4df2-963a-07ec63c91ab1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220955Z:943deaf1-cc3f-4df2-963a-07ec63c91ab1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8dc8183-cb02-474e-87c0-fcb84c2cef9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8336" - ], - "x-ms-correlation-request-id": [ - "738c59b7-05eb-41ff-8a8a-0c7e70cfb26e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220956Z:738c59b7-05eb-41ff-8a8a-0c7e70cfb26e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b9dd810-8ca4-41da-b432-498f13243871" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8335" - ], - "x-ms-correlation-request-id": [ - "123b97eb-4892-492f-b4ed-28f1b3ba7319" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220956Z:123b97eb-4892-492f-b4ed-28f1b3ba7319" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd93220e-41dc-41d4-8794-6311b5bbfdfb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8334" - ], - "x-ms-correlation-request-id": [ - "34382f90-f4c4-4155-ad5a-546a2200bd5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220956Z:34382f90-f4c4-4155-ad5a-546a2200bd5a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94f950b7-27ec-4824-a86f-30197197f8e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8333" - ], - "x-ms-correlation-request-id": [ - "11972a93-3ba5-4dc3-b024-fcf51f26155a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220956Z:11972a93-3ba5-4dc3-b024-fcf51f26155a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a33c8e55-6f50-4916-ab1d-3f559cdc64a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8332" - ], - "x-ms-correlation-request-id": [ - "b3e917ee-54e9-4c8d-ab2e-445ee140ab34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220956Z:b3e917ee-54e9-4c8d-ab2e-445ee140ab34" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e735a773-867d-490f-a52a-5011059f3920" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8331" - ], - "x-ms-correlation-request-id": [ - "f0d07c18-e4d3-4534-a732-721b53415c31" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220956Z:f0d07c18-e4d3-4534-a732-721b53415c31" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9728195-93e3-45aa-b4ee-f44ab81a77c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8330" - ], - "x-ms-correlation-request-id": [ - "c2c16823-18c4-4841-846d-01e59fb5ee6b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220956Z:c2c16823-18c4-4841-846d-01e59fb5ee6b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "783e2025-1e1b-4295-a2c8-f1352424cad5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8329" - ], - "x-ms-correlation-request-id": [ - "cf99bd4c-c48d-48f1-9e4b-d72ac45e1837" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220957Z:cf99bd4c-c48d-48f1-9e4b-d72ac45e1837" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c262e3da-12a0-4e85-87d9-22fc37fa319c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8328" - ], - "x-ms-correlation-request-id": [ - "b61c8a40-350c-4194-b864-789099abb908" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220957Z:b61c8a40-350c-4194-b864-789099abb908" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ec86aa1-246f-424f-a741-716c73f15297" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8327" - ], - "x-ms-correlation-request-id": [ - "96f736d2-3055-48d1-b90f-cd1ddf20b2cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220957Z:96f736d2-3055-48d1-b90f-cd1ddf20b2cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "108d4562-0dc6-4967-b67e-f75cd450c7dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8326" - ], - "x-ms-correlation-request-id": [ - "1110352e-7771-4494-92aa-8cdc6e8dbf92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220957Z:1110352e-7771-4494-92aa-8cdc6e8dbf92" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "edc68191-5123-4a1b-a61d-a94d61c2e001" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8325" - ], - "x-ms-correlation-request-id": [ - "22fbe885-e852-4a44-bb47-6b3c350d900c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220957Z:22fbe885-e852-4a44-bb47-6b3c350d900c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ae7fddd-4075-4e05-a07f-c2fa48988d85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8324" - ], - "x-ms-correlation-request-id": [ - "879c9275-7aef-4432-b98c-f593881fc60a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220958Z:879c9275-7aef-4432-b98c-f593881fc60a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86fe641b-4fa4-49e0-9386-6770939b6eed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8323" - ], - "x-ms-correlation-request-id": [ - "1d022878-7b93-44d0-9403-5708b600e42c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220958Z:1d022878-7b93-44d0-9403-5708b600e42c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22fc90c0-cc47-4ed6-b12c-9acdf24fb929" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8322" - ], - "x-ms-correlation-request-id": [ - "b79e8f25-8388-4bdf-8390-eed035d83c8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220958Z:b79e8f25-8388-4bdf-8390-eed035d83c8c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da643d4f-a27e-4697-82b6-56a7957d859e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8321" - ], - "x-ms-correlation-request-id": [ - "4a0930d6-de28-4451-89df-418d617830c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220958Z:4a0930d6-de28-4451-89df-418d617830c0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "219aa955-a053-4da2-b58a-9de005983eb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8320" - ], - "x-ms-correlation-request-id": [ - "60043763-d809-4e2f-b910-866f2c2996aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220958Z:60043763-d809-4e2f-b910-866f2c2996aa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae698356-436e-401f-bac6-e6e7c2edc6a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8319" - ], - "x-ms-correlation-request-id": [ - "ad025b1f-309e-4fb1-bc6b-1f75cbeaedab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220958Z:ad025b1f-309e-4fb1-bc6b-1f75cbeaedab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "354df601-6783-49eb-80d1-c6efe83f4416" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8318" - ], - "x-ms-correlation-request-id": [ - "8a62d93a-b5c2-4fa3-8b5a-114a634dc364" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220959Z:8a62d93a-b5c2-4fa3-8b5a-114a634dc364" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c65d3a1-2120-47dc-88a0-3de086f9112c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8317" - ], - "x-ms-correlation-request-id": [ - "faf65e94-f29f-48c7-896f-05a8a9262b74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220959Z:faf65e94-f29f-48c7-896f-05a8a9262b74" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b15a0a3-e888-4929-b07d-a338c292226c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8316" - ], - "x-ms-correlation-request-id": [ - "99b13a83-a5b6-426f-8d06-520249881412" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220959Z:99b13a83-a5b6-426f-8d06-520249881412" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "66754b64-b77c-4062-81c8-dd90415f138d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8315" - ], - "x-ms-correlation-request-id": [ - "5b64211a-3695-4d70-b937-9c0be7664a3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220959Z:5b64211a-3695-4d70-b937-9c0be7664a3e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60c4e66b-34a7-4879-a2dc-4f3fdb2e5e58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8314" - ], - "x-ms-correlation-request-id": [ - "5439305e-b368-4e20-9965-1b0f70600be5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220959Z:5439305e-b368-4e20-9965-1b0f70600be5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d1592d3-278f-4612-a32b-96c39a14a930" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8313" - ], - "x-ms-correlation-request-id": [ - "da0025d7-2128-4477-bd3d-c435739c00ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T220959Z:da0025d7-2128-4477-bd3d-c435739c00ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "731f42b5-732a-471f-a60a-958b92a01261" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8312" - ], - "x-ms-correlation-request-id": [ - "611fdaed-7e93-436f-bb65-4efdbe21fc86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221000Z:611fdaed-7e93-436f-bb65-4efdbe21fc86" - ], - "Date": [ - "Tue, 29 Aug 2017 22:09:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74fd8fa0-79af-49eb-901d-820a89f1c9fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8311" - ], - "x-ms-correlation-request-id": [ - "a49a5771-5895-4b73-9cc8-a8f081172edd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221000Z:a49a5771-5895-4b73-9cc8-a8f081172edd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "177a1708-000a-4b15-be83-e809c00b5d8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8310" - ], - "x-ms-correlation-request-id": [ - "979865eb-ffa7-46c6-ae95-8180d95ae8b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221000Z:979865eb-ffa7-46c6-ae95-8180d95ae8b5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3fcbe3f7-dd07-4b1e-9f44-719b2f4ee6a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8309" - ], - "x-ms-correlation-request-id": [ - "74fec896-769d-4536-a1e1-30121c54d7f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221000Z:74fec896-769d-4536-a1e1-30121c54d7f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95bbb700-f5da-47a4-8954-009e9db9623d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8308" - ], - "x-ms-correlation-request-id": [ - "724e69ef-731a-4b5c-8933-3d674ebaf473" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221000Z:724e69ef-731a-4b5c-8933-3d674ebaf473" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "149a59fa-254b-4c6c-9533-cf085403ea86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8307" - ], - "x-ms-correlation-request-id": [ - "af1982dd-d025-4d5b-becf-888dc202960d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221000Z:af1982dd-d025-4d5b-becf-888dc202960d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0aa5807-164e-45c0-a412-2c3e3379ec9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8306" - ], - "x-ms-correlation-request-id": [ - "85514cef-e526-452b-99df-3dc3ca766486" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221001Z:85514cef-e526-452b-99df-3dc3ca766486" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ef556be-8894-4c8a-b499-1bf31edde744" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8305" - ], - "x-ms-correlation-request-id": [ - "8510cbd0-7a2e-4d72-bafc-4dff0330f60d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221001Z:8510cbd0-7a2e-4d72-bafc-4dff0330f60d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89e6a72a-206d-4f35-ac34-13855e44a7e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8304" - ], - "x-ms-correlation-request-id": [ - "2b4e22d3-37ad-49ec-bcd5-35ae184ef2ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221001Z:2b4e22d3-37ad-49ec-bcd5-35ae184ef2ec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae9b38f8-16d3-4806-b9fa-2beae290c922" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8303" - ], - "x-ms-correlation-request-id": [ - "3510f8fb-d4c0-42d4-99cb-f8adf752dffa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221002Z:3510f8fb-d4c0-42d4-99cb-f8adf752dffa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "749445c2-0cfe-499c-80b1-d4536e0503c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8302" - ], - "x-ms-correlation-request-id": [ - "d097c274-b7f1-4909-9df3-2854c397ba58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221002Z:d097c274-b7f1-4909-9df3-2854c397ba58" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bd303d4e-d03a-4a33-9069-769a632f52e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8301" - ], - "x-ms-correlation-request-id": [ - "04bc9bda-846d-4c40-84ad-d60c13a1f266" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221002Z:04bc9bda-846d-4c40-84ad-d60c13a1f266" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b00c748-0a20-410f-a41e-d1bef80bf7d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8300" - ], - "x-ms-correlation-request-id": [ - "8804ca18-e911-40d6-8536-71102d8a1264" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221002Z:8804ca18-e911-40d6-8536-71102d8a1264" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1af00b25-264e-476e-8e64-252cb12c3d75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8299" - ], - "x-ms-correlation-request-id": [ - "59f23974-5b8c-4314-9601-8ce43e9b6e2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221002Z:59f23974-5b8c-4314-9601-8ce43e9b6e2c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5f0b5b9-6362-4197-8a51-3ffb45c63320" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8298" - ], - "x-ms-correlation-request-id": [ - "1a5965b9-93ee-4ba8-b8d3-e7b7f44bbe81" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221002Z:1a5965b9-93ee-4ba8-b8d3-e7b7f44bbe81" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e98f430a-27a8-4016-ad0a-414d603b8046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8297" - ], - "x-ms-correlation-request-id": [ - "e638b3b9-554c-4a5e-abc8-f8b453728ad7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221003Z:e638b3b9-554c-4a5e-abc8-f8b453728ad7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b3a1fffa-f8de-4620-826d-febba0b4d935" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8296" - ], - "x-ms-correlation-request-id": [ - "1a582ad2-a113-48a5-a686-da02f20e2866" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221003Z:1a582ad2-a113-48a5-a686-da02f20e2866" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b17c611f-1ea6-4886-9eb4-2a0f98cedcdb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8295" - ], - "x-ms-correlation-request-id": [ - "b0853bbc-ec6b-4c14-a18c-ef5c25379236" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221003Z:b0853bbc-ec6b-4c14-a18c-ef5c25379236" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9afc8fd2-908b-4d5f-b1bf-c0462ddf46c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8294" - ], - "x-ms-correlation-request-id": [ - "855551cb-c6ec-40d4-be66-ab6363a90c4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221003Z:855551cb-c6ec-40d4-be66-ab6363a90c4b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb278b62-b77f-4e69-9871-92bc51dd8009" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8293" - ], - "x-ms-correlation-request-id": [ - "402e5dd6-1919-4195-ba8a-620868f037cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221003Z:402e5dd6-1919-4195-ba8a-620868f037cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "496fc37b-c464-4577-948e-5f78bda295d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8292" - ], - "x-ms-correlation-request-id": [ - "da12d878-4f0e-4516-9d4d-7a54263b7ded" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221003Z:da12d878-4f0e-4516-9d4d-7a54263b7ded" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "acfb90c0-622b-41de-bb18-d095bf99f828" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8291" - ], - "x-ms-correlation-request-id": [ - "63359e7a-20fd-4178-92be-d9cc5c02fd43" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221004Z:63359e7a-20fd-4178-92be-d9cc5c02fd43" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dbaf0ab7-a176-494e-aaa5-ca568a741a2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8290" - ], - "x-ms-correlation-request-id": [ - "6591a87d-4331-4594-ab29-15ab88279e43" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221004Z:6591a87d-4331-4594-ab29-15ab88279e43" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "580ff4b1-a5d0-4b51-bbc0-f7cb701ccd55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8289" - ], - "x-ms-correlation-request-id": [ - "d7d3db98-7787-40b9-b583-22e4912bf367" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221004Z:d7d3db98-7787-40b9-b583-22e4912bf367" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e9ef78a4-f8aa-4671-b51b-c23b9ae5e238" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8288" - ], - "x-ms-correlation-request-id": [ - "252f9184-7098-4a9a-a33b-a10b96a7650f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221004Z:252f9184-7098-4a9a-a33b-a10b96a7650f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "059c00ec-b396-4e39-a58f-58faeeaab2fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8287" - ], - "x-ms-correlation-request-id": [ - "11976a9b-79cc-45f0-bec7-d6cdcff51792" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221004Z:11976a9b-79cc-45f0-bec7-d6cdcff51792" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5431af3b-8c0a-4870-b728-3de24cd3249b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8286" - ], - "x-ms-correlation-request-id": [ - "f5cae474-cd80-42c1-b878-cd3283ffacb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221005Z:f5cae474-cd80-42c1-b878-cd3283ffacb8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4839dcdd-6232-4f80-972b-b48259c4a4bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8285" - ], - "x-ms-correlation-request-id": [ - "ce196d97-3099-4f4a-bc7c-f807348934f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221005Z:ce196d97-3099-4f4a-bc7c-f807348934f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fcdc987f-a54c-46cb-9636-5e4f1801daad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8284" - ], - "x-ms-correlation-request-id": [ - "9b173adb-72d6-4205-a7f4-ba60a4ddfdb3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221005Z:9b173adb-72d6-4205-a7f4-ba60a4ddfdb3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6eda281-69f0-4e28-8972-066662a53fbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8283" - ], - "x-ms-correlation-request-id": [ - "bc1b0491-3904-4640-a067-0a8895d832fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221005Z:bc1b0491-3904-4640-a067-0a8895d832fc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13b3e4f1-65b9-4cc9-bde0-369befdaf303" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8282" - ], - "x-ms-correlation-request-id": [ - "7e36c52d-955b-4541-b3e5-cd701c3238ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221005Z:7e36c52d-955b-4541-b3e5-cd701c3238ec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3e124ab-0cd2-43ae-bec0-450dcfd0a524" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8281" - ], - "x-ms-correlation-request-id": [ - "0e772dc0-faaa-435d-903c-4409bcea71e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221006Z:0e772dc0-faaa-435d-903c-4409bcea71e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac96095f-686f-47b6-b43c-568fdade460d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8280" - ], - "x-ms-correlation-request-id": [ - "c94bd119-0159-47b8-af34-a3f4baf652c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221006Z:c94bd119-0159-47b8-af34-a3f4baf652c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "166b7405-69e3-4ad8-a8bd-0406542d94a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8279" - ], - "x-ms-correlation-request-id": [ - "e9cd08b4-c000-482d-980b-cd685ea48cd2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221006Z:e9cd08b4-c000-482d-980b-cd685ea48cd2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5206fc26-9480-4690-9eae-c8d0be6b4423" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8278" - ], - "x-ms-correlation-request-id": [ - "e01c8e56-93a3-4c23-98d6-a0c3ec559ab2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221006Z:e01c8e56-93a3-4c23-98d6-a0c3ec559ab2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c2e86ca-5c9e-475e-a34a-a4aedc5e73c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8277" - ], - "x-ms-correlation-request-id": [ - "cafc0be4-8ced-459a-a7ec-7d258c983f4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221006Z:cafc0be4-8ced-459a-a7ec-7d258c983f4c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9f7359f-378b-4529-adeb-e82dcad9dcf8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8276" - ], - "x-ms-correlation-request-id": [ - "eb5d6eaf-0fd0-4ca0-b821-0d8f9459b162" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221007Z:eb5d6eaf-0fd0-4ca0-b821-0d8f9459b162" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd2ff006-4bfd-4289-9e5b-b44c56a1f66a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8275" - ], - "x-ms-correlation-request-id": [ - "e57a5535-bfdf-47d0-8705-1a0dce1163f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221007Z:e57a5535-bfdf-47d0-8705-1a0dce1163f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc78d68b-60d7-44fe-9d4f-ef915856c3df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8274" - ], - "x-ms-correlation-request-id": [ - "15dbebad-2ba8-460d-8ef0-18a1237a2c5f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221007Z:15dbebad-2ba8-460d-8ef0-18a1237a2c5f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3063f9eb-c7ac-4b06-b867-4203b01e61fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8273" - ], - "x-ms-correlation-request-id": [ - "5f2118ae-8b5c-42df-b340-6b22639fb9da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221007Z:5f2118ae-8b5c-42df-b340-6b22639fb9da" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0536a057-7d98-42f7-8a21-e4c06d71bb88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8272" - ], - "x-ms-correlation-request-id": [ - "682205d2-6143-4af6-aa8c-11b43605f69f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221007Z:682205d2-6143-4af6-aa8c-11b43605f69f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3eb80416-5880-4f31-86c7-89e9ad9dc95f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8271" - ], - "x-ms-correlation-request-id": [ - "dcb3b239-4d78-43ce-95e2-b51a8fe5fd10" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221007Z:dcb3b239-4d78-43ce-95e2-b51a8fe5fd10" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cac4dec0-1da7-49d4-9729-1871fcac9210" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8270" - ], - "x-ms-correlation-request-id": [ - "9eecd9da-feb0-4b9f-ac46-cfdceb3b6116" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221008Z:9eecd9da-feb0-4b9f-ac46-cfdceb3b6116" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86c9015d-56dc-4d1c-abd5-d47f92c49a15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8269" - ], - "x-ms-correlation-request-id": [ - "d1f79fde-c987-48c2-9fbd-5a413f84220c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221008Z:d1f79fde-c987-48c2-9fbd-5a413f84220c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0b4955ae-526f-47ad-9009-fc8a6ab78dd5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8268" - ], - "x-ms-correlation-request-id": [ - "d1156a8f-8e24-47de-a3a6-9dd71800afdf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221008Z:d1156a8f-8e24-47de-a3a6-9dd71800afdf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "deda4778-a49c-4c98-bc93-d5fe31162e95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8267" - ], - "x-ms-correlation-request-id": [ - "a99cb9eb-dca5-4f37-9674-f7c6acb67f62" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221008Z:a99cb9eb-dca5-4f37-9674-f7c6acb67f62" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5bf5fcb5-c11a-4972-9cff-2a35c4b57467" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8266" - ], - "x-ms-correlation-request-id": [ - "a8ff52b1-2b5b-4412-9f55-cc3036a70ad2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221008Z:a8ff52b1-2b5b-4412-9f55-cc3036a70ad2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e96dfc7-f405-45a8-a638-d379138fdcf3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8265" - ], - "x-ms-correlation-request-id": [ - "0bb85467-2dae-45ee-8690-9ac3fe460121" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221008Z:0bb85467-2dae-45ee-8690-9ac3fe460121" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3027cd7-3d51-4773-abae-6d8a93de1367" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8264" - ], - "x-ms-correlation-request-id": [ - "b1187508-affc-451b-9727-09878584575f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221009Z:b1187508-affc-451b-9727-09878584575f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7622a452-8a33-4a8a-a6df-aeb29a4b67c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8263" - ], - "x-ms-correlation-request-id": [ - "3aa9e14b-6439-47f8-a5a0-3880b85836b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221009Z:3aa9e14b-6439-47f8-a5a0-3880b85836b9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd791d10-a32e-4eac-bbb5-d9f39f71fa6b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8262" - ], - "x-ms-correlation-request-id": [ - "10ad48bc-bc52-487e-bccd-ecc3c0c56aaf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221009Z:10ad48bc-bc52-487e-bccd-ecc3c0c56aaf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4aa3ca13-2b00-46ba-b2f6-452dd95d3337" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8261" - ], - "x-ms-correlation-request-id": [ - "4b429546-45a8-4a66-9ed1-bc588eca571b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221009Z:4b429546-45a8-4a66-9ed1-bc588eca571b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0a029b8-b622-4704-aad9-4378de5ea0ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8260" - ], - "x-ms-correlation-request-id": [ - "8f312688-b5de-47d3-beea-3877599d79ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221009Z:8f312688-b5de-47d3-beea-3877599d79ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c62994a-1a14-4356-83aa-2664974f2258" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8259" - ], - "x-ms-correlation-request-id": [ - "83b54508-b03c-4822-bea2-d8b0f8b75226" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221009Z:83b54508-b03c-4822-bea2-d8b0f8b75226" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d59221f-c6d1-4078-ae4b-1068afe05170" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8258" - ], - "x-ms-correlation-request-id": [ - "0cefbbba-9828-46a8-ac4d-e0b6d87bcec9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221010Z:0cefbbba-9828-46a8-ac4d-e0b6d87bcec9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc2b9387-4ded-493c-850c-35d01b320c7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8257" - ], - "x-ms-correlation-request-id": [ - "7cd545ba-5d5c-4102-a6ef-918fb011f913" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221010Z:7cd545ba-5d5c-4102-a6ef-918fb011f913" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe6fe995-5e16-444a-b9d6-0ef0c77a9439" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8256" - ], - "x-ms-correlation-request-id": [ - "206c2c0d-ed8a-4559-a972-541f21a9dc2a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221010Z:206c2c0d-ed8a-4559-a972-541f21a9dc2a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6bb6fa53-bc2a-40b6-8730-73ab373ce739" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8255" - ], - "x-ms-correlation-request-id": [ - "f536ffae-baff-4964-9f89-d776b630bcd3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221010Z:f536ffae-baff-4964-9f89-d776b630bcd3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a7467f6-d4f7-4759-b63d-dc93d5c100ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8254" - ], - "x-ms-correlation-request-id": [ - "6946203e-08b2-41a8-ab9b-b1a39d79d311" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221010Z:6946203e-08b2-41a8-ab9b-b1a39d79d311" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a08acd8e-0cb7-4941-b254-cb02b07c91b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8253" - ], - "x-ms-correlation-request-id": [ - "02a40c7c-5a8f-422c-9fdb-b3ae31cb377d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221010Z:02a40c7c-5a8f-422c-9fdb-b3ae31cb377d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d21798f6-e85b-4420-aaae-3a93e2fb4787" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8252" - ], - "x-ms-correlation-request-id": [ - "3ecadb5a-29d8-4181-a839-8ed7c2f24500" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221011Z:3ecadb5a-29d8-4181-a839-8ed7c2f24500" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f71140eb-54b4-4450-aef6-ae87896a2601" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8251" - ], - "x-ms-correlation-request-id": [ - "d7500a09-e5f7-4b27-bf43-4eda175cc842" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221011Z:d7500a09-e5f7-4b27-bf43-4eda175cc842" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0eda77be-5632-44c2-9e72-d336b3ca0ea2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8250" - ], - "x-ms-correlation-request-id": [ - "b3105d0f-a8b5-45ea-bac9-f131b26a0f04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221011Z:b3105d0f-a8b5-45ea-bac9-f131b26a0f04" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "afe9bdac-4797-4fc2-b8fe-8eaa8e8bf16b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8249" - ], - "x-ms-correlation-request-id": [ - "e21b8e72-9e13-42ad-be60-25ab11ca7de4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221012Z:e21b8e72-9e13-42ad-be60-25ab11ca7de4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bed39f96-4bd0-4372-95fc-0068012876aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8248" - ], - "x-ms-correlation-request-id": [ - "e7c35493-6536-48cf-8089-b37588e0b4b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221012Z:e7c35493-6536-48cf-8089-b37588e0b4b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22f8fd4b-35c1-46ba-b980-33e7cf176fb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8247" - ], - "x-ms-correlation-request-id": [ - "a097f938-178e-43cf-ba16-b0e859988e6e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221012Z:a097f938-178e-43cf-ba16-b0e859988e6e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8f4c3d4-9dd4-4a0f-9835-9ff6d5177529" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8246" - ], - "x-ms-correlation-request-id": [ - "17c0b6d2-bd2f-4ffa-a67e-c0debaf11dcd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221013Z:17c0b6d2-bd2f-4ffa-a67e-c0debaf11dcd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "af88315b-714c-4ed8-87f2-05aee940ba42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8245" - ], - "x-ms-correlation-request-id": [ - "bdfd5561-4b70-4dd7-801e-016db049090f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221013Z:bdfd5561-4b70-4dd7-801e-016db049090f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f73865ac-9e38-4f18-a5fa-751d7d1a5eea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8244" - ], - "x-ms-correlation-request-id": [ - "02d61e76-d856-44a2-b5b1-6ddafb4c0614" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221013Z:02d61e76-d856-44a2-b5b1-6ddafb4c0614" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "430b9856-9dc4-4af5-9fb9-336c6730ccb9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8243" - ], - "x-ms-correlation-request-id": [ - "92efa2de-6437-4c87-b366-4e8c28d45073" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221014Z:92efa2de-6437-4c87-b366-4e8c28d45073" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "478d0295-854b-4e18-9b2a-b929ae05637f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8242" - ], - "x-ms-correlation-request-id": [ - "568c3acf-5666-410c-8d37-e305a7edfedb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221014Z:568c3acf-5666-410c-8d37-e305a7edfedb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61440593-6655-4fd2-b2b6-9ead74646e51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8241" - ], - "x-ms-correlation-request-id": [ - "7962f97b-556a-4e46-ab00-563214033c4f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221014Z:7962f97b-556a-4e46-ab00-563214033c4f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1500a4e1-a751-43cf-9f1a-1c2f50019c26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8240" - ], - "x-ms-correlation-request-id": [ - "348bd6af-0716-4889-868f-777b2a22a4cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221014Z:348bd6af-0716-4889-868f-777b2a22a4cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22e96b4f-6228-45d3-85fc-209992d1a6b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8239" - ], - "x-ms-correlation-request-id": [ - "7024eb5e-5335-4efe-8937-0c2c12ef8cdb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221014Z:7024eb5e-5335-4efe-8937-0c2c12ef8cdb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "006c91cf-7e03-4a8f-b7b2-8fa1ee4765c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8238" - ], - "x-ms-correlation-request-id": [ - "3f962c35-1f10-4c05-b7c3-39f52ca688e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221015Z:3f962c35-1f10-4c05-b7c3-39f52ca688e1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f39c04d8-690a-4b58-9358-3d57323f897c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8237" - ], - "x-ms-correlation-request-id": [ - "20ae5f8b-75b9-40d4-be45-6b393a8857f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221015Z:20ae5f8b-75b9-40d4-be45-6b393a8857f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d5a85de-74f6-4860-aeb6-64291ec9feb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8236" - ], - "x-ms-correlation-request-id": [ - "704c2655-4847-4a65-af7d-a0d56b3066c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221015Z:704c2655-4847-4a65-af7d-a0d56b3066c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0277bf08-e80e-48bb-b927-b3687c5a3768" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8235" - ], - "x-ms-correlation-request-id": [ - "07a16305-1966-4ae1-950a-d153dfca3ab1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221015Z:07a16305-1966-4ae1-950a-d153dfca3ab1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2202973c-aaed-483e-9b1b-a9669aa50ac2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8234" - ], - "x-ms-correlation-request-id": [ - "ffdc57f4-38d5-4cab-96f7-f106c776a130" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221015Z:ffdc57f4-38d5-4cab-96f7-f106c776a130" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc89be80-3cc0-4e05-8912-303a979793db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8233" - ], - "x-ms-correlation-request-id": [ - "258ffcbe-55cf-4a95-b13e-9124bef6efbd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221015Z:258ffcbe-55cf-4a95-b13e-9124bef6efbd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ab39c9e-b0e9-482b-b28b-e8ff9cba4aa9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8232" - ], - "x-ms-correlation-request-id": [ - "dc6b10c7-6587-4185-ac6d-05de7e0e2a23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221016Z:dc6b10c7-6587-4185-ac6d-05de7e0e2a23" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b756119c-912d-454c-8474-116d3c965c1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8231" - ], - "x-ms-correlation-request-id": [ - "2689fc54-e466-40fb-93f4-118f9b8e851a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221016Z:2689fc54-e466-40fb-93f4-118f9b8e851a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a78e0f2c-2211-4ded-ae46-930347cf448e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8230" - ], - "x-ms-correlation-request-id": [ - "151db6d5-edd3-49f6-b557-14700ef3e6c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221016Z:151db6d5-edd3-49f6-b557-14700ef3e6c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31db9265-5f94-48b3-9719-6f8734f976d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8229" - ], - "x-ms-correlation-request-id": [ - "6d7d9e79-aec7-458f-a465-03bbc0348d8b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221016Z:6d7d9e79-aec7-458f-a465-03bbc0348d8b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61af0901-7f08-4c10-8cfc-7149ce18a452" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8228" - ], - "x-ms-correlation-request-id": [ - "be61364f-f5d5-45bb-b0e7-03fa1349067a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221016Z:be61364f-f5d5-45bb-b0e7-03fa1349067a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5e099d5-e995-480f-bbc1-1e5beb804d71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8227" - ], - "x-ms-correlation-request-id": [ - "200853ec-74ef-4d4f-83d9-31d69cb7ba14" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221016Z:200853ec-74ef-4d4f-83d9-31d69cb7ba14" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c7acec3d-02b9-4da2-a24e-f00e0a70b5cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8226" - ], - "x-ms-correlation-request-id": [ - "b47be577-5be0-4810-af8c-5925da5d9ba7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221017Z:b47be577-5be0-4810-af8c-5925da5d9ba7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "15ae056c-11fd-474e-ad7f-d601484a87fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8225" - ], - "x-ms-correlation-request-id": [ - "94aa4bfb-d7cd-4783-9b78-68a4409a4189" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221017Z:94aa4bfb-d7cd-4783-9b78-68a4409a4189" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8da26b75-81ec-42a3-8629-27bff45088f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8224" - ], - "x-ms-correlation-request-id": [ - "63ca2eee-3111-4156-bb05-21589e32f557" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221017Z:63ca2eee-3111-4156-bb05-21589e32f557" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb7a0277-5778-4d4e-b631-e48836e1b7a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8223" - ], - "x-ms-correlation-request-id": [ - "3b3500a4-c6c2-4dc2-a8a6-c1aedb2cf534" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221017Z:3b3500a4-c6c2-4dc2-a8a6-c1aedb2cf534" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df631398-a099-4922-9708-7cf04dd3b6dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8222" - ], - "x-ms-correlation-request-id": [ - "a2b8300d-226f-4d07-940d-bcc7f10d53ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221017Z:a2b8300d-226f-4d07-940d-bcc7f10d53ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79abf325-e252-4d8b-88d3-eedc5b9a2c85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8221" - ], - "x-ms-correlation-request-id": [ - "e3e3442b-336e-4df2-935f-e13868039b1d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221018Z:e3e3442b-336e-4df2-935f-e13868039b1d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae433b2e-36fe-4052-82ae-e2929f50c52a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8220" - ], - "x-ms-correlation-request-id": [ - "56f7bc51-b514-4a46-8049-78968e760060" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221018Z:56f7bc51-b514-4a46-8049-78968e760060" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5407f71a-c6cd-4eba-83da-5b6069cca6ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8219" - ], - "x-ms-correlation-request-id": [ - "a0c1fc16-67da-4d0e-81c7-46976efc3c51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221018Z:a0c1fc16-67da-4d0e-81c7-46976efc3c51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db31fb8f-60aa-442c-8d3d-eadbd04638db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8218" - ], - "x-ms-correlation-request-id": [ - "4031a11f-38c1-4309-942a-c802d9b93f44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221018Z:4031a11f-38c1-4309-942a-c802d9b93f44" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "742958aa-85c6-45ee-a0cc-65e4786f8ecd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8217" - ], - "x-ms-correlation-request-id": [ - "8a9849db-946d-456a-8b04-b2ec552c9473" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221018Z:8a9849db-946d-456a-8b04-b2ec552c9473" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb07994f-4efa-48b8-9a3f-c8e9b4332d1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8216" - ], - "x-ms-correlation-request-id": [ - "e0ae4af2-e617-428c-83e1-75b656a0b9d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221018Z:e0ae4af2-e617-428c-83e1-75b656a0b9d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c4d36c2d-a0d1-4e43-977a-3be2974c6def" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8215" - ], - "x-ms-correlation-request-id": [ - "86c12008-7722-45d9-b40e-f379ec9fed8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221018Z:86c12008-7722-45d9-b40e-f379ec9fed8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd08f15a-65a4-4005-b6fa-6fcc29883d29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8214" - ], - "x-ms-correlation-request-id": [ - "858b41ee-3e1d-4098-bd7a-94a78b616a05" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221019Z:858b41ee-3e1d-4098-bd7a-94a78b616a05" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e74105b9-4311-4fa3-a317-299e820c5cb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8213" - ], - "x-ms-correlation-request-id": [ - "66703bbf-bb7e-412c-924c-e318b1e945d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221019Z:66703bbf-bb7e-412c-924c-e318b1e945d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7f0546c-6624-44dc-a53c-2167630853be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8212" - ], - "x-ms-correlation-request-id": [ - "59d9bf66-d140-43d7-8c0d-5297729ed065" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221019Z:59d9bf66-d140-43d7-8c0d-5297729ed065" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "888227f2-c284-4ef8-9e97-a106f65444de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8211" - ], - "x-ms-correlation-request-id": [ - "43ae1a9e-8dd6-4c04-9e1c-8ff5955ce81b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221019Z:43ae1a9e-8dd6-4c04-9e1c-8ff5955ce81b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc1ef590-7654-4906-aa19-2fda569c345c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8210" - ], - "x-ms-correlation-request-id": [ - "a9ec7e2b-26ca-4217-9e54-04073c62c79e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221019Z:a9ec7e2b-26ca-4217-9e54-04073c62c79e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bebd823-0ada-4575-a2b6-6a35cf499dca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8209" - ], - "x-ms-correlation-request-id": [ - "540795b3-e7c4-4db5-b4ed-20e599aad7c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221019Z:540795b3-e7c4-4db5-b4ed-20e599aad7c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5308039-cbc1-4c08-97bc-6a8dd7fe7965" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8208" - ], - "x-ms-correlation-request-id": [ - "239ce643-b200-48b9-bfb2-6a75a15265ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221020Z:239ce643-b200-48b9-bfb2-6a75a15265ff" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e757283f-724d-48a0-92cd-49f6862580b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8207" - ], - "x-ms-correlation-request-id": [ - "b7c59a7e-a4f3-4627-8501-15550ed2b1b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221020Z:b7c59a7e-a4f3-4627-8501-15550ed2b1b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f66390fa-4c45-4171-a279-6856310965f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8206" - ], - "x-ms-correlation-request-id": [ - "064555ec-dbd5-45c5-9df1-0c0d62bff9dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221020Z:064555ec-dbd5-45c5-9df1-0c0d62bff9dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5faaca8-642b-49c9-9fb0-eacc5d87d66f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8205" - ], - "x-ms-correlation-request-id": [ - "629bd7f6-52d1-476d-b01f-02c271a3fe5f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221020Z:629bd7f6-52d1-476d-b01f-02c271a3fe5f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de3492d3-20f6-4096-8e21-215be5959fbb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8204" - ], - "x-ms-correlation-request-id": [ - "f8ebf8da-43bd-4dd4-946d-4ca3848bca17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221020Z:f8ebf8da-43bd-4dd4-946d-4ca3848bca17" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc923b51-290c-426d-843d-f8c6601570e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8203" - ], - "x-ms-correlation-request-id": [ - "3e3c5228-e3bb-48aa-bfae-902accd22326" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221020Z:3e3c5228-e3bb-48aa-bfae-902accd22326" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d6589a9-6eb5-417d-9c4d-0350445338d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8202" - ], - "x-ms-correlation-request-id": [ - "eaadb4bb-848b-40b4-ab84-c8b846fcce2f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221021Z:eaadb4bb-848b-40b4-ab84-c8b846fcce2f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8ee710a-8244-4ac6-827e-e908998cf846" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8201" - ], - "x-ms-correlation-request-id": [ - "b9ef3341-af60-4fb1-af9c-8bcd7b4b5cde" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221021Z:b9ef3341-af60-4fb1-af9c-8bcd7b4b5cde" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efb76cd1-3135-4945-9941-dd56ff73b12e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8200" - ], - "x-ms-correlation-request-id": [ - "c1814192-f858-4cbb-a68e-79ae2accc7d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221021Z:c1814192-f858-4cbb-a68e-79ae2accc7d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ee5d5b6-4b91-4bc0-860e-84621ed095b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8199" - ], - "x-ms-correlation-request-id": [ - "6bd9ef39-599b-4255-86a5-5d24e853ca14" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221021Z:6bd9ef39-599b-4255-86a5-5d24e853ca14" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa5d2208-71c1-4f94-bb4d-f3e9f5570031" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8198" - ], - "x-ms-correlation-request-id": [ - "a08fc760-7eb6-46df-acb1-747b691a8e21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221021Z:a08fc760-7eb6-46df-acb1-747b691a8e21" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93462b2d-8e31-4958-a211-0f3fc16c0d8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8197" - ], - "x-ms-correlation-request-id": [ - "4261bc92-a20e-4c2f-86cd-ee3d91e06710" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221022Z:4261bc92-a20e-4c2f-86cd-ee3d91e06710" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "616e61f9-1c1b-4c4e-9642-59f8dcb2ca48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8196" - ], - "x-ms-correlation-request-id": [ - "725e9eaa-fafe-4984-8638-9ec70be3a0f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221022Z:725e9eaa-fafe-4984-8638-9ec70be3a0f5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc9f2040-1ecf-4459-8d61-14f302c726d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8195" - ], - "x-ms-correlation-request-id": [ - "44aa7e8d-9042-4248-8de1-10f264183919" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221022Z:44aa7e8d-9042-4248-8de1-10f264183919" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3df89056-0405-4ea3-9610-d5f0445079e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8194" - ], - "x-ms-correlation-request-id": [ - "adf8b03d-77ea-4842-906a-3675f36431cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221022Z:adf8b03d-77ea-4842-906a-3675f36431cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "122edbcf-ccce-4eef-97d9-c5b39c4be71c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8193" - ], - "x-ms-correlation-request-id": [ - "7d36cae7-45df-4ff4-8f51-56792178cfdd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221022Z:7d36cae7-45df-4ff4-8f51-56792178cfdd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d44c1b1-9d94-4030-9b9c-4539f930b99e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8192" - ], - "x-ms-correlation-request-id": [ - "40d91d20-c096-43e0-a34a-f183e7b6673a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221022Z:40d91d20-c096-43e0-a34a-f183e7b6673a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19c0cdb0-2deb-4728-b820-c773004b05b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8191" - ], - "x-ms-correlation-request-id": [ - "62942d75-c733-4081-901e-a89a5f89440d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221023Z:62942d75-c733-4081-901e-a89a5f89440d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "beeb4633-3258-4f07-ac4c-13b318050c06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8190" - ], - "x-ms-correlation-request-id": [ - "4193b61f-5b7d-429d-95ca-fdc704fd2111" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221023Z:4193b61f-5b7d-429d-95ca-fdc704fd2111" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c34eea2d-3d1d-4cdb-9615-e658112c6642" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8189" - ], - "x-ms-correlation-request-id": [ - "591f1900-d8a3-437f-ba79-2cb835260321" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221023Z:591f1900-d8a3-437f-ba79-2cb835260321" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3416a7e-8890-4378-821f-922e262aa144" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8188" - ], - "x-ms-correlation-request-id": [ - "a9c7099c-a1da-4c1b-91ff-ae11d55b1ee3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221023Z:a9c7099c-a1da-4c1b-91ff-ae11d55b1ee3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "093eaa87-a6d1-4e24-88e7-5f57463084f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8187" - ], - "x-ms-correlation-request-id": [ - "7cafc469-5246-43a0-a910-e23a760ea261" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221023Z:7cafc469-5246-43a0-a910-e23a760ea261" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6732152d-a778-473b-b0fc-25562f03094f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8186" - ], - "x-ms-correlation-request-id": [ - "c0516f5f-5258-4180-a422-f5b439a6f3db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221024Z:c0516f5f-5258-4180-a422-f5b439a6f3db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b85628b-6a0f-47db-8fa9-4589f265aa6b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8185" - ], - "x-ms-correlation-request-id": [ - "09adbb2a-b14c-4572-9fff-72c6b40cfb6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221024Z:09adbb2a-b14c-4572-9fff-72c6b40cfb6c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2737e73d-c679-4cd5-b709-221726b97b2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8184" - ], - "x-ms-correlation-request-id": [ - "945790ed-c20c-461c-9b51-7e0e61b4a3f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221024Z:945790ed-c20c-461c-9b51-7e0e61b4a3f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "097d1c58-747a-4e49-b0ad-2c7b6659fcd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8183" - ], - "x-ms-correlation-request-id": [ - "7fef6781-9418-4618-af08-7daa5fe80bdb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221024Z:7fef6781-9418-4618-af08-7daa5fe80bdb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c438b39e-8a90-413a-910e-459938c0652b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8182" - ], - "x-ms-correlation-request-id": [ - "310bd4ea-d612-45b8-ba89-3adf5e5c8d74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221024Z:310bd4ea-d612-45b8-ba89-3adf5e5c8d74" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "673b9053-43b0-4414-ae2a-33837279fbfb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8181" - ], - "x-ms-correlation-request-id": [ - "74de65d7-270e-4f63-91fc-57e0f9054da7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221024Z:74de65d7-270e-4f63-91fc-57e0f9054da7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67b253ed-c2aa-4d0e-82c6-a7184a9bef38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8180" - ], - "x-ms-correlation-request-id": [ - "3dd264ef-38d2-4102-9b73-c31fa958a540" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221025Z:3dd264ef-38d2-4102-9b73-c31fa958a540" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e6eac9d-597c-4062-aa93-920cc6074204" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8179" - ], - "x-ms-correlation-request-id": [ - "72f680e1-f0a6-4b3b-8552-9983177234e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221025Z:72f680e1-f0a6-4b3b-8552-9983177234e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fcc34143-9481-4f54-95b6-c53986b1dced" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8178" - ], - "x-ms-correlation-request-id": [ - "262fae59-39c8-44d9-bd77-7e3ef3434b20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221025Z:262fae59-39c8-44d9-bd77-7e3ef3434b20" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a985507-12b4-44a1-b7d7-568941500e77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8177" - ], - "x-ms-correlation-request-id": [ - "c8618963-3cbf-4d20-9e6e-21c725958bb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221025Z:c8618963-3cbf-4d20-9e6e-21c725958bb1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93270777-0c78-4b58-b8b1-0c1c57ae1382" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8176" - ], - "x-ms-correlation-request-id": [ - "c8e9c122-5c75-4d2e-a0e7-9915741b9fbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221025Z:c8e9c122-5c75-4d2e-a0e7-9915741b9fbe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa12aab6-6fde-4f90-aad3-f942b6f409f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8175" - ], - "x-ms-correlation-request-id": [ - "82d60241-84e2-45e0-aef3-82a153bc33de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221025Z:82d60241-84e2-45e0-aef3-82a153bc33de" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc5a3ccd-b3c5-43f9-9601-ad5b39548917" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8174" - ], - "x-ms-correlation-request-id": [ - "032b4d47-292b-4e96-9f9b-5b10a803adba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221026Z:032b4d47-292b-4e96-9f9b-5b10a803adba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d514fee1-7d59-4fe2-b34a-4b91d23b3432" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8173" - ], - "x-ms-correlation-request-id": [ - "61dda2c5-603c-4fac-8793-97f0e7f5a47c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221026Z:61dda2c5-603c-4fac-8793-97f0e7f5a47c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7672e6b-e7dd-494d-bcbb-0c92aae7987e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8172" - ], - "x-ms-correlation-request-id": [ - "22adc9d7-a029-4ceb-9269-d6adfdc33995" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221026Z:22adc9d7-a029-4ceb-9269-d6adfdc33995" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6cba3305-20fa-4292-b892-1aa06e6ce9f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8171" - ], - "x-ms-correlation-request-id": [ - "1c175da5-a2b4-4d23-ba40-6572ec85691a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221026Z:1c175da5-a2b4-4d23-ba40-6572ec85691a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0160c63-7a72-47d2-a22e-b518951e8e74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8170" - ], - "x-ms-correlation-request-id": [ - "4fc73f22-5602-4864-b0ed-1f0ecca5a18d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221026Z:4fc73f22-5602-4864-b0ed-1f0ecca5a18d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "814880d5-f979-4e37-af88-7b055648458f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8169" - ], - "x-ms-correlation-request-id": [ - "ffdc4997-bbc1-4dd4-917c-7b481f7ace45" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221026Z:ffdc4997-bbc1-4dd4-917c-7b481f7ace45" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8d0b6c6-f7d3-4fcc-85ca-db8845e07d4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8168" - ], - "x-ms-correlation-request-id": [ - "2d38fed2-25e9-40b9-ab01-37498abe08cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221026Z:2d38fed2-25e9-40b9-ab01-37498abe08cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8fa12364-bdec-4249-bfa9-3e12a344b688" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8167" - ], - "x-ms-correlation-request-id": [ - "d80a6c6b-6677-4cb0-a4e1-b53521d66974" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221027Z:d80a6c6b-6677-4cb0-a4e1-b53521d66974" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "55ba9e63-a3cf-44e7-85c4-c29dfd669ce8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8166" - ], - "x-ms-correlation-request-id": [ - "c9b54fc0-ffaa-4631-8088-59bbba45fbb7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221027Z:c9b54fc0-ffaa-4631-8088-59bbba45fbb7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38fcbe0c-53b4-43cf-bb45-154aa831d4ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8165" - ], - "x-ms-correlation-request-id": [ - "efdd91b8-945a-4431-90e2-0ec80bd11bb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221027Z:efdd91b8-945a-4431-90e2-0ec80bd11bb8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a41b4100-66a7-41df-b775-950f9e53d9f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8164" - ], - "x-ms-correlation-request-id": [ - "a49ec455-12ce-45f4-956f-97cef50f494a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221027Z:a49ec455-12ce-45f4-956f-97cef50f494a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2244ba70-61d5-4ab9-bf16-2bd7626699ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8163" - ], - "x-ms-correlation-request-id": [ - "d0debfed-3a85-4670-919f-b25f1a725f7b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221027Z:d0debfed-3a85-4670-919f-b25f1a725f7b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c0ba0b5-0786-4891-89a5-ac0ea3e21b8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8162" - ], - "x-ms-correlation-request-id": [ - "50060169-a9bb-4092-9118-9c3d763d400a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221028Z:50060169-a9bb-4092-9118-9c3d763d400a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a94ad1fc-1203-435a-8e55-456c3ec12686" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8161" - ], - "x-ms-correlation-request-id": [ - "1dd4dac9-f897-4d29-b5c8-87b63c9d437d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221028Z:1dd4dac9-f897-4d29-b5c8-87b63c9d437d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efd71c38-9285-413c-a3e7-574846159570" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8160" - ], - "x-ms-correlation-request-id": [ - "382117ce-4d84-44c5-8ebc-08c5baac1919" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221028Z:382117ce-4d84-44c5-8ebc-08c5baac1919" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d9b5ab8-be22-4750-8c0b-56dbd298e643" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8159" - ], - "x-ms-correlation-request-id": [ - "19d5c50b-891d-4fb8-9f4a-f9ed02b5001e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221028Z:19d5c50b-891d-4fb8-9f4a-f9ed02b5001e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3f86be2-da00-4128-af34-b5e6fc946e04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8158" - ], - "x-ms-correlation-request-id": [ - "1920cccd-195a-4d22-bb61-a4657ec5c55f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221028Z:1920cccd-195a-4d22-bb61-a4657ec5c55f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb65a208-5b47-40fe-b2dd-bd0dc1769406" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8157" - ], - "x-ms-correlation-request-id": [ - "321dc430-5f6c-437a-8cf0-ea60858aeb10" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221028Z:321dc430-5f6c-437a-8cf0-ea60858aeb10" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "edc2df89-4cf9-47fd-bdd1-0e72c4db7d20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8156" - ], - "x-ms-correlation-request-id": [ - "e6c2a832-4957-4a24-b93e-f88f7c4d41b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221029Z:e6c2a832-4957-4a24-b93e-f88f7c4d41b1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d4b1ef0-7901-4d23-9a97-2dc9f1165703" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8155" - ], - "x-ms-correlation-request-id": [ - "f41351f5-6ff7-4262-9487-1f9f068ea286" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221029Z:f41351f5-6ff7-4262-9487-1f9f068ea286" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25c1ef0c-f857-4aee-be80-cb7c87d0c7fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8154" - ], - "x-ms-correlation-request-id": [ - "1c708e40-b42a-4a37-b5f8-0c813da4f178" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221029Z:1c708e40-b42a-4a37-b5f8-0c813da4f178" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d3b1ae0-4a24-45f9-8f77-9002c939c871" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8153" - ], - "x-ms-correlation-request-id": [ - "21a82166-11d4-4ddd-b8fc-6e46a0c23d5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221029Z:21a82166-11d4-4ddd-b8fc-6e46a0c23d5e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5dd44fd3-25fd-4a07-9fdd-357d809b6473" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8152" - ], - "x-ms-correlation-request-id": [ - "8bfecb54-e64a-430a-87b6-e1f82b685c66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221029Z:8bfecb54-e64a-430a-87b6-e1f82b685c66" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49e81e27-57ce-45ce-9b24-f6ff88c71044" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8151" - ], - "x-ms-correlation-request-id": [ - "d17fff01-7ce6-4dd1-8139-23103dfb3f20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221029Z:d17fff01-7ce6-4dd1-8139-23103dfb3f20" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47e4a60a-58e4-4834-ad3b-6637868b6d6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8150" - ], - "x-ms-correlation-request-id": [ - "a40eed7b-277f-4e20-b397-555c02d52346" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221030Z:a40eed7b-277f-4e20-b397-555c02d52346" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "967ef720-553d-4585-8d33-600ed2838866" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8149" - ], - "x-ms-correlation-request-id": [ - "aedb94f1-adc9-4002-a150-6ad5b56fc4c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221030Z:aedb94f1-adc9-4002-a150-6ad5b56fc4c4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85e59a1b-c50f-4194-96b1-db3a28410fc6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8148" - ], - "x-ms-correlation-request-id": [ - "f4ff93cd-eed9-47e3-9400-4a7ed430340e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221030Z:f4ff93cd-eed9-47e3-9400-4a7ed430340e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5bb4390-f50e-422d-9ade-2ec052c3becd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8147" - ], - "x-ms-correlation-request-id": [ - "a2b320e5-43da-4ac5-a640-89b896e3367f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221030Z:a2b320e5-43da-4ac5-a640-89b896e3367f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1985e487-e372-43e1-bedb-6a08cbd19e98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8146" - ], - "x-ms-correlation-request-id": [ - "03b3bf26-324e-4c74-82f7-c4cc5cc69d68" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221030Z:03b3bf26-324e-4c74-82f7-c4cc5cc69d68" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bbfba171-3bc8-49e1-b905-50721195b632" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8145" - ], - "x-ms-correlation-request-id": [ - "ebb49748-f757-46c5-b636-380d1b613af2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221030Z:ebb49748-f757-46c5-b636-380d1b613af2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a854057-a666-44de-a190-6ca07caf331f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8144" - ], - "x-ms-correlation-request-id": [ - "f2cf3be7-d521-49bc-a0fc-75c85887982b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221031Z:f2cf3be7-d521-49bc-a0fc-75c85887982b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91ab7a73-e314-4240-9b1f-4dc455a99405" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8143" - ], - "x-ms-correlation-request-id": [ - "0c688cfd-2541-4129-a4ad-36f10a5ec71e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221031Z:0c688cfd-2541-4129-a4ad-36f10a5ec71e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb7bfd74-5959-491b-804e-a8596776dc47" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8142" - ], - "x-ms-correlation-request-id": [ - "bcd757fb-fe9f-4abe-9612-d8476907e90b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221031Z:bcd757fb-fe9f-4abe-9612-d8476907e90b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea8e182f-2314-4ae5-a32d-fb85f39fb869" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8141" - ], - "x-ms-correlation-request-id": [ - "dce79f76-28f3-428f-a22b-c1dfc8ed164e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221031Z:dce79f76-28f3-428f-a22b-c1dfc8ed164e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "876bdb97-5178-46f1-8a46-464bda6b5443" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8140" - ], - "x-ms-correlation-request-id": [ - "228e471a-bc93-4af9-b126-e43441928879" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221031Z:228e471a-bc93-4af9-b126-e43441928879" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0af26273-0776-41f2-b1d2-61285c524d73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8139" - ], - "x-ms-correlation-request-id": [ - "5618768d-639e-4cb8-b331-a740c54c5b71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221031Z:5618768d-639e-4cb8-b331-a740c54c5b71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1afbfd07-18fa-4149-b017-61c65fef838e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8138" - ], - "x-ms-correlation-request-id": [ - "f8120929-e8e4-4c13-92dd-da5e13cc6934" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221032Z:f8120929-e8e4-4c13-92dd-da5e13cc6934" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e494050e-bf53-4c7f-a27e-e9400fe912b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8137" - ], - "x-ms-correlation-request-id": [ - "3c3607c7-d87c-43fa-86ce-17b0455c503f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221032Z:3c3607c7-d87c-43fa-86ce-17b0455c503f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb99c6cc-6efa-4fe7-a4c4-b89c9884c0e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8136" - ], - "x-ms-correlation-request-id": [ - "d9106dca-1a7f-4945-a95d-8f1976f7daeb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221032Z:d9106dca-1a7f-4945-a95d-8f1976f7daeb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "541c1966-1891-4eff-8d5a-e00f0bda80f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8135" - ], - "x-ms-correlation-request-id": [ - "20c2fab2-bc78-462f-bdfb-e467b98a10c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221032Z:20c2fab2-bc78-462f-bdfb-e467b98a10c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6cbcfdaf-9dab-4b97-bb85-c63296734474" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8134" - ], - "x-ms-correlation-request-id": [ - "036e9e03-d2ce-46a9-b10b-31de19f3eb05" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221032Z:036e9e03-d2ce-46a9-b10b-31de19f3eb05" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed338818-6ca9-462d-a701-b011ae344aa1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8133" - ], - "x-ms-correlation-request-id": [ - "8b2a5ebc-5f4e-4d28-8f48-5e4c0f535e68" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221032Z:8b2a5ebc-5f4e-4d28-8f48-5e4c0f535e68" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ced19e0c-b48a-48be-b1f5-07be15a19139" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8132" - ], - "x-ms-correlation-request-id": [ - "bc287e78-a12d-4402-bfd3-b5c0ff0b334c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221033Z:bc287e78-a12d-4402-bfd3-b5c0ff0b334c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d75ad99-add4-4410-88b3-65a6b70a2935" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8131" - ], - "x-ms-correlation-request-id": [ - "ccc164f0-7f36-4983-9a7b-814672f7ccbb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221033Z:ccc164f0-7f36-4983-9a7b-814672f7ccbb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa1f047b-48cc-4efe-8af6-66a0af786132" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8130" - ], - "x-ms-correlation-request-id": [ - "cecb53e7-b23a-4f2b-a172-75634ed023d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221033Z:cecb53e7-b23a-4f2b-a172-75634ed023d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67ee3d94-ecac-4b90-8795-85f18a506b29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8129" - ], - "x-ms-correlation-request-id": [ - "45fdd98b-d322-4eb9-b023-850dbc1682cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221033Z:45fdd98b-d322-4eb9-b023-850dbc1682cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5970138-249a-418e-b89b-843252bf053a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8128" - ], - "x-ms-correlation-request-id": [ - "d8140fe5-b04b-4083-bf87-3466d7dd655a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221033Z:d8140fe5-b04b-4083-bf87-3466d7dd655a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab3757f8-2b0b-408f-ae1a-7d18987ff5f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8127" - ], - "x-ms-correlation-request-id": [ - "0c884ec3-fbe3-45c8-90df-2307f9ad0aee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221033Z:0c884ec3-fbe3-45c8-90df-2307f9ad0aee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efef8e02-dcac-4ba2-9273-4365a32bea40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8126" - ], - "x-ms-correlation-request-id": [ - "ea071bfe-23d1-4d0b-a6f7-f1900ce824b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221034Z:ea071bfe-23d1-4d0b-a6f7-f1900ce824b3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f877fce-a6d0-4074-ad00-b878128b854c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8125" - ], - "x-ms-correlation-request-id": [ - "6f96d9f7-6a69-49db-a5e0-54a5f37d65bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221034Z:6f96d9f7-6a69-49db-a5e0-54a5f37d65bd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7df2826a-b758-4a58-a0b3-9e4418ba155c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8124" - ], - "x-ms-correlation-request-id": [ - "b4083191-0672-4bc2-9e66-44c10dcf7159" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221034Z:b4083191-0672-4bc2-9e66-44c10dcf7159" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18a83cb3-35e9-431b-925d-4012918fabe0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8123" - ], - "x-ms-correlation-request-id": [ - "7681fbda-e8f1-4f0d-b0f0-3139792d5e16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221034Z:7681fbda-e8f1-4f0d-b0f0-3139792d5e16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01014d09-e2ad-4316-9fa8-faa6dbef51a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8122" - ], - "x-ms-correlation-request-id": [ - "c8a60944-89b9-4a5f-890b-b8de8da6e754" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221034Z:c8a60944-89b9-4a5f-890b-b8de8da6e754" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1202e561-25bd-4ae6-a1e0-1af354fa5de4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8121" - ], - "x-ms-correlation-request-id": [ - "db6b9254-a96a-4d23-b278-b9a810fd674e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221034Z:db6b9254-a96a-4d23-b278-b9a810fd674e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d76aab2-7600-4226-bf7a-09034070bddd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8120" - ], - "x-ms-correlation-request-id": [ - "f838272e-e1bb-4935-b39b-b58abdeebbcb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221035Z:f838272e-e1bb-4935-b39b-b58abdeebbcb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33f03d4f-e4fc-422b-91c4-aa5e1fd5c788" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8119" - ], - "x-ms-correlation-request-id": [ - "c2d64e9b-b272-4ef9-8b09-a488261b39a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221035Z:c2d64e9b-b272-4ef9-8b09-a488261b39a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad2e64a9-1d66-42ed-bfd2-38f01d78eda0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8118" - ], - "x-ms-correlation-request-id": [ - "13f71b86-f996-4933-96b1-c78d0f73cea6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221035Z:13f71b86-f996-4933-96b1-c78d0f73cea6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68cd33b2-37ef-4eb3-aa60-75dc0199397f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8117" - ], - "x-ms-correlation-request-id": [ - "66ff4e00-88d4-4c91-9169-f0d4e336435b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221035Z:66ff4e00-88d4-4c91-9169-f0d4e336435b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e88714f3-dd6b-41e0-ad51-80ddbb83a515" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8116" - ], - "x-ms-correlation-request-id": [ - "2d2f6fa6-958d-4978-8162-967921108a82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221035Z:2d2f6fa6-958d-4978-8162-967921108a82" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "12b995a0-add8-481b-8ff9-7e575ba8772e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8115" - ], - "x-ms-correlation-request-id": [ - "fa8080b4-0596-4257-a199-81cc1aea6698" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221036Z:fa8080b4-0596-4257-a199-81cc1aea6698" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a301b61d-8451-4fe3-a780-9a8816432060" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8114" - ], - "x-ms-correlation-request-id": [ - "70d3942a-ae33-4147-8e9c-ef678343f4d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221036Z:70d3942a-ae33-4147-8e9c-ef678343f4d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8ab5442-82ff-4f4a-8059-1f9589eff422" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8113" - ], - "x-ms-correlation-request-id": [ - "34a893e3-3898-4d8b-b4bc-84e9cdc8cd15" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221036Z:34a893e3-3898-4d8b-b4bc-84e9cdc8cd15" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b9d56fe-44b8-4c7c-8f51-7e86a6078390" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8112" - ], - "x-ms-correlation-request-id": [ - "cf70f620-427c-4aef-8459-1a7557c74397" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221036Z:cf70f620-427c-4aef-8459-1a7557c74397" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f1e035c-8478-484c-88cf-591ba23dc318" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8111" - ], - "x-ms-correlation-request-id": [ - "aa056df8-e5e5-4d3b-92f9-3af8689f58fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221036Z:aa056df8-e5e5-4d3b-92f9-3af8689f58fa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bbdbc88-8497-4e78-9d31-bbfae1f4764b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8110" - ], - "x-ms-correlation-request-id": [ - "fb2f00c7-1256-44cd-a86f-cc6e6d3342c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221037Z:fb2f00c7-1256-44cd-a86f-cc6e6d3342c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "797b7c10-3d10-4865-bc15-73c860841d3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8109" - ], - "x-ms-correlation-request-id": [ - "bff08149-7585-45d4-82c0-e9a1fef1dab5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221037Z:bff08149-7585-45d4-82c0-e9a1fef1dab5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2342b89f-55b1-4516-b2c7-bb9fcd946a28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8108" - ], - "x-ms-correlation-request-id": [ - "b199492d-d936-432f-8b85-1572c585e45e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221037Z:b199492d-d936-432f-8b85-1572c585e45e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d26d876-bb4b-47dc-96fa-e89026470095" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8107" - ], - "x-ms-correlation-request-id": [ - "736c1f39-465b-4f8c-beb6-7b776aea7b5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221037Z:736c1f39-465b-4f8c-beb6-7b776aea7b5d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "737fb1fe-162a-4497-aafc-e9934d5c154f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8106" - ], - "x-ms-correlation-request-id": [ - "b088b278-00e5-43dd-bfa2-7afbb5c947e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221037Z:b088b278-00e5-43dd-bfa2-7afbb5c947e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cbded820-0213-4944-9e2b-5e23e119370c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8105" - ], - "x-ms-correlation-request-id": [ - "474b8f61-ac53-404d-9d5e-90e498dab780" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221037Z:474b8f61-ac53-404d-9d5e-90e498dab780" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e59e73b-4fcc-4acb-96f0-4ecc6cfd9f00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8104" - ], - "x-ms-correlation-request-id": [ - "2a1d199f-d716-448c-80af-d6b5b3b30caf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221038Z:2a1d199f-d716-448c-80af-d6b5b3b30caf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "301f90c1-635f-4a64-a7da-be33429cb111" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8103" - ], - "x-ms-correlation-request-id": [ - "bf3faac7-b2d1-443b-9768-6c1c8d7496a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221038Z:bf3faac7-b2d1-443b-9768-6c1c8d7496a9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1929da2a-bcd9-4235-ae99-f60c6725a2a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8102" - ], - "x-ms-correlation-request-id": [ - "f74c7798-dbc0-4617-a58b-ba3999859924" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221038Z:f74c7798-dbc0-4617-a58b-ba3999859924" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1171faf3-2866-499b-b4a3-080e822b8453" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8101" - ], - "x-ms-correlation-request-id": [ - "5248da65-47d5-4b24-becf-ad41548f456b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221038Z:5248da65-47d5-4b24-becf-ad41548f456b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "008a7adf-e792-4cbc-a448-996a6d207b96" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8100" - ], - "x-ms-correlation-request-id": [ - "2cd883e9-c938-465d-aea7-973d4e2f5f1d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221038Z:2cd883e9-c938-465d-aea7-973d4e2f5f1d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85eceaed-a9ee-49e6-8268-02d4c741d074" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8099" - ], - "x-ms-correlation-request-id": [ - "a3288725-56d6-40c6-978e-deec85c86919" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221038Z:a3288725-56d6-40c6-978e-deec85c86919" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00b98e90-614c-49ab-a55a-22fce3acb840" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8098" - ], - "x-ms-correlation-request-id": [ - "2e99416d-23d0-438a-a8e8-8c7b0aa8c100" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221039Z:2e99416d-23d0-438a-a8e8-8c7b0aa8c100" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa1a7c57-12f5-4954-be3d-1e270a4e033d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8097" - ], - "x-ms-correlation-request-id": [ - "da9bac9b-41a7-4f78-9a4a-5c28c64c2f8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221039Z:da9bac9b-41a7-4f78-9a4a-5c28c64c2f8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0949d5bc-e32b-472b-b554-c0dff72eb0f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8096" - ], - "x-ms-correlation-request-id": [ - "4ad1b75b-dc1b-4df4-abfb-2bfadf9c8db1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221039Z:4ad1b75b-dc1b-4df4-abfb-2bfadf9c8db1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a6e330b-0ddf-475b-912b-78ae00b46a54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8095" - ], - "x-ms-correlation-request-id": [ - "550d11fd-7908-44db-9a57-fd6c6cbeeb1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221039Z:550d11fd-7908-44db-9a57-fd6c6cbeeb1f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "34dc185d-fdf1-44e2-acb3-20a6a5803794" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8094" - ], - "x-ms-correlation-request-id": [ - "43597f61-3e80-47f9-9847-a8fa15f50d54" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221039Z:43597f61-3e80-47f9-9847-a8fa15f50d54" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c2f3501a-d117-4e0b-b677-12e6baf68027" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8093" - ], - "x-ms-correlation-request-id": [ - "8b4333f5-104e-4d05-97f2-6673d4d47917" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221040Z:8b4333f5-104e-4d05-97f2-6673d4d47917" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83280740-7b43-4671-be02-38c6ab45d6d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8092" - ], - "x-ms-correlation-request-id": [ - "c970065d-a099-4533-9e93-1fc546f747bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221040Z:c970065d-a099-4533-9e93-1fc546f747bc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "acdd6634-8410-4f65-b6b1-c5a0ae07a6c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8091" - ], - "x-ms-correlation-request-id": [ - "f0507d6a-beff-48b1-b5db-1e08064b80d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221040Z:f0507d6a-beff-48b1-b5db-1e08064b80d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e25b3bf-7691-4954-a7f5-31016c8a1235" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8090" - ], - "x-ms-correlation-request-id": [ - "78a378ab-52c0-4849-b396-a1ff8cdbf650" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221040Z:78a378ab-52c0-4849-b396-a1ff8cdbf650" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1bb82b1-0fa6-47c9-961f-e87689e19b93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8089" - ], - "x-ms-correlation-request-id": [ - "37240c6a-b102-4843-b4f9-f28a544e752e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221040Z:37240c6a-b102-4843-b4f9-f28a544e752e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fca4389f-e674-49ed-bcf1-4201973bd593" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8088" - ], - "x-ms-correlation-request-id": [ - "dee1f0e0-4721-4fcf-af59-1a0650fbfd17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221040Z:dee1f0e0-4721-4fcf-af59-1a0650fbfd17" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ec784b9-3f34-4971-b997-a6bb2b0a1dc8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8087" - ], - "x-ms-correlation-request-id": [ - "bc4d5db3-5ab4-45b6-af38-ada96de35f1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221041Z:bc4d5db3-5ab4-45b6-af38-ada96de35f1f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7be0bd8d-b42b-40a6-90ea-3030a01b7fd1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8086" - ], - "x-ms-correlation-request-id": [ - "106b5f10-3d3f-49bf-a609-33cb68707952" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221041Z:106b5f10-3d3f-49bf-a609-33cb68707952" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdcfd28c-0e76-4d41-8a1c-40fbc3fce852" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8085" - ], - "x-ms-correlation-request-id": [ - "68f58ad4-d7dc-4b50-929c-f1170bddd55f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221041Z:68f58ad4-d7dc-4b50-929c-f1170bddd55f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "618f8d5f-243f-4748-a89a-2526f3b52816" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8084" - ], - "x-ms-correlation-request-id": [ - "9e3edfc3-8226-4f17-b1c3-21278abb4702" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221041Z:9e3edfc3-8226-4f17-b1c3-21278abb4702" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "746c02ee-eebb-4799-b879-b7bde3eceef8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8083" - ], - "x-ms-correlation-request-id": [ - "65c574b7-db29-4f0e-a40d-8124bdaa0257" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221041Z:65c574b7-db29-4f0e-a40d-8124bdaa0257" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65f622a3-b5fe-4274-beb9-0b17fe7be2ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8082" - ], - "x-ms-correlation-request-id": [ - "7f6fcbce-399c-4460-95ac-fc394404b0f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221041Z:7f6fcbce-399c-4460-95ac-fc394404b0f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd4e5901-b3c0-4e76-94d2-8c42d1addfdd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8081" - ], - "x-ms-correlation-request-id": [ - "ab11d960-9156-406c-83e5-2067c5293ba1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221042Z:ab11d960-9156-406c-83e5-2067c5293ba1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8b8158e-1411-4133-8750-4c5e6431e06b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8080" - ], - "x-ms-correlation-request-id": [ - "e7254e45-8867-4964-b1c2-362b342c315e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221042Z:e7254e45-8867-4964-b1c2-362b342c315e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2aea08df-c757-4a14-b123-315d744dc0e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8079" - ], - "x-ms-correlation-request-id": [ - "9ba389f4-07b8-49a9-8bd6-4e93f02a48e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221042Z:9ba389f4-07b8-49a9-8bd6-4e93f02a48e0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da39b426-bcfb-44ab-b33f-45f308200e9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8078" - ], - "x-ms-correlation-request-id": [ - "b864be14-8fa1-40bb-a28e-39fdff4927ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221042Z:b864be14-8fa1-40bb-a28e-39fdff4927ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "50737e66-f575-41a0-8904-8e467b0e2fbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8077" - ], - "x-ms-correlation-request-id": [ - "9ff338ee-5304-4f8b-a21f-60e55cb16ece" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221042Z:9ff338ee-5304-4f8b-a21f-60e55cb16ece" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c2c214da-6400-440c-b675-945bcc149c41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8076" - ], - "x-ms-correlation-request-id": [ - "2b40fd02-da66-415a-bbea-3193968b69a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221042Z:2b40fd02-da66-415a-bbea-3193968b69a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa874564-1715-4680-a437-92f5fd006710" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8075" - ], - "x-ms-correlation-request-id": [ - "a9b3ccde-fed0-446f-8847-435ae4745f01" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221043Z:a9b3ccde-fed0-446f-8847-435ae4745f01" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7fabfd6b-d91d-4f0f-a1d4-47e66199325b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8074" - ], - "x-ms-correlation-request-id": [ - "0abb7850-f717-43bf-91e6-a7ca8492836e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221043Z:0abb7850-f717-43bf-91e6-a7ca8492836e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16b8ebfa-ce24-4e57-8368-d2061cc70ba9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8073" - ], - "x-ms-correlation-request-id": [ - "b63850ab-d193-484b-a382-7aa29f3aad71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221043Z:b63850ab-d193-484b-a382-7aa29f3aad71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "64a656fe-9b21-48a8-a5ee-ba4acab810db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8072" - ], - "x-ms-correlation-request-id": [ - "960692d3-4967-4fb4-a6f7-7333c1290a3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221043Z:960692d3-4967-4fb4-a6f7-7333c1290a3c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a2cc8ef-ba3a-4a89-8927-b12f5e5f40c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8071" - ], - "x-ms-correlation-request-id": [ - "6b33a07f-a967-444a-86fc-d015b16acf1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221043Z:6b33a07f-a967-444a-86fc-d015b16acf1e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb274b3e-4c2e-433f-bd40-ba83f5a2957f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8070" - ], - "x-ms-correlation-request-id": [ - "eb995dd7-42b4-4be7-91de-e8bd4e64fcef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221044Z:eb995dd7-42b4-4be7-91de-e8bd4e64fcef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62666da5-3b67-4e13-93ae-86d65fe2a3b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8069" - ], - "x-ms-correlation-request-id": [ - "8f37e1b8-2a64-4b37-9467-502e2a67ce7b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221044Z:8f37e1b8-2a64-4b37-9467-502e2a67ce7b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b549f2a-c3c8-4e80-8688-92f6f405dd53" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8068" - ], - "x-ms-correlation-request-id": [ - "f9e2c74e-d212-4280-a3a1-e5e77aefba9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221044Z:f9e2c74e-d212-4280-a3a1-e5e77aefba9f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "484f9287-df9b-4e80-8fed-9e2342813865" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8067" - ], - "x-ms-correlation-request-id": [ - "42aa06eb-3459-4036-b9d5-dd8df8a21b47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221044Z:42aa06eb-3459-4036-b9d5-dd8df8a21b47" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95f15723-a6e6-4c44-804a-7beccbf05963" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8066" - ], - "x-ms-correlation-request-id": [ - "114f47f8-afc6-4e19-939e-54afeb8dde45" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221044Z:114f47f8-afc6-4e19-939e-54afeb8dde45" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de6d62ed-2e4d-46e5-a89c-d86c0ae549f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8065" - ], - "x-ms-correlation-request-id": [ - "964bb3e9-4073-4bcb-915b-6b03bea3f115" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221044Z:964bb3e9-4073-4bcb-915b-6b03bea3f115" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1562d7fe-5b46-4b38-a777-7641bc20e5c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8064" - ], - "x-ms-correlation-request-id": [ - "cf8468d2-6c4b-4164-9592-905546c79fa3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221044Z:cf8468d2-6c4b-4164-9592-905546c79fa3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ea6545a-726b-4ede-93e4-602a9c9e0000" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8063" - ], - "x-ms-correlation-request-id": [ - "8f5a7363-e173-4bc7-8aac-fa406074cb8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221045Z:8f5a7363-e173-4bc7-8aac-fa406074cb8c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "afc14637-9e35-4c3b-9ab5-5f84b15c5fee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8062" - ], - "x-ms-correlation-request-id": [ - "10f475d9-d8cd-46e0-ab50-572cb830ebdd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221045Z:10f475d9-d8cd-46e0-ab50-572cb830ebdd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76c36ce5-d732-43e3-8e3c-517f25c6a419" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8061" - ], - "x-ms-correlation-request-id": [ - "66d27489-bbde-4425-ac81-85ba0ededf98" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221045Z:66d27489-bbde-4425-ac81-85ba0ededf98" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "948f146a-b11a-438f-a72b-83d73f43b45d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8060" - ], - "x-ms-correlation-request-id": [ - "ad325664-14da-4524-97b8-57b140672c5f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221045Z:ad325664-14da-4524-97b8-57b140672c5f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a808bc46-d5de-4a6f-9986-7d787252bea8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8059" - ], - "x-ms-correlation-request-id": [ - "ecd56c14-55ce-4834-b06b-41fc3e89e097" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221045Z:ecd56c14-55ce-4834-b06b-41fc3e89e097" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16115bd3-5e63-433e-95d2-4d272a0710a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8058" - ], - "x-ms-correlation-request-id": [ - "23bbcba4-f51f-4486-a4ea-184e37fefa3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221045Z:23bbcba4-f51f-4486-a4ea-184e37fefa3b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e735847-da9c-4a9a-976a-80db1b886a4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8057" - ], - "x-ms-correlation-request-id": [ - "421a9205-b1f2-4130-a9a7-e648e6684627" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221046Z:421a9205-b1f2-4130-a9a7-e648e6684627" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce8a79ba-6119-40f2-b3b1-fa5d8b9d5086" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8056" - ], - "x-ms-correlation-request-id": [ - "ba096acd-159d-4a44-8522-2cb80bb43854" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221046Z:ba096acd-159d-4a44-8522-2cb80bb43854" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ddcfd8e-04a0-41f7-a304-408a05cb5804" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8055" - ], - "x-ms-correlation-request-id": [ - "70259ae7-ce92-49bf-a33a-80919b727e6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221046Z:70259ae7-ce92-49bf-a33a-80919b727e6f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be01952e-df8e-4f32-b385-17e4016b38d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8054" - ], - "x-ms-correlation-request-id": [ - "904704c3-8acc-41ca-98cc-fb1c75100e47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221046Z:904704c3-8acc-41ca-98cc-fb1c75100e47" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6056634b-1837-4365-b25f-fe76e5c28bcd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8053" - ], - "x-ms-correlation-request-id": [ - "95baf9b4-f514-460e-a268-f6a8e0522a6a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221046Z:95baf9b4-f514-460e-a268-f6a8e0522a6a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62473d9b-7045-42ae-bc68-d79f5d0bd1df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8052" - ], - "x-ms-correlation-request-id": [ - "b9612c6a-c0f3-4a9d-a091-26048e05ec1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221046Z:b9612c6a-c0f3-4a9d-a091-26048e05ec1f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63054751-32d8-4853-8d9b-fac83af3fac2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8051" - ], - "x-ms-correlation-request-id": [ - "62c01bb8-6f42-4ae5-a09f-84cb7e1707fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221046Z:62c01bb8-6f42-4ae5-a09f-84cb7e1707fb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "850eebb7-acba-4839-b011-5370c0b150b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8050" - ], - "x-ms-correlation-request-id": [ - "8821e816-c63d-435e-8e3f-413e6c904b8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221047Z:8821e816-c63d-435e-8e3f-413e6c904b8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71dd6cf8-18e6-4566-9f8d-bc2482bd562d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8049" - ], - "x-ms-correlation-request-id": [ - "d532d928-b1b3-4ace-9f4b-ba018cdbd0ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221047Z:d532d928-b1b3-4ace-9f4b-ba018cdbd0ba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca92a60c-2734-49e4-9db7-dc19bf2f0df1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8048" - ], - "x-ms-correlation-request-id": [ - "dba815f8-37c8-44b3-84b0-89757f849f13" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221047Z:dba815f8-37c8-44b3-84b0-89757f849f13" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a320baf9-4f8f-4dbc-a5e0-70f261bda34e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8047" - ], - "x-ms-correlation-request-id": [ - "5598436a-733c-4e87-ac14-e0d00330a17b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221047Z:5598436a-733c-4e87-ac14-e0d00330a17b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3f0459a-5c74-423d-b549-ddd3fb8c400d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8046" - ], - "x-ms-correlation-request-id": [ - "0344abf5-b56e-437d-94f2-84883bf7ac3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221047Z:0344abf5-b56e-437d-94f2-84883bf7ac3d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4000262e-fb74-4da5-a0ad-b7b191091558" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8045" - ], - "x-ms-correlation-request-id": [ - "68a98c18-cfd1-44bb-ad62-65b288ec723a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221048Z:68a98c18-cfd1-44bb-ad62-65b288ec723a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b8fef9a-b807-4650-9c35-4fba070a34d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8044" - ], - "x-ms-correlation-request-id": [ - "927e2695-fe0b-41f0-84d4-9a9895d9d1ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221048Z:927e2695-fe0b-41f0-84d4-9a9895d9d1ce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3844581-e200-4e2b-9b7c-607b92bfa3cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8043" - ], - "x-ms-correlation-request-id": [ - "0bf6d4fd-d359-436f-a2d1-9c9d24e399c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221048Z:0bf6d4fd-d359-436f-a2d1-9c9d24e399c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5f850e9-f976-4c0e-b128-dbe858b34103" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8042" - ], - "x-ms-correlation-request-id": [ - "f69a2f57-992f-4f8c-8e5c-bdb7fe9b86be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221048Z:f69a2f57-992f-4f8c-8e5c-bdb7fe9b86be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f011cd49-0811-40c7-b9d0-594f7b614f90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8041" - ], - "x-ms-correlation-request-id": [ - "009aebb4-5f49-4ee1-8a9d-f15b68f86e3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221048Z:009aebb4-5f49-4ee1-8a9d-f15b68f86e3c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4293ae4-ca53-4434-8b5f-9f3f24c9c5a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8040" - ], - "x-ms-correlation-request-id": [ - "573ef3e1-bfe2-4fc3-b5ae-46994f3806db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221048Z:573ef3e1-bfe2-4fc3-b5ae-46994f3806db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9635f00b-d3de-459c-b3be-2515b933707a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8039" - ], - "x-ms-correlation-request-id": [ - "690f4dd0-1a51-446a-9d7f-4abe8c9c55d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221049Z:690f4dd0-1a51-446a-9d7f-4abe8c9c55d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b94ef348-d8fb-4840-9b80-4594e4d251df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8038" - ], - "x-ms-correlation-request-id": [ - "0da97d36-4f31-43a2-bff9-428dca79b4fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221049Z:0da97d36-4f31-43a2-bff9-428dca79b4fa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "313d8178-8629-4395-a42f-59a4a136bf3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8037" - ], - "x-ms-correlation-request-id": [ - "5409cb26-8aa8-4b42-9eea-508d10825c20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221049Z:5409cb26-8aa8-4b42-9eea-508d10825c20" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22409aa6-4de5-4773-8a62-4ec30ed8d236" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8036" - ], - "x-ms-correlation-request-id": [ - "3a51c5af-56cb-418c-afb9-9c8e7b38a6d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221049Z:3a51c5af-56cb-418c-afb9-9c8e7b38a6d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ae0e4f0-15e3-4f3b-88c0-5698a4041202" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8035" - ], - "x-ms-correlation-request-id": [ - "b61dee89-209e-4eac-9202-78a12d398994" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221049Z:b61dee89-209e-4eac-9202-78a12d398994" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "828e500f-0c0d-4173-be6b-585fdb3ad3a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8034" - ], - "x-ms-correlation-request-id": [ - "d6528da7-8188-4dcf-9994-cafaf99a872e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221050Z:d6528da7-8188-4dcf-9994-cafaf99a872e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd3465d7-1be0-42ed-a877-a1d51cd2e859" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8033" - ], - "x-ms-correlation-request-id": [ - "f7ab9b8e-139c-418a-84fe-e33be69a0e86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221050Z:f7ab9b8e-139c-418a-84fe-e33be69a0e86" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28ad1c08-4a33-4ffc-b051-c767da50c18a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8032" - ], - "x-ms-correlation-request-id": [ - "d603951c-af6f-4628-80d7-d25d0bc4e57a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221050Z:d603951c-af6f-4628-80d7-d25d0bc4e57a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74b85b8b-70b8-4ae1-afa6-1c47879d92d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8031" - ], - "x-ms-correlation-request-id": [ - "949dd109-6010-4217-ace7-28658f11870b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221050Z:949dd109-6010-4217-ace7-28658f11870b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e3c7897-5017-4268-bdcb-6a09cd0f35d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8030" - ], - "x-ms-correlation-request-id": [ - "1fe22953-e7d6-40af-81e0-e0e99adb3b53" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221050Z:1fe22953-e7d6-40af-81e0-e0e99adb3b53" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67a5a7c5-27a1-476d-9fc3-6525eb9170d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8029" - ], - "x-ms-correlation-request-id": [ - "9804001f-6338-4d63-b382-a8f106afcc00" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221051Z:9804001f-6338-4d63-b382-a8f106afcc00" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79a0b410-e2ee-4140-92ef-030f29e6adc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8028" - ], - "x-ms-correlation-request-id": [ - "7d9cc879-7e39-4e74-a874-5de82826518c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221051Z:7d9cc879-7e39-4e74-a874-5de82826518c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88b1eded-48a8-4d94-b5a0-f863f52266cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8027" - ], - "x-ms-correlation-request-id": [ - "1a8df882-429a-4b02-b99c-8932ece16acf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221051Z:1a8df882-429a-4b02-b99c-8932ece16acf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "327e230f-8696-438a-90c4-47108527358f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8026" - ], - "x-ms-correlation-request-id": [ - "41775ff8-693a-44f2-a763-99e75075c4d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221051Z:41775ff8-693a-44f2-a763-99e75075c4d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d40bce8e-efcd-4a31-8460-126a46620587" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8025" - ], - "x-ms-correlation-request-id": [ - "bcc4244f-944d-4a39-88fa-7930d9d1d7af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221051Z:bcc4244f-944d-4a39-88fa-7930d9d1d7af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6bb6a787-df8e-48a3-9fa5-15af35abf5fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8024" - ], - "x-ms-correlation-request-id": [ - "2cfa74d7-0f90-4dfc-9b45-2762584730d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221051Z:2cfa74d7-0f90-4dfc-9b45-2762584730d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "876620c4-6943-4f77-9368-aa9bbd065504" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8023" - ], - "x-ms-correlation-request-id": [ - "ef44e3a4-0015-46a2-9208-348576c762b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221052Z:ef44e3a4-0015-46a2-9208-348576c762b0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b4eff25-444f-4b74-8f13-4d77191a1289" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8022" - ], - "x-ms-correlation-request-id": [ - "a7f808e6-830c-487f-9ae5-7972c5749b42" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221052Z:a7f808e6-830c-487f-9ae5-7972c5749b42" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95a3bd72-5835-4f1b-bed7-a383f4dd2f79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8021" - ], - "x-ms-correlation-request-id": [ - "d574c391-7c56-4f8d-9281-d3b9ad8140d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221052Z:d574c391-7c56-4f8d-9281-d3b9ad8140d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a2096b0-f698-4cd2-8045-87e9245eb1ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8020" - ], - "x-ms-correlation-request-id": [ - "39ff0bae-bf56-4646-ac95-c3cce7ee6cc4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221052Z:39ff0bae-bf56-4646-ac95-c3cce7ee6cc4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8385e7e9-d88b-446a-9a6e-07964ea36d38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8019" - ], - "x-ms-correlation-request-id": [ - "a9109512-3cb3-444c-9eb3-eed4f96c99b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221052Z:a9109512-3cb3-444c-9eb3-eed4f96c99b5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90ac5d24-17a0-4e8f-9439-ba33eb045e47" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8018" - ], - "x-ms-correlation-request-id": [ - "b539b91c-82d3-404a-bf1d-8d0d3eb67928" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221052Z:b539b91c-82d3-404a-bf1d-8d0d3eb67928" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b921ddd-9a68-4e45-b9ad-5f567394d288" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8017" - ], - "x-ms-correlation-request-id": [ - "f2abc38f-0318-4f0a-a251-1ae134d5a7cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221052Z:f2abc38f-0318-4f0a-a251-1ae134d5a7cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b47b4c13-05c2-4471-af36-ed9ce531e942" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8016" - ], - "x-ms-correlation-request-id": [ - "fcb3ed50-f4df-4cfa-96d3-8aa0bb97b16d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221053Z:fcb3ed50-f4df-4cfa-96d3-8aa0bb97b16d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23f8c9d3-0b3a-4628-b298-61bb7f12186c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8015" - ], - "x-ms-correlation-request-id": [ - "64e54ecf-0b6c-4df6-aae1-83fa1b00d7b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221053Z:64e54ecf-0b6c-4df6-aae1-83fa1b00d7b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b7ea521-90be-47f3-9383-8b0945ea7d57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8014" - ], - "x-ms-correlation-request-id": [ - "c08e639d-9506-4cc0-a6c1-7e79246d5477" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221053Z:c08e639d-9506-4cc0-a6c1-7e79246d5477" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57d995ad-11b7-442f-b364-6defbdf8d70a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8013" - ], - "x-ms-correlation-request-id": [ - "ba913a8b-4c40-45bd-b223-1a3aee62b8cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221053Z:ba913a8b-4c40-45bd-b223-1a3aee62b8cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdf68c23-24eb-417d-b7b3-7049fd7a0a3d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8012" - ], - "x-ms-correlation-request-id": [ - "90c0d3d4-8953-4197-87c7-38fcd820a15a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221053Z:90c0d3d4-8953-4197-87c7-38fcd820a15a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b97237a4-53c1-4f80-8d16-61605b252c6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8011" - ], - "x-ms-correlation-request-id": [ - "a96c1298-966e-4234-84b1-9600cd7d1210" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221053Z:a96c1298-966e-4234-84b1-9600cd7d1210" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac68ddc4-739a-46e4-a0c4-c4b29563ec2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8010" - ], - "x-ms-correlation-request-id": [ - "97c0ce7c-5f14-49d2-9b07-e4a827a383c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221054Z:97c0ce7c-5f14-49d2-9b07-e4a827a383c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "545689da-cc39-4fa0-881f-9a41dbd09459" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8009" - ], - "x-ms-correlation-request-id": [ - "35c1583e-32ea-484d-989c-768802833c36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221054Z:35c1583e-32ea-484d-989c-768802833c36" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6748fd0-718c-474a-98d3-4d5642ad84ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8008" - ], - "x-ms-correlation-request-id": [ - "cc3f9585-4d59-4148-83f6-d35c7f814869" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221054Z:cc3f9585-4d59-4148-83f6-d35c7f814869" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9038e2c7-888f-400d-b84b-6d2ac1bd38d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8007" - ], - "x-ms-correlation-request-id": [ - "2195f92b-0dfc-4bd9-8899-2830c5f3804b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221054Z:2195f92b-0dfc-4bd9-8899-2830c5f3804b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d3da167-4eeb-4bfc-b1bb-1857e37b6775" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8006" - ], - "x-ms-correlation-request-id": [ - "cf99aa64-da84-4290-b046-6293c7e4414e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221054Z:cf99aa64-da84-4290-b046-6293c7e4414e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a123837-2285-40ae-8cb9-b0c89cedd415" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8005" - ], - "x-ms-correlation-request-id": [ - "c868819d-3210-4587-896e-a09a789e0cae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221054Z:c868819d-3210-4587-896e-a09a789e0cae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd8b4001-af7c-4c78-97bd-556f228d0a80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8004" - ], - "x-ms-correlation-request-id": [ - "98e9344b-85cb-41fd-a40c-d41c449ca3be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221054Z:98e9344b-85cb-41fd-a40c-d41c449ca3be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "622b7d3d-fb31-4281-81d5-44f228fbfd1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8003" - ], - "x-ms-correlation-request-id": [ - "d1f9259c-c1a7-4c28-a264-d49ac8887b8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221055Z:d1f9259c-c1a7-4c28-a264-d49ac8887b8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c37dc6fe-1922-4256-9ca6-e7b2f3bda6b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8002" - ], - "x-ms-correlation-request-id": [ - "25c2f238-79c1-4234-94fc-9dd44f7c602d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221055Z:25c2f238-79c1-4234-94fc-9dd44f7c602d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54878a13-af20-423e-819b-2fa66c12ef02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8001" - ], - "x-ms-correlation-request-id": [ - "6aa44fc1-037e-412a-a62a-75fd3d04161d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221055Z:6aa44fc1-037e-412a-a62a-75fd3d04161d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "272bb2ae-1672-4a31-b9bc-d95863dc38dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "8000" - ], - "x-ms-correlation-request-id": [ - "b77f9b72-4f59-42da-8e86-c8c4472ea530" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221055Z:b77f9b72-4f59-42da-8e86-c8c4472ea530" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ede54e2-016f-4289-806a-1751dd913639" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7999" - ], - "x-ms-correlation-request-id": [ - "0f3cbeb9-9558-40bb-a037-6178bf8201cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221055Z:0f3cbeb9-9558-40bb-a037-6178bf8201cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da424d83-855d-4562-950a-b67ef1fddb4f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7998" - ], - "x-ms-correlation-request-id": [ - "d00d9156-dddb-4eca-a15e-386fc0d5b2a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221055Z:d00d9156-dddb-4eca-a15e-386fc0d5b2a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b9dbfe57-b579-4342-a38e-283d1a364318" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7997" - ], - "x-ms-correlation-request-id": [ - "25eb1467-2a0e-47db-9e2d-24c9047ccf37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221055Z:25eb1467-2a0e-47db-9e2d-24c9047ccf37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6da49102-7427-4225-911f-b8d4b16e311f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7996" - ], - "x-ms-correlation-request-id": [ - "25f62a1b-9191-428e-9222-bd1bdc777607" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221056Z:25f62a1b-9191-428e-9222-bd1bdc777607" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "417c7474-8597-4bba-ab87-351e4a1a5683" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7995" - ], - "x-ms-correlation-request-id": [ - "dbd91451-84fc-44f7-b147-5901637370ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221056Z:dbd91451-84fc-44f7-b147-5901637370ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3ee8d66-f2f6-41b1-a78a-a6c2a61ee22d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7994" - ], - "x-ms-correlation-request-id": [ - "6dda725c-e35c-4d7f-9613-9161b95816b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221056Z:6dda725c-e35c-4d7f-9613-9161b95816b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ebe1b05-5e03-4501-8163-539630ef260e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7993" - ], - "x-ms-correlation-request-id": [ - "4282368c-b5ac-42a1-b955-517572a62bc6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221056Z:4282368c-b5ac-42a1-b955-517572a62bc6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "903729ce-42c4-411b-a775-03f4ef77769c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7992" - ], - "x-ms-correlation-request-id": [ - "7924bd6d-0cf3-4241-ac14-5c260d5d9f41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221056Z:7924bd6d-0cf3-4241-ac14-5c260d5d9f41" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b04736c-9b6f-4abf-9220-d33041f9b752" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7991" - ], - "x-ms-correlation-request-id": [ - "1ec26f7f-b368-4b86-a162-7c6c60598e35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221056Z:1ec26f7f-b368-4b86-a162-7c6c60598e35" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ddac833-c37a-497e-8606-902f6fed4338" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7990" - ], - "x-ms-correlation-request-id": [ - "39b028fe-65be-44a8-bd4b-b5699c88518f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221056Z:39b028fe-65be-44a8-bd4b-b5699c88518f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1dd8ab1-88a3-4c96-9a95-694e1d8c8d64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7989" - ], - "x-ms-correlation-request-id": [ - "860126a0-7f45-4dd6-ba2c-66dc2d95eb01" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221057Z:860126a0-7f45-4dd6-ba2c-66dc2d95eb01" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "09c640e5-d601-4353-b0c0-51ea644439b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7988" - ], - "x-ms-correlation-request-id": [ - "2ddbf684-b1c0-45c6-82d4-7df8a20f9127" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221057Z:2ddbf684-b1c0-45c6-82d4-7df8a20f9127" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "abbcb316-8360-487f-81d1-0302a7e82e76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7987" - ], - "x-ms-correlation-request-id": [ - "72ff2740-022e-466a-8a63-c06dfdab1fba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221057Z:72ff2740-022e-466a-8a63-c06dfdab1fba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35738309-f050-4ac8-ae54-a0a0ae0fbf09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7986" - ], - "x-ms-correlation-request-id": [ - "069d7c10-0e9b-4a38-920e-03e7e8467d62" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221057Z:069d7c10-0e9b-4a38-920e-03e7e8467d62" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72633b7a-ba16-46b2-9f27-9b9dee1d487d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7985" - ], - "x-ms-correlation-request-id": [ - "5d0af961-a735-4f9c-af75-7e7f12197a4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221057Z:5d0af961-a735-4f9c-af75-7e7f12197a4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce51972e-6866-4bd5-ab5a-6d5044fc1481" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7984" - ], - "x-ms-correlation-request-id": [ - "4a4a3b71-41f9-404e-93bf-ce440fe4579c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221058Z:4a4a3b71-41f9-404e-93bf-ce440fe4579c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78663655-84c8-496a-a79b-8411898cd95d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7983" - ], - "x-ms-correlation-request-id": [ - "950f439a-4805-439a-9ee6-a84ed5fdb0af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221058Z:950f439a-4805-439a-9ee6-a84ed5fdb0af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a97911a1-2847-46bd-b006-b5bed13289fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7982" - ], - "x-ms-correlation-request-id": [ - "5fb93abe-1acc-4261-a495-99e4729b98b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221058Z:5fb93abe-1acc-4261-a495-99e4729b98b1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10cf1f1b-df93-4014-a293-5d7fb7331d0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7981" - ], - "x-ms-correlation-request-id": [ - "6ebba4b5-b1e2-454c-a310-926983ddc6c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221058Z:6ebba4b5-b1e2-454c-a310-926983ddc6c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3002fdf2-24ea-4032-bfa5-9ecf69de731d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7980" - ], - "x-ms-correlation-request-id": [ - "3a5fd0eb-c27b-48bb-8d25-2fbb9451af79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221058Z:3a5fd0eb-c27b-48bb-8d25-2fbb9451af79" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "719047c8-1c69-4021-92bd-85a874df818c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7979" - ], - "x-ms-correlation-request-id": [ - "fed0f677-2b9a-4215-a627-97c58d92037b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221058Z:fed0f677-2b9a-4215-a627-97c58d92037b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "577bdd26-8897-40b1-a613-0fda74993a92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7978" - ], - "x-ms-correlation-request-id": [ - "2f52165e-966f-4d92-9c24-44452662e3a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221059Z:2f52165e-966f-4d92-9c24-44452662e3a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "652442be-0503-4ce4-ade3-69cd3a463f2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7977" - ], - "x-ms-correlation-request-id": [ - "6c32bd0d-d362-444b-bee6-bf3fea6373d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221059Z:6c32bd0d-d362-444b-bee6-bf3fea6373d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fad27c72-c417-4ec4-90b6-2e5dffb0911b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7976" - ], - "x-ms-correlation-request-id": [ - "e1c19cb7-d211-4403-af10-85c6f0df4652" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221059Z:e1c19cb7-d211-4403-af10-85c6f0df4652" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e18a4d7b-38ad-499e-94f8-da6035fb0bc6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7975" - ], - "x-ms-correlation-request-id": [ - "fa7a7bbf-e348-496a-a662-c38f5c72adfc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221059Z:fa7a7bbf-e348-496a-a662-c38f5c72adfc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20e6e707-af10-470b-a10d-077edf11dda6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7974" - ], - "x-ms-correlation-request-id": [ - "3e26a5b6-897d-46e4-b85e-0c7394431c91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221059Z:3e26a5b6-897d-46e4-b85e-0c7394431c91" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "073e1bf7-3d5d-4cb9-8192-e72804936b6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7973" - ], - "x-ms-correlation-request-id": [ - "946d3de4-3acb-4e53-874a-b2561790e186" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221059Z:946d3de4-3acb-4e53-874a-b2561790e186" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac78f163-9fe0-4630-94a8-09d0eb1b1e5f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7972" - ], - "x-ms-correlation-request-id": [ - "631f6ebd-b3a5-4af6-8c1d-b864de43bac1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221059Z:631f6ebd-b3a5-4af6-8c1d-b864de43bac1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0876ac27-b9a1-4560-a26b-e4b66afb8b7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7971" - ], - "x-ms-correlation-request-id": [ - "c2960f73-6421-496d-ba0a-a6f8b2adb0f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221100Z:c2960f73-6421-496d-ba0a-a6f8b2adb0f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "21b75a72-d20b-47df-8e41-61aa2ac44fa4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7970" - ], - "x-ms-correlation-request-id": [ - "9c754eae-b416-4ec5-939a-df29c94346b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221100Z:9c754eae-b416-4ec5-939a-df29c94346b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef01c9ba-b226-45fa-9d6b-50442d843a21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7969" - ], - "x-ms-correlation-request-id": [ - "580c6164-367d-42ca-8640-171a624361af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221100Z:580c6164-367d-42ca-8640-171a624361af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41e170c7-c09f-4b7f-8da2-c7c510484d6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7968" - ], - "x-ms-correlation-request-id": [ - "3bbab614-4953-4a2a-befe-bc866de4e04a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221100Z:3bbab614-4953-4a2a-befe-bc866de4e04a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d348f25-fe7b-4627-9bf1-4ba8f510eb34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7967" - ], - "x-ms-correlation-request-id": [ - "3b183c0e-bbb7-49fb-b34c-6fd867e36cfa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221100Z:3b183c0e-bbb7-49fb-b34c-6fd867e36cfa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:10:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db230be8-472b-4716-b11e-640ebbbcbe46" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7966" - ], - "x-ms-correlation-request-id": [ - "4d1d5e87-8e4a-44d7-b3c2-f8784a0f4a1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221101Z:4d1d5e87-8e4a-44d7-b3c2-f8784a0f4a1b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42897609-a558-4750-8056-93856b11619b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7965" - ], - "x-ms-correlation-request-id": [ - "6af83642-e2cd-4aec-ab53-68e09ef3242b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221101Z:6af83642-e2cd-4aec-ab53-68e09ef3242b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82d8e2e4-321a-4bdc-b56b-f9bd2b6047c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7964" - ], - "x-ms-correlation-request-id": [ - "90aff026-49f3-4491-a886-5b5d6e461279" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221101Z:90aff026-49f3-4491-a886-5b5d6e461279" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed2a31ce-dd31-4e11-bdac-0a9c1ef7dc16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7963" - ], - "x-ms-correlation-request-id": [ - "38e6ff7a-f0ca-4721-9c69-a30f86391de6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221101Z:38e6ff7a-f0ca-4721-9c69-a30f86391de6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3e9eff18-81ad-4e73-95df-4ee911a8524e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7962" - ], - "x-ms-correlation-request-id": [ - "0d78ca82-42b9-484b-aa9d-596d9e6117d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221101Z:0d78ca82-42b9-484b-aa9d-596d9e6117d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f34499e-6fe5-4e77-b207-b58bda4f29ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7961" - ], - "x-ms-correlation-request-id": [ - "dffa45c8-40ed-4024-b46a-fe79b3edfd6b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221101Z:dffa45c8-40ed-4024-b46a-fe79b3edfd6b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47958386-4eba-4f66-a512-f9cebff8ba34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7960" - ], - "x-ms-correlation-request-id": [ - "f79f9a4a-3cbc-457c-910e-12ec51d28bfa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221101Z:f79f9a4a-3cbc-457c-910e-12ec51d28bfa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd8e2b38-53e3-481b-85f2-d81b06b653be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7959" - ], - "x-ms-correlation-request-id": [ - "7c2c9185-1206-48de-bd70-11b8af916e5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221102Z:7c2c9185-1206-48de-bd70-11b8af916e5e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "883ff6aa-b002-4e16-9d39-0c7820148324" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7958" - ], - "x-ms-correlation-request-id": [ - "9232b175-6c0a-41fa-8e6f-21aa9a83e4d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221102Z:9232b175-6c0a-41fa-8e6f-21aa9a83e4d7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c68d27f2-4b8d-442a-9295-9dfa813555be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7957" - ], - "x-ms-correlation-request-id": [ - "cffbe288-af3b-4e69-8064-2f8fef9cc50b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221102Z:cffbe288-af3b-4e69-8064-2f8fef9cc50b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53cbf9a4-adc6-4ca6-b051-b3f26c9a3231" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7956" - ], - "x-ms-correlation-request-id": [ - "a3ba40a5-55c8-48c5-9384-79edb1c59710" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221102Z:a3ba40a5-55c8-48c5-9384-79edb1c59710" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "afe5743f-aacf-47ce-9fda-e79bfbcc3158" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7955" - ], - "x-ms-correlation-request-id": [ - "4f655f9a-f7ea-4e0f-bb14-9d1e994b9265" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221102Z:4f655f9a-f7ea-4e0f-bb14-9d1e994b9265" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "572d49af-6de3-4c57-8de2-f84c44bb3b30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7954" - ], - "x-ms-correlation-request-id": [ - "44665176-fa60-4f8e-8fdd-6d7b49e7ae3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221102Z:44665176-fa60-4f8e-8fdd-6d7b49e7ae3d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70eba1b4-202d-47b4-bbba-e8e89f406869" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7953" - ], - "x-ms-correlation-request-id": [ - "910108c7-47c1-476f-84d9-fd661baeecf1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221102Z:910108c7-47c1-476f-84d9-fd661baeecf1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51d52ff4-0fed-4727-8d81-740b2b6b81a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7952" - ], - "x-ms-correlation-request-id": [ - "b1c67d0e-7580-4ef9-bc68-d8cf10cf8099" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221103Z:b1c67d0e-7580-4ef9-bc68-d8cf10cf8099" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a25f024-c77b-49df-a152-a19113d255a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7951" - ], - "x-ms-correlation-request-id": [ - "a8ef2b95-669e-47d7-b488-c0afeb3d9383" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221103Z:a8ef2b95-669e-47d7-b488-c0afeb3d9383" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00e13449-78d3-41d8-9631-4e518ed170e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7950" - ], - "x-ms-correlation-request-id": [ - "eb3e3598-5467-4de1-ab74-e473419f054a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221103Z:eb3e3598-5467-4de1-ab74-e473419f054a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aef89f4a-6d07-4591-b59f-ba746b805dcc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7949" - ], - "x-ms-correlation-request-id": [ - "d1d42bb5-1fe0-4adb-869a-17a98178184b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221103Z:d1d42bb5-1fe0-4adb-869a-17a98178184b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee54df69-9574-4483-9764-38cbac739045" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7948" - ], - "x-ms-correlation-request-id": [ - "f6dd948b-324b-458e-9c62-84249cbae4b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221103Z:f6dd948b-324b-458e-9c62-84249cbae4b1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e57c98b-b7d4-4435-a420-b24da58c9905" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7947" - ], - "x-ms-correlation-request-id": [ - "a699a69f-2807-4b7c-b274-5f9a71e91d3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221103Z:a699a69f-2807-4b7c-b274-5f9a71e91d3b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6881304-4468-4db5-a5a2-6b1b3f6d5311" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7946" - ], - "x-ms-correlation-request-id": [ - "fa4a6dc7-8b1a-4de0-8844-f09c2fd06841" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221104Z:fa4a6dc7-8b1a-4de0-8844-f09c2fd06841" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36879da2-14cc-4a4f-b170-6969d02c8372" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7945" - ], - "x-ms-correlation-request-id": [ - "cafee773-eba6-42de-b948-175f72e0cf16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221104Z:cafee773-eba6-42de-b948-175f72e0cf16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54a463fc-1169-4aae-8a5c-c98ef96f2e0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7944" - ], - "x-ms-correlation-request-id": [ - "661ec379-9fb5-452f-b849-7e661e4b56de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221104Z:661ec379-9fb5-452f-b849-7e661e4b56de" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "597bb229-61b4-4b8f-956f-d198c7063f98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7943" - ], - "x-ms-correlation-request-id": [ - "c69158b2-3b13-4290-afe0-201cd0c84073" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221104Z:c69158b2-3b13-4290-afe0-201cd0c84073" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9cd539ba-45fc-4144-b4ef-50b6bec30820" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7942" - ], - "x-ms-correlation-request-id": [ - "8125ddbd-aa41-4b09-a617-f42ed4aa2b7c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221104Z:8125ddbd-aa41-4b09-a617-f42ed4aa2b7c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56797fc6-23a4-4c65-92f8-b82ade3b4616" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7941" - ], - "x-ms-correlation-request-id": [ - "0ea9d4cd-320e-43af-8b8a-654692c787a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221104Z:0ea9d4cd-320e-43af-8b8a-654692c787a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c76d7346-21cb-4c07-814a-af10050e5bad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7940" - ], - "x-ms-correlation-request-id": [ - "c88f7482-2d10-4f1a-b4e3-76bd70487bbd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221105Z:c88f7482-2d10-4f1a-b4e3-76bd70487bbd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9015ddee-819a-4912-bb32-1c6359b934b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7939" - ], - "x-ms-correlation-request-id": [ - "46070325-607d-4ff8-9fad-3c33f5ad0ec5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221105Z:46070325-607d-4ff8-9fad-3c33f5ad0ec5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc59279c-b185-4ec2-8cbf-d9f0ba3c3d54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7938" - ], - "x-ms-correlation-request-id": [ - "2c354dad-593f-48a2-8f4c-724b9d2e9665" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221105Z:2c354dad-593f-48a2-8f4c-724b9d2e9665" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c7f85155-6cc9-4d33-8b85-545073ec94db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7937" - ], - "x-ms-correlation-request-id": [ - "74051cd6-86ab-4f4f-9966-60bba7113087" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221105Z:74051cd6-86ab-4f4f-9966-60bba7113087" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bedc1eb8-2f8c-49f5-935c-eb9ed5dc5726" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7936" - ], - "x-ms-correlation-request-id": [ - "3781cb28-c349-49d4-8589-2a4bf6998f2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221105Z:3781cb28-c349-49d4-8589-2a4bf6998f2e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b6cecdb-9e75-473d-bf06-7bfebe2c8ab0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7935" - ], - "x-ms-correlation-request-id": [ - "18862035-8a51-494c-9896-637316740574" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221105Z:18862035-8a51-494c-9896-637316740574" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d24fb89-1074-4990-8162-3a9182f09fbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7934" - ], - "x-ms-correlation-request-id": [ - "0341f236-9142-4cc6-b27a-bb8601d70ddf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221106Z:0341f236-9142-4cc6-b27a-bb8601d70ddf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf90e977-5d0f-420c-9897-71bfd01f45f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7933" - ], - "x-ms-correlation-request-id": [ - "d3cbd7a5-7b57-4645-9576-f9129a97ecab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221106Z:d3cbd7a5-7b57-4645-9576-f9129a97ecab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6b9b9b0-7051-4c8b-9a0c-aff79848aff3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7932" - ], - "x-ms-correlation-request-id": [ - "83285870-c69c-4bdb-87f0-7e3f29240e8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221106Z:83285870-c69c-4bdb-87f0-7e3f29240e8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2cd83a66-625f-46e9-9f15-0e4a38c3bb0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7931" - ], - "x-ms-correlation-request-id": [ - "8e1d6591-82f2-4e37-8bb7-7ce986e2120b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221106Z:8e1d6591-82f2-4e37-8bb7-7ce986e2120b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b47fbb9-e64d-4cd9-9285-8021eb5321c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7930" - ], - "x-ms-correlation-request-id": [ - "7cc1f786-a5ef-4859-bcd6-37ef074dfe02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221106Z:7cc1f786-a5ef-4859-bcd6-37ef074dfe02" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff97f329-3280-4fbe-8d56-5756bc0e9d3d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7929" - ], - "x-ms-correlation-request-id": [ - "193cea4f-f535-4392-a21a-084ac5da3dd9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221106Z:193cea4f-f535-4392-a21a-084ac5da3dd9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74958e9d-0dad-43ea-ab27-82f62254d8e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7928" - ], - "x-ms-correlation-request-id": [ - "075eb779-7631-4238-b5d8-13558b3cff2b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221107Z:075eb779-7631-4238-b5d8-13558b3cff2b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dfc3861f-6e40-407d-b3f8-4f3690716f4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7927" - ], - "x-ms-correlation-request-id": [ - "d888cc16-50d3-40a9-ae3b-b2d06df493f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221107Z:d888cc16-50d3-40a9-ae3b-b2d06df493f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8f83c75-b592-4537-a358-63343924dd41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7926" - ], - "x-ms-correlation-request-id": [ - "0365135c-e3a5-4375-a96b-0275465f6e8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221107Z:0365135c-e3a5-4375-a96b-0275465f6e8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82b9df79-aa9f-46b7-a85f-ccdfbe14ceb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7925" - ], - "x-ms-correlation-request-id": [ - "d296d126-1bd1-41c3-b8f7-707e5f6ac215" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221107Z:d296d126-1bd1-41c3-b8f7-707e5f6ac215" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2fa1fcf5-7766-428e-a1f0-1eec10714aa1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7924" - ], - "x-ms-correlation-request-id": [ - "638b0d7f-f644-4478-a88f-d0a79562e5fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221107Z:638b0d7f-f644-4478-a88f-d0a79562e5fb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2c27f95-38b3-4f45-a670-8a7c9ebdba5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7923" - ], - "x-ms-correlation-request-id": [ - "99f3e86c-ef4e-41eb-9ba8-7ba658e0fc3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221107Z:99f3e86c-ef4e-41eb-9ba8-7ba658e0fc3e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0560eda6-ee97-49e7-a0d1-503778ec4951" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7922" - ], - "x-ms-correlation-request-id": [ - "d389705c-5bfe-405a-b770-b1643a3f885a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221107Z:d389705c-5bfe-405a-b770-b1643a3f885a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac303892-a96d-4eb0-be3f-84c1edd26dfe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7921" - ], - "x-ms-correlation-request-id": [ - "be294f69-9a99-4a49-86ca-5eb35f51cbe5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221107Z:be294f69-9a99-4a49-86ca-5eb35f51cbe5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae9432ef-3783-4f10-acdd-7f453e320bf3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7920" - ], - "x-ms-correlation-request-id": [ - "d4caf563-b929-45d8-b30c-25285deca5ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221108Z:d4caf563-b929-45d8-b30c-25285deca5ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b3436d9-5f1e-4c91-91ad-a14ccc5cd0c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7919" - ], - "x-ms-correlation-request-id": [ - "293e8ef2-b57d-4bbb-9556-3420cda5d803" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221108Z:293e8ef2-b57d-4bbb-9556-3420cda5d803" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "663018b2-c71c-47b4-896d-bbe2de5541e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7918" - ], - "x-ms-correlation-request-id": [ - "65df6053-1f73-4226-a915-bca9101b0ffc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221108Z:65df6053-1f73-4226-a915-bca9101b0ffc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a88d5c36-b81a-46eb-9aec-996c8109280c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7917" - ], - "x-ms-correlation-request-id": [ - "8ab912f7-8890-4151-8052-bc8269e8e62e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221108Z:8ab912f7-8890-4151-8052-bc8269e8e62e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac354de9-0e94-4837-b60b-c22e339fda2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7916" - ], - "x-ms-correlation-request-id": [ - "66bf4a77-3ff5-41ad-883f-823cef46ed97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221108Z:66bf4a77-3ff5-41ad-883f-823cef46ed97" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83db5fec-940f-4116-9348-3700b0929e26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7915" - ], - "x-ms-correlation-request-id": [ - "fdd915de-c5f2-4325-849c-6cb5dabc580a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221108Z:fdd915de-c5f2-4325-849c-6cb5dabc580a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54671a25-0176-4f62-a31d-5f61dbaa4cda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7914" - ], - "x-ms-correlation-request-id": [ - "ae75e3f5-5ff4-4356-909a-08c4c3cf3f54" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221109Z:ae75e3f5-5ff4-4356-909a-08c4c3cf3f54" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "550343bc-ef76-4f33-bf6b-bff2bc5f0229" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7913" - ], - "x-ms-correlation-request-id": [ - "6d4627b2-dc7e-4067-bbdf-055fe24cfcfd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221109Z:6d4627b2-dc7e-4067-bbdf-055fe24cfcfd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f69ee892-2f96-4ddd-8af2-ebb8a861a364" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7912" - ], - "x-ms-correlation-request-id": [ - "7887d705-3dc2-40c0-bca0-0dc5c0613d89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221109Z:7887d705-3dc2-40c0-bca0-0dc5c0613d89" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57db35ab-ae0f-4b74-910c-44706c6a4624" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7911" - ], - "x-ms-correlation-request-id": [ - "e10c24fc-cfc5-40af-a86e-d7e04b3a943d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221109Z:e10c24fc-cfc5-40af-a86e-d7e04b3a943d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c3e9a6a-33e9-4f5c-8bb4-1b86bb7ac9b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7910" - ], - "x-ms-correlation-request-id": [ - "f3221a2f-c78c-41fd-ba0f-53dbe141acfd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221109Z:f3221a2f-c78c-41fd-ba0f-53dbe141acfd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5446a79-e752-4d5c-a888-793aa796d820" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7909" - ], - "x-ms-correlation-request-id": [ - "5b4bf572-a9d4-428d-aee6-0b0d7ba0993a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221109Z:5b4bf572-a9d4-428d-aee6-0b0d7ba0993a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29f895c2-af2e-4874-bfbf-8504e69a8455" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7908" - ], - "x-ms-correlation-request-id": [ - "3d763a86-dd44-460d-b0b6-d883e9b21caa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221109Z:3d763a86-dd44-460d-b0b6-d883e9b21caa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c7796d21-d51b-49e9-8174-29a356e039f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7907" - ], - "x-ms-correlation-request-id": [ - "da256489-7b79-4c19-bd3c-22744cfc1cc2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221110Z:da256489-7b79-4c19-bd3c-22744cfc1cc2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "426df493-cf23-4cd7-a62c-105778a498fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7906" - ], - "x-ms-correlation-request-id": [ - "1399a1d3-3f61-4a23-a48b-fd54386397f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221110Z:1399a1d3-3f61-4a23-a48b-fd54386397f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8167c7be-009b-40b5-8d27-d3a57485f673" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7905" - ], - "x-ms-correlation-request-id": [ - "578bba24-4c4c-4164-b5e3-89f209bf1a06" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221110Z:578bba24-4c4c-4164-b5e3-89f209bf1a06" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30285146-1baf-4d71-87be-5a171199b507" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7904" - ], - "x-ms-correlation-request-id": [ - "40704192-699a-4ce5-808b-22f1bf6c6ab8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221110Z:40704192-699a-4ce5-808b-22f1bf6c6ab8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "07a6ba81-a8af-4525-9d4b-a212bb263db1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7903" - ], - "x-ms-correlation-request-id": [ - "a7f0dd77-2e7a-468d-9f20-020cc1bb968f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221110Z:a7f0dd77-2e7a-468d-9f20-020cc1bb968f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6cd1e2d0-fd2f-4b0b-a229-982dae5c5ce5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7902" - ], - "x-ms-correlation-request-id": [ - "94569c14-fa89-4b2f-aae8-e0443db144d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221110Z:94569c14-fa89-4b2f-aae8-e0443db144d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4f9ea4e-595e-4277-b604-ecf059569008" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7901" - ], - "x-ms-correlation-request-id": [ - "1914e44c-6f11-49d4-99f9-3130102e50ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221110Z:1914e44c-6f11-49d4-99f9-3130102e50ce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1605d940-0f93-418f-a5ba-443bddd127c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7900" - ], - "x-ms-correlation-request-id": [ - "ef43acaa-342e-4246-b09f-58030a40680f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221111Z:ef43acaa-342e-4246-b09f-58030a40680f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3492e02-0d39-4540-a7f8-7c969f2e31e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7899" - ], - "x-ms-correlation-request-id": [ - "64e4ea6b-7a80-415b-ba7b-a201af145011" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221111Z:64e4ea6b-7a80-415b-ba7b-a201af145011" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a936c83d-b8e4-4e86-92a9-3fc672588b24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7898" - ], - "x-ms-correlation-request-id": [ - "dc111352-7af7-4153-a6a4-019650bac108" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221111Z:dc111352-7af7-4153-a6a4-019650bac108" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad2fe771-18c7-478c-b1bd-32084af4dd12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7897" - ], - "x-ms-correlation-request-id": [ - "043f3d8a-da0e-4625-b802-7f750b5d9bb3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221111Z:043f3d8a-da0e-4625-b802-7f750b5d9bb3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ebee54c-4003-49d0-88cc-49c26fbad278" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7896" - ], - "x-ms-correlation-request-id": [ - "97eccf05-f44e-4913-b435-32785628e6d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221111Z:97eccf05-f44e-4913-b435-32785628e6d6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73d00e97-43ef-41e0-be48-561731b83658" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7895" - ], - "x-ms-correlation-request-id": [ - "f527155d-a742-4da2-b5ef-767212698e48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221111Z:f527155d-a742-4da2-b5ef-767212698e48" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "780403aa-9e97-44bb-ba7e-0e394301b9af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7894" - ], - "x-ms-correlation-request-id": [ - "be26dd98-d2d7-4f76-a2f0-971f82f6fc37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221111Z:be26dd98-d2d7-4f76-a2f0-971f82f6fc37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0cf2e73-c17e-4255-b42d-ab1a52560462" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7893" - ], - "x-ms-correlation-request-id": [ - "d7a791bf-e457-4467-8bc2-e2edf5d366f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221112Z:d7a791bf-e457-4467-8bc2-e2edf5d366f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6f095bb-677f-41ad-b56b-c74c1f7c1d32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7892" - ], - "x-ms-correlation-request-id": [ - "09cc45e3-2884-4643-8457-9df30da62ede" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221112Z:09cc45e3-2884-4643-8457-9df30da62ede" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cea0caba-d467-4df7-b618-b3f8416c2628" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7891" - ], - "x-ms-correlation-request-id": [ - "ebed3e6c-3463-4d90-b76a-0fd3de559ce4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221112Z:ebed3e6c-3463-4d90-b76a-0fd3de559ce4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8d0c751-9a6f-4d24-8276-0ed0bf64f0d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7890" - ], - "x-ms-correlation-request-id": [ - "71aef761-3a5e-4588-b1dc-69e9606e66e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221112Z:71aef761-3a5e-4588-b1dc-69e9606e66e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35c59e3b-cc2e-428b-a112-4b663d663073" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7889" - ], - "x-ms-correlation-request-id": [ - "2e390a3d-4163-4047-93c3-2b800fe1231e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221112Z:2e390a3d-4163-4047-93c3-2b800fe1231e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "af605d99-5911-4846-ab14-0c23d5556631" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7888" - ], - "x-ms-correlation-request-id": [ - "e6bcdff6-ceca-4268-b2d0-9063d83ab066" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221113Z:e6bcdff6-ceca-4268-b2d0-9063d83ab066" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65361949-237b-4142-92ab-80652ab17a8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7887" - ], - "x-ms-correlation-request-id": [ - "0860c0e3-d72f-4778-8c2b-b9e83848a29d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221113Z:0860c0e3-d72f-4778-8c2b-b9e83848a29d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df2e8aad-b22a-4744-b7e7-e609674f1a59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7886" - ], - "x-ms-correlation-request-id": [ - "44e7f013-7658-4605-9db0-403c7734c279" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221113Z:44e7f013-7658-4605-9db0-403c7734c279" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "288ecc74-65b1-45c1-9a40-37172fa1774c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7885" - ], - "x-ms-correlation-request-id": [ - "881f5d31-0000-474d-84cb-cf00f01ffeb6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221113Z:881f5d31-0000-474d-84cb-cf00f01ffeb6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d7c4e45-42be-4d29-86ab-0c847f473b86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7884" - ], - "x-ms-correlation-request-id": [ - "1498d225-212c-4c51-b402-18144b3ff807" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221113Z:1498d225-212c-4c51-b402-18144b3ff807" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c1ad176-bbec-4084-b4d8-c1ae55b8a227" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7883" - ], - "x-ms-correlation-request-id": [ - "506a9199-a9f0-4087-9cc3-bd1bd189b017" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221113Z:506a9199-a9f0-4087-9cc3-bd1bd189b017" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d63e896d-cb53-44af-bd74-06da690b9b99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7882" - ], - "x-ms-correlation-request-id": [ - "0e4c8e49-f790-4e1c-abaf-f1d9c6b1b5dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221114Z:0e4c8e49-f790-4e1c-abaf-f1d9c6b1b5dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1d188e1-7da9-4ca5-9221-8ff4d710f397" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7881" - ], - "x-ms-correlation-request-id": [ - "3c71320d-cdb1-4fe0-b7c0-80a4912da120" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221114Z:3c71320d-cdb1-4fe0-b7c0-80a4912da120" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d58d0c6-c666-4a55-9df6-57b6db775a91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7880" - ], - "x-ms-correlation-request-id": [ - "e3fa0d0f-ea64-4bc1-92cf-2b789f8a4dce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221114Z:e3fa0d0f-ea64-4bc1-92cf-2b789f8a4dce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ce61a88-4e19-4a8d-af94-a41170f0bd6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7879" - ], - "x-ms-correlation-request-id": [ - "b09caefc-709b-4b6f-aad2-9d1286b26df2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221114Z:b09caefc-709b-4b6f-aad2-9d1286b26df2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80462b24-e93d-4737-bb7a-fa1eb443a9dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7878" - ], - "x-ms-correlation-request-id": [ - "72a410f1-d820-43b6-a1a5-4b4f2ae758b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221114Z:72a410f1-d820-43b6-a1a5-4b4f2ae758b7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "885fa734-4997-42ee-a48d-6309a30cf598" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7877" - ], - "x-ms-correlation-request-id": [ - "2b7e84d1-2f7e-4040-b5a1-ce5b5a14d45f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221114Z:2b7e84d1-2f7e-4040-b5a1-ce5b5a14d45f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c93c4ee7-5259-414b-94ec-2c83df3c0736" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7876" - ], - "x-ms-correlation-request-id": [ - "a7e678a2-b101-46a4-8b57-348e07d2c0b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221114Z:a7e678a2-b101-46a4-8b57-348e07d2c0b0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92043a8b-6eae-4f8f-915b-b081c745ca90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7875" - ], - "x-ms-correlation-request-id": [ - "472b1209-5c12-4ebe-b303-37f357c1303c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221115Z:472b1209-5c12-4ebe-b303-37f357c1303c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de60498b-2101-4d1f-b245-151f365e756b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7874" - ], - "x-ms-correlation-request-id": [ - "5cc23d32-b018-4c5c-9021-02cfc883a6d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221115Z:5cc23d32-b018-4c5c-9021-02cfc883a6d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "896dd94f-e065-446c-bfbe-a591117e1155" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7873" - ], - "x-ms-correlation-request-id": [ - "df1d4800-c7be-4fe6-80c3-e53a7400cf73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221115Z:df1d4800-c7be-4fe6-80c3-e53a7400cf73" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40a58732-0efd-46fb-9e70-39268b44750d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7872" - ], - "x-ms-correlation-request-id": [ - "702fa655-4838-4a7c-86e1-7ac2e452249e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221115Z:702fa655-4838-4a7c-86e1-7ac2e452249e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d484d251-b553-4500-9fdc-eb14afa3f134" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7871" - ], - "x-ms-correlation-request-id": [ - "d4ab057e-dc85-4c95-a622-6ee1a4e34e95" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221115Z:d4ab057e-dc85-4c95-a622-6ee1a4e34e95" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fdc97513-68c1-417a-a301-f462c5e6d221" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7870" - ], - "x-ms-correlation-request-id": [ - "50e63118-8ad6-457d-8887-86d0c93b2166" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221115Z:50e63118-8ad6-457d-8887-86d0c93b2166" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "076e0273-43dc-457a-b8a6-a9b4a8660a16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7869" - ], - "x-ms-correlation-request-id": [ - "54e073b5-950e-487c-83f3-7a1a60db555d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221116Z:54e073b5-950e-487c-83f3-7a1a60db555d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78dc131e-5114-420f-b200-3d5875e72018" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7868" - ], - "x-ms-correlation-request-id": [ - "db538bce-f4b1-4597-84df-b959786e5e78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221116Z:db538bce-f4b1-4597-84df-b959786e5e78" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "acdd6cec-5bd0-431c-aba8-e12444676028" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7867" - ], - "x-ms-correlation-request-id": [ - "2afe10c8-bd58-4f54-9e7d-82d20008f260" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221116Z:2afe10c8-bd58-4f54-9e7d-82d20008f260" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "789b1b77-73b3-49fd-a410-0e401268bb8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7866" - ], - "x-ms-correlation-request-id": [ - "b847a08d-22a5-40ab-9479-65bfb1c02209" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221116Z:b847a08d-22a5-40ab-9479-65bfb1c02209" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56d7066f-d56a-4c4f-b6ab-7189173039cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7865" - ], - "x-ms-correlation-request-id": [ - "3849eaf8-c114-4fd7-92bb-390621183529" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221116Z:3849eaf8-c114-4fd7-92bb-390621183529" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a64e4ff1-f2f0-49a6-902f-66cc44a77598" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7864" - ], - "x-ms-correlation-request-id": [ - "c99c42ab-2d5d-43ae-9ceb-c983650deb3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221116Z:c99c42ab-2d5d-43ae-9ceb-c983650deb3b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22812956-2d8c-44da-aef9-b9c029886c29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7863" - ], - "x-ms-correlation-request-id": [ - "fab05024-fd88-482f-ae4f-d3d6ed03a0e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221116Z:fab05024-fd88-482f-ae4f-d3d6ed03a0e5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e9349f2f-cb9c-4790-b5fb-e80bd2e3c95d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7862" - ], - "x-ms-correlation-request-id": [ - "f635b12b-f62b-4c43-b448-184d501156cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221117Z:f635b12b-f62b-4c43-b448-184d501156cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "850aefac-c145-498b-9443-fe3f3da3d64d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7861" - ], - "x-ms-correlation-request-id": [ - "d340f522-08ab-4f67-9865-7f54dd0e807e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221117Z:d340f522-08ab-4f67-9865-7f54dd0e807e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ab8afd7-6daa-48c7-bb88-2c7ab1e1d368" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7860" - ], - "x-ms-correlation-request-id": [ - "4f49f7ee-08a0-4453-8f36-5c7272e1fb82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221117Z:4f49f7ee-08a0-4453-8f36-5c7272e1fb82" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "763258af-bfb1-4989-840d-076a45c01e23" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7859" - ], - "x-ms-correlation-request-id": [ - "70d71e6e-b839-42cc-b51e-ace8427e8edf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221117Z:70d71e6e-b839-42cc-b51e-ace8427e8edf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7296877e-0a41-47dd-8155-66bb9e30aafd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7858" - ], - "x-ms-correlation-request-id": [ - "571cd1e1-240c-4377-ad7f-de253220302c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221117Z:571cd1e1-240c-4377-ad7f-de253220302c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee215f3e-cda0-49f2-aaa7-b0d49d098835" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7857" - ], - "x-ms-correlation-request-id": [ - "9cf9e412-3057-4e98-add8-fbaf7ff56c4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221117Z:9cf9e412-3057-4e98-add8-fbaf7ff56c4c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1cfff4c6-6b6a-4eab-8550-fd4d1f7ae0d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7856" - ], - "x-ms-correlation-request-id": [ - "60c6001d-5e0b-4aa6-979a-970a82c2ae94" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221118Z:60c6001d-5e0b-4aa6-979a-970a82c2ae94" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "356513bf-0494-474f-acd7-52407ddf0ab8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7855" - ], - "x-ms-correlation-request-id": [ - "1b9954f8-bab4-48cb-927f-c24cbb30753f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221118Z:1b9954f8-bab4-48cb-927f-c24cbb30753f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0179d7a7-60ba-4182-bb9e-2e6bbc78caf0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7854" - ], - "x-ms-correlation-request-id": [ - "cbf87ec0-8a2a-43fb-ab18-40f89bf128cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221118Z:cbf87ec0-8a2a-43fb-ab18-40f89bf128cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0da548c-4d15-41c4-aff9-4d47bf87cc4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7853" - ], - "x-ms-correlation-request-id": [ - "52b17f05-a7f3-4397-8fd9-c30ccecb5437" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221118Z:52b17f05-a7f3-4397-8fd9-c30ccecb5437" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc0b3ddd-476e-4369-bdfa-0a5ca2034454" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7852" - ], - "x-ms-correlation-request-id": [ - "b04f1ed9-1098-40b7-bd00-ae4e95185adf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221118Z:b04f1ed9-1098-40b7-bd00-ae4e95185adf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84493ae4-15d5-4294-b2eb-d15a5bfcd209" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7851" - ], - "x-ms-correlation-request-id": [ - "650defd7-7c30-40d8-84e4-2f56f2911f07" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221119Z:650defd7-7c30-40d8-84e4-2f56f2911f07" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6058d11-3088-4312-9fff-5a25b646dccc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7850" - ], - "x-ms-correlation-request-id": [ - "444c85f4-12d5-4c12-abe2-dd5c313506e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221119Z:444c85f4-12d5-4c12-abe2-dd5c313506e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "607e1d7c-7d34-4271-9c58-82a12f1c5890" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7849" - ], - "x-ms-correlation-request-id": [ - "d2dbddb8-bfba-41ed-9e7c-7f5642c18d4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221119Z:d2dbddb8-bfba-41ed-9e7c-7f5642c18d4e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8b118c0-cbc9-4e86-a0d7-76f031a15315" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7848" - ], - "x-ms-correlation-request-id": [ - "7b86a458-26d5-4153-b690-b72a0fdc6cb2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221119Z:7b86a458-26d5-4153-b690-b72a0fdc6cb2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35e9fd94-56d2-422c-a1a8-988a85f92710" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7847" - ], - "x-ms-correlation-request-id": [ - "7eaf25fa-302d-48d1-84d9-c20d6c9165e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221119Z:7eaf25fa-302d-48d1-84d9-c20d6c9165e5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8583ad06-0c6f-4e56-ae0a-b97b52458e20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7846" - ], - "x-ms-correlation-request-id": [ - "6a29d4a9-8579-4756-b8be-12ad1802ef21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221119Z:6a29d4a9-8579-4756-b8be-12ad1802ef21" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83d27602-fa5c-435e-a7d9-c7d6d21b44f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7845" - ], - "x-ms-correlation-request-id": [ - "2bc6778c-c6e8-4eb6-818a-c89679d61672" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221120Z:2bc6778c-c6e8-4eb6-818a-c89679d61672" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a61492f8-f259-412e-b8b0-7adb85912ba7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7844" - ], - "x-ms-correlation-request-id": [ - "9194a0c8-d286-4f5e-bc09-0a5cbd9aec60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221120Z:9194a0c8-d286-4f5e-bc09-0a5cbd9aec60" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa015ad9-f881-4ddb-b228-49d49222cb3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7843" - ], - "x-ms-correlation-request-id": [ - "1bfadde0-00b9-4c6b-b50d-b0a8e23dc96b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221120Z:1bfadde0-00b9-4c6b-b50d-b0a8e23dc96b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "692d5cd3-a6dc-461f-b452-5697f4f6e42e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7842" - ], - "x-ms-correlation-request-id": [ - "aeac70bd-e34c-4720-b510-b05fb8a4bb6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221120Z:aeac70bd-e34c-4720-b510-b05fb8a4bb6c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f1b04dc-c722-44a2-8e4a-9c285dca32b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7841" - ], - "x-ms-correlation-request-id": [ - "b3d21302-09d5-4476-ad58-0c96ff7a806b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221120Z:b3d21302-09d5-4476-ad58-0c96ff7a806b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7cdb6bb-4f4d-4c95-bc5b-97aab3ade8f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7840" - ], - "x-ms-correlation-request-id": [ - "f49bb56b-1b0e-4300-a178-8677be1d4f72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221120Z:f49bb56b-1b0e-4300-a178-8677be1d4f72" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53510fdd-9ab3-4e08-9716-297673b561f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7839" - ], - "x-ms-correlation-request-id": [ - "e49fe42c-0e96-4856-9377-00570f24352e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221120Z:e49fe42c-0e96-4856-9377-00570f24352e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "445f87a4-677b-4018-a165-71abc6da0bfb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7838" - ], - "x-ms-correlation-request-id": [ - "178cbff3-5981-406d-9b7f-fd87c695e9a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221121Z:178cbff3-5981-406d-9b7f-fd87c695e9a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5144ce73-ff83-4984-b020-36a41a9f5ed8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7837" - ], - "x-ms-correlation-request-id": [ - "a84896ca-067f-470f-898a-3d87c3544687" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221121Z:a84896ca-067f-470f-898a-3d87c3544687" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea76ff70-c09f-4b8c-9234-f4a35ebf96d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7836" - ], - "x-ms-correlation-request-id": [ - "fa531c4d-89a9-4ae0-b113-272200cb3ed8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221121Z:fa531c4d-89a9-4ae0-b113-272200cb3ed8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67f366fe-2f0b-4cc5-8040-f1e00a291b48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7835" - ], - "x-ms-correlation-request-id": [ - "aadb1643-3a9b-49a4-a819-a2e00862ed58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221121Z:aadb1643-3a9b-49a4-a819-a2e00862ed58" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86a7f7bd-49a6-4211-8a55-a6e58bc21830" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7834" - ], - "x-ms-correlation-request-id": [ - "c68ede79-ef4d-4b36-8a19-4670f6641adf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221121Z:c68ede79-ef4d-4b36-8a19-4670f6641adf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f76de6da-e7d1-4e86-ac4f-3feba06abb5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7833" - ], - "x-ms-correlation-request-id": [ - "ed0b3c7c-7749-480e-a47f-b460d9f626f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221121Z:ed0b3c7c-7749-480e-a47f-b460d9f626f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30a69422-1ed1-497d-a3d8-5094ea2bed42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7832" - ], - "x-ms-correlation-request-id": [ - "53d82605-b04c-4ed6-82e4-a729234e80bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221122Z:53d82605-b04c-4ed6-82e4-a729234e80bf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24a82cb3-6562-4f76-ad72-fd562df794ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7831" - ], - "x-ms-correlation-request-id": [ - "422f9ba0-c3ba-401f-9c12-7dd1e03ee05e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221122Z:422f9ba0-c3ba-401f-9c12-7dd1e03ee05e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fcf80e63-1914-4c93-96bb-7ffdd4e206a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7830" - ], - "x-ms-correlation-request-id": [ - "40c59cad-5d5d-49be-9d25-7f0be22b5027" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221122Z:40c59cad-5d5d-49be-9d25-7f0be22b5027" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa70580d-6662-42c6-b56c-b38823c4fe34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7829" - ], - "x-ms-correlation-request-id": [ - "7c61f214-01df-4f72-b80f-71a01e836271" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221122Z:7c61f214-01df-4f72-b80f-71a01e836271" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5499f76-190c-457c-b276-a45d17d25582" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7828" - ], - "x-ms-correlation-request-id": [ - "13ecc646-c1a7-4c4d-8462-25db7d71418a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221122Z:13ecc646-c1a7-4c4d-8462-25db7d71418a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6459da2-d1f8-4ae5-b008-8b1c798455be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7827" - ], - "x-ms-correlation-request-id": [ - "0de398bb-4c21-4cf7-bae6-af8d7cb6f8bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221122Z:0de398bb-4c21-4cf7-bae6-af8d7cb6f8bd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ace8c219-b6bd-4ae6-8a41-7d8d9ca7240e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7826" - ], - "x-ms-correlation-request-id": [ - "f8f0d6bb-0b43-4a16-ba04-de814b3d81b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221123Z:f8f0d6bb-0b43-4a16-ba04-de814b3d81b0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "766449f3-b724-49ae-9196-d6e1a304a864" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7825" - ], - "x-ms-correlation-request-id": [ - "8f763685-6837-462b-b483-55da88378279" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221123Z:8f763685-6837-462b-b483-55da88378279" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d356bf88-0c86-49a3-bf7e-20765dc73261" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7824" - ], - "x-ms-correlation-request-id": [ - "7dd1f361-4cc1-4b14-8a1b-a8b9c097854a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221123Z:7dd1f361-4cc1-4b14-8a1b-a8b9c097854a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ed5fe5c-f611-4c30-bd8e-aae170a928be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7823" - ], - "x-ms-correlation-request-id": [ - "8c6f4c85-e977-488f-885a-0610f0521e8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221123Z:8c6f4c85-e977-488f-885a-0610f0521e8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b3b508c1-4322-42d2-9be8-23a9375ff082" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7822" - ], - "x-ms-correlation-request-id": [ - "f425c19b-1e90-4f3b-aca0-31514506f9d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221123Z:f425c19b-1e90-4f3b-aca0-31514506f9d6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d584e7a2-fff3-4b55-a541-fb49680e74ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7821" - ], - "x-ms-correlation-request-id": [ - "bda1859d-a2ca-4ad1-96ff-f66770771cfb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221123Z:bda1859d-a2ca-4ad1-96ff-f66770771cfb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54fffdd2-64d5-4938-acd2-c8e3dad48d99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7820" - ], - "x-ms-correlation-request-id": [ - "618ea965-5d1a-4f3e-aeb7-698b5ef10d88" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221124Z:618ea965-5d1a-4f3e-aeb7-698b5ef10d88" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "610bf2cb-cba9-45a0-bbf6-5a5da791bc26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7819" - ], - "x-ms-correlation-request-id": [ - "bc5be1d5-6d11-47e9-9e23-ad37155b5f02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221124Z:bc5be1d5-6d11-47e9-9e23-ad37155b5f02" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2513c182-c502-4e8f-b230-86488ed34a91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7818" - ], - "x-ms-correlation-request-id": [ - "24f5364c-0099-497d-823a-b55d2769cfc7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221124Z:24f5364c-0099-497d-823a-b55d2769cfc7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68646864-a16d-4595-9524-925c564c5c15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7817" - ], - "x-ms-correlation-request-id": [ - "ae2646f0-4fc3-4db4-9411-0b30810cc093" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221124Z:ae2646f0-4fc3-4db4-9411-0b30810cc093" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "565ef239-8600-4e67-b905-efc07bc36ad7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7816" - ], - "x-ms-correlation-request-id": [ - "3d9ddabb-3ef1-4a2f-abfc-957c6651a2a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221124Z:3d9ddabb-3ef1-4a2f-abfc-957c6651a2a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b7e384e-89bb-4078-9b3a-f2af280b54b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7815" - ], - "x-ms-correlation-request-id": [ - "71c63ea2-0664-464b-8d1b-b6f2232f206a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221125Z:71c63ea2-0664-464b-8d1b-b6f2232f206a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e24239bf-d9a4-4850-8218-7180eb270dab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7814" - ], - "x-ms-correlation-request-id": [ - "ff303746-e14c-461c-af58-5101bad8213b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221125Z:ff303746-e14c-461c-af58-5101bad8213b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8998ab77-90c5-4e49-b627-c2be20636e4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7813" - ], - "x-ms-correlation-request-id": [ - "8ac2fb09-9e9f-4db1-89fb-af0492dffcc3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221125Z:8ac2fb09-9e9f-4db1-89fb-af0492dffcc3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d54576d-ecad-45e5-8377-725a77bf5a14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7812" - ], - "x-ms-correlation-request-id": [ - "29f6bd98-17b5-43a2-9a32-3b2af56d5c6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221125Z:29f6bd98-17b5-43a2-9a32-3b2af56d5c6d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3501c29-4a54-4fe2-b980-fae463184bed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7811" - ], - "x-ms-correlation-request-id": [ - "c1c75338-9ed4-468a-86d2-90e6d9abe12f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221125Z:c1c75338-9ed4-468a-86d2-90e6d9abe12f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0cfe4ef3-eeb1-4b1a-a240-3d53a782bc55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7810" - ], - "x-ms-correlation-request-id": [ - "041e2c1c-6587-4c9b-a7f5-98a2bff89f2a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221125Z:041e2c1c-6587-4c9b-a7f5-98a2bff89f2a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e978e03-a27c-42a5-b328-12d206f94dec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7809" - ], - "x-ms-correlation-request-id": [ - "65d126f8-4e03-47c8-bc8f-7af30220f6a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221126Z:65d126f8-4e03-47c8-bc8f-7af30220f6a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "52f8b23e-9d37-4faa-bc96-aff0099335b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7808" - ], - "x-ms-correlation-request-id": [ - "96cd7139-37a6-444f-b324-1201103704c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221126Z:96cd7139-37a6-444f-b324-1201103704c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b271d9ac-3b66-409a-8ee7-73545c7481f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7807" - ], - "x-ms-correlation-request-id": [ - "ac2c7f1e-ed9e-490e-9cab-db68fffe6a67" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221126Z:ac2c7f1e-ed9e-490e-9cab-db68fffe6a67" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0c0e418-7226-4c2c-ac54-a627d968bf40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7806" - ], - "x-ms-correlation-request-id": [ - "1fe1c103-9f2e-4e68-ab14-5f46094a9800" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221126Z:1fe1c103-9f2e-4e68-ab14-5f46094a9800" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccc0bbb0-58e6-4c38-850f-53b28f92c166" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7805" - ], - "x-ms-correlation-request-id": [ - "7006b7dc-4464-444c-bc7e-c29f062f45c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221126Z:7006b7dc-4464-444c-bc7e-c29f062f45c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff768464-a868-46a2-8b98-039eb87ad402" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7804" - ], - "x-ms-correlation-request-id": [ - "e4ac55fe-ae1d-49ad-a977-8490d08898cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221126Z:e4ac55fe-ae1d-49ad-a977-8490d08898cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bce3347-7c2c-426b-9655-c83156aec369" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7803" - ], - "x-ms-correlation-request-id": [ - "57899b72-b196-458c-9397-92112466dc46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221127Z:57899b72-b196-458c-9397-92112466dc46" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4db639a5-39b3-4aff-a30c-cec7552616d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7802" - ], - "x-ms-correlation-request-id": [ - "c4c534e0-6a38-4a3c-985e-f17554dd5db2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221127Z:c4c534e0-6a38-4a3c-985e-f17554dd5db2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8913318c-fe76-4e77-9c87-68119067ef95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7801" - ], - "x-ms-correlation-request-id": [ - "c0a4aacd-5240-4075-8d81-e3f96281bd04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221127Z:c0a4aacd-5240-4075-8d81-e3f96281bd04" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea34fa50-db82-4c2a-85f6-1a808babba9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7800" - ], - "x-ms-correlation-request-id": [ - "23570a40-a98d-49bb-97e4-4948e091ae61" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221127Z:23570a40-a98d-49bb-97e4-4948e091ae61" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2f7baa1-2c6b-4534-a917-ceedae17eacd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7799" - ], - "x-ms-correlation-request-id": [ - "9c33219c-ab58-4e75-b7d7-cc639c0854f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221127Z:9c33219c-ab58-4e75-b7d7-cc639c0854f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b03cfc59-5925-4c10-b062-2c125df75b0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7798" - ], - "x-ms-correlation-request-id": [ - "94191e9c-3326-4e1f-ab88-f6e23361f015" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221127Z:94191e9c-3326-4e1f-ab88-f6e23361f015" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f92d6f0-67cf-481b-af79-738ed45efaa4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7797" - ], - "x-ms-correlation-request-id": [ - "42b2b88f-6fc8-41dc-b1f5-ed90e7879351" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221127Z:42b2b88f-6fc8-41dc-b1f5-ed90e7879351" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31479ced-bd11-4fe8-9084-70cf7fd5ef80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7796" - ], - "x-ms-correlation-request-id": [ - "5c2ce62c-f269-447a-b555-83d8250a3d9e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221128Z:5c2ce62c-f269-447a-b555-83d8250a3d9e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5dc4359-13c0-4bce-b4e6-083f60f9a5d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7795" - ], - "x-ms-correlation-request-id": [ - "25dc2977-efaa-432c-9e91-c2607db9e773" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221128Z:25dc2977-efaa-432c-9e91-c2607db9e773" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0b05dbc-e61b-4d1b-8339-704efe43ac5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7794" - ], - "x-ms-correlation-request-id": [ - "35e496ef-12d8-45b1-89df-1c28f0beaf86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221128Z:35e496ef-12d8-45b1-89df-1c28f0beaf86" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "787ec349-a729-42f6-ac3c-b88d444f9871" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7793" - ], - "x-ms-correlation-request-id": [ - "1d493296-7268-468d-9399-e9b45ba852e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221128Z:1d493296-7268-468d-9399-e9b45ba852e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38e0b9a3-b79e-4962-bedb-33f926e836dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7792" - ], - "x-ms-correlation-request-id": [ - "95d8e7e9-addb-478c-86d4-e1da05f14ea1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221128Z:95d8e7e9-addb-478c-86d4-e1da05f14ea1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19a58f91-1bcf-4b61-97f6-b6dcb74fad99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7791" - ], - "x-ms-correlation-request-id": [ - "0a4ec883-643a-4162-8f63-29ee11df6556" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221128Z:0a4ec883-643a-4162-8f63-29ee11df6556" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4cc337c3-9521-4949-852d-067053507720" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7790" - ], - "x-ms-correlation-request-id": [ - "93ec0a46-6bce-4710-a4c2-46ed14c48ebf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221128Z:93ec0a46-6bce-4710-a4c2-46ed14c48ebf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0577a0f4-6043-4e94-bd53-150044c15452" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7789" - ], - "x-ms-correlation-request-id": [ - "1592e127-b6ef-4892-af93-a7eee37d0300" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221129Z:1592e127-b6ef-4892-af93-a7eee37d0300" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23b7c2a4-207c-4741-b0d1-839e25684231" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7788" - ], - "x-ms-correlation-request-id": [ - "9cef4387-0357-450c-8df7-26c51d71abce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221129Z:9cef4387-0357-450c-8df7-26c51d71abce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef4e3adc-9984-492d-a0a8-0383d3b0d865" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7787" - ], - "x-ms-correlation-request-id": [ - "67b0ff95-52f4-4137-af89-e5ffc178876d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221129Z:67b0ff95-52f4-4137-af89-e5ffc178876d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57f4f23e-5c10-4e3e-9e17-1390c85485e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7786" - ], - "x-ms-correlation-request-id": [ - "18d05d4a-ba76-4cb7-8a4f-6a0c5c50db71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221129Z:18d05d4a-ba76-4cb7-8a4f-6a0c5c50db71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ed6d201-f235-4242-bbc0-c07a6f1bb740" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7785" - ], - "x-ms-correlation-request-id": [ - "519ab37d-c1ff-4141-bf6b-fc098d70890d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221129Z:519ab37d-c1ff-4141-bf6b-fc098d70890d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb1cd51a-5382-48c8-bcae-82c14342ef97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7784" - ], - "x-ms-correlation-request-id": [ - "de75840f-4b54-44c4-bdc4-d07b88854806" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221129Z:de75840f-4b54-44c4-bdc4-d07b88854806" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13bfd869-402e-41f7-b7d2-e93f048554f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7783" - ], - "x-ms-correlation-request-id": [ - "4d0bdcfe-4771-4a9a-9f5f-e05cfb16d0df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221130Z:4d0bdcfe-4771-4a9a-9f5f-e05cfb16d0df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35086b72-4918-460a-9d6c-e2b8762f2437" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7782" - ], - "x-ms-correlation-request-id": [ - "e9713a52-2a8c-4ec7-af49-ad323547519d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221130Z:e9713a52-2a8c-4ec7-af49-ad323547519d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0ba5598-f727-4329-a72d-54d5c728e75a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7781" - ], - "x-ms-correlation-request-id": [ - "adf610d1-ac9a-46e8-8210-43b8e1685a7b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221130Z:adf610d1-ac9a-46e8-8210-43b8e1685a7b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d23fbcb2-67c0-4aa3-9936-1e3d16ad17d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7780" - ], - "x-ms-correlation-request-id": [ - "87e91d94-d31f-4ec7-a117-e7bcaabfab3a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221130Z:87e91d94-d31f-4ec7-a117-e7bcaabfab3a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d1bc721-947c-4e71-a0ae-213f62e571eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7779" - ], - "x-ms-correlation-request-id": [ - "91715262-d8b1-48bf-b92b-912b0b91967c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221130Z:91715262-d8b1-48bf-b92b-912b0b91967c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b98c0c3-6050-4d57-9575-a98f1f533133" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7778" - ], - "x-ms-correlation-request-id": [ - "8b047dd8-35f7-4f4c-aa06-4c5c06175eac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221130Z:8b047dd8-35f7-4f4c-aa06-4c5c06175eac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aca6e53b-195b-41d9-83a9-17434e364357" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7777" - ], - "x-ms-correlation-request-id": [ - "6c9bbabf-f90a-4498-9db9-8e914beb7fc8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221130Z:6c9bbabf-f90a-4498-9db9-8e914beb7fc8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae2da8d4-1021-49db-ada9-4c6f7ab3bb61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7776" - ], - "x-ms-correlation-request-id": [ - "e089d758-4b84-4d82-8645-e130e343f7fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221130Z:e089d758-4b84-4d82-8645-e130e343f7fb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bafbc78-4a77-4559-8232-3117226fd056" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7775" - ], - "x-ms-correlation-request-id": [ - "1434fe08-5ff7-45dd-b3de-843c3c9e3773" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221131Z:1434fe08-5ff7-45dd-b3de-843c3c9e3773" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4775985-519e-464f-bde8-caf2b02a95be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7774" - ], - "x-ms-correlation-request-id": [ - "97e0cc84-a187-4a4c-8120-e9648e91c27c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221131Z:97e0cc84-a187-4a4c-8120-e9648e91c27c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "986f83b5-b7db-41cf-9ea4-5b0b1c4efb28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7773" - ], - "x-ms-correlation-request-id": [ - "a8849933-83d2-43a7-ab8d-e7d3f3336509" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221131Z:a8849933-83d2-43a7-ab8d-e7d3f3336509" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5570f431-212c-428d-a326-a7a7350c2404" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7772" - ], - "x-ms-correlation-request-id": [ - "22213609-86f0-427a-9fc0-c61b6f331dc2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221131Z:22213609-86f0-427a-9fc0-c61b6f331dc2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35a58b79-d506-4038-a6bd-dfb27bcf2477" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7771" - ], - "x-ms-correlation-request-id": [ - "56da1ce5-34b2-493e-b99c-a9e85c444230" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221131Z:56da1ce5-34b2-493e-b99c-a9e85c444230" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f14e2d72-b81a-41a0-9ad9-1807b8195e1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7770" - ], - "x-ms-correlation-request-id": [ - "b686be98-3089-4496-b96d-00a85b78d94a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221132Z:b686be98-3089-4496-b96d-00a85b78d94a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6ef3158-eb12-434d-bbad-33789b3802c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7769" - ], - "x-ms-correlation-request-id": [ - "1a68bc3b-ceac-4d47-83ac-2512906cd308" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221132Z:1a68bc3b-ceac-4d47-83ac-2512906cd308" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25ddabb8-abf1-4985-bbec-4a5cd5bce8b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7768" - ], - "x-ms-correlation-request-id": [ - "e71985b5-21f4-456e-8b75-5da09ffeaf2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221132Z:e71985b5-21f4-456e-8b75-5da09ffeaf2e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ac73684-2ee7-4f59-a4ef-baf11650d183" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7767" - ], - "x-ms-correlation-request-id": [ - "39237606-d746-475a-a6f7-afd308ef9de2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221132Z:39237606-d746-475a-a6f7-afd308ef9de2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a4a9bf3-2ffd-4059-b6a3-e65be3890177" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7766" - ], - "x-ms-correlation-request-id": [ - "485cb672-decc-4004-96c2-ab13e2bf8ec3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221132Z:485cb672-decc-4004-96c2-ab13e2bf8ec3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c8bdcbc-2b74-45db-b84f-d33a4896eb3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7765" - ], - "x-ms-correlation-request-id": [ - "e1d0c078-a2c6-4041-84e3-ee44825b5c09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221132Z:e1d0c078-a2c6-4041-84e3-ee44825b5c09" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc776a83-3568-45cc-8552-2e17d6fb8966" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7764" - ], - "x-ms-correlation-request-id": [ - "acaf0952-f0bb-40a0-912c-1a99347ee487" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221132Z:acaf0952-f0bb-40a0-912c-1a99347ee487" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc579258-a3a6-43cf-aed5-907dc2b025c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7763" - ], - "x-ms-correlation-request-id": [ - "746a1d82-ed4e-4107-b2f9-74a64b3eeb4f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221132Z:746a1d82-ed4e-4107-b2f9-74a64b3eeb4f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f1aa8ee-505a-4926-8f5c-ed8280611ef8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7762" - ], - "x-ms-correlation-request-id": [ - "2bc17075-e26d-474a-b790-84d53d6c15e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221133Z:2bc17075-e26d-474a-b790-84d53d6c15e1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8e5be14-6588-4f50-99e3-9326f44185aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7761" - ], - "x-ms-correlation-request-id": [ - "f9a20274-abc1-4429-bac5-68e356d2a055" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221133Z:f9a20274-abc1-4429-bac5-68e356d2a055" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d22cdff5-d8ab-4f5d-9bc8-0015c673c663" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7760" - ], - "x-ms-correlation-request-id": [ - "3722003b-4161-49c4-9967-9f8a4f1f2056" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221133Z:3722003b-4161-49c4-9967-9f8a4f1f2056" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "319142ba-2c8b-4680-bc08-08e7998c3afb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7759" - ], - "x-ms-correlation-request-id": [ - "5d7ed208-e5b5-4de8-b555-ceb4d279bb41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221133Z:5d7ed208-e5b5-4de8-b555-ceb4d279bb41" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "894571b0-acfe-4c5e-8f7c-834e47a1baee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7758" - ], - "x-ms-correlation-request-id": [ - "259fd124-6f38-447c-96f5-5beb4eea7492" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221133Z:259fd124-6f38-447c-96f5-5beb4eea7492" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "babd4d3e-a054-4392-af70-dd510378eb93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7757" - ], - "x-ms-correlation-request-id": [ - "9292f642-29b1-46de-9be8-903f6f84a38f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221134Z:9292f642-29b1-46de-9be8-903f6f84a38f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "777cf44f-b31a-4453-9c0f-1307050c29c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7756" - ], - "x-ms-correlation-request-id": [ - "c9d0a48a-1977-4775-be8a-a364ef8a53f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221134Z:c9d0a48a-1977-4775-be8a-a364ef8a53f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e6e82c2-4915-44ad-bb7b-383d5bf22485" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7755" - ], - "x-ms-correlation-request-id": [ - "785467df-24a9-4fcc-8179-817b4e483dc9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221134Z:785467df-24a9-4fcc-8179-817b4e483dc9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2116935d-f5fa-4b4c-9582-619fa6a5fda1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7754" - ], - "x-ms-correlation-request-id": [ - "34daaa95-3b27-49de-b009-6120ce9b7a7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221134Z:34daaa95-3b27-49de-b009-6120ce9b7a7e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85f4686e-effd-4d9e-9d5c-73d76b2e447f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7753" - ], - "x-ms-correlation-request-id": [ - "d2fcb674-cdcc-42f7-bc4d-6d1149172491" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221134Z:d2fcb674-cdcc-42f7-bc4d-6d1149172491" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ffa48fe4-041f-4b11-bd9d-2b9ad28a5b9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7752" - ], - "x-ms-correlation-request-id": [ - "074aa9d3-e61e-482b-bcae-50dc8708aed5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221134Z:074aa9d3-e61e-482b-bcae-50dc8708aed5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5d303e1-377c-4e34-8c81-99f2f9ba307c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7751" - ], - "x-ms-correlation-request-id": [ - "1008bb26-7715-41bf-9642-1d17ba67bd2b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221135Z:1008bb26-7715-41bf-9642-1d17ba67bd2b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86cf572d-0412-412a-8f65-10ed65d56537" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7750" - ], - "x-ms-correlation-request-id": [ - "d8550ba6-f574-491e-992d-d273efa06d16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221135Z:d8550ba6-f574-491e-992d-d273efa06d16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "228815b4-76fc-40e8-88fe-4791048cfdcd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7749" - ], - "x-ms-correlation-request-id": [ - "21a53461-5d24-4284-a98c-d35d9630d818" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221135Z:21a53461-5d24-4284-a98c-d35d9630d818" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c284ba40-a4d6-4d3e-ab8b-3c716932c5f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7748" - ], - "x-ms-correlation-request-id": [ - "4f9ab0c1-ebf4-4c07-85ef-23870f68a735" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221135Z:4f9ab0c1-ebf4-4c07-85ef-23870f68a735" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6041b3f-2a64-49fd-83b7-7a9d9e6130fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7747" - ], - "x-ms-correlation-request-id": [ - "2c2eed2f-67f5-4b99-a022-19491920e37a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221135Z:2c2eed2f-67f5-4b99-a022-19491920e37a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88b0a346-bddb-49c5-893a-fae5c87553c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7746" - ], - "x-ms-correlation-request-id": [ - "c4e423b5-3469-41c6-b7b9-a7cd1807fd34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221136Z:c4e423b5-3469-41c6-b7b9-a7cd1807fd34" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "721b1cb1-87ac-43a2-9653-cacae3b09eda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7745" - ], - "x-ms-correlation-request-id": [ - "664ae064-ca50-4898-b37d-a04210891bb6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221136Z:664ae064-ca50-4898-b37d-a04210891bb6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5585fd91-23ab-45d5-9ffe-6194190110eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7744" - ], - "x-ms-correlation-request-id": [ - "68f81b34-76df-4e19-94a8-a341bfe378f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221136Z:68f81b34-76df-4e19-94a8-a341bfe378f3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ecdbb51d-e87a-4c31-824d-6f1c3db0c179" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7743" - ], - "x-ms-correlation-request-id": [ - "2809548a-99cd-4438-bd30-a3951be215cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221136Z:2809548a-99cd-4438-bd30-a3951be215cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd314f05-358c-41fc-b055-99cdcf6b228f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7742" - ], - "x-ms-correlation-request-id": [ - "592f0437-d388-404f-911f-b25809d2ab46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221136Z:592f0437-d388-404f-911f-b25809d2ab46" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61c9d52f-36cc-4e19-afee-7dc014b75635" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7741" - ], - "x-ms-correlation-request-id": [ - "a60733b7-9ed7-4925-a6e4-a951b929992f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221136Z:a60733b7-9ed7-4925-a6e4-a951b929992f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "062751f0-1adc-4f77-9215-82aa3290b6de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7740" - ], - "x-ms-correlation-request-id": [ - "a355c1ed-f97b-491f-bbfe-03675d2beeb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221137Z:a355c1ed-f97b-491f-bbfe-03675d2beeb8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97527c7f-4cd1-49fa-97a6-5a716009838c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7739" - ], - "x-ms-correlation-request-id": [ - "bac4b2c1-0b01-4ac9-8857-5896d10fbfb3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221137Z:bac4b2c1-0b01-4ac9-8857-5896d10fbfb3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "50ddfba3-829f-49bb-a52e-0a75d4478345" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7738" - ], - "x-ms-correlation-request-id": [ - "bd587c18-2973-4027-8900-bb135df5a9d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221137Z:bd587c18-2973-4027-8900-bb135df5a9d7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bbed0c00-1d14-4ac8-ba03-76d06eb8f9a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7737" - ], - "x-ms-correlation-request-id": [ - "b8676519-6fa4-4b17-9817-85600e2e2d96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221137Z:b8676519-6fa4-4b17-9817-85600e2e2d96" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25b96ec5-b107-4609-b446-f3e7d076c121" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7736" - ], - "x-ms-correlation-request-id": [ - "7b64f217-01e2-4c0a-aaca-7e8c3ad0adde" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221137Z:7b64f217-01e2-4c0a-aaca-7e8c3ad0adde" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff4e5157-8c54-4f67-8281-99235f3a401d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7735" - ], - "x-ms-correlation-request-id": [ - "a38c66aa-80d2-4208-bc60-26aaeb9c39b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221137Z:a38c66aa-80d2-4208-bc60-26aaeb9c39b9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "893de998-4ac2-4ceb-b594-74d6b318dfb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7734" - ], - "x-ms-correlation-request-id": [ - "c8e2bc75-def0-4c95-b489-f71394fef678" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221138Z:c8e2bc75-def0-4c95-b489-f71394fef678" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b44b5959-8607-4eed-9cf8-d586a0cac862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7733" - ], - "x-ms-correlation-request-id": [ - "b6e93744-b86e-4c11-a2bc-a05960d50d56" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221138Z:b6e93744-b86e-4c11-a2bc-a05960d50d56" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81228bf4-c7d8-4c0a-9465-2b235fe4f94c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7732" - ], - "x-ms-correlation-request-id": [ - "dc46043e-a7d8-4a54-a638-17d59b34395c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221138Z:dc46043e-a7d8-4a54-a638-17d59b34395c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0006b223-7988-4c8f-bade-f24526d5aa9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7731" - ], - "x-ms-correlation-request-id": [ - "4e2fa671-0bec-4a9c-bb54-23dca751c206" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221138Z:4e2fa671-0bec-4a9c-bb54-23dca751c206" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00f0c411-74dc-4f17-91a3-a214befb7136" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7730" - ], - "x-ms-correlation-request-id": [ - "44a7de21-7d41-43e3-adb5-2597b911d37f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221138Z:44a7de21-7d41-43e3-adb5-2597b911d37f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "50e33338-caca-4e05-a1c4-9c1c8a6be75c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7729" - ], - "x-ms-correlation-request-id": [ - "f9cac05d-f175-4a20-8b33-7035145aeb73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221138Z:f9cac05d-f175-4a20-8b33-7035145aeb73" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2520de5-e3d7-4a5f-8ab8-0a43cee70eb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7728" - ], - "x-ms-correlation-request-id": [ - "fb0dd849-2b69-47e3-87fd-643d6358344e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221138Z:fb0dd849-2b69-47e3-87fd-643d6358344e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5628ce38-17a6-4d3f-8f84-dc9b9789be0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7727" - ], - "x-ms-correlation-request-id": [ - "31f1a973-5e02-46a1-8b9f-b3266d24e418" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221139Z:31f1a973-5e02-46a1-8b9f-b3266d24e418" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0bdc893-4428-4ae8-94a6-adc1c7e0c7ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7726" - ], - "x-ms-correlation-request-id": [ - "1bbb50c6-2613-45ce-b7c5-800ef45d23d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221139Z:1bbb50c6-2613-45ce-b7c5-800ef45d23d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8874efc3-607a-408e-9b2a-6f90641f84b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7725" - ], - "x-ms-correlation-request-id": [ - "314d4711-b744-4a7b-9ce3-8b6489c6ee9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221139Z:314d4711-b744-4a7b-9ce3-8b6489c6ee9d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df97728d-5ea5-402b-8276-4d86600beb11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7724" - ], - "x-ms-correlation-request-id": [ - "263b992a-2d87-4fee-b35e-8bc359a227e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221139Z:263b992a-2d87-4fee-b35e-8bc359a227e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62cca27d-d5d0-4afa-8a54-fe904af3ec4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7723" - ], - "x-ms-correlation-request-id": [ - "0864264d-85e4-49ca-b514-9c6d8421ddbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221139Z:0864264d-85e4-49ca-b514-9c6d8421ddbf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37fa9089-aa5d-4cb7-babe-7ec2be4caa95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7722" - ], - "x-ms-correlation-request-id": [ - "6e114718-68f0-4489-a1a0-b882c0001b30" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221139Z:6e114718-68f0-4489-a1a0-b882c0001b30" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68438173-ab93-4def-af96-c702074c5c26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7721" - ], - "x-ms-correlation-request-id": [ - "15a27386-1c9b-46e8-81d0-c743927c2aba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221140Z:15a27386-1c9b-46e8-81d0-c743927c2aba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c8e8865-5801-475f-9a54-60589531a2ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7720" - ], - "x-ms-correlation-request-id": [ - "42b6e37c-01da-45da-a801-efeeee1ad489" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221140Z:42b6e37c-01da-45da-a801-efeeee1ad489" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1bc113fb-91c3-4616-b617-d0d9f078438a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7719" - ], - "x-ms-correlation-request-id": [ - "d62080e0-beac-4dfd-94c0-a601c18605f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221140Z:d62080e0-beac-4dfd-94c0-a601c18605f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f45a7f37-fbcc-4ff1-8420-46b797662d75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7718" - ], - "x-ms-correlation-request-id": [ - "3fa80a5c-ca5d-4b89-8b50-f5f8564ef4b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221140Z:3fa80a5c-ca5d-4b89-8b50-f5f8564ef4b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da603251-7a70-4769-a70f-15ecfe59eed6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7717" - ], - "x-ms-correlation-request-id": [ - "4c9b91e4-1946-45f5-ad22-70ec608046d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221141Z:4c9b91e4-1946-45f5-ad22-70ec608046d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "647a43c2-eb5e-40c7-b2b9-3798c89ad94b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7716" - ], - "x-ms-correlation-request-id": [ - "78483189-4e9c-4f6e-8752-e953533b8733" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221141Z:78483189-4e9c-4f6e-8752-e953533b8733" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "184bc145-14c6-4959-8f02-2a3213734a28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7715" - ], - "x-ms-correlation-request-id": [ - "871aa3fd-5fd7-4a38-bbe8-90f17d3c3530" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221141Z:871aa3fd-5fd7-4a38-bbe8-90f17d3c3530" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c21451d-317d-46fe-8364-c4ba39aa6d68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7714" - ], - "x-ms-correlation-request-id": [ - "24d545ab-2fa5-4cd4-96b6-51a96220fe70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221141Z:24d545ab-2fa5-4cd4-96b6-51a96220fe70" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f2c85a7-7a05-49de-9d00-74ef42ee3a69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7713" - ], - "x-ms-correlation-request-id": [ - "8f1813f2-38ba-4f30-aa85-089c29750db5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221141Z:8f1813f2-38ba-4f30-aa85-089c29750db5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "27ac1071-ca01-410d-a524-641c9bc6b1a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7712" - ], - "x-ms-correlation-request-id": [ - "cdf698f4-f440-4746-a40b-cc6d9975162d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221141Z:cdf698f4-f440-4746-a40b-cc6d9975162d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11a8c673-b2df-4f57-ae7e-7019b170993d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7711" - ], - "x-ms-correlation-request-id": [ - "36c73b50-fa83-48d1-aab2-e5249b43c2a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221141Z:36c73b50-fa83-48d1-aab2-e5249b43c2a6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a9078ca1-ab14-40dc-a828-bb9ea04d1476" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7710" - ], - "x-ms-correlation-request-id": [ - "30e8c603-b9d9-4780-98b9-2d7faf02a261" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221142Z:30e8c603-b9d9-4780-98b9-2d7faf02a261" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6feb2e84-27a8-4cbb-a68f-3f97d2349afd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7709" - ], - "x-ms-correlation-request-id": [ - "0fce1f3f-9ed6-44d2-809f-ee976bce8535" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221142Z:0fce1f3f-9ed6-44d2-809f-ee976bce8535" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "656119df-aa88-4404-be68-1443fefec8d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7708" - ], - "x-ms-correlation-request-id": [ - "8559c12f-2a75-44d1-8dbc-89bc84b6088c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221142Z:8559c12f-2a75-44d1-8dbc-89bc84b6088c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c45c5be9-27d9-4908-9beb-ff0b3f220358" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7707" - ], - "x-ms-correlation-request-id": [ - "a31fbb16-532e-41be-a250-8ff2eca6a526" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221142Z:a31fbb16-532e-41be-a250-8ff2eca6a526" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2e6732e-7813-4c7e-8a36-d850041535aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7706" - ], - "x-ms-correlation-request-id": [ - "dd2e6e21-53cf-40cd-bb21-a499f71b3269" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221142Z:dd2e6e21-53cf-40cd-bb21-a499f71b3269" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "173b1f1f-8e86-4346-a6c4-e9864446569a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7705" - ], - "x-ms-correlation-request-id": [ - "90f0dae8-3727-4a2c-9f2d-b3712f5c1e6b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221142Z:90f0dae8-3727-4a2c-9f2d-b3712f5c1e6b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7eb8f5f9-850b-468a-bc07-d25440437e0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7704" - ], - "x-ms-correlation-request-id": [ - "d4f40a2d-d002-4037-a1a7-0cc8762cad96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221143Z:d4f40a2d-d002-4037-a1a7-0cc8762cad96" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "921de8da-bec6-4a7d-8fc3-26b87916b444" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7703" - ], - "x-ms-correlation-request-id": [ - "89d63e49-7c07-4cc1-b723-4bdb31dfef52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221143Z:89d63e49-7c07-4cc1-b723-4bdb31dfef52" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d495ead-c2fc-4eda-a972-1087782e53d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7702" - ], - "x-ms-correlation-request-id": [ - "6a77744a-e77a-45b4-9ee7-bac1797affd4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221143Z:6a77744a-e77a-45b4-9ee7-bac1797affd4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e99970c6-bfb8-47b9-b447-0d070d160772" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7701" - ], - "x-ms-correlation-request-id": [ - "df859917-b366-4955-b864-8941c13f05b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221143Z:df859917-b366-4955-b864-8941c13f05b0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a84b94e2-f403-46ef-9589-8a4d41edcb6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7700" - ], - "x-ms-correlation-request-id": [ - "01cf1a21-5c1e-439c-8147-fbf8059adb76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221143Z:01cf1a21-5c1e-439c-8147-fbf8059adb76" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0813727-4c18-4d00-a0aa-c3e15815fe05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7699" - ], - "x-ms-correlation-request-id": [ - "6aca2db7-0bee-48a4-9de9-978c4ca81e4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221144Z:6aca2db7-0bee-48a4-9de9-978c4ca81e4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71fe5b8d-4f91-43c9-86d3-38445b74e7fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7698" - ], - "x-ms-correlation-request-id": [ - "b5524fde-31bb-4246-9d69-b15242967b74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221144Z:b5524fde-31bb-4246-9d69-b15242967b74" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf1e06ef-7642-4a96-97c9-81fa5535df50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7697" - ], - "x-ms-correlation-request-id": [ - "d2c6d22a-f161-4b21-9a3b-668cdc6495e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221144Z:d2c6d22a-f161-4b21-9a3b-668cdc6495e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73536ac7-99cf-4533-8b89-e18eec96634e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7696" - ], - "x-ms-correlation-request-id": [ - "3d556cb5-98ac-44f9-acd9-4931611f5cc8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221144Z:3d556cb5-98ac-44f9-acd9-4931611f5cc8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3e6c5a8-60cd-45bf-b1b3-d573a5d5cbf2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7695" - ], - "x-ms-correlation-request-id": [ - "f86faf88-4fac-456b-a587-966e1827621d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221144Z:f86faf88-4fac-456b-a587-966e1827621d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4ddc2e1-832d-4bc4-8cfb-5abc668232af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7694" - ], - "x-ms-correlation-request-id": [ - "c92ec6a8-dd7a-43e4-8798-e7931cbc25b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221144Z:c92ec6a8-dd7a-43e4-8798-e7931cbc25b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "acad964f-5406-4405-8a7d-3652bcb65325" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7693" - ], - "x-ms-correlation-request-id": [ - "29703e26-67fb-4083-a571-037bbc4551d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221145Z:29703e26-67fb-4083-a571-037bbc4551d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "075fdbf0-99e0-4255-8447-e73d1f458a7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7692" - ], - "x-ms-correlation-request-id": [ - "daa79cc9-a9c4-4336-9b6a-33bdd5add3f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221145Z:daa79cc9-a9c4-4336-9b6a-33bdd5add3f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca229b2e-3975-4e68-8c11-cb4f3a37d9c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7691" - ], - "x-ms-correlation-request-id": [ - "b6e4f381-09e7-4705-b2dd-1f79a3a9996a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221145Z:b6e4f381-09e7-4705-b2dd-1f79a3a9996a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c05e1a9c-80d1-4975-81e9-03b1c6f2ff55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7690" - ], - "x-ms-correlation-request-id": [ - "f0e4c181-74ed-476c-bff0-5a277990b4ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221145Z:f0e4c181-74ed-476c-bff0-5a277990b4ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1437a7c8-e317-4123-ba6e-f7ed0ba91ead" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7689" - ], - "x-ms-correlation-request-id": [ - "7de1e8f0-50cc-4d4d-9b34-a330e7aea1d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221145Z:7de1e8f0-50cc-4d4d-9b34-a330e7aea1d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2839303f-0578-47a7-ae33-2d42d35d0b1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7688" - ], - "x-ms-correlation-request-id": [ - "7936e1de-3b79-41b7-b1bf-b76f77452931" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221145Z:7936e1de-3b79-41b7-b1bf-b76f77452931" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f271a88-58d0-4170-9e75-aad970659369" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7687" - ], - "x-ms-correlation-request-id": [ - "bc0cb388-65ff-468f-891d-dc440016ee6b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221146Z:bc0cb388-65ff-468f-891d-dc440016ee6b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "004b3a93-400f-41d9-9a18-748c6d165627" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7686" - ], - "x-ms-correlation-request-id": [ - "711d0c1c-4f17-4b5a-8932-767526eefd43" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221146Z:711d0c1c-4f17-4b5a-8932-767526eefd43" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ea73f1b-978c-4e26-b5e1-fef6d89875a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7685" - ], - "x-ms-correlation-request-id": [ - "ef0048e9-0306-43ec-a83f-029fce13d7d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221146Z:ef0048e9-0306-43ec-a83f-029fce13d7d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bce49190-c58f-49aa-8068-a688ee2e94e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7684" - ], - "x-ms-correlation-request-id": [ - "7614ff29-5687-421a-8e16-fb5ad8f4eace" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221146Z:7614ff29-5687-421a-8e16-fb5ad8f4eace" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48346f0d-6577-4d6c-81cd-fd4ab36a512a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7683" - ], - "x-ms-correlation-request-id": [ - "19ef34c8-c560-4f07-9b7c-3899aecedf16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221146Z:19ef34c8-c560-4f07-9b7c-3899aecedf16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2413d86f-8524-4677-94f2-a46fb0d54c95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7682" - ], - "x-ms-correlation-request-id": [ - "979d71f0-4613-4abc-aaa8-591ba577c079" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221147Z:979d71f0-4613-4abc-aaa8-591ba577c079" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b9aace3-8971-44ca-9c2e-9ff95fa5781e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7681" - ], - "x-ms-correlation-request-id": [ - "2447b5f0-5eae-4d4e-a33a-077f667a5219" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221147Z:2447b5f0-5eae-4d4e-a33a-077f667a5219" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b82b2749-c815-43af-9a56-8ace513ada41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7680" - ], - "x-ms-correlation-request-id": [ - "0d80ea33-a304-4053-be9f-e0c918a2c149" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221147Z:0d80ea33-a304-4053-be9f-e0c918a2c149" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6be51880-02bb-45ee-9397-a7598f786c67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7679" - ], - "x-ms-correlation-request-id": [ - "189c6f84-3d12-4301-99d6-de2d51c8c013" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221147Z:189c6f84-3d12-4301-99d6-de2d51c8c013" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40ffa40f-7eca-42cf-bb61-1c53286e5732" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7678" - ], - "x-ms-correlation-request-id": [ - "245fe338-089b-4c9b-a0e7-293d32c7447a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221147Z:245fe338-089b-4c9b-a0e7-293d32c7447a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "896a4f00-289a-4cb1-ac31-a01b8244af49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7677" - ], - "x-ms-correlation-request-id": [ - "0afa1365-9fa4-4766-ab5d-51d7e6cc4f93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221147Z:0afa1365-9fa4-4766-ab5d-51d7e6cc4f93" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87b0bd6f-9738-4a47-b4ae-1b9a783d1478" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7676" - ], - "x-ms-correlation-request-id": [ - "a932614c-3c97-4ff4-b165-87e8c041c5cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221147Z:a932614c-3c97-4ff4-b165-87e8c041c5cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0a5e748-645b-4b33-a9d6-4b0283c9fac7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7675" - ], - "x-ms-correlation-request-id": [ - "e06645c4-dc39-46ad-bd72-76746fcf215e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221148Z:e06645c4-dc39-46ad-bd72-76746fcf215e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d26d818-9b49-418f-8c43-e9cf680cd567" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7674" - ], - "x-ms-correlation-request-id": [ - "a4227163-c8c0-444d-bf43-af95f8c2c078" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221148Z:a4227163-c8c0-444d-bf43-af95f8c2c078" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b163bcd-a340-4be3-8bd8-0c09fd0fb4b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7673" - ], - "x-ms-correlation-request-id": [ - "a13d2fb5-2329-41a0-85d2-eba916c8baf2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221148Z:a13d2fb5-2329-41a0-85d2-eba916c8baf2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7687188-2ea1-4dda-a937-ba4fce556b8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7672" - ], - "x-ms-correlation-request-id": [ - "b092a770-a076-4379-86cc-362d80cf68b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221148Z:b092a770-a076-4379-86cc-362d80cf68b9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59d68959-d034-4331-8316-b2fa123fff59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7671" - ], - "x-ms-correlation-request-id": [ - "9a506f29-77b8-4cd7-b0c5-98cb8cfc3ae0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221148Z:9a506f29-77b8-4cd7-b0c5-98cb8cfc3ae0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1b4e5b5-c4f7-48c4-ace2-fecc41be6f45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7670" - ], - "x-ms-correlation-request-id": [ - "53ed80cc-4cbd-4564-8fd0-49c63f21854c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221148Z:53ed80cc-4cbd-4564-8fd0-49c63f21854c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a25357d7-8904-44e2-923b-f87ba49765fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7669" - ], - "x-ms-correlation-request-id": [ - "3fa32bf9-d234-4a27-ab42-12c27eacdbf8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221148Z:3fa32bf9-d234-4a27-ab42-12c27eacdbf8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f557e156-5b74-4a34-9c72-5cf57b994cc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7668" - ], - "x-ms-correlation-request-id": [ - "269d0455-0803-41f1-bd9d-42e265fa2e27" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221149Z:269d0455-0803-41f1-bd9d-42e265fa2e27" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3fc6a711-7bb9-4872-ad91-479f3b475914" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7667" - ], - "x-ms-correlation-request-id": [ - "d7c80f56-92d7-44f6-8f4b-a1169503ff1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221149Z:d7c80f56-92d7-44f6-8f4b-a1169503ff1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aadd8cd5-d3c8-4cd9-84ad-acba2f61664b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7666" - ], - "x-ms-correlation-request-id": [ - "75382643-0761-47a4-b620-68f868fe6c31" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221149Z:75382643-0761-47a4-b620-68f868fe6c31" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b615595-111e-41c5-bc46-ee47dc1c192b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7665" - ], - "x-ms-correlation-request-id": [ - "b5e176a3-89ca-48ed-aedf-c154374c0942" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221149Z:b5e176a3-89ca-48ed-aedf-c154374c0942" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53e733b1-341c-4129-93d5-16c0421033bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7664" - ], - "x-ms-correlation-request-id": [ - "a0eed3ab-eaa0-4d68-bc77-2f9e18625111" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221149Z:a0eed3ab-eaa0-4d68-bc77-2f9e18625111" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8dedb647-944b-49ca-bd8b-a641746fd4ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7663" - ], - "x-ms-correlation-request-id": [ - "49769ecd-044b-4037-8430-5b0df81a0163" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221149Z:49769ecd-044b-4037-8430-5b0df81a0163" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a5870ea-2c15-4ab3-af77-3d9f4f14ba8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7662" - ], - "x-ms-correlation-request-id": [ - "98ae9f39-988b-4c37-b968-a0fd268fe3d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221150Z:98ae9f39-988b-4c37-b968-a0fd268fe3d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87aa6cf0-af39-4a08-9f80-91ddfb3e97c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7661" - ], - "x-ms-correlation-request-id": [ - "efda2dd0-8c0a-4943-a7cb-346bd167d142" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221150Z:efda2dd0-8c0a-4943-a7cb-346bd167d142" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1d0109d-24a6-42a3-adb9-9f6a689e5798" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7660" - ], - "x-ms-correlation-request-id": [ - "01eff34a-9e73-43dc-ba31-9cafecf3fdcd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221150Z:01eff34a-9e73-43dc-ba31-9cafecf3fdcd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "375f7286-0e16-4a8f-a0c9-5a81052e6354" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7659" - ], - "x-ms-correlation-request-id": [ - "a7c1e6e5-c8c2-47f4-84c4-26fbf4486fb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221150Z:a7c1e6e5-c8c2-47f4-84c4-26fbf4486fb8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c451dfeb-fb38-4568-9fce-434b3ae33abc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7658" - ], - "x-ms-correlation-request-id": [ - "19234dcd-25fe-421d-a23b-07df5a3bab81" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221150Z:19234dcd-25fe-421d-a23b-07df5a3bab81" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "272fe823-f468-4678-b704-d810e3755137" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7657" - ], - "x-ms-correlation-request-id": [ - "f6ed8f4c-5b3b-44a5-95de-c1e5e42cbb6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221150Z:f6ed8f4c-5b3b-44a5-95de-c1e5e42cbb6f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b0cc282-06a4-4802-a6d4-60275ffa395e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7656" - ], - "x-ms-correlation-request-id": [ - "3bfffc45-bc0e-47b0-914b-e742868224eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221150Z:3bfffc45-bc0e-47b0-914b-e742868224eb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e12ba18-dafe-41f3-995d-0c22118bba89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7655" - ], - "x-ms-correlation-request-id": [ - "1ca25143-656a-4a93-ad17-8efc5592f9cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221151Z:1ca25143-656a-4a93-ad17-8efc5592f9cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a19970d-8939-466a-bae4-69f8aa231f2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7654" - ], - "x-ms-correlation-request-id": [ - "60ab784c-aaea-4223-9d3c-1369163344ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221151Z:60ab784c-aaea-4223-9d3c-1369163344ec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1155faf-b076-4d25-81db-d02dad6dc1f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7653" - ], - "x-ms-correlation-request-id": [ - "5fc2b9bc-72aa-44de-bfe6-c94b6798ad65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221151Z:5fc2b9bc-72aa-44de-bfe6-c94b6798ad65" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c7b7c23-ae63-4b98-bb9e-cfea8b329023" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7652" - ], - "x-ms-correlation-request-id": [ - "d4a239cf-8424-4868-a5a0-03ff8165849c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221151Z:d4a239cf-8424-4868-a5a0-03ff8165849c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8b2941b-f82c-4f6a-856b-9e0715296534" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7651" - ], - "x-ms-correlation-request-id": [ - "37ea1f7f-caee-4589-94dc-041c6f9e0935" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221151Z:37ea1f7f-caee-4589-94dc-041c6f9e0935" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6afa3a6-eeb7-4c25-ab1e-28b21ec80931" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7650" - ], - "x-ms-correlation-request-id": [ - "33fca314-2503-4339-8023-d4775905d209" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221152Z:33fca314-2503-4339-8023-d4775905d209" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "760c517f-24b8-4d5c-a686-d003ae98abf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7649" - ], - "x-ms-correlation-request-id": [ - "6a567d30-8dd5-42e8-ac91-3d4fbd42b612" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221152Z:6a567d30-8dd5-42e8-ac91-3d4fbd42b612" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf2f5245-830c-4fff-9d74-cdd91197ffd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7648" - ], - "x-ms-correlation-request-id": [ - "e70cf9af-7a5a-4db2-b8a2-549b93f4e422" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221152Z:e70cf9af-7a5a-4db2-b8a2-549b93f4e422" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c3537e4-2a66-4831-85d7-f32fc2a11cab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7647" - ], - "x-ms-correlation-request-id": [ - "b3fdaaf5-cf1b-44c2-a907-1938c923f6a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221152Z:b3fdaaf5-cf1b-44c2-a907-1938c923f6a4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70558d20-f912-4998-bab3-78b2e7850564" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7646" - ], - "x-ms-correlation-request-id": [ - "5116e23c-ba61-44e6-b3ee-08066df62182" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221152Z:5116e23c-ba61-44e6-b3ee-08066df62182" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f47492f-959d-4ffc-801c-8c7ea4ac6819" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7645" - ], - "x-ms-correlation-request-id": [ - "fac3621e-4b15-497e-93bc-75ffd431c278" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221152Z:fac3621e-4b15-497e-93bc-75ffd431c278" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "575c5b0d-83b6-412f-8e8e-82c5540a95c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7644" - ], - "x-ms-correlation-request-id": [ - "1dc3bcbe-6d4a-4366-abcc-a55308011ff0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221152Z:1dc3bcbe-6d4a-4366-abcc-a55308011ff0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eac910f9-0c38-4a0a-9ede-64155c743a16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7643" - ], - "x-ms-correlation-request-id": [ - "a39d694f-d3c5-4e2e-a2cf-771c06ba7ae1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221153Z:a39d694f-d3c5-4e2e-a2cf-771c06ba7ae1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7c65574-20ae-4ddd-9039-c28758026a6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7642" - ], - "x-ms-correlation-request-id": [ - "d15c507a-7375-451c-81b8-0a7e135f40af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221153Z:d15c507a-7375-451c-81b8-0a7e135f40af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "194ed1b9-5b65-4083-9632-f8f97c9868d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7641" - ], - "x-ms-correlation-request-id": [ - "38d7ccc4-0d02-4ab3-ab41-48210cfc8b39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221153Z:38d7ccc4-0d02-4ab3-ab41-48210cfc8b39" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b9f84eaf-1654-439f-9286-9cdd48c811f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7640" - ], - "x-ms-correlation-request-id": [ - "fb44c737-73eb-4370-ad39-2a1521b39d28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221153Z:fb44c737-73eb-4370-ad39-2a1521b39d28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b1ea588-94e0-421d-9b87-2c07161ac930" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7639" - ], - "x-ms-correlation-request-id": [ - "c2cac8ad-c083-4156-a3ce-7701cf8cc8dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221153Z:c2cac8ad-c083-4156-a3ce-7701cf8cc8dd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b965bf6b-4e79-420d-8be6-b74dcdcc35c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7638" - ], - "x-ms-correlation-request-id": [ - "5430b335-1b0c-478c-adb6-a14e1e2308da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221153Z:5430b335-1b0c-478c-adb6-a14e1e2308da" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cee74ffa-5f01-498a-bbb5-d838c56a623a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7637" - ], - "x-ms-correlation-request-id": [ - "d039737a-4c28-40ae-bf4c-b5b7fc4a7c58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221154Z:d039737a-4c28-40ae-bf4c-b5b7fc4a7c58" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad10f7c3-8112-4cfb-b643-f2fefb549821" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7636" - ], - "x-ms-correlation-request-id": [ - "acd4b601-1104-415a-81d8-4a35611af2d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221154Z:acd4b601-1104-415a-81d8-4a35611af2d0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4be45cbf-acc1-4ce4-a215-2b3519a404cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7635" - ], - "x-ms-correlation-request-id": [ - "1730e99a-629e-4c17-8368-5446725d8309" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221154Z:1730e99a-629e-4c17-8368-5446725d8309" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a808fe2b-88d1-48d6-b2ab-351e02c83cba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7634" - ], - "x-ms-correlation-request-id": [ - "616c4808-73bf-474f-b3fd-847043d7515d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221154Z:616c4808-73bf-474f-b3fd-847043d7515d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e15c1ffa-d9a7-407c-8d18-24b77548654a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7633" - ], - "x-ms-correlation-request-id": [ - "3b7f462a-5b32-46f1-afaa-815c20351b93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221154Z:3b7f462a-5b32-46f1-afaa-815c20351b93" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c21d832b-201e-4375-abe8-24a77ada1b3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7632" - ], - "x-ms-correlation-request-id": [ - "f1043a69-08f3-417d-afea-26a50cebdb9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221155Z:f1043a69-08f3-417d-afea-26a50cebdb9f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8de7da76-9252-434b-ad3d-5e7da4513f5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7631" - ], - "x-ms-correlation-request-id": [ - "a6d5627d-db69-4d87-bc05-66a65752bd3a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221155Z:a6d5627d-db69-4d87-bc05-66a65752bd3a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aaa7cbe0-5117-472f-97ff-b1568dd9ef08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7630" - ], - "x-ms-correlation-request-id": [ - "7cc0af56-c547-4521-8cd1-0d041a9acd52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221155Z:7cc0af56-c547-4521-8cd1-0d041a9acd52" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41872aed-eedc-49e2-8f7e-305dff3ea892" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7629" - ], - "x-ms-correlation-request-id": [ - "55348aaf-e794-4262-8829-fdc6a04846b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221155Z:55348aaf-e794-4262-8829-fdc6a04846b7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99b78606-3515-4e02-bf62-ce99a63fdd64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7628" - ], - "x-ms-correlation-request-id": [ - "df4d5f01-5b57-4407-b999-a807a1812f16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221155Z:df4d5f01-5b57-4407-b999-a807a1812f16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "acce0dac-9821-4cbb-aa77-ad98a86986ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7627" - ], - "x-ms-correlation-request-id": [ - "fcf36bc2-6588-434c-8105-e37e422cd87f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221155Z:fcf36bc2-6588-434c-8105-e37e422cd87f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb8deebc-92b8-4c64-9002-3e4e7f3a72f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7626" - ], - "x-ms-correlation-request-id": [ - "872f331a-fad1-494b-aebc-015a080ed265" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221155Z:872f331a-fad1-494b-aebc-015a080ed265" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3df0b803-058a-4af5-b5ad-39bf5229752e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7625" - ], - "x-ms-correlation-request-id": [ - "b182cd97-9672-4e3e-a445-6349acd7e4ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221156Z:b182cd97-9672-4e3e-a445-6349acd7e4ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5c8bebb-f7c9-48ec-a58d-a118366cde4f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7624" - ], - "x-ms-correlation-request-id": [ - "f61b1276-3266-4a55-9787-b20d021af6ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221156Z:f61b1276-3266-4a55-9787-b20d021af6ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05995e6a-f526-4b0a-a1f3-2d4ecfa1c6eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7623" - ], - "x-ms-correlation-request-id": [ - "8f01c5f6-f69a-45e7-a235-ca1ed57f6f2b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221156Z:8f01c5f6-f69a-45e7-a235-ca1ed57f6f2b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f6a5e60-3ced-4b38-bd0f-6e2109585d88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7622" - ], - "x-ms-correlation-request-id": [ - "13c81cea-0a2c-4d7c-a222-9a0b2c308d2d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221156Z:13c81cea-0a2c-4d7c-a222-9a0b2c308d2d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85de5de2-db4e-46f6-ae8a-cec945785b2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7621" - ], - "x-ms-correlation-request-id": [ - "45b3d632-0e72-4041-897c-54a78b405c51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221156Z:45b3d632-0e72-4041-897c-54a78b405c51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "50f5124f-443d-4269-8744-0f8fbbc1327e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7620" - ], - "x-ms-correlation-request-id": [ - "327637a2-8997-4b99-a268-55ad5e314e6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221157Z:327637a2-8997-4b99-a268-55ad5e314e6d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d124b338-2540-4351-8fc6-2ae2d530f066" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7619" - ], - "x-ms-correlation-request-id": [ - "4a98d8f5-25db-4101-88b8-a0cd4b71e83d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221157Z:4a98d8f5-25db-4101-88b8-a0cd4b71e83d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b55e4939-81cf-4f4c-8626-cd036db54ce4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7618" - ], - "x-ms-correlation-request-id": [ - "51088d89-ae4f-45a2-8fc4-42a77476fd2f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221157Z:51088d89-ae4f-45a2-8fc4-42a77476fd2f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2d203ad-f964-4519-9114-2268db997a16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7617" - ], - "x-ms-correlation-request-id": [ - "373d9eb8-b49f-4312-b674-b8e94787f0af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221157Z:373d9eb8-b49f-4312-b674-b8e94787f0af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01954e63-12ae-455c-87b9-49df4a628fab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7616" - ], - "x-ms-correlation-request-id": [ - "0a4ec3b3-1fad-4f6a-b530-5a537554c4d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221157Z:0a4ec3b3-1fad-4f6a-b530-5a537554c4d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aad106f5-d13d-4873-9862-d5304215b711" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7615" - ], - "x-ms-correlation-request-id": [ - "ca878a37-5528-4c11-81d0-85a2624a35e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221157Z:ca878a37-5528-4c11-81d0-85a2624a35e0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee4bdbbf-1ea8-4e1f-b68a-32e11ff6bebb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7614" - ], - "x-ms-correlation-request-id": [ - "bf06ad24-c990-4a71-b8f4-d8caacb1df02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221157Z:bf06ad24-c990-4a71-b8f4-d8caacb1df02" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e47cc980-aae5-4745-9ae3-fa46e65656d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7613" - ], - "x-ms-correlation-request-id": [ - "a02c681b-b085-4c3e-b492-0875763c88f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221158Z:a02c681b-b085-4c3e-b492-0875763c88f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8050375-4ff3-417b-b7a7-3a80345300ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7612" - ], - "x-ms-correlation-request-id": [ - "1f973171-b026-4634-986f-77f5e842402f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221158Z:1f973171-b026-4634-986f-77f5e842402f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7fbc0e66-f86e-48d6-9eac-34f0004bdd97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7611" - ], - "x-ms-correlation-request-id": [ - "60e6659c-25b3-4bb7-8090-eea6a2b832d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221158Z:60e6659c-25b3-4bb7-8090-eea6a2b832d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e90336f-cc0c-426c-8f1c-8eedc2e82fd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7610" - ], - "x-ms-correlation-request-id": [ - "7ec2bb1f-e9b8-43ae-819a-88be8e54105b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221158Z:7ec2bb1f-e9b8-43ae-819a-88be8e54105b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9bd0366f-eb09-462d-abe2-b11fa4a1d0b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7609" - ], - "x-ms-correlation-request-id": [ - "b2bc930c-cc50-4fa3-a159-ec229a34618e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221158Z:b2bc930c-cc50-4fa3-a159-ec229a34618e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bcdd5200-2e88-47cf-9298-0b8e01a3f88c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7608" - ], - "x-ms-correlation-request-id": [ - "980db146-705b-4eab-b76d-2e7c8e506d30" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221158Z:980db146-705b-4eab-b76d-2e7c8e506d30" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5e82681-4377-4b5c-9e0a-c2ab2e9288a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7607" - ], - "x-ms-correlation-request-id": [ - "64f2d1af-a958-4bef-8467-637ae6b98ac4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221158Z:64f2d1af-a958-4bef-8467-637ae6b98ac4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1278040-fb2f-47b7-8d49-005e4d3615ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7606" - ], - "x-ms-correlation-request-id": [ - "983f3962-549e-431c-8ce6-dbf9210fa636" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221159Z:983f3962-549e-431c-8ce6-dbf9210fa636" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e11b18bf-4fb8-4899-8ee7-61baddba90e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7605" - ], - "x-ms-correlation-request-id": [ - "17714066-9876-45d0-88da-4f872242df06" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221159Z:17714066-9876-45d0-88da-4f872242df06" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a5aa6e7-0f0b-42b3-85ce-e2e3472f7aac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7604" - ], - "x-ms-correlation-request-id": [ - "fb5d3af5-590c-4531-8a32-f72be74b06a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221159Z:fb5d3af5-590c-4531-8a32-f72be74b06a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f274919e-faf8-443d-b6ef-01b9fb5dfdc8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7603" - ], - "x-ms-correlation-request-id": [ - "4c653c1c-5367-4ed6-9820-1fcf2657fdf1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221159Z:4c653c1c-5367-4ed6-9820-1fcf2657fdf1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "af75ed1a-e5d9-46bd-8468-a4e72c7fcb36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7602" - ], - "x-ms-correlation-request-id": [ - "46396cc0-e769-481b-9a7e-3c9cc8b8fb24" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221159Z:46396cc0-e769-481b-9a7e-3c9cc8b8fb24" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25111ca6-4cfa-44a7-9ec6-fbc127f3a4b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7601" - ], - "x-ms-correlation-request-id": [ - "4c59c78c-393e-4230-85dc-9c0cbfc81071" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221200Z:4c59c78c-393e-4230-85dc-9c0cbfc81071" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0505500d-5354-4591-bb11-f5631e6ddfcc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7600" - ], - "x-ms-correlation-request-id": [ - "d58aba06-4e88-4e9b-8930-b9d2c27e61ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221200Z:d58aba06-4e88-4e9b-8930-b9d2c27e61ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:11:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37c2a8b0-67fa-41c7-a2af-6ab5602fdf49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7599" - ], - "x-ms-correlation-request-id": [ - "ddc07a82-a55e-4588-b5e4-8fbefe8ba1e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221200Z:ddc07a82-a55e-4588-b5e4-8fbefe8ba1e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0e2bcd0-60f9-4cd5-9360-88eec9efcdac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7598" - ], - "x-ms-correlation-request-id": [ - "fbab591a-bd87-4996-9c91-e86c20bae226" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221200Z:fbab591a-bd87-4996-9c91-e86c20bae226" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0b45b64-508f-4c90-b70e-56d3c1c66cdf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7597" - ], - "x-ms-correlation-request-id": [ - "789649b4-be81-4233-a770-c1549afbe76a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221200Z:789649b4-be81-4233-a770-c1549afbe76a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d518fbf-bf3d-484b-9033-142156f82a15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7596" - ], - "x-ms-correlation-request-id": [ - "d089d541-3182-4914-b2b3-7dea2816f436" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221200Z:d089d541-3182-4914-b2b3-7dea2816f436" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0caf7b01-24e4-44d1-8e84-d7f5b49159e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7595" - ], - "x-ms-correlation-request-id": [ - "b6365ae5-1a50-4bb7-a336-e857fb4dbada" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221201Z:b6365ae5-1a50-4bb7-a336-e857fb4dbada" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b715eefc-7cad-44e2-b05a-b753b4321723" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7594" - ], - "x-ms-correlation-request-id": [ - "cce0f09f-ca6c-4d76-ae67-be8f1babab7f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221201Z:cce0f09f-ca6c-4d76-ae67-be8f1babab7f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1abee353-aa02-4b3d-ab6f-306b319ed75b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7593" - ], - "x-ms-correlation-request-id": [ - "4b148031-e329-42d4-8e88-0b9c8ffc9092" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221201Z:4b148031-e329-42d4-8e88-0b9c8ffc9092" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "affee49f-da5b-4b40-8609-8329e7274177" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7592" - ], - "x-ms-correlation-request-id": [ - "3d270732-ab90-4380-af0a-b29ab38402db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221201Z:3d270732-ab90-4380-af0a-b29ab38402db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8d14b47-8428-4d29-9834-d155bad2475b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7591" - ], - "x-ms-correlation-request-id": [ - "6da2eb5e-c64a-46f5-824c-7ce336269885" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221201Z:6da2eb5e-c64a-46f5-824c-7ce336269885" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e45c48c5-a982-497f-a3fe-f0d0d3403e9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7590" - ], - "x-ms-correlation-request-id": [ - "260c834f-aca3-4529-a1d5-1412780543eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221201Z:260c834f-aca3-4529-a1d5-1412780543eb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70dbc981-cde6-4662-9629-a9d3cc390e2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7589" - ], - "x-ms-correlation-request-id": [ - "37b5661a-ed02-42e2-9c2a-074189df0fee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221202Z:37b5661a-ed02-42e2-9c2a-074189df0fee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba320f9b-f991-4c20-ab20-47492fb1b9c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7588" - ], - "x-ms-correlation-request-id": [ - "9bfa7400-b65b-4a0f-8fa1-65878c1442e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221202Z:9bfa7400-b65b-4a0f-8fa1-65878c1442e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4539d09d-40f6-4cfc-99c6-871752650d1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7587" - ], - "x-ms-correlation-request-id": [ - "b0031bc4-e587-4084-98d5-5ef229394297" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221202Z:b0031bc4-e587-4084-98d5-5ef229394297" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "753f0022-06ee-4ddd-bf36-79b1b50a69e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7586" - ], - "x-ms-correlation-request-id": [ - "b6db1924-7209-465e-be9a-29ac65236a5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221202Z:b6db1924-7209-465e-be9a-29ac65236a5a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb2b7e2e-8f43-4fe7-b3cf-14f33e6793ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7585" - ], - "x-ms-correlation-request-id": [ - "99f9a66e-1a55-427a-9b3b-c62f985b3ad7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221202Z:99f9a66e-1a55-427a-9b3b-c62f985b3ad7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e09afdc-47b2-43f4-a4c4-2436ca47a1bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7584" - ], - "x-ms-correlation-request-id": [ - "5313a826-83fb-4aa9-9a63-79aab6141709" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221202Z:5313a826-83fb-4aa9-9a63-79aab6141709" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f07af0d3-c055-457c-84aa-3697756184be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7583" - ], - "x-ms-correlation-request-id": [ - "2a09d9ef-d558-48b6-b872-9fea12c407a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221203Z:2a09d9ef-d558-48b6-b872-9fea12c407a6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35183430-e026-4c78-86d2-69150c8bbb17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7582" - ], - "x-ms-correlation-request-id": [ - "3f45c8be-72ad-407b-b6d4-d2c631acf07c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221203Z:3f45c8be-72ad-407b-b6d4-d2c631acf07c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7f4b154-46e3-4dc0-84ea-e8160e78b8f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7581" - ], - "x-ms-correlation-request-id": [ - "9c6456a9-2e8a-4859-b0ee-b937dfa089d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221203Z:9c6456a9-2e8a-4859-b0ee-b937dfa089d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "317b521b-5aaa-44b6-ac16-c8408113ac5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7580" - ], - "x-ms-correlation-request-id": [ - "8b2bb64e-6e2c-4766-afa7-039c844e0374" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221203Z:8b2bb64e-6e2c-4766-afa7-039c844e0374" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b99eb5b-5749-4759-b236-d5cf79c73fac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7579" - ], - "x-ms-correlation-request-id": [ - "0bde4597-b0e8-42cb-aff5-88eb9290e56f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221203Z:0bde4597-b0e8-42cb-aff5-88eb9290e56f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90180409-f880-4952-9ef8-d326e4591e48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7578" - ], - "x-ms-correlation-request-id": [ - "d58e3eee-02fb-4901-997c-076d8b000360" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221203Z:d58e3eee-02fb-4901-997c-076d8b000360" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3fc50b3c-390d-471b-b702-8f1d441e6327" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7577" - ], - "x-ms-correlation-request-id": [ - "5639fe25-e3d9-422f-b35b-f1cab4fbcd0e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221204Z:5639fe25-e3d9-422f-b35b-f1cab4fbcd0e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c1abebe-2139-49be-ab61-bf9e57410e7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7576" - ], - "x-ms-correlation-request-id": [ - "382b4406-e98d-4540-8b4e-3ac3f5547d36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221204Z:382b4406-e98d-4540-8b4e-3ac3f5547d36" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43bf2a69-a194-4d05-b497-92e29de08289" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7575" - ], - "x-ms-correlation-request-id": [ - "7d1f2ce6-a038-4caf-b289-d747162e3f37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221204Z:7d1f2ce6-a038-4caf-b289-d747162e3f37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e26feeb4-df24-4162-b33d-8296dbc79f9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7574" - ], - "x-ms-correlation-request-id": [ - "ea00817b-1ccf-4efe-9e0c-800db8c762f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221204Z:ea00817b-1ccf-4efe-9e0c-800db8c762f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91faf276-f0e6-4865-a37e-d8c670bd1372" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7573" - ], - "x-ms-correlation-request-id": [ - "0aab9ccb-535a-41e3-a6dc-5e0ab3a7f019" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221204Z:0aab9ccb-535a-41e3-a6dc-5e0ab3a7f019" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ab21c4d-48ed-4e6a-a00f-912cb338c7b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7572" - ], - "x-ms-correlation-request-id": [ - "a2892660-b3f9-4516-9e20-33e3bfaf3b41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221205Z:a2892660-b3f9-4516-9e20-33e3bfaf3b41" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59f96800-7cdc-417f-aa60-c4793c8889be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7571" - ], - "x-ms-correlation-request-id": [ - "d9601686-4995-4fe8-b1b0-ae1bc48c1595" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221205Z:d9601686-4995-4fe8-b1b0-ae1bc48c1595" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65350b5a-864f-4eef-9931-02d3d6a97063" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7570" - ], - "x-ms-correlation-request-id": [ - "20f30884-e3db-412b-ae64-081d0210ab6a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221205Z:20f30884-e3db-412b-ae64-081d0210ab6a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b04be5b-03c1-4fdf-a2be-4bd2583ccf50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7569" - ], - "x-ms-correlation-request-id": [ - "f2588fd5-a838-4fb1-9fa8-dc21e0ca14d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221205Z:f2588fd5-a838-4fb1-9fa8-dc21e0ca14d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "885bbef0-cbcd-4b8e-b7c1-e8ac87cb6d65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7568" - ], - "x-ms-correlation-request-id": [ - "e6cbffd7-216b-4b66-962d-2640076cc256" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221205Z:e6cbffd7-216b-4b66-962d-2640076cc256" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54034a90-1bd3-489a-a392-8283793196f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7567" - ], - "x-ms-correlation-request-id": [ - "e0ad0c4c-661e-402b-8d55-64b2ed94cedc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221205Z:e0ad0c4c-661e-402b-8d55-64b2ed94cedc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6e9cded-7fbb-4734-936d-a6b85b5b2987" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7566" - ], - "x-ms-correlation-request-id": [ - "a18899ea-08c9-445d-b5a6-7459a77b8b41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221206Z:a18899ea-08c9-445d-b5a6-7459a77b8b41" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd4ac14a-7394-4098-9c66-2e9e0d36a122" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7565" - ], - "x-ms-correlation-request-id": [ - "2cd62fe1-df4c-4e89-8af5-697f29e640ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221206Z:2cd62fe1-df4c-4e89-8af5-697f29e640ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f37371a-9169-4be2-85a5-1cddb5a39d65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7564" - ], - "x-ms-correlation-request-id": [ - "942c7262-e878-4ea5-a680-4dbb2b02a431" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221206Z:942c7262-e878-4ea5-a680-4dbb2b02a431" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e09043ea-cf00-4368-ac26-926bf2ccf698" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7563" - ], - "x-ms-correlation-request-id": [ - "05c830f8-af21-440c-b422-6846bb43cd0f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221206Z:05c830f8-af21-440c-b422-6846bb43cd0f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31163457-3afa-450d-979d-ea543ee8b7e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7562" - ], - "x-ms-correlation-request-id": [ - "42b97779-2c12-4647-b349-127e895cfdd5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221206Z:42b97779-2c12-4647-b349-127e895cfdd5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cee8c5ab-73d6-4b85-932c-4b56ecbaf1b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7561" - ], - "x-ms-correlation-request-id": [ - "314c7c8d-c3e4-4651-b242-aacfa20da365" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221206Z:314c7c8d-c3e4-4651-b242-aacfa20da365" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ac9d961-c692-4c73-83b0-f864f50b46ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7560" - ], - "x-ms-correlation-request-id": [ - "caf255fc-1ef4-4523-a9e1-0f6642d3064e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221207Z:caf255fc-1ef4-4523-a9e1-0f6642d3064e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed2740e8-88a9-43d2-adf5-bbe4e8c3202a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7559" - ], - "x-ms-correlation-request-id": [ - "6603a0eb-364f-4827-8ee5-f1e5987b9e19" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221207Z:6603a0eb-364f-4827-8ee5-f1e5987b9e19" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c74d143-3281-4228-b6d2-6c2ad2041872" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7558" - ], - "x-ms-correlation-request-id": [ - "ac18e3cb-6a20-4674-a7d9-969c203fcd80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221207Z:ac18e3cb-6a20-4674-a7d9-969c203fcd80" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d437b27-f3c0-43d6-ab81-4208f5ebc645" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7557" - ], - "x-ms-correlation-request-id": [ - "be8afe6d-fcae-4e70-85c5-526f767affa2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221207Z:be8afe6d-fcae-4e70-85c5-526f767affa2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1b3b4e4-8c2d-410e-83d8-cd9fd46ccc9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7556" - ], - "x-ms-correlation-request-id": [ - "7a8046db-9709-4baa-9e6d-d70b7354c48e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221207Z:7a8046db-9709-4baa-9e6d-d70b7354c48e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cbc001a7-a734-4fb6-a17e-8358880488cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7555" - ], - "x-ms-correlation-request-id": [ - "0a49202d-923c-48c6-ad98-e5a485eac156" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221207Z:0a49202d-923c-48c6-ad98-e5a485eac156" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aae8cf37-d78b-4fc9-977a-63f0dc9d8eec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7554" - ], - "x-ms-correlation-request-id": [ - "2c3c258b-a5d5-4a39-bcc5-d2840b56a3be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221208Z:2c3c258b-a5d5-4a39-bcc5-d2840b56a3be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2568cdd0-a11d-40eb-9283-f80c835568ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7553" - ], - "x-ms-correlation-request-id": [ - "bbf505c0-1476-4f2a-8299-b4f46e983621" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221208Z:bbf505c0-1476-4f2a-8299-b4f46e983621" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7e38e1e-8373-4d12-ac61-e42ee5fc7b5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7552" - ], - "x-ms-correlation-request-id": [ - "2df51ac9-6d4a-45d5-b181-0a90080a1026" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221208Z:2df51ac9-6d4a-45d5-b181-0a90080a1026" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b6c4771-1dbd-41f1-8853-f905e0a59ce6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7551" - ], - "x-ms-correlation-request-id": [ - "cd7cfd50-91eb-4e9a-b414-fd6067dd5808" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221208Z:cd7cfd50-91eb-4e9a-b414-fd6067dd5808" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53e50adf-d416-4933-9326-07cab950f3a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7550" - ], - "x-ms-correlation-request-id": [ - "3e548b77-72c3-41cd-820c-6b09c9b5214f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221208Z:3e548b77-72c3-41cd-820c-6b09c9b5214f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d443969a-1bf8-4d6b-bb0e-5360f0bd955a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7549" - ], - "x-ms-correlation-request-id": [ - "c8e8495f-4021-4bc1-af75-907ea1af9636" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221208Z:c8e8495f-4021-4bc1-af75-907ea1af9636" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20a4794f-c634-4e9e-83ec-4b64f82d6d6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7548" - ], - "x-ms-correlation-request-id": [ - "ec668cc9-20d6-4feb-a34e-c20e65b9090b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221209Z:ec668cc9-20d6-4feb-a34e-c20e65b9090b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d016535-9acb-4a68-82eb-b59a73d49fa1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7547" - ], - "x-ms-correlation-request-id": [ - "cfa58f5b-c2b3-49d3-b9dc-1d6a812f38ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221209Z:cfa58f5b-c2b3-49d3-b9dc-1d6a812f38ed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6baea4c4-0fd2-445b-9310-cfad8ba6fdb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7546" - ], - "x-ms-correlation-request-id": [ - "d5a53e6a-1765-4eb4-9ae6-6faa714b4646" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221209Z:d5a53e6a-1765-4eb4-9ae6-6faa714b4646" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35532f95-220b-4742-b706-1d8bfdd2cc50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7545" - ], - "x-ms-correlation-request-id": [ - "f2019b6b-25c9-48cf-81a7-f9294cb7a292" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221209Z:f2019b6b-25c9-48cf-81a7-f9294cb7a292" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b8e3e5b-0c25-4256-a7a3-45d8335d6bc0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7544" - ], - "x-ms-correlation-request-id": [ - "f3151a2f-898f-4688-bba1-8d8cbb5fbfa0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221209Z:f3151a2f-898f-4688-bba1-8d8cbb5fbfa0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97889cf4-d7d0-4240-891a-0d3c8aa9da32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7543" - ], - "x-ms-correlation-request-id": [ - "b82161dc-be04-40c7-b1ad-14c5dc370568" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221209Z:b82161dc-be04-40c7-b1ad-14c5dc370568" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20d064fa-d147-4bd3-a9cb-fbb9711b0497" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7542" - ], - "x-ms-correlation-request-id": [ - "2680d568-da0d-48e5-bf62-8deb8dfbe9f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221209Z:2680d568-da0d-48e5-bf62-8deb8dfbe9f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "27e4ed0f-2b7d-4546-9ab4-8b4db3b3cf60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7541" - ], - "x-ms-correlation-request-id": [ - "5d0dbff3-422c-413a-96bc-9fc85adcc1eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221210Z:5d0dbff3-422c-413a-96bc-9fc85adcc1eb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8562ad0d-6851-41db-8e43-04fc6723b2d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7540" - ], - "x-ms-correlation-request-id": [ - "f522b467-2705-4cd1-9e9f-d0c85a7191cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221210Z:f522b467-2705-4cd1-9e9f-d0c85a7191cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b34b0018-7379-4e8d-b56c-65fa6840a045" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7539" - ], - "x-ms-correlation-request-id": [ - "b836246d-b0d5-4bef-ab89-0077a9abad59" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221210Z:b836246d-b0d5-4bef-ab89-0077a9abad59" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce0dcbfb-0916-4e9a-9950-b21198aaa267" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7538" - ], - "x-ms-correlation-request-id": [ - "d5eb8d55-9e21-4e67-a8e9-165701ecfca4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221210Z:d5eb8d55-9e21-4e67-a8e9-165701ecfca4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e65384f-d55d-463b-8274-d6b3d8edc959" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7537" - ], - "x-ms-correlation-request-id": [ - "4396f8ff-36ff-453c-bf38-3618c3844bff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221210Z:4396f8ff-36ff-453c-bf38-3618c3844bff" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0867c49-930f-4c2a-b11c-52b3d4643dc0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7536" - ], - "x-ms-correlation-request-id": [ - "d548dbe7-5c7c-4cae-bc14-bc28a83d0ab5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221210Z:d548dbe7-5c7c-4cae-bc14-bc28a83d0ab5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f83d876-f8f3-4b8a-90c5-bf0f57d91bf4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7535" - ], - "x-ms-correlation-request-id": [ - "d70228ba-20a5-4e1e-8c22-68c3f7489306" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221210Z:d70228ba-20a5-4e1e-8c22-68c3f7489306" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6898cc9-920c-4035-9e39-b89415c39140" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7534" - ], - "x-ms-correlation-request-id": [ - "601cc1db-5cb0-44fa-bb2e-17d413e37150" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221211Z:601cc1db-5cb0-44fa-bb2e-17d413e37150" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "477d9260-8f29-482c-a862-954009ab2fc5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7533" - ], - "x-ms-correlation-request-id": [ - "b764908e-a718-459a-9686-a85b9f941d2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221211Z:b764908e-a718-459a-9686-a85b9f941d2e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a435b42-4f43-4875-9863-a2ba17b43efa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7532" - ], - "x-ms-correlation-request-id": [ - "5a28f60e-6953-4679-bb94-8a065fe25f50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221211Z:5a28f60e-6953-4679-bb94-8a065fe25f50" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ddda6096-5a33-4417-8715-f12299ec1fd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7531" - ], - "x-ms-correlation-request-id": [ - "6098851a-8917-4f8d-b888-76ef6e8586a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221211Z:6098851a-8917-4f8d-b888-76ef6e8586a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6fe14c4-8493-4f55-b750-28d17428d775" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7530" - ], - "x-ms-correlation-request-id": [ - "bfa62a68-fe46-47e5-a015-aad082d8652a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221211Z:bfa62a68-fe46-47e5-a015-aad082d8652a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "351ff05d-1a38-4d9d-bfc2-a6be412e4eaf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7529" - ], - "x-ms-correlation-request-id": [ - "7cbb1a97-2173-4412-9571-fa98d2b105f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221211Z:7cbb1a97-2173-4412-9571-fa98d2b105f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38522f5b-45a0-4170-88cb-e9917f52f023" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7528" - ], - "x-ms-correlation-request-id": [ - "0f42b4ef-2515-40be-a082-9163949b7b0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221211Z:0f42b4ef-2515-40be-a082-9163949b7b0c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e0f09a8-9dd7-4d39-bd28-bb228e5cdfb5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7527" - ], - "x-ms-correlation-request-id": [ - "8a8c9810-da03-4986-95a4-d468f0bd6e1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221212Z:8a8c9810-da03-4986-95a4-d468f0bd6e1e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f33fcf5-f83a-4718-9fee-8e1db45c46a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7526" - ], - "x-ms-correlation-request-id": [ - "ed8e16db-b394-4281-9509-010e42482c08" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221212Z:ed8e16db-b394-4281-9509-010e42482c08" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44eeea4a-c72f-4224-a14b-53eb222ae0e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7525" - ], - "x-ms-correlation-request-id": [ - "1db4debe-0840-4ae5-b2f1-56ad9ab46df6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221212Z:1db4debe-0840-4ae5-b2f1-56ad9ab46df6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9786a4cd-9036-4cc3-9c21-26116c6f1622" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7524" - ], - "x-ms-correlation-request-id": [ - "e7df504b-9759-4c26-9306-5035ca735792" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221212Z:e7df504b-9759-4c26-9306-5035ca735792" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86366918-9bd5-46e3-bb44-4a5a622649b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7523" - ], - "x-ms-correlation-request-id": [ - "008101ae-90db-4371-b1ba-d49f7bcdfed1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221212Z:008101ae-90db-4371-b1ba-d49f7bcdfed1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41c6a4ee-0d7c-4837-ba6e-71e54fe21140" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7522" - ], - "x-ms-correlation-request-id": [ - "a3c43b1a-e9dc-4d89-84e6-fb058ee6f2fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221212Z:a3c43b1a-e9dc-4d89-84e6-fb058ee6f2fb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f519548-90a8-4784-85d9-7eb57aa5e6ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7521" - ], - "x-ms-correlation-request-id": [ - "d04eed3f-8223-40ba-92fe-6c018f3c3f8b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221213Z:d04eed3f-8223-40ba-92fe-6c018f3c3f8b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75d110f1-f96a-4771-8bee-5940ac9c6d25" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7520" - ], - "x-ms-correlation-request-id": [ - "bce3b318-39b3-4f7a-9be1-31d0c019c5a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221213Z:bce3b318-39b3-4f7a-9be1-31d0c019c5a2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f47208e-c2e3-47ce-87fb-f8e2d1a2c505" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7519" - ], - "x-ms-correlation-request-id": [ - "929acf68-1ec2-4831-90cf-26f86e06558a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221213Z:929acf68-1ec2-4831-90cf-26f86e06558a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce680876-4789-4dde-92c8-b5c1d0a013d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7518" - ], - "x-ms-correlation-request-id": [ - "71697635-29e6-45a2-9a8c-a26838d5e6fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221213Z:71697635-29e6-45a2-9a8c-a26838d5e6fb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf566215-b5ed-4b02-b0c2-35a0f6dc30c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7517" - ], - "x-ms-correlation-request-id": [ - "f67b32ed-11fc-4db4-9539-1cc70579bbff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221213Z:f67b32ed-11fc-4db4-9539-1cc70579bbff" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d0feb81-6d61-4b75-8f69-23499ce2140c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7516" - ], - "x-ms-correlation-request-id": [ - "cf8bcaf3-d3cc-439c-a04e-0292d5026a97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221213Z:cf8bcaf3-d3cc-439c-a04e-0292d5026a97" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da9edc67-08cf-4730-9723-ce5c72bde14b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7515" - ], - "x-ms-correlation-request-id": [ - "d3002b00-4435-444c-bbf0-8711d7aa598c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221213Z:d3002b00-4435-444c-bbf0-8711d7aa598c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5840cec-3f09-4035-9b4f-870e32a97411" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7514" - ], - "x-ms-correlation-request-id": [ - "bd43ab62-bdf5-48f0-81c0-83f61a330936" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221214Z:bd43ab62-bdf5-48f0-81c0-83f61a330936" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e71a33c-aaf8-4dd3-8fd9-5b1f68128309" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7513" - ], - "x-ms-correlation-request-id": [ - "38d14e3e-2503-4fa3-9a2d-5d9a5e1e5532" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221214Z:38d14e3e-2503-4fa3-9a2d-5d9a5e1e5532" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3310d0dc-b58d-4125-91c9-c4e3271297f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7512" - ], - "x-ms-correlation-request-id": [ - "72f373a9-c014-4384-97ab-de8ef38c7f9e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221214Z:72f373a9-c014-4384-97ab-de8ef38c7f9e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dfdb3ec9-4e08-4345-b3ab-76baf4289e0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7511" - ], - "x-ms-correlation-request-id": [ - "3b17b70a-2d28-465e-802f-a3fd9eabfe14" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221214Z:3b17b70a-2d28-465e-802f-a3fd9eabfe14" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c1d1d6b-34ee-4d86-8b2f-8eb39dec7947" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7510" - ], - "x-ms-correlation-request-id": [ - "608cde64-62bf-4e63-9312-79b187a4d44e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221214Z:608cde64-62bf-4e63-9312-79b187a4d44e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b303394-186d-4aa8-b165-3b23cae56eff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7509" - ], - "x-ms-correlation-request-id": [ - "87dbcffa-885b-42a7-bc88-ca2717ba7fd2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221214Z:87dbcffa-885b-42a7-bc88-ca2717ba7fd2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3492ffc3-bb91-4f3f-a297-49b7cbdbe26b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7508" - ], - "x-ms-correlation-request-id": [ - "1004e313-bc1c-4c80-960a-2a5b99355eae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221215Z:1004e313-bc1c-4c80-960a-2a5b99355eae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e37d2c2-d96f-433e-8eed-3fe9dccb4765" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7507" - ], - "x-ms-correlation-request-id": [ - "d112c780-7dbe-49b9-bee9-a182af1222ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221215Z:d112c780-7dbe-49b9-bee9-a182af1222ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8ece2f4-a9a0-4f3a-8a04-ca933de6591e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7506" - ], - "x-ms-correlation-request-id": [ - "cde17599-23ac-46f8-87b3-a85f0194b7d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221215Z:cde17599-23ac-46f8-87b3-a85f0194b7d0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a455a1a8-dfb9-4b56-a495-e6db6caf5681" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7505" - ], - "x-ms-correlation-request-id": [ - "a5853a46-f485-4d6d-b43f-c1c180961327" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221215Z:a5853a46-f485-4d6d-b43f-c1c180961327" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d43c9ded-3ee7-4b55-be64-396a03f06211" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7504" - ], - "x-ms-correlation-request-id": [ - "c008b655-ceaf-4b44-a652-a2e93e3d5764" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221215Z:c008b655-ceaf-4b44-a652-a2e93e3d5764" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "140c9f01-8ee5-4d4a-b2af-a3ca6a521538" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7503" - ], - "x-ms-correlation-request-id": [ - "3adee06e-8019-4b19-8c44-b123a577b927" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221215Z:3adee06e-8019-4b19-8c44-b123a577b927" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bff255d2-91ac-4709-bdb1-4fc77e1a36c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7502" - ], - "x-ms-correlation-request-id": [ - "ea7478b5-34dc-4d83-ab85-d988d16caa00" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221216Z:ea7478b5-34dc-4d83-ab85-d988d16caa00" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c2897a7-037a-43f0-9961-0cd0d4b72de0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7501" - ], - "x-ms-correlation-request-id": [ - "1892e9e4-9944-4a61-88aa-4418f813cd9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221216Z:1892e9e4-9944-4a61-88aa-4418f813cd9d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1baf574b-d435-4708-ab0b-1c9f00d5c609" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7500" - ], - "x-ms-correlation-request-id": [ - "a4afd708-6dd2-44c1-b4eb-034e5e50ddba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221216Z:a4afd708-6dd2-44c1-b4eb-034e5e50ddba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d03426fa-3aba-4095-a71f-e05897a61a36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7499" - ], - "x-ms-correlation-request-id": [ - "768cc0d6-1a9e-4f32-a3d6-2e2d07a85573" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221216Z:768cc0d6-1a9e-4f32-a3d6-2e2d07a85573" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f193a4d2-2a02-4e8d-8fda-c675ff4c413c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7498" - ], - "x-ms-correlation-request-id": [ - "9aa269d1-9a1f-4b57-b6e1-cd5c712f8541" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221216Z:9aa269d1-9a1f-4b57-b6e1-cd5c712f8541" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb5cc76b-7560-40ac-82ad-7fb0c877e218" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7497" - ], - "x-ms-correlation-request-id": [ - "7e4fd248-7656-4d0f-8d8f-801c3e04de86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221216Z:7e4fd248-7656-4d0f-8d8f-801c3e04de86" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "923c33f1-c205-4851-abac-1b314d4c9880" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7496" - ], - "x-ms-correlation-request-id": [ - "8ec96e77-7463-4933-acaa-4bbb7f5faf62" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221216Z:8ec96e77-7463-4933-acaa-4bbb7f5faf62" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ecbbd3d3-a33d-406d-bb4f-2f3e71444fe3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7495" - ], - "x-ms-correlation-request-id": [ - "f168d162-6fd6-42ec-a688-64769a5e4232" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221217Z:f168d162-6fd6-42ec-a688-64769a5e4232" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4228c475-d9bf-40a9-a6ab-bbd1ea5dd85e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7494" - ], - "x-ms-correlation-request-id": [ - "0581d1fe-8735-47eb-a342-c5ca1dbb1ed6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221217Z:0581d1fe-8735-47eb-a342-c5ca1dbb1ed6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ea87bba-c1e6-49ad-80d9-6294336b42e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7493" - ], - "x-ms-correlation-request-id": [ - "74fb646d-0b89-4226-95fe-e3325da36b26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221217Z:74fb646d-0b89-4226-95fe-e3325da36b26" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cdea1187-92ae-4bfa-a2af-bc461d66288e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7492" - ], - "x-ms-correlation-request-id": [ - "367eac56-cd49-40d8-bcbd-d2ed2690c372" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221217Z:367eac56-cd49-40d8-bcbd-d2ed2690c372" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "772c09de-9360-45a5-8c34-059621e50d5d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7491" - ], - "x-ms-correlation-request-id": [ - "05d859a8-2a84-435d-9fa0-86e9843e08cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221217Z:05d859a8-2a84-435d-9fa0-86e9843e08cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14689487-54ef-4f6b-952d-45a2a2fe3892" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7490" - ], - "x-ms-correlation-request-id": [ - "392fd3c1-bdbc-470a-ba59-1e235e8e96a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221217Z:392fd3c1-bdbc-470a-ba59-1e235e8e96a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0991877c-c863-4d24-95cd-209154d93c6d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7489" - ], - "x-ms-correlation-request-id": [ - "a63f5eb5-ba69-4b6a-a9f2-8e923581982d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221218Z:a63f5eb5-ba69-4b6a-a9f2-8e923581982d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24b6b8e4-a2b6-4e88-a6f8-cdb57c87d3a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7488" - ], - "x-ms-correlation-request-id": [ - "35db14e8-6b1f-45fe-9057-679686e5b59f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221218Z:35db14e8-6b1f-45fe-9057-679686e5b59f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "187b54ae-94ca-4a7a-85f4-90b5a3df66bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7487" - ], - "x-ms-correlation-request-id": [ - "2eec2f7c-1d2a-40b4-88f7-c66fecee9864" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221218Z:2eec2f7c-1d2a-40b4-88f7-c66fecee9864" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69d154cd-a737-4ecf-8b2f-2282fb9d908b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7486" - ], - "x-ms-correlation-request-id": [ - "97705b5d-3d9d-486c-9edc-b1a085d7b22a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221218Z:97705b5d-3d9d-486c-9edc-b1a085d7b22a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "27bf23d2-dbf8-4cfb-8097-ecc43c414161" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7485" - ], - "x-ms-correlation-request-id": [ - "ad52a6fc-e094-4949-a9f1-871fb33b40ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221218Z:ad52a6fc-e094-4949-a9f1-871fb33b40ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad418475-bcaa-4985-8a9c-292941861930" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7484" - ], - "x-ms-correlation-request-id": [ - "3c3de1cf-d066-4a22-951f-f418b7e3f300" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221218Z:3c3de1cf-d066-4a22-951f-f418b7e3f300" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1421d91-af2a-49a4-b227-2e68e50506b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7483" - ], - "x-ms-correlation-request-id": [ - "0d0ac344-0445-48da-8eac-dca10d2f204d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221219Z:0d0ac344-0445-48da-8eac-dca10d2f204d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b039a14-7e61-4882-9fb2-f022d8be60c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7482" - ], - "x-ms-correlation-request-id": [ - "78d8e2cf-119f-4144-879d-2f7b917bd439" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221219Z:78d8e2cf-119f-4144-879d-2f7b917bd439" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2bcc628e-caae-4433-b800-01cd347b594b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7481" - ], - "x-ms-correlation-request-id": [ - "b773029a-e0f3-4406-938a-03a5c9794c9b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221219Z:b773029a-e0f3-4406-938a-03a5c9794c9b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6fe8d34b-a6f5-4658-a4f6-ec106cc791af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7480" - ], - "x-ms-correlation-request-id": [ - "5dd826a9-b00e-40d6-842e-4ee10f047549" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221219Z:5dd826a9-b00e-40d6-842e-4ee10f047549" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f51665c9-9097-4b04-a0bb-6d88d9eeb023" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7479" - ], - "x-ms-correlation-request-id": [ - "6f2d3f89-c748-4273-9a91-0e542b582042" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221219Z:6f2d3f89-c748-4273-9a91-0e542b582042" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f005033-24b9-4c5d-8512-f0be8d5ce781" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7478" - ], - "x-ms-correlation-request-id": [ - "11613910-8000-4e54-840e-9beb87e78d0f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221220Z:11613910-8000-4e54-840e-9beb87e78d0f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51abc4ac-1aa1-4e77-b17b-292fb3da9fea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7477" - ], - "x-ms-correlation-request-id": [ - "b8aa5b00-e44c-47a1-8140-70f129fcb4ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221220Z:b8aa5b00-e44c-47a1-8140-70f129fcb4ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49916756-bab3-4eec-b4e7-1bd5c23222fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7476" - ], - "x-ms-correlation-request-id": [ - "ec6966b7-52e8-4ab7-94a4-5700ed434594" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221220Z:ec6966b7-52e8-4ab7-94a4-5700ed434594" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13837be3-201c-40e9-bb56-fa08f762f34d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7475" - ], - "x-ms-correlation-request-id": [ - "530ed873-056f-49a7-a8de-6947423d8cec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221220Z:530ed873-056f-49a7-a8de-6947423d8cec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cae73dbb-248d-4c4a-86da-fe5ed6e5beb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7474" - ], - "x-ms-correlation-request-id": [ - "f9ddeea5-4cd1-4e82-bad7-4144239f6d36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221220Z:f9ddeea5-4cd1-4e82-bad7-4144239f6d36" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "09e9101f-b838-41f2-b226-4e02d34a0e27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7473" - ], - "x-ms-correlation-request-id": [ - "b9acd816-aaef-42e6-af95-8c43dc1fc9e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221220Z:b9acd816-aaef-42e6-af95-8c43dc1fc9e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cca5c05d-38e0-401a-b398-c1d7a24649e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7472" - ], - "x-ms-correlation-request-id": [ - "45227892-8ace-4999-86fe-7345a73a763b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221221Z:45227892-8ace-4999-86fe-7345a73a763b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad78ad98-01a7-412a-80e8-b0614a7f364a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7471" - ], - "x-ms-correlation-request-id": [ - "c58d7d1f-cde2-403e-8254-e53845ff6b48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221221Z:c58d7d1f-cde2-403e-8254-e53845ff6b48" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49842a7c-774d-4a40-a934-8e5d6700c492" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7470" - ], - "x-ms-correlation-request-id": [ - "c10da0db-65ae-4a95-b048-36a118dabe52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221221Z:c10da0db-65ae-4a95-b048-36a118dabe52" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8cba0957-fd6a-4020-b5b2-d610c7c9c041" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7469" - ], - "x-ms-correlation-request-id": [ - "1a0bf7c5-fde4-4a2d-8602-f80d12de6bc2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221221Z:1a0bf7c5-fde4-4a2d-8602-f80d12de6bc2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "526dd672-7851-4897-a991-7e019d4be294" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7468" - ], - "x-ms-correlation-request-id": [ - "d4fe003e-3d78-4ef8-8dcb-921d21907cd7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221221Z:d4fe003e-3d78-4ef8-8dcb-921d21907cd7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a784f1a-d034-4961-b01e-c751fc24dc49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7467" - ], - "x-ms-correlation-request-id": [ - "0a79d561-6fc2-42b8-a8c6-f9e5ace830b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221221Z:0a79d561-6fc2-42b8-a8c6-f9e5ace830b3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "320c10fe-7c78-4089-9e72-6f804fe4ac37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7466" - ], - "x-ms-correlation-request-id": [ - "12c2cb6c-fca6-4699-9564-246f84686265" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221222Z:12c2cb6c-fca6-4699-9564-246f84686265" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f1eccaf-0ee4-4f95-b3dd-08206dc1201b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7465" - ], - "x-ms-correlation-request-id": [ - "e6d0a6f1-6c77-4025-8fc0-4036308d0880" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221222Z:e6d0a6f1-6c77-4025-8fc0-4036308d0880" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b848603a-7f02-4ad2-a4a8-477972161105" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7464" - ], - "x-ms-correlation-request-id": [ - "0ace2a8d-13ce-4d3c-8b53-53ebf0fad3a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221222Z:0ace2a8d-13ce-4d3c-8b53-53ebf0fad3a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e04d0c5d-1751-45fe-bc83-01f90b66ebf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7463" - ], - "x-ms-correlation-request-id": [ - "43e8713e-a2ee-4a70-8220-8942001d2735" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221222Z:43e8713e-a2ee-4a70-8220-8942001d2735" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "905414bc-bab6-4cbe-abb4-d93035805fc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7462" - ], - "x-ms-correlation-request-id": [ - "eced0f97-36cc-485f-bae7-e6187003f0c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221222Z:eced0f97-36cc-485f-bae7-e6187003f0c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8f3a2d9-144a-4498-9ac6-20cf0988dd2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7461" - ], - "x-ms-correlation-request-id": [ - "7a9afd17-669a-47d5-8606-ae4312f85cc3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221222Z:7a9afd17-669a-47d5-8606-ae4312f85cc3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d74154d5-62ca-4770-a4f0-71d69334277e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7460" - ], - "x-ms-correlation-request-id": [ - "63714a92-5855-4ace-9d9b-4ad82d1647ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221222Z:63714a92-5855-4ace-9d9b-4ad82d1647ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5afea3f1-1a25-4634-9055-3337e990a9ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7459" - ], - "x-ms-correlation-request-id": [ - "f91de2a7-cb99-44a3-b4ad-c7071f53b330" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221223Z:f91de2a7-cb99-44a3-b4ad-c7071f53b330" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ebd1035d-6556-4e0a-997f-e423afc41a3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7458" - ], - "x-ms-correlation-request-id": [ - "ac88e490-6307-4e39-b464-d0d5342f7265" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221223Z:ac88e490-6307-4e39-b464-d0d5342f7265" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ebcbd214-d6e0-4290-a87e-b4376009c9c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7457" - ], - "x-ms-correlation-request-id": [ - "a8498e5d-7f50-43fb-a5cd-ea8aec4fdcfb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221223Z:a8498e5d-7f50-43fb-a5cd-ea8aec4fdcfb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a670a2d9-328c-446d-9ff2-61e7a576c969" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7456" - ], - "x-ms-correlation-request-id": [ - "8eb5b9e8-725f-4f00-a301-b77a7d986e8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221223Z:8eb5b9e8-725f-4f00-a301-b77a7d986e8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4b0c118-1cf7-4a25-a631-e0e275ee84fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7455" - ], - "x-ms-correlation-request-id": [ - "c15e9ee6-3760-49d7-a0ae-fd45df72229e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221223Z:c15e9ee6-3760-49d7-a0ae-fd45df72229e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "66c2478a-cb31-4466-866e-63cad4024503" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7454" - ], - "x-ms-correlation-request-id": [ - "31f161e6-c061-409e-a3b3-ad6400c2f96e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221224Z:31f161e6-c061-409e-a3b3-ad6400c2f96e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "796213c7-9c87-498f-b23a-fce9ea99c0aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7453" - ], - "x-ms-correlation-request-id": [ - "feb6caf4-0ab9-4351-b763-d1e620386333" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221224Z:feb6caf4-0ab9-4351-b763-d1e620386333" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "27c8d172-d9b0-4866-ab6f-a4c8d951196e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7452" - ], - "x-ms-correlation-request-id": [ - "d156e63c-581c-4ce2-ad9c-1e26ada5481a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221224Z:d156e63c-581c-4ce2-ad9c-1e26ada5481a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95c03a0c-72cc-4b6c-b905-df43cd951107" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7451" - ], - "x-ms-correlation-request-id": [ - "55d7f645-7252-4295-9870-28720a13a83e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221224Z:55d7f645-7252-4295-9870-28720a13a83e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56ef09f2-6b39-423b-8175-b72af48b1bf5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7450" - ], - "x-ms-correlation-request-id": [ - "e96e1a78-707a-4100-ac45-1d6141a2b3a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221224Z:e96e1a78-707a-4100-ac45-1d6141a2b3a0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5456a18-2740-484b-a7d0-4d57c6c46dcd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7449" - ], - "x-ms-correlation-request-id": [ - "6aae536b-729e-4433-8917-bc528c7e2f3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221224Z:6aae536b-729e-4433-8917-bc528c7e2f3e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea278c5b-faec-4f82-ba5a-f6c69f5e3543" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7448" - ], - "x-ms-correlation-request-id": [ - "2f161f49-8b9a-4fdd-9c21-07b82735b96f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221225Z:2f161f49-8b9a-4fdd-9c21-07b82735b96f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25e3bce9-cec8-49fc-b490-af329a720727" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7447" - ], - "x-ms-correlation-request-id": [ - "1850652a-4560-4f75-92c1-5e00109eae7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221225Z:1850652a-4560-4f75-92c1-5e00109eae7e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e5cf7ea-cfc7-47ec-8df7-9bc93f666fc6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7446" - ], - "x-ms-correlation-request-id": [ - "de911ebb-bf62-4380-b017-2c26c060b1b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221225Z:de911ebb-bf62-4380-b017-2c26c060b1b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d96a2570-7fac-4c40-a0d7-7ec2a30a5441" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7445" - ], - "x-ms-correlation-request-id": [ - "510e6dd7-dcdf-44a7-aa2e-c72b6a0987e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221225Z:510e6dd7-dcdf-44a7-aa2e-c72b6a0987e4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a626409-9285-44b0-8d92-199f7d6135d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7444" - ], - "x-ms-correlation-request-id": [ - "480c8819-ba80-49b1-9137-ca496ffdc1a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221225Z:480c8819-ba80-49b1-9137-ca496ffdc1a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f90c71a7-c70b-4853-a497-cacaf15a0a8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7443" - ], - "x-ms-correlation-request-id": [ - "a2355426-b0b4-4c5f-9e7b-ec002ac3237c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221225Z:a2355426-b0b4-4c5f-9e7b-ec002ac3237c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4ad3ad5-f8ba-4a54-b760-3c83bed12664" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7442" - ], - "x-ms-correlation-request-id": [ - "9c4be586-dc70-41ff-ace2-7c02045a0c5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221226Z:9c4be586-dc70-41ff-ace2-7c02045a0c5a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c1e7791-3a2a-4c3d-b6f9-def942298799" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7441" - ], - "x-ms-correlation-request-id": [ - "d7fc1de7-a45a-4335-bd18-da9bcfa8a2ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221226Z:d7fc1de7-a45a-4335-bd18-da9bcfa8a2ed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7815deb4-7f5f-45d2-a9b6-c5539ddb9604" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7440" - ], - "x-ms-correlation-request-id": [ - "1cbb7cc9-2b8a-4f1c-aa30-d775ef1b0145" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221226Z:1cbb7cc9-2b8a-4f1c-aa30-d775ef1b0145" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7136c65e-a695-4a04-ae63-dbc92a903f90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7439" - ], - "x-ms-correlation-request-id": [ - "e2d47320-5bbc-4271-bff2-13df5801797a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221226Z:e2d47320-5bbc-4271-bff2-13df5801797a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9835a25e-a96e-4d0f-9bfc-e6bd2829ee49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7438" - ], - "x-ms-correlation-request-id": [ - "e4de4394-6f55-4a0e-ac5a-fad4dbe4eb64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221226Z:e4de4394-6f55-4a0e-ac5a-fad4dbe4eb64" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67781140-5012-4084-8711-b6ec7e5eadf0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7437" - ], - "x-ms-correlation-request-id": [ - "337b4923-5f35-44a9-aa4f-909533639974" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221226Z:337b4923-5f35-44a9-aa4f-909533639974" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42d3f583-0757-4630-b619-dc1665f01f6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7436" - ], - "x-ms-correlation-request-id": [ - "1e26b168-86b6-469e-a0d8-962bbb03f31e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221227Z:1e26b168-86b6-469e-a0d8-962bbb03f31e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0aea5191-54f8-4ab9-9cf3-26918e721f59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7435" - ], - "x-ms-correlation-request-id": [ - "ab0f06fc-3575-4567-b02f-b79c1d23ed39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221227Z:ab0f06fc-3575-4567-b02f-b79c1d23ed39" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f6c70a4-8adc-4f8a-a916-6f3b7c0aadd4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7434" - ], - "x-ms-correlation-request-id": [ - "fa9bea9c-5d49-4589-99e4-e326ae979c5b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221227Z:fa9bea9c-5d49-4589-99e4-e326ae979c5b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cee9ceba-f201-488c-880b-eb691abaf46c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7433" - ], - "x-ms-correlation-request-id": [ - "276ec156-0d2b-469d-b731-6b1e53c7d70c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221227Z:276ec156-0d2b-469d-b731-6b1e53c7d70c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22efbeaa-356c-4692-a952-7697a3b2175f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7432" - ], - "x-ms-correlation-request-id": [ - "92734313-441d-49eb-a185-9e1db6ab5b9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221227Z:92734313-441d-49eb-a185-9e1db6ab5b9f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "410c3c0a-30bd-48cc-b111-b0ca392bedbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7431" - ], - "x-ms-correlation-request-id": [ - "1ee5b082-76db-4b9e-b493-9912fe656019" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221228Z:1ee5b082-76db-4b9e-b493-9912fe656019" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11978a35-1b7b-4d76-b53e-4830d8cc2b79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7430" - ], - "x-ms-correlation-request-id": [ - "37d3c2b4-efae-4b94-8160-9a70c64c78ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221228Z:37d3c2b4-efae-4b94-8160-9a70c64c78ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1fe2d34b-b386-4345-a813-fd45ab8e6806" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7429" - ], - "x-ms-correlation-request-id": [ - "9b9a4e19-b476-4f84-8615-7449e3d6bb36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221228Z:9b9a4e19-b476-4f84-8615-7449e3d6bb36" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b5cdc14-5087-454a-9003-ae66976f8639" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7428" - ], - "x-ms-correlation-request-id": [ - "f8135d16-9064-4cbb-ba86-557fc71480f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221228Z:f8135d16-9064-4cbb-ba86-557fc71480f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c7dfeb5a-fe40-4179-af3d-f0a5e645fbb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7427" - ], - "x-ms-correlation-request-id": [ - "a48dfc56-6bab-421f-aba1-01282c8d08d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221228Z:a48dfc56-6bab-421f-aba1-01282c8d08d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c8f7581-1257-419f-b2a7-b34a1d65c9cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7426" - ], - "x-ms-correlation-request-id": [ - "45a29ee3-6439-4224-b886-82d71bb0249e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221228Z:45a29ee3-6439-4224-b886-82d71bb0249e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c36e717-c733-454e-a2b2-ee8af5092e6b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7425" - ], - "x-ms-correlation-request-id": [ - "1eeca424-ccee-4617-988e-41ef2aabd2b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221228Z:1eeca424-ccee-4617-988e-41ef2aabd2b5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8be5545-ee98-4bed-9cc9-12a3d34489e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7424" - ], - "x-ms-correlation-request-id": [ - "30dd6b04-7b73-4240-90d6-7ede3e2b0431" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221229Z:30dd6b04-7b73-4240-90d6-7ede3e2b0431" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4cafc4f0-e90f-47ba-858a-16ad5492f4df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7423" - ], - "x-ms-correlation-request-id": [ - "8b609d7c-ed92-4c95-9e0e-0bc786b1490a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221229Z:8b609d7c-ed92-4c95-9e0e-0bc786b1490a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37bc1a1a-4dff-4f87-bf24-4036bb95e194" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7422" - ], - "x-ms-correlation-request-id": [ - "b2270c1d-9f41-4c14-8664-53a9aca60240" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221229Z:b2270c1d-9f41-4c14-8664-53a9aca60240" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0663d05-ff85-4886-9ee6-4c977dc902e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7421" - ], - "x-ms-correlation-request-id": [ - "376fe6f6-575a-41c5-9e90-b7324e217d1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221229Z:376fe6f6-575a-41c5-9e90-b7324e217d1c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a4fc339-ffb5-4ae5-972c-9622822e6b03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7420" - ], - "x-ms-correlation-request-id": [ - "78187ea1-d56f-4afd-a3c3-44450196559d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221229Z:78187ea1-d56f-4afd-a3c3-44450196559d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "429f81dc-d6a7-49bb-ad65-a7c542eeb7ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7419" - ], - "x-ms-correlation-request-id": [ - "772be561-b5cd-416b-b712-bee3ad91b4d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221229Z:772be561-b5cd-416b-b712-bee3ad91b4d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3ca15db-9263-4b87-817d-6df08f576d54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7418" - ], - "x-ms-correlation-request-id": [ - "918c2f97-f127-476b-a56a-c469718d831d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221230Z:918c2f97-f127-476b-a56a-c469718d831d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9c0e438-cd95-4784-9d1e-64118497c983" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7417" - ], - "x-ms-correlation-request-id": [ - "1a61c603-63fa-40d0-b01f-9b0647ce1b4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221230Z:1a61c603-63fa-40d0-b01f-9b0647ce1b4b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "32668746-761b-4013-9a2d-e75df42bd3c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7416" - ], - "x-ms-correlation-request-id": [ - "4bc277a5-0ad3-430e-a977-729580cafad2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221230Z:4bc277a5-0ad3-430e-a977-729580cafad2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "349d8ed7-a636-4620-bac2-4e89343a5c65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7415" - ], - "x-ms-correlation-request-id": [ - "ad2b12c5-cd96-4bbd-bd9d-db4142fa1610" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221230Z:ad2b12c5-cd96-4bbd-bd9d-db4142fa1610" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b322cfe-8362-46ae-9cd4-8d2e63833483" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7414" - ], - "x-ms-correlation-request-id": [ - "89c18688-5584-4cb2-893f-12fa1b04cff4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221230Z:89c18688-5584-4cb2-893f-12fa1b04cff4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f40ff547-c1c1-436e-ba28-a7578be14801" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7413" - ], - "x-ms-correlation-request-id": [ - "cd4f20a4-9546-447b-8459-8e739fbe4c37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221231Z:cd4f20a4-9546-447b-8459-8e739fbe4c37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a52b8277-78d2-4544-aecc-2f7e0a192c25" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7412" - ], - "x-ms-correlation-request-id": [ - "f5db2c96-13dc-45a0-9e54-60787c18cb44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221231Z:f5db2c96-13dc-45a0-9e54-60787c18cb44" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a13f628-4eda-4fcb-8d0d-7aca3b50fd72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7411" - ], - "x-ms-correlation-request-id": [ - "8bb1954c-6d61-4c72-a1e3-a1bec488b48b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221231Z:8bb1954c-6d61-4c72-a1e3-a1bec488b48b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75e11c8e-877b-41cf-8015-ff2d19f70d80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7410" - ], - "x-ms-correlation-request-id": [ - "a5d9d413-d2c3-42f9-bcf9-b2ed392f8807" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221231Z:a5d9d413-d2c3-42f9-bcf9-b2ed392f8807" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7c8da8f-d259-4206-bb05-ef4cbb9a3013" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7409" - ], - "x-ms-correlation-request-id": [ - "6cece4ef-18f3-4538-9397-e5218ec61626" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221231Z:6cece4ef-18f3-4538-9397-e5218ec61626" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b876bf19-2a54-4ab5-8d15-2b727e36df66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7408" - ], - "x-ms-correlation-request-id": [ - "4276b758-89a2-48c7-adc0-9eba50e73baa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221231Z:4276b758-89a2-48c7-adc0-9eba50e73baa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37ec95d5-063d-45e9-847e-a6a18de9a81b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7407" - ], - "x-ms-correlation-request-id": [ - "4ec13a5d-f181-464d-b138-0695b1de57a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221231Z:4ec13a5d-f181-464d-b138-0695b1de57a6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c96dc270-f96f-4f85-9a88-c80e2ef7a1ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7406" - ], - "x-ms-correlation-request-id": [ - "4ceb46b7-87cd-4113-bf72-a644c3d0e40c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221232Z:4ceb46b7-87cd-4113-bf72-a644c3d0e40c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20f2b925-3160-4c11-a769-c392fd0eee2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7405" - ], - "x-ms-correlation-request-id": [ - "1a43339d-ac0a-46f3-852d-dea31f5dbdb4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221232Z:1a43339d-ac0a-46f3-852d-dea31f5dbdb4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92ab3680-0c38-49bc-acb3-3e7fd6fe89d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7404" - ], - "x-ms-correlation-request-id": [ - "f7c33690-2f1b-4114-95be-a92648a9cfec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221232Z:f7c33690-2f1b-4114-95be-a92648a9cfec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76fa6985-0748-4e37-a5c7-d770c14de76f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7403" - ], - "x-ms-correlation-request-id": [ - "89483605-4389-48c3-b70f-238588c75a37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221232Z:89483605-4389-48c3-b70f-238588c75a37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da4ec87f-6195-48f8-b6a0-2589dd5d6d1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7402" - ], - "x-ms-correlation-request-id": [ - "41e43545-b37c-4c39-afd8-0fa4a983530b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221232Z:41e43545-b37c-4c39-afd8-0fa4a983530b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe14f87f-ab60-41c4-9673-40c29ac8b582" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7401" - ], - "x-ms-correlation-request-id": [ - "81bda7b8-c47d-49a4-b784-56a3f60dfd73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221232Z:81bda7b8-c47d-49a4-b784-56a3f60dfd73" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49e0533a-4b27-49f5-a165-4cf8265ac10f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7400" - ], - "x-ms-correlation-request-id": [ - "31b31067-8f41-4fd4-b108-ace48e4dfe85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221232Z:31b31067-8f41-4fd4-b108-ace48e4dfe85" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31e2bc91-fc3d-4df4-98a9-6c1182907b85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7399" - ], - "x-ms-correlation-request-id": [ - "c9d1e3fd-bd43-4598-9282-e709fdf4d407" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221233Z:c9d1e3fd-bd43-4598-9282-e709fdf4d407" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b951aa62-3be3-4cac-a94b-58d75cb43899" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7398" - ], - "x-ms-correlation-request-id": [ - "642ea71b-c96a-46ee-a250-88d3e82c316f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221233Z:642ea71b-c96a-46ee-a250-88d3e82c316f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "15a6dcc7-c10c-420e-9657-8089f33556fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7397" - ], - "x-ms-correlation-request-id": [ - "c717ce0b-934f-4add-ab95-93731eb98970" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221233Z:c717ce0b-934f-4add-ab95-93731eb98970" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b45358c8-4ebd-4ccc-bd8e-2f1b5112c5d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7396" - ], - "x-ms-correlation-request-id": [ - "54513bc2-e7e4-4454-86e2-6d684b9bcf44" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221233Z:54513bc2-e7e4-4454-86e2-6d684b9bcf44" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f263bd1f-cce8-41a7-996e-7d57697f459c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7395" - ], - "x-ms-correlation-request-id": [ - "f8f2b9c1-88c6-4227-b852-a21f6f42c98b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221233Z:f8f2b9c1-88c6-4227-b852-a21f6f42c98b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "306875a7-6797-40d7-9eb4-c4957e15d1a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7394" - ], - "x-ms-correlation-request-id": [ - "384f9922-4bc5-4f2c-96e1-7b96ac1dcdcb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221233Z:384f9922-4bc5-4f2c-96e1-7b96ac1dcdcb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "64d5a563-4ba5-4f6c-b451-5aaa1fb8b80c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7393" - ], - "x-ms-correlation-request-id": [ - "820e5b5e-36b6-4b17-a5ff-fa345e2aacfd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221233Z:820e5b5e-36b6-4b17-a5ff-fa345e2aacfd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb24d05c-a2a1-430c-aef3-da39a4810d98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7392" - ], - "x-ms-correlation-request-id": [ - "9186ea53-0525-445f-8854-2f51e97b1086" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221234Z:9186ea53-0525-445f-8854-2f51e97b1086" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba2e2358-f304-4bcd-bcd5-6cfddf8a6a4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7391" - ], - "x-ms-correlation-request-id": [ - "108dc549-4412-45dc-b7a5-6fcabcec3455" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221234Z:108dc549-4412-45dc-b7a5-6fcabcec3455" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4cce92a-e75e-4eee-b220-d77f4fcb43f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7390" - ], - "x-ms-correlation-request-id": [ - "aa83831b-0a8a-47d5-89f9-6048253aa9f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221234Z:aa83831b-0a8a-47d5-89f9-6048253aa9f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d466f307-afad-4072-9090-2a1a432661b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7389" - ], - "x-ms-correlation-request-id": [ - "3b635381-6acf-4168-ac4c-87bf6637f001" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221234Z:3b635381-6acf-4168-ac4c-87bf6637f001" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78b53d80-480d-49ab-a3d3-2b6f61f69fe1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7388" - ], - "x-ms-correlation-request-id": [ - "405cd713-ccea-464c-a881-dc13f625f36c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221234Z:405cd713-ccea-464c-a881-dc13f625f36c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19cd1619-33e0-46bb-bc7f-4df23ba7c2cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7387" - ], - "x-ms-correlation-request-id": [ - "2ae4ec0a-6821-446a-aab5-225572999aaf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221234Z:2ae4ec0a-6821-446a-aab5-225572999aaf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9619b4fa-cdc4-41fe-84aa-192b4523edb5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7386" - ], - "x-ms-correlation-request-id": [ - "433eab7c-cfba-40c0-9d52-958c9058e187" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221235Z:433eab7c-cfba-40c0-9d52-958c9058e187" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c1b04a0-5fb6-4d17-af6f-62fd4ad86165" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7385" - ], - "x-ms-correlation-request-id": [ - "4973f422-17ed-455f-ad52-c47e900680f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221235Z:4973f422-17ed-455f-ad52-c47e900680f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd266319-fc13-4b6a-a7bf-3651fd23e66d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7384" - ], - "x-ms-correlation-request-id": [ - "ae476622-e03d-4614-8934-0f40f866e199" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221235Z:ae476622-e03d-4614-8934-0f40f866e199" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "58148e43-60c2-4629-a376-e16ed5fe7da3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7383" - ], - "x-ms-correlation-request-id": [ - "0f01a981-9ee0-4e96-ad91-5621472b5044" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221235Z:0f01a981-9ee0-4e96-ad91-5621472b5044" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a24245f4-7c9e-4876-9d67-b741cd20c7a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7382" - ], - "x-ms-correlation-request-id": [ - "38bea88f-dd76-409e-a54c-f5844569ea60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221235Z:38bea88f-dd76-409e-a54c-f5844569ea60" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "913b2432-7f22-46de-bbc6-a36ed93e7846" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7381" - ], - "x-ms-correlation-request-id": [ - "e1a5672e-fcf7-4008-936d-4c3d45773925" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221235Z:e1a5672e-fcf7-4008-936d-4c3d45773925" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31f8fb92-ab7a-4d9f-9c7c-00342e944c3e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7380" - ], - "x-ms-correlation-request-id": [ - "2658507b-4c23-4684-a9bd-eddcfd0b5e78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221236Z:2658507b-4c23-4684-a9bd-eddcfd0b5e78" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ddf85ef6-75ad-498b-b88c-d7a419485cef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7379" - ], - "x-ms-correlation-request-id": [ - "2fd498b3-b44c-4ce9-bef1-8c7a586797f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221236Z:2fd498b3-b44c-4ce9-bef1-8c7a586797f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37b76759-18d6-4916-8b15-146c8947a3d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7378" - ], - "x-ms-correlation-request-id": [ - "86a2b132-e1d5-47e9-9cd9-3c66319f1e8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221236Z:86a2b132-e1d5-47e9-9cd9-3c66319f1e8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a6dc992-8146-48ad-9605-aef1dc19af7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7377" - ], - "x-ms-correlation-request-id": [ - "217e35fa-b7d1-433d-94f1-a03823da1fa9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221236Z:217e35fa-b7d1-433d-94f1-a03823da1fa9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c095fe11-1639-4b2a-b329-bff7823ee886" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7376" - ], - "x-ms-correlation-request-id": [ - "dfa7ddf8-f268-4a12-b3cd-6cce345dff28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221236Z:dfa7ddf8-f268-4a12-b3cd-6cce345dff28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02b532ed-c842-44a0-b3f0-e756bc41b4b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7375" - ], - "x-ms-correlation-request-id": [ - "c2ee0685-311a-4b49-8040-7eb698862366" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221236Z:c2ee0685-311a-4b49-8040-7eb698862366" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72e1599f-6d4a-4c79-a1fd-f2c7fef6c570" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7374" - ], - "x-ms-correlation-request-id": [ - "46ffc3f1-944b-4480-9301-5bd44a846cde" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221236Z:46ffc3f1-944b-4480-9301-5bd44a846cde" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "067fc422-00da-4141-a9d1-7e30e96dafe3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7373" - ], - "x-ms-correlation-request-id": [ - "fc1a8c61-a3a1-4845-a950-15fc61cf4a93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221237Z:fc1a8c61-a3a1-4845-a950-15fc61cf4a93" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f78fb85b-b86c-4445-878d-0ab6a555a8d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7372" - ], - "x-ms-correlation-request-id": [ - "e1a292fb-8c6e-4367-a91f-45aa02419d79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221237Z:e1a292fb-8c6e-4367-a91f-45aa02419d79" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c18349cd-b98d-4099-967d-c3c685a99a64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7371" - ], - "x-ms-correlation-request-id": [ - "d980caf7-2d5c-48bc-a904-7f7e512ac74d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221237Z:d980caf7-2d5c-48bc-a904-7f7e512ac74d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0620efe-0e13-475f-8cf8-f5713f42b20c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7370" - ], - "x-ms-correlation-request-id": [ - "8acba0e6-22db-474a-a253-24799ee267c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221237Z:8acba0e6-22db-474a-a253-24799ee267c9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "668a4a06-0f8a-4952-9752-300ab2e5bf49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7369" - ], - "x-ms-correlation-request-id": [ - "84fc9be5-5981-41f8-8f1d-f8ef72d01a0e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221237Z:84fc9be5-5981-41f8-8f1d-f8ef72d01a0e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65a8ebde-a4fa-4e1d-afec-ae50da5c84f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7368" - ], - "x-ms-correlation-request-id": [ - "8e8ea6b0-7893-47f6-a0fb-933ab8d81501" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221237Z:8e8ea6b0-7893-47f6-a0fb-933ab8d81501" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a327d0b2-f567-4b52-af63-929946ba92f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7367" - ], - "x-ms-correlation-request-id": [ - "b3f8148a-6c8f-47ab-848d-0d7e425c5617" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221238Z:b3f8148a-6c8f-47ab-848d-0d7e425c5617" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62a581ab-36bc-4cee-9a4b-0a3041430bad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7366" - ], - "x-ms-correlation-request-id": [ - "5666462f-5332-420d-9b3c-c15bb637d849" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221238Z:5666462f-5332-420d-9b3c-c15bb637d849" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d4b9260-a22e-4305-9b3c-11aa4c29b73c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7365" - ], - "x-ms-correlation-request-id": [ - "03dc32c0-c774-4d09-a3c4-51aa3048e0b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221238Z:03dc32c0-c774-4d09-a3c4-51aa3048e0b1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eaf03ee4-12ec-4f05-83f3-2f5c06bca748" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7364" - ], - "x-ms-correlation-request-id": [ - "f809fd3b-2ac7-4662-939f-6b0241f8ed09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221238Z:f809fd3b-2ac7-4662-939f-6b0241f8ed09" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2c107e8-bb7d-4c83-8053-03dba3980b77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7363" - ], - "x-ms-correlation-request-id": [ - "65203393-c25f-434a-969f-72b10a95e581" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221238Z:65203393-c25f-434a-969f-72b10a95e581" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df7b80e0-4950-4394-9697-eb46d300bce6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7362" - ], - "x-ms-correlation-request-id": [ - "4e7970ba-bbf5-4732-b79c-8cab523387e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221238Z:4e7970ba-bbf5-4732-b79c-8cab523387e4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76f458f1-d495-415f-a67b-c6d618230e4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7361" - ], - "x-ms-correlation-request-id": [ - "e7739edc-8891-4b90-84c3-71f8b1f2f5c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221238Z:e7739edc-8891-4b90-84c3-71f8b1f2f5c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7389bf55-2f31-4290-9a7c-e06be52b98de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7360" - ], - "x-ms-correlation-request-id": [ - "3a682302-77f7-4d43-9ae1-51760e5d7867" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221239Z:3a682302-77f7-4d43-9ae1-51760e5d7867" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c2d1854-7a90-4845-a53b-0687e20e6d7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7359" - ], - "x-ms-correlation-request-id": [ - "0613c35d-dd1e-4738-b457-408303637cac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221239Z:0613c35d-dd1e-4738-b457-408303637cac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42d7bd18-a705-4f7d-99ad-a58cf2d9a165" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7358" - ], - "x-ms-correlation-request-id": [ - "4b181464-2b3f-409a-93e0-d926e99f18ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221239Z:4b181464-2b3f-409a-93e0-d926e99f18ec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdb81ed5-75bf-4ecb-a7d1-993c1fc62fb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7357" - ], - "x-ms-correlation-request-id": [ - "71b4db57-e988-4e66-ab5d-4efe6c3a2230" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221239Z:71b4db57-e988-4e66-ab5d-4efe6c3a2230" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a84c65c5-dda2-460f-a53f-dd0aac89000a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7356" - ], - "x-ms-correlation-request-id": [ - "a10dd530-81bc-4b42-b205-4031a1c08d4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221239Z:a10dd530-81bc-4b42-b205-4031a1c08d4e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d8c03be-28c1-4bcf-be1b-4867fbabf834" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7355" - ], - "x-ms-correlation-request-id": [ - "4c6e7ca7-f7ab-4090-97a4-6503564c6be4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221240Z:4c6e7ca7-f7ab-4090-97a4-6503564c6be4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81549d2a-2204-496b-8f50-317fe48672f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7354" - ], - "x-ms-correlation-request-id": [ - "8d8f03cf-740d-4fe7-8457-3210cc7727e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221240Z:8d8f03cf-740d-4fe7-8457-3210cc7727e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "442bb494-8f3f-45c0-aab8-e723efdfd13e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7353" - ], - "x-ms-correlation-request-id": [ - "837d46ab-4d7e-4cf4-934f-b114dd1e15fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221240Z:837d46ab-4d7e-4cf4-934f-b114dd1e15fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a13e965b-b764-45e2-844f-192288d829ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7352" - ], - "x-ms-correlation-request-id": [ - "dfe495ab-c47f-4c18-b1a3-b2e90ac1e3d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221240Z:dfe495ab-c47f-4c18-b1a3-b2e90ac1e3d7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4acb7b8-6523-4981-82bf-7dcaaf4bcdc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7351" - ], - "x-ms-correlation-request-id": [ - "9ea334f0-3403-461d-ae33-7e95e71fd71f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221240Z:9ea334f0-3403-461d-ae33-7e95e71fd71f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "685f1c80-c01f-4f0a-8aeb-1e6c8ee7ba9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7350" - ], - "x-ms-correlation-request-id": [ - "ba17575c-1d34-4290-8523-b144c45c679b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221241Z:ba17575c-1d34-4290-8523-b144c45c679b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91b32479-782c-46bf-9919-f5bb68f342ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7349" - ], - "x-ms-correlation-request-id": [ - "650d4c2d-1882-402c-9d37-8dbbe4f81336" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221241Z:650d4c2d-1882-402c-9d37-8dbbe4f81336" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6551c538-1b49-41a5-a5d7-ef4c769b4c73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7348" - ], - "x-ms-correlation-request-id": [ - "7b13e6a8-694a-4604-900c-5870e9505d53" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221241Z:7b13e6a8-694a-4604-900c-5870e9505d53" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "992ca206-94d2-410e-a0d8-e07a24a6050b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7347" - ], - "x-ms-correlation-request-id": [ - "1f8f6fb3-596c-48db-be19-01373dcbb949" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221241Z:1f8f6fb3-596c-48db-be19-01373dcbb949" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8875ef2d-85e7-44bc-99da-a3c5803c8ee4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7346" - ], - "x-ms-correlation-request-id": [ - "92b3e955-268d-4bed-ab22-306753b9df6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221242Z:92b3e955-268d-4bed-ab22-306753b9df6f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f04f68e-3d74-4ed5-bfe1-d12076264c0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7345" - ], - "x-ms-correlation-request-id": [ - "d07766c9-f1c6-4bad-b54a-b5dacb7333b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221242Z:d07766c9-f1c6-4bad-b54a-b5dacb7333b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62cebb92-aa32-406f-9430-cc7db8a8daf2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7344" - ], - "x-ms-correlation-request-id": [ - "c9559ed3-2e57-48a6-8600-1d1e6b2a8e92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221242Z:c9559ed3-2e57-48a6-8600-1d1e6b2a8e92" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f778069-c327-418a-915e-c2a968c55fc6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7343" - ], - "x-ms-correlation-request-id": [ - "183592ba-f745-4fa6-9267-a71e9db4dbaf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221242Z:183592ba-f745-4fa6-9267-a71e9db4dbaf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e7c730b-9785-4026-a426-6f6146ab024e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7342" - ], - "x-ms-correlation-request-id": [ - "6060feac-7e5b-4326-93e6-386859867ec8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221242Z:6060feac-7e5b-4326-93e6-386859867ec8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0545ad0-ba8d-462d-8bc1-29fa6a5e1f73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7341" - ], - "x-ms-correlation-request-id": [ - "3d110293-a062-485c-b247-f3b5479179f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221243Z:3d110293-a062-485c-b247-f3b5479179f5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "292663ef-575a-43e2-9d01-df6a0479ff14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7340" - ], - "x-ms-correlation-request-id": [ - "da3c9d13-c0d2-443d-9809-b0a2f5983a8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221243Z:da3c9d13-c0d2-443d-9809-b0a2f5983a8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c29ada47-fd71-4bc4-9898-a18509e9660b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7339" - ], - "x-ms-correlation-request-id": [ - "83aae377-0118-4da9-ae46-19018f248511" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221243Z:83aae377-0118-4da9-ae46-19018f248511" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "155b3aff-049a-4732-b7e1-a6b6b5f5c22b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7338" - ], - "x-ms-correlation-request-id": [ - "eb45d79c-cd68-4074-84e1-ee16b69dae8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221243Z:eb45d79c-cd68-4074-84e1-ee16b69dae8e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7cf7ceb0-4815-4124-9b5c-f048c81ede08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7337" - ], - "x-ms-correlation-request-id": [ - "76b895b0-3c65-417d-822e-f7456a4cfb0f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221243Z:76b895b0-3c65-417d-822e-f7456a4cfb0f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2619d61f-ab68-4c3c-b164-b428ecfeba9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7336" - ], - "x-ms-correlation-request-id": [ - "20f3bf21-58b7-42dc-868a-e882edf7fb25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221244Z:20f3bf21-58b7-42dc-868a-e882edf7fb25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da8a3659-ab78-4471-ad59-8f5b298e7b72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7335" - ], - "x-ms-correlation-request-id": [ - "0bf9c653-2291-4d82-be9f-ddcbb0fabd8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221244Z:0bf9c653-2291-4d82-be9f-ddcbb0fabd8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "596c06fc-7a0f-48c4-bf2d-bc698f20ef5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7334" - ], - "x-ms-correlation-request-id": [ - "db02ef71-71a6-495f-a9d0-affef51f3df9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221244Z:db02ef71-71a6-495f-a9d0-affef51f3df9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c70970f-8d63-44e1-96ff-3691113dc355" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7333" - ], - "x-ms-correlation-request-id": [ - "bd4d2ac4-c311-41d3-a130-3daca8ee2bc4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221244Z:bd4d2ac4-c311-41d3-a130-3daca8ee2bc4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6464a777-c2f1-464f-b705-519b99844598" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7332" - ], - "x-ms-correlation-request-id": [ - "772c3c30-0efd-473f-b7b9-45251329e0d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221244Z:772c3c30-0efd-473f-b7b9-45251329e0d6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "578897d2-9955-4f28-95d4-6cb4dbd6c412" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7331" - ], - "x-ms-correlation-request-id": [ - "c8d6582a-587c-4fb2-a5a4-444cebe3b546" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221244Z:c8d6582a-587c-4fb2-a5a4-444cebe3b546" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9a98e16-f6a4-42e8-9cf7-087653eb188d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7330" - ], - "x-ms-correlation-request-id": [ - "d40bbd10-4645-471b-aef7-bbeb8d83d03e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221244Z:d40bbd10-4645-471b-aef7-bbeb8d83d03e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cabac964-eb82-4b5b-9b94-feff301e24c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7329" - ], - "x-ms-correlation-request-id": [ - "7d0915b1-fff8-4775-8237-6b74f5fd5942" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221245Z:7d0915b1-fff8-4775-8237-6b74f5fd5942" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c76bed0-c547-45ce-8e55-bcccfb381f58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7328" - ], - "x-ms-correlation-request-id": [ - "b2cd1194-ac07-4847-8529-7b391facf783" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221245Z:b2cd1194-ac07-4847-8529-7b391facf783" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e07ead6-1a8b-47d8-8259-b32d2843a619" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7327" - ], - "x-ms-correlation-request-id": [ - "a5317971-0f7b-43fd-9e18-c0b3705f08e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221245Z:a5317971-0f7b-43fd-9e18-c0b3705f08e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "159395ce-e207-4a22-9f87-5a292134c4d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7326" - ], - "x-ms-correlation-request-id": [ - "48d2ee5a-1756-4b2c-8b9c-5f4f09290dae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221245Z:48d2ee5a-1756-4b2c-8b9c-5f4f09290dae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a20a7b30-c0a8-4763-a333-e0c67d09a6df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7325" - ], - "x-ms-correlation-request-id": [ - "2ed9d4df-54eb-42dd-b8ac-5717a58d1675" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221245Z:2ed9d4df-54eb-42dd-b8ac-5717a58d1675" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63fda8a4-73a4-475f-b036-751e667d2716" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7324" - ], - "x-ms-correlation-request-id": [ - "12cf40dd-6885-445f-8a75-fd9717346f16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221246Z:12cf40dd-6885-445f-8a75-fd9717346f16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99874ff5-6cf2-4341-bf01-143082cdafd1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7323" - ], - "x-ms-correlation-request-id": [ - "4d225a22-21f6-4940-a3af-d84964edc4a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221246Z:4d225a22-21f6-4940-a3af-d84964edc4a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aedc9260-323f-4dd2-ae9f-c32248d17503" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7322" - ], - "x-ms-correlation-request-id": [ - "80d87a7e-c8d1-417a-8283-1558cb19caed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221246Z:80d87a7e-c8d1-417a-8283-1558cb19caed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a62da4ed-ba12-4bc6-b015-a849b17a7200" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7321" - ], - "x-ms-correlation-request-id": [ - "aae99050-205b-465b-a789-afadab983f2a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221246Z:aae99050-205b-465b-a789-afadab983f2a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b608727b-6a99-4f28-b230-0c51d215066b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7320" - ], - "x-ms-correlation-request-id": [ - "e4e6b677-395b-44f1-8dd9-c7b337dd0c2a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221246Z:e4e6b677-395b-44f1-8dd9-c7b337dd0c2a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "678e14d7-e57b-427c-8511-c250211a0210" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7319" - ], - "x-ms-correlation-request-id": [ - "10b278ca-deb5-4245-bdc1-ed91f9fdec3f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221246Z:10b278ca-deb5-4245-bdc1-ed91f9fdec3f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91effc8e-d689-4f4b-b824-073c21eb713e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7318" - ], - "x-ms-correlation-request-id": [ - "2109c3dc-0043-49df-a420-3f5ee271b4f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221247Z:2109c3dc-0043-49df-a420-3f5ee271b4f5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd9cb138-d8dd-4605-8034-437f1c90c8d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7317" - ], - "x-ms-correlation-request-id": [ - "6a2e0472-5d6f-4e72-b8ad-3db5e9e715c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221247Z:6a2e0472-5d6f-4e72-b8ad-3db5e9e715c0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f7487d2-44be-4d84-80da-31eb2dc476a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7316" - ], - "x-ms-correlation-request-id": [ - "43ac883b-3aae-42ee-bac2-43150e8a3886" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221247Z:43ac883b-3aae-42ee-bac2-43150e8a3886" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dcb24ad5-1a24-419f-affc-6b064efb3a47" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7315" - ], - "x-ms-correlation-request-id": [ - "33f0698b-c810-4ecf-bf16-a323684fc2cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221247Z:33f0698b-c810-4ecf-bf16-a323684fc2cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30cfec9a-4b6d-4c40-8f04-36eb728c238e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7314" - ], - "x-ms-correlation-request-id": [ - "25f62b7a-90ea-49d9-95f7-e2e98b320841" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221247Z:25f62b7a-90ea-49d9-95f7-e2e98b320841" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f9a4be9-4cb2-4599-be0c-83bf2ce8e5b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7313" - ], - "x-ms-correlation-request-id": [ - "4587b0d2-473f-41e3-9667-694ebf89483d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221247Z:4587b0d2-473f-41e3-9667-694ebf89483d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "800f0ad4-a853-46fa-97f3-8548ac886176" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7312" - ], - "x-ms-correlation-request-id": [ - "a9d8b409-5243-4438-8b86-1feeb6d47e7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221248Z:a9d8b409-5243-4438-8b86-1feeb6d47e7e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4cb769c-c701-44f0-9d53-bfb54ce03f07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7311" - ], - "x-ms-correlation-request-id": [ - "cf9de06e-355b-411f-9276-963591f89d95" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221248Z:cf9de06e-355b-411f-9276-963591f89d95" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e99a606c-1e26-4a4b-a7d2-2583d5e6d5e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7310" - ], - "x-ms-correlation-request-id": [ - "c92c99e2-d514-4183-8664-ad1249ae7144" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221248Z:c92c99e2-d514-4183-8664-ad1249ae7144" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "592eca38-11d0-4d19-aafe-691dc61a9271" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7309" - ], - "x-ms-correlation-request-id": [ - "fb6a0484-0c91-4fc3-8cec-96ae795a5284" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221248Z:fb6a0484-0c91-4fc3-8cec-96ae795a5284" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0fdf93ae-0e3f-4e59-b55b-d1423b86b11b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7308" - ], - "x-ms-correlation-request-id": [ - "cd72fd21-2934-414b-9661-970669d2232c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221249Z:cd72fd21-2934-414b-9661-970669d2232c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a83752d0-6de8-4e01-a1e8-1474f3ecd421" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7307" - ], - "x-ms-correlation-request-id": [ - "4c1d1b86-2405-4c90-b544-0aea9f8e17f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221249Z:4c1d1b86-2405-4c90-b544-0aea9f8e17f3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e9fda2c-04f6-4354-9f1d-030cc2cdfd58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7306" - ], - "x-ms-correlation-request-id": [ - "c002d362-f45c-4f17-b99d-ae043b15cca7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221249Z:c002d362-f45c-4f17-b99d-ae043b15cca7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63a427ed-f0c6-4964-8f8e-df6d7746f39c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7305" - ], - "x-ms-correlation-request-id": [ - "df9358a4-963f-4f00-a843-d07be1b63d28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221249Z:df9358a4-963f-4f00-a843-d07be1b63d28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8fb7849-eb8a-41d4-8275-f1b2f200c6dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7304" - ], - "x-ms-correlation-request-id": [ - "2d8ccc96-3702-4b59-a5c4-ce530cbe0d75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221249Z:2d8ccc96-3702-4b59-a5c4-ce530cbe0d75" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8b41e0a-cf62-4745-ac8c-0df49a11f962" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7303" - ], - "x-ms-correlation-request-id": [ - "14dd3cdf-234b-46fd-b53d-beb26765614d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221249Z:14dd3cdf-234b-46fd-b53d-beb26765614d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cec09dfb-e9b7-4d37-bca6-3ec6d2cab4a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7302" - ], - "x-ms-correlation-request-id": [ - "b4bf4884-1be3-4806-a034-2360c2f08057" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221250Z:b4bf4884-1be3-4806-a034-2360c2f08057" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fbbb608-a131-4fd1-821a-cb294aa0339a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7301" - ], - "x-ms-correlation-request-id": [ - "81f143fa-8429-46eb-a2a7-caf4218d67c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221250Z:81f143fa-8429-46eb-a2a7-caf4218d67c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22f37d2f-5a4b-49e0-bd26-5169826d0e8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7300" - ], - "x-ms-correlation-request-id": [ - "fd7cca9a-381a-4e07-b354-273108fdfa68" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221250Z:fd7cca9a-381a-4e07-b354-273108fdfa68" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79e070b2-454b-4eab-8637-74f46be2b841" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7299" - ], - "x-ms-correlation-request-id": [ - "4e158387-f0d1-46a8-92bf-bf5cddd546bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221250Z:4e158387-f0d1-46a8-92bf-bf5cddd546bd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "293a8b4f-a815-4262-ace0-3ca400a20574" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7298" - ], - "x-ms-correlation-request-id": [ - "17a9f065-3605-4012-99ba-db9658fc5f53" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221250Z:17a9f065-3605-4012-99ba-db9658fc5f53" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce9cfae5-b608-4a74-99c9-00a19d3a8520" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7297" - ], - "x-ms-correlation-request-id": [ - "3e3bb815-d161-498d-b3e6-130722016323" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221251Z:3e3bb815-d161-498d-b3e6-130722016323" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19977286-ba6b-4a7b-9a6d-05448565682c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7296" - ], - "x-ms-correlation-request-id": [ - "7d294892-1c1e-4730-b1b6-55511ab42037" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221251Z:7d294892-1c1e-4730-b1b6-55511ab42037" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9fbd1807-5a52-4b4e-89e3-5227abccb2b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7295" - ], - "x-ms-correlation-request-id": [ - "10c520bc-391d-4611-9a47-354dc1f7fcf1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221251Z:10c520bc-391d-4611-9a47-354dc1f7fcf1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01026535-3780-4aa0-acea-caf4da83dbc8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7294" - ], - "x-ms-correlation-request-id": [ - "54a0a725-5532-42b2-957f-4fe4a6b23c10" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221251Z:54a0a725-5532-42b2-957f-4fe4a6b23c10" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4df7b2fa-c259-4f9c-8af4-0ec0992cc536" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7293" - ], - "x-ms-correlation-request-id": [ - "9d689e26-37bc-4696-9ddd-9087a3156ea7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221252Z:9d689e26-37bc-4696-9ddd-9087a3156ea7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bbd8698b-2210-44e8-9708-038b8dbd4977" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7292" - ], - "x-ms-correlation-request-id": [ - "dee86a6f-0ced-406e-8e28-9d332888726c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221252Z:dee86a6f-0ced-406e-8e28-9d332888726c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aab52761-c7ac-4486-8ffa-015f45a252a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7291" - ], - "x-ms-correlation-request-id": [ - "1a5763f8-5235-486d-aaef-5779d1a24779" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221252Z:1a5763f8-5235-486d-aaef-5779d1a24779" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d05602ee-0b93-4273-985c-fd0178df22cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7290" - ], - "x-ms-correlation-request-id": [ - "b379951b-0e23-43e2-b321-fbbe02781c87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221252Z:b379951b-0e23-43e2-b321-fbbe02781c87" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25600d19-3be9-4ec5-a250-53172c60844f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7289" - ], - "x-ms-correlation-request-id": [ - "62539369-767a-4093-868f-f16f45e8af33" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221252Z:62539369-767a-4093-868f-f16f45e8af33" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83c6f3d4-44a4-4d90-b58e-a603e1220f2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7288" - ], - "x-ms-correlation-request-id": [ - "c579e8b3-6bcc-47f1-a7a4-0ed32b327b8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221252Z:c579e8b3-6bcc-47f1-a7a4-0ed32b327b8e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "50533be9-5eb0-41cd-8696-b5b18376c464" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7287" - ], - "x-ms-correlation-request-id": [ - "ffba31bd-d71f-435f-882f-9fc52491b0f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221252Z:ffba31bd-d71f-435f-882f-9fc52491b0f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93435e72-5e45-4a88-8878-cae3f303d807" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7286" - ], - "x-ms-correlation-request-id": [ - "df01022b-4f1d-4217-9cce-5bef801c3f34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221253Z:df01022b-4f1d-4217-9cce-5bef801c3f34" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a9b4642c-5e0c-4be9-9d4c-80b922d74d57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7285" - ], - "x-ms-correlation-request-id": [ - "75c69915-0fa6-478b-87e2-85d5fab0b721" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221253Z:75c69915-0fa6-478b-87e2-85d5fab0b721" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3cac6dc6-10db-4a4c-bcef-39ccfb8d7411" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7284" - ], - "x-ms-correlation-request-id": [ - "a56a2c11-e1a7-4229-abdb-f8ab96872f29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221253Z:a56a2c11-e1a7-4229-abdb-f8ab96872f29" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "215e7e47-4b84-4539-9241-4d76da9be063" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7283" - ], - "x-ms-correlation-request-id": [ - "56ad1023-b070-4c5c-9dbc-cb77c37c4146" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221253Z:56ad1023-b070-4c5c-9dbc-cb77c37c4146" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94198f36-8b7f-48bc-8d6f-898eb29932ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7282" - ], - "x-ms-correlation-request-id": [ - "be8a1e57-ad39-4735-ae2c-78668166be1d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221253Z:be8a1e57-ad39-4735-ae2c-78668166be1d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38ed468f-4b17-4729-827d-9e8337d30047" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7281" - ], - "x-ms-correlation-request-id": [ - "a6495800-b0cb-4841-b319-d47057d043a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221253Z:a6495800-b0cb-4841-b319-d47057d043a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "685d93d8-de17-4237-bdfa-bfad849b06ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7280" - ], - "x-ms-correlation-request-id": [ - "eb01dda7-2c71-4acc-80eb-b5fa20f73459" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221254Z:eb01dda7-2c71-4acc-80eb-b5fa20f73459" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3d98e98-b8dd-4030-8d51-8c01dd761f3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7279" - ], - "x-ms-correlation-request-id": [ - "4fd5cce4-cfee-456e-b488-c8efdd42a51e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221254Z:4fd5cce4-cfee-456e-b488-c8efdd42a51e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c44a2451-843f-4d68-900d-92abee94c698" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7278" - ], - "x-ms-correlation-request-id": [ - "4929d66c-ba80-468b-9e0f-ca7e27959ae8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221254Z:4929d66c-ba80-468b-9e0f-ca7e27959ae8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e071ff6a-633d-46c4-b656-397f9578a8f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7277" - ], - "x-ms-correlation-request-id": [ - "47bc01a3-3f4a-4d9e-ab1b-6300b7a632d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221254Z:47bc01a3-3f4a-4d9e-ab1b-6300b7a632d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a6ec663-460d-4ea0-a031-29cc4aeb92f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7276" - ], - "x-ms-correlation-request-id": [ - "5e0e931d-f08b-41bf-83af-723e3af11b8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221254Z:5e0e931d-f08b-41bf-83af-723e3af11b8c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90b4de67-582b-4599-aa26-50896fb2d945" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7275" - ], - "x-ms-correlation-request-id": [ - "aedbcd00-ae7a-4ac8-9c5d-d71f69541b5b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221254Z:aedbcd00-ae7a-4ac8-9c5d-d71f69541b5b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "010051c2-afbc-4af6-9456-5d0748350297" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7274" - ], - "x-ms-correlation-request-id": [ - "2b6896b8-29ae-4550-bfa7-17ee2e8d27bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221255Z:2b6896b8-29ae-4550-bfa7-17ee2e8d27bb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fad2f77b-32cf-4c3f-9a09-fd44d92b7d26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7273" - ], - "x-ms-correlation-request-id": [ - "37752163-3e0d-4f8f-8898-62deeeb5e0b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221255Z:37752163-3e0d-4f8f-8898-62deeeb5e0b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f970ac43-2fff-476d-a078-67df495ee7c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7272" - ], - "x-ms-correlation-request-id": [ - "02b79f35-14ae-410b-b851-6babe821398a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221255Z:02b79f35-14ae-410b-b851-6babe821398a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ef7cd5c-c92d-4e30-80a5-ae198b17b8fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7271" - ], - "x-ms-correlation-request-id": [ - "2c23161f-5739-48b5-96a5-49dccaec6754" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221255Z:2c23161f-5739-48b5-96a5-49dccaec6754" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74f41b09-5a7b-43e2-8623-35f67f8afcec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7270" - ], - "x-ms-correlation-request-id": [ - "646dfcd3-7ea0-46f9-9546-6c023155e56a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221255Z:646dfcd3-7ea0-46f9-9546-6c023155e56a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "679b0d75-a627-491d-b1d7-dea7f22af1d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7269" - ], - "x-ms-correlation-request-id": [ - "76be1783-c0d2-486b-80d0-5addb67292a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221256Z:76be1783-c0d2-486b-80d0-5addb67292a6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ed4a574-993a-48f9-8d6c-04f41a992de7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7268" - ], - "x-ms-correlation-request-id": [ - "8cf5c28c-bdb0-4c6d-b73d-9006dfff7a33" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221256Z:8cf5c28c-bdb0-4c6d-b73d-9006dfff7a33" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f2c8cd5-bbcc-4199-8307-2af3d23ea6b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7267" - ], - "x-ms-correlation-request-id": [ - "369d255a-93c8-46ce-b79a-9782261424a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221256Z:369d255a-93c8-46ce-b79a-9782261424a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35d4fa3e-2b4c-4eef-92e0-e88f60d1cf17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7266" - ], - "x-ms-correlation-request-id": [ - "d72008e7-f062-4bc6-b6f4-cf101acfd104" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221256Z:d72008e7-f062-4bc6-b6f4-cf101acfd104" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea9473f5-e2ec-42ad-bdf8-aa16b3a94ef5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7265" - ], - "x-ms-correlation-request-id": [ - "8e1fd68f-289a-41c6-858d-49fe132d7327" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221257Z:8e1fd68f-289a-41c6-858d-49fe132d7327" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70098c56-432f-4bb0-8297-54cc3ebc1451" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7264" - ], - "x-ms-correlation-request-id": [ - "b3b3aaea-a8e2-4974-93a0-46f35844ddce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221257Z:b3b3aaea-a8e2-4974-93a0-46f35844ddce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4808ca32-839b-4525-be25-939c6aeada4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7263" - ], - "x-ms-correlation-request-id": [ - "edb0c451-9ef2-474a-86c7-27a5ee706a0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221257Z:edb0c451-9ef2-474a-86c7-27a5ee706a0d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f5a2f38-2a4b-4917-acb2-428140712e26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7262" - ], - "x-ms-correlation-request-id": [ - "0a42b23b-ae1c-4581-a023-df70030c3d51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221257Z:0a42b23b-ae1c-4581-a023-df70030c3d51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3decdbe7-dec8-43b7-80f5-cea64dc7969d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7261" - ], - "x-ms-correlation-request-id": [ - "6941fea7-3519-47fd-9966-91ac87a3ba4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221258Z:6941fea7-3519-47fd-9966-91ac87a3ba4e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e77a42d8-361c-4b62-ba33-2f5f464998c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7260" - ], - "x-ms-correlation-request-id": [ - "3cf17122-2322-44cb-99ae-bc72794fb81d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221258Z:3cf17122-2322-44cb-99ae-bc72794fb81d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10a1e4d0-6d0c-467e-8208-65c7c6e4c4ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7259" - ], - "x-ms-correlation-request-id": [ - "f5ccb823-c128-43ca-9674-2b1f3fe4a765" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221258Z:f5ccb823-c128-43ca-9674-2b1f3fe4a765" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1da2c3a1-5a4d-4d73-abaa-e5b1684ed3af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7258" - ], - "x-ms-correlation-request-id": [ - "b6e1e501-ad96-474f-aa0b-e5645393c683" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221258Z:b6e1e501-ad96-474f-aa0b-e5645393c683" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6d67e4c-85a5-4153-b202-e19c7872d947" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7257" - ], - "x-ms-correlation-request-id": [ - "9b169021-67e6-4c44-997b-6ec6ba3a970a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221258Z:9b169021-67e6-4c44-997b-6ec6ba3a970a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce63be8e-ac35-4fd5-9858-8dd90e19db05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7256" - ], - "x-ms-correlation-request-id": [ - "1f477579-0e3d-4118-9faa-20b9d5654466" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221258Z:1f477579-0e3d-4118-9faa-20b9d5654466" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3a62965-a00c-4d5c-8124-186a55f0a90a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7255" - ], - "x-ms-correlation-request-id": [ - "6b2a45c0-9fca-4981-905d-b0b0bb830fc7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221258Z:6b2a45c0-9fca-4981-905d-b0b0bb830fc7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99cf58f4-84df-480d-8616-422c15cc5b1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7254" - ], - "x-ms-correlation-request-id": [ - "cf34ef1a-771f-4c27-84dd-f9bee8561ed6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221259Z:cf34ef1a-771f-4c27-84dd-f9bee8561ed6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "331cea88-357d-449b-a019-728f5344ffa4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7253" - ], - "x-ms-correlation-request-id": [ - "7642f7b1-b109-43a2-acea-06d5a1505497" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221259Z:7642f7b1-b109-43a2-acea-06d5a1505497" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82697b97-50aa-4245-b8aa-9a18d8993260" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7252" - ], - "x-ms-correlation-request-id": [ - "d23b4402-2bf1-4f4d-884c-ecb82799c1c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221259Z:d23b4402-2bf1-4f4d-884c-ecb82799c1c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79539f1b-6253-470e-ae9f-83e4fbf4bbfe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7251" - ], - "x-ms-correlation-request-id": [ - "6c1ca4d3-a4f5-4b4b-b207-0928bdbbb767" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221259Z:6c1ca4d3-a4f5-4b4b-b207-0928bdbbb767" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eaa206aa-2547-45e4-8919-778da86f9694" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7250" - ], - "x-ms-correlation-request-id": [ - "f388d4c5-3f68-4d46-939f-c627e9d661ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221259Z:f388d4c5-3f68-4d46-939f-c627e9d661ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8c3ef0b-f30c-40de-aab1-605f94cae334" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7249" - ], - "x-ms-correlation-request-id": [ - "ad058551-2984-4621-bde8-b82ed6263e4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221300Z:ad058551-2984-4621-bde8-b82ed6263e4c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccd8ced3-f79f-42c8-91c4-cf7b289d7ae4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7248" - ], - "x-ms-correlation-request-id": [ - "a21fb29e-5e46-4ed8-a131-9b61629a9d59" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221300Z:a21fb29e-5e46-4ed8-a131-9b61629a9d59" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a5deba4-03cc-4943-b257-4fda1868d5a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7247" - ], - "x-ms-correlation-request-id": [ - "241ea1da-27e2-48a6-bac4-61017158e15d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221300Z:241ea1da-27e2-48a6-bac4-61017158e15d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e04e45b2-3cda-4d3f-b8a4-d17081c4ecad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7246" - ], - "x-ms-correlation-request-id": [ - "8a4707d6-d37e-4ac7-883b-684bdda6bf89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221300Z:8a4707d6-d37e-4ac7-883b-684bdda6bf89" - ], - "Date": [ - "Tue, 29 Aug 2017 22:12:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f144505-4cc1-4aa2-9147-8eb5fc8386a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7245" - ], - "x-ms-correlation-request-id": [ - "8c7044cd-1526-4060-8f7a-c2a69adb7dc3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221300Z:8c7044cd-1526-4060-8f7a-c2a69adb7dc3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95753c0e-3a7b-4bfb-baa1-93a9f10992f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7244" - ], - "x-ms-correlation-request-id": [ - "497825dc-d011-40b9-820b-b3751dc2a307" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221301Z:497825dc-d011-40b9-820b-b3751dc2a307" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb3a82aa-78d9-422a-8444-6696a0c85146" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7243" - ], - "x-ms-correlation-request-id": [ - "d1fae87a-383a-48be-85a7-a44430c664bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221301Z:d1fae87a-383a-48be-85a7-a44430c664bf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d17af34-5826-4444-8404-2c24d4c0528e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7242" - ], - "x-ms-correlation-request-id": [ - "2681566c-807e-46f0-95c6-275033d483bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221301Z:2681566c-807e-46f0-95c6-275033d483bd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2cd1a2ae-3a1e-4139-92aa-24df4fc7814b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7241" - ], - "x-ms-correlation-request-id": [ - "496b8217-aa08-4b80-86c6-f8f6ea363363" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221301Z:496b8217-aa08-4b80-86c6-f8f6ea363363" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dbe5577c-99fb-4652-9d91-7f0982f6d51d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7240" - ], - "x-ms-correlation-request-id": [ - "970559e2-03d0-4d9d-8fb2-e464fa66c255" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221301Z:970559e2-03d0-4d9d-8fb2-e464fa66c255" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4096007e-ea15-440f-98b4-1c9d38e0c081" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7239" - ], - "x-ms-correlation-request-id": [ - "8e2a54df-4ca1-4163-b473-a6537f556ce8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221302Z:8e2a54df-4ca1-4163-b473-a6537f556ce8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "210ece01-5f47-413c-977b-191c7a0a7d0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7238" - ], - "x-ms-correlation-request-id": [ - "46dc7775-e9d4-41fc-9d94-776001675e45" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221302Z:46dc7775-e9d4-41fc-9d94-776001675e45" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1dd36971-e6e9-4d46-a047-e850781a3edd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7237" - ], - "x-ms-correlation-request-id": [ - "0227fe5a-aecf-48af-985d-7315adb08bb2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221302Z:0227fe5a-aecf-48af-985d-7315adb08bb2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a18d594-e3a0-4ecf-828c-cc8f8f2bbf6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7236" - ], - "x-ms-correlation-request-id": [ - "0feb8b1d-f244-45d7-9169-cb9784187fc1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221302Z:0feb8b1d-f244-45d7-9169-cb9784187fc1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5534428-dd6a-42b6-be41-df30c2e1d94f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7235" - ], - "x-ms-correlation-request-id": [ - "883c2e67-62e5-416e-b77a-5ce4e690b390" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221302Z:883c2e67-62e5-416e-b77a-5ce4e690b390" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d25c7fd1-55ca-478c-83ce-a934293478ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7234" - ], - "x-ms-correlation-request-id": [ - "ab20ab6e-d0d2-4569-bb74-3deb5213a11a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221302Z:ab20ab6e-d0d2-4569-bb74-3deb5213a11a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7cbfc713-c836-437f-93b6-51f7cfb1a9aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7233" - ], - "x-ms-correlation-request-id": [ - "65c61a41-fc21-4a80-9da0-f8f1bc372afc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221303Z:65c61a41-fc21-4a80-9da0-f8f1bc372afc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8aec4133-efec-44f1-97e5-5c8e41f0feb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7232" - ], - "x-ms-correlation-request-id": [ - "2a2c845c-fe14-432e-8796-dd9e3b707835" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221303Z:2a2c845c-fe14-432e-8796-dd9e3b707835" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fd39184-ae0a-4042-8988-1cf3aac12f88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7231" - ], - "x-ms-correlation-request-id": [ - "fc6d23ee-bb50-4692-9edf-3400619a6c70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221303Z:fc6d23ee-bb50-4692-9edf-3400619a6c70" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c9a1b75-9899-4335-9ac1-1c3fc8436117" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7230" - ], - "x-ms-correlation-request-id": [ - "4d753625-39d8-416b-817a-36f68f4f43fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221303Z:4d753625-39d8-416b-817a-36f68f4f43fc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83193342-5750-4561-a3cb-4902bfa4d944" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7229" - ], - "x-ms-correlation-request-id": [ - "44947863-253d-4877-b436-e713d609be9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221303Z:44947863-253d-4877-b436-e713d609be9d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e9c12a61-94ce-4740-89d9-0ce532f1096c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7228" - ], - "x-ms-correlation-request-id": [ - "d03ba708-d819-424b-b953-c4460f2703ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221304Z:d03ba708-d819-424b-b953-c4460f2703ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6ff16d3-f84e-484a-955a-0fadf7a389bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7227" - ], - "x-ms-correlation-request-id": [ - "6d20be7c-22c4-4be9-b4c8-d0e2600f37e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221304Z:6d20be7c-22c4-4be9-b4c8-d0e2600f37e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c6bf724-a6ca-4dae-90a8-d274977ef528" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7226" - ], - "x-ms-correlation-request-id": [ - "a4fdc0e3-5411-4808-baff-e869557711be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221304Z:a4fdc0e3-5411-4808-baff-e869557711be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c4ee5b0-8756-4ced-9d99-23e1cba92a06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7225" - ], - "x-ms-correlation-request-id": [ - "91cfa363-9fc5-4d64-8391-8dbdc1f14fae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221304Z:91cfa363-9fc5-4d64-8391-8dbdc1f14fae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28d97d25-84f8-4f26-95f7-235a8250da18" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7224" - ], - "x-ms-correlation-request-id": [ - "f8a8f102-c307-457d-9cd5-17094eaa1885" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221304Z:f8a8f102-c307-457d-9cd5-17094eaa1885" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85c3a033-955a-4708-9323-0ba3328a68ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7223" - ], - "x-ms-correlation-request-id": [ - "3b0d02a7-c8c3-4b34-a01e-72f97e5dbb84" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221305Z:3b0d02a7-c8c3-4b34-a01e-72f97e5dbb84" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8afe3c1-b88e-4dd5-a014-7448b669eceb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7222" - ], - "x-ms-correlation-request-id": [ - "93ef0c16-bf86-4d1a-9de1-15e18ed37332" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221305Z:93ef0c16-bf86-4d1a-9de1-15e18ed37332" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04aabe04-8613-47b4-be57-d794e9765a9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7221" - ], - "x-ms-correlation-request-id": [ - "192eab49-8959-4da6-a097-303fb10e6fb6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221305Z:192eab49-8959-4da6-a097-303fb10e6fb6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f4181fa-b5e2-48ad-909a-514fd5b656ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7220" - ], - "x-ms-correlation-request-id": [ - "c592c708-d812-4e1b-8221-80c621728567" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221305Z:c592c708-d812-4e1b-8221-80c621728567" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6da6735f-f746-43b7-8d64-43f1b293c2ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7219" - ], - "x-ms-correlation-request-id": [ - "55f090d4-f56b-4498-8b02-cb4133a6223e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221305Z:55f090d4-f56b-4498-8b02-cb4133a6223e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0260246a-d84f-48ec-bd9c-a55b3e4b141d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7218" - ], - "x-ms-correlation-request-id": [ - "21b0b623-d3ba-4f44-9dfc-04e62282de51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221306Z:21b0b623-d3ba-4f44-9dfc-04e62282de51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4827e6ae-a0a6-4276-be38-244e3be06239" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7217" - ], - "x-ms-correlation-request-id": [ - "5f617603-f858-4f84-8474-efdb41991b3a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221306Z:5f617603-f858-4f84-8474-efdb41991b3a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1cb0f00b-4c4a-4881-85b6-35ea1d69bae1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7216" - ], - "x-ms-correlation-request-id": [ - "f695e11a-6fb7-44d4-beae-cbdf59029a88" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221306Z:f695e11a-6fb7-44d4-beae-cbdf59029a88" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f02506a-e980-4b89-9a32-819f5e40dd99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7215" - ], - "x-ms-correlation-request-id": [ - "17b7b324-1b7e-46bf-9b07-f01b2d7b824b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221306Z:17b7b324-1b7e-46bf-9b07-f01b2d7b824b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a864cec-2042-4269-90d3-4345ba418cfc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7214" - ], - "x-ms-correlation-request-id": [ - "739932fb-a1dc-48ff-a2b6-50cc64c9b05f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221306Z:739932fb-a1dc-48ff-a2b6-50cc64c9b05f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "334baaa8-9680-4a6f-95d4-2ab78dd16e57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7213" - ], - "x-ms-correlation-request-id": [ - "a6b2a2db-ae52-43c3-b6fe-768d83fb7715" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221306Z:a6b2a2db-ae52-43c3-b6fe-768d83fb7715" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d18306ed-7d9c-4fa5-b115-292d165c465a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7212" - ], - "x-ms-correlation-request-id": [ - "f660a1b9-9146-4278-bf5f-c29933a408e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221306Z:f660a1b9-9146-4278-bf5f-c29933a408e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71b3de46-6430-4807-9393-f43ecd210b85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7211" - ], - "x-ms-correlation-request-id": [ - "f2c9cbcd-74cd-4f74-ab76-56b8d17cae40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221307Z:f2c9cbcd-74cd-4f74-ab76-56b8d17cae40" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "163c301e-b118-48e9-a53f-27f5cfd2ad4e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7210" - ], - "x-ms-correlation-request-id": [ - "4d50f559-85f5-4eda-94fc-bf926ac90345" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221307Z:4d50f559-85f5-4eda-94fc-bf926ac90345" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c69f914f-62e0-4391-bb49-e63bdb728d5f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7209" - ], - "x-ms-correlation-request-id": [ - "98ecef10-4f43-4c1e-bf59-220b56d67972" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221307Z:98ecef10-4f43-4c1e-bf59-220b56d67972" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a230cc65-4122-4b47-a678-e6f198e3ec59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7208" - ], - "x-ms-correlation-request-id": [ - "66dade0b-26e2-4b6d-b622-38b6fab3eb20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221307Z:66dade0b-26e2-4b6d-b622-38b6fab3eb20" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e3d7786-ff90-40c3-b7ec-82d3adc6d42e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7207" - ], - "x-ms-correlation-request-id": [ - "90d6e787-9672-48e3-b40b-78af8787eb3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221307Z:90d6e787-9672-48e3-b40b-78af8787eb3e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b2aeaf2-16a7-4169-9747-fa5323b4214b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7206" - ], - "x-ms-correlation-request-id": [ - "eec53667-995b-4beb-a2dc-20b0740a5ff7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221308Z:eec53667-995b-4beb-a2dc-20b0740a5ff7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "519cec21-57f0-4d5a-9ef7-a22de1810373" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7205" - ], - "x-ms-correlation-request-id": [ - "1c00c289-5f35-46c1-b893-69d69cfcc1f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221308Z:1c00c289-5f35-46c1-b893-69d69cfcc1f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d025d4d-1055-4baf-bf0c-4808c98cef6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7204" - ], - "x-ms-correlation-request-id": [ - "28035000-d13d-43e9-b979-cef32970c75f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221308Z:28035000-d13d-43e9-b979-cef32970c75f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7fbf5802-b22e-4320-8e63-be9b1b44d08a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7203" - ], - "x-ms-correlation-request-id": [ - "9ca82d2a-44b9-4dba-8179-1665d05116d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221308Z:9ca82d2a-44b9-4dba-8179-1665d05116d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d330220-e79c-4757-8cad-6dfcd58847a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7202" - ], - "x-ms-correlation-request-id": [ - "b3f7a65b-c0bf-4a21-b5e6-783e6aaf52a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221308Z:b3f7a65b-c0bf-4a21-b5e6-783e6aaf52a9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3a98911-5508-4762-920e-5dd8a24550e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7201" - ], - "x-ms-correlation-request-id": [ - "7a12aea0-0b7f-4432-b5f5-17fda3a106f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221308Z:7a12aea0-0b7f-4432-b5f5-17fda3a106f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "64f480ba-c7b4-4195-8f9d-84255aa36bd5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7200" - ], - "x-ms-correlation-request-id": [ - "9f6315eb-ecd0-485b-938a-13155e2cf78d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221308Z:9f6315eb-ecd0-485b-938a-13155e2cf78d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3cca0633-4cf8-4aad-aee4-728d328ca62d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7199" - ], - "x-ms-correlation-request-id": [ - "7be2ec7e-f506-4a0f-a6ac-73a9b58614db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221309Z:7be2ec7e-f506-4a0f-a6ac-73a9b58614db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3828f3d-553f-4821-995f-45e23f10634d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7198" - ], - "x-ms-correlation-request-id": [ - "b1974f5c-a5ed-4876-a1c0-8f893660e031" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221309Z:b1974f5c-a5ed-4876-a1c0-8f893660e031" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6366dd4-f1af-48f4-ac8d-8dbaa25c5a51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7197" - ], - "x-ms-correlation-request-id": [ - "b3791ea7-e40e-48ca-ac35-d959f2d3607d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221309Z:b3791ea7-e40e-48ca-ac35-d959f2d3607d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cebfa495-dc7a-4e44-9be7-bdeacf7235e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7196" - ], - "x-ms-correlation-request-id": [ - "abd5082a-ca27-4dfc-8a12-b94424c068c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221309Z:abd5082a-ca27-4dfc-8a12-b94424c068c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "add42ab5-12c9-4416-8d71-9b383a0a2019" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7195" - ], - "x-ms-correlation-request-id": [ - "75062819-1de7-4111-b420-0fd529b53f91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221309Z:75062819-1de7-4111-b420-0fd529b53f91" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bd5ba3fc-8e09-428d-bef3-28786c611b05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7194" - ], - "x-ms-correlation-request-id": [ - "85b9485e-1505-4c09-ba71-6a8dcb66ae83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221309Z:85b9485e-1505-4c09-ba71-6a8dcb66ae83" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b16337a9-b0c9-40c9-862e-6797b3ed008f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7193" - ], - "x-ms-correlation-request-id": [ - "23537f07-d5c8-4d12-9d13-ab7476665953" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221310Z:23537f07-d5c8-4d12-9d13-ab7476665953" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c4137106-798b-4d2a-8103-e6297a297c2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7192" - ], - "x-ms-correlation-request-id": [ - "f193bef1-5439-49f8-b061-e3cffbb56683" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221310Z:f193bef1-5439-49f8-b061-e3cffbb56683" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88bf595f-ce59-44d3-8461-44126d28519b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7191" - ], - "x-ms-correlation-request-id": [ - "8d023bec-6287-4ca9-b6b8-95eba46f2b6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221310Z:8d023bec-6287-4ca9-b6b8-95eba46f2b6f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4010f94d-e510-487d-9323-98526371959e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7190" - ], - "x-ms-correlation-request-id": [ - "12f4c4d4-527b-4677-9c25-b1d76a11a3d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221310Z:12f4c4d4-527b-4677-9c25-b1d76a11a3d0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1289e54-f38a-482e-9046-50903ee9f790" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7189" - ], - "x-ms-correlation-request-id": [ - "bff877a1-645e-4f3e-8c93-e29a2d52f01e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221310Z:bff877a1-645e-4f3e-8c93-e29a2d52f01e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cbe4f9b4-d534-4539-a640-a2c427ebf443" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7188" - ], - "x-ms-correlation-request-id": [ - "af55a125-0f83-4ebc-8c8e-230fb766b9a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221311Z:af55a125-0f83-4ebc-8c8e-230fb766b9a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0c7b03b-8a23-4ea6-8d2a-0295ea136252" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7187" - ], - "x-ms-correlation-request-id": [ - "55986348-6da7-44cc-99cd-0a8cedb05a05" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221311Z:55986348-6da7-44cc-99cd-0a8cedb05a05" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1143ab7-a33e-4ca9-9296-3ddbcfd9ff21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7186" - ], - "x-ms-correlation-request-id": [ - "290e855a-740f-4795-8eee-9d573ee2f9eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221311Z:290e855a-740f-4795-8eee-9d573ee2f9eb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56416266-2e88-4903-bb42-5a361bdd5b2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7185" - ], - "x-ms-correlation-request-id": [ - "1e8b07e9-3ca2-47ac-b8b1-4b17140d79e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221311Z:1e8b07e9-3ca2-47ac-b8b1-4b17140d79e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a69bcc8-4889-4516-a59f-01a24590f70e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7184" - ], - "x-ms-correlation-request-id": [ - "19ec572f-5c41-43f4-8a4a-93a5cd37773f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221311Z:19ec572f-5c41-43f4-8a4a-93a5cd37773f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d6a46b9-389b-4707-8a28-f8697bd34a00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7183" - ], - "x-ms-correlation-request-id": [ - "e6382fb4-daea-419d-a595-f155d92ba1a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221311Z:e6382fb4-daea-419d-a595-f155d92ba1a4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c66dd9c5-2f2a-46ec-85dc-cad7aa8928f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7182" - ], - "x-ms-correlation-request-id": [ - "4053f711-7814-41ba-996d-2a1c3375bcf0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221312Z:4053f711-7814-41ba-996d-2a1c3375bcf0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c444b75-30f3-4e21-96c2-b825f3d6b33a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7181" - ], - "x-ms-correlation-request-id": [ - "b48bdd5e-fb41-4d99-88a8-b174fcc76a20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221312Z:b48bdd5e-fb41-4d99-88a8-b174fcc76a20" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "baad932d-f7cd-4db7-9684-20ac77130cbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7180" - ], - "x-ms-correlation-request-id": [ - "109dc6d9-44d1-4144-bf96-c3261a88c36a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221312Z:109dc6d9-44d1-4144-bf96-c3261a88c36a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53068fab-dcdd-4c74-ae28-884ca2eda1c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7179" - ], - "x-ms-correlation-request-id": [ - "6a2edc37-8fa0-4608-ab89-59f781d286f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221312Z:6a2edc37-8fa0-4608-ab89-59f781d286f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "178dc80f-614e-4aef-9511-49a4fdc22849" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7178" - ], - "x-ms-correlation-request-id": [ - "8db00dfc-6cf2-4797-9e41-172b64082af3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221312Z:8db00dfc-6cf2-4797-9e41-172b64082af3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "26de1ccb-71df-4dcd-a9d5-3150a1e90379" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7177" - ], - "x-ms-correlation-request-id": [ - "61cccf16-5a53-4925-a8c8-85d9817abe15" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221312Z:61cccf16-5a53-4925-a8c8-85d9817abe15" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f06a41d-a39d-4305-9363-b68e10cae684" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7176" - ], - "x-ms-correlation-request-id": [ - "3211089b-e8ac-4ad8-a628-c499aef33e48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221312Z:3211089b-e8ac-4ad8-a628-c499aef33e48" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "697b3d9e-ddea-404b-a7fc-506951b6066c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7175" - ], - "x-ms-correlation-request-id": [ - "cd476e8f-7cc8-41a9-b588-8b8b708c3409" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221313Z:cd476e8f-7cc8-41a9-b588-8b8b708c3409" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8957406-bb36-4a4b-8893-cf9029089171" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7174" - ], - "x-ms-correlation-request-id": [ - "2a511c20-8189-4744-bb16-9154cf60973a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221313Z:2a511c20-8189-4744-bb16-9154cf60973a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "15d1e7ac-5335-4d62-b910-e1b828c44d5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7173" - ], - "x-ms-correlation-request-id": [ - "6e183891-1937-4a29-81d8-b74b5f1e983b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221313Z:6e183891-1937-4a29-81d8-b74b5f1e983b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cce462ae-e4c8-4d00-b7d0-3ffbfd4d1a69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7172" - ], - "x-ms-correlation-request-id": [ - "9afc95b7-91f6-4bae-8a90-d9b29b535a48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221313Z:9afc95b7-91f6-4bae-8a90-d9b29b535a48" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2fe760a-8852-454a-8723-474cfbe410d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7171" - ], - "x-ms-correlation-request-id": [ - "94e38736-6a51-4959-92f3-5268db0b433a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221313Z:94e38736-6a51-4959-92f3-5268db0b433a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "459d4ee9-24eb-4a8d-97aa-9619e426dc6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7170" - ], - "x-ms-correlation-request-id": [ - "6586a0a8-3185-47e3-ac21-65ae6cddab8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221313Z:6586a0a8-3185-47e3-ac21-65ae6cddab8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "daf905d9-ff5c-460b-9c16-75321919f138" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7169" - ], - "x-ms-correlation-request-id": [ - "9e4bd552-e727-4420-8460-0ed979c89399" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221313Z:9e4bd552-e727-4420-8460-0ed979c89399" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7de1d3e-e1fb-4087-a0b1-d491241ccd9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7168" - ], - "x-ms-correlation-request-id": [ - "a778be69-1809-4aeb-87a2-375a79081821" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221314Z:a778be69-1809-4aeb-87a2-375a79081821" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92f116ee-d293-4c5c-9d25-aa249d2b2a95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7167" - ], - "x-ms-correlation-request-id": [ - "682c4bf9-218b-46b1-ab4e-66716addb5a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221314Z:682c4bf9-218b-46b1-ab4e-66716addb5a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0502c47c-bb26-4237-9cf1-65d52a118ca1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7166" - ], - "x-ms-correlation-request-id": [ - "502dddb1-018e-47e3-927f-c3b5a17cce29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221314Z:502dddb1-018e-47e3-927f-c3b5a17cce29" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02ea1790-c220-4dd5-9fc5-f132a463781a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7165" - ], - "x-ms-correlation-request-id": [ - "9ff6ec5b-2f09-48a8-b513-e158e4785a80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221314Z:9ff6ec5b-2f09-48a8-b513-e158e4785a80" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08bacd00-bcb9-4cef-b5bd-3214f44f3d54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7164" - ], - "x-ms-correlation-request-id": [ - "06b00582-62a5-45d6-91a8-ac19b7de9847" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221314Z:06b00582-62a5-45d6-91a8-ac19b7de9847" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20dc281d-bf8e-4dd4-8a76-84e4c09d3f82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7163" - ], - "x-ms-correlation-request-id": [ - "162cdcc7-325c-4aa8-b773-8119e7687864" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221315Z:162cdcc7-325c-4aa8-b773-8119e7687864" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cbbdcd51-50b1-41be-8a01-86d9ef9913eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7162" - ], - "x-ms-correlation-request-id": [ - "290fc903-ac5e-4849-9135-e5668b049bd6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221315Z:290fc903-ac5e-4849-9135-e5668b049bd6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d586d4d4-911d-46f1-a85a-565ecf5594e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7161" - ], - "x-ms-correlation-request-id": [ - "15c27041-a403-43bd-9ed6-d96105fed7a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221315Z:15c27041-a403-43bd-9ed6-d96105fed7a0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f75ead57-ee8f-4be5-b9e9-e9eb444307b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7160" - ], - "x-ms-correlation-request-id": [ - "6ab3b6d7-07e1-4b7b-a4c6-840f2b4d77f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221315Z:6ab3b6d7-07e1-4b7b-a4c6-840f2b4d77f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ed2fb9b-7795-4688-b518-eb28aef176e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7159" - ], - "x-ms-correlation-request-id": [ - "f66b9c10-d9dd-4ae1-ae98-aaf922bfddaa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221315Z:f66b9c10-d9dd-4ae1-ae98-aaf922bfddaa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "371d1e58-cb54-48c3-b4dd-f6a836e33849" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7158" - ], - "x-ms-correlation-request-id": [ - "6ca0ca81-6295-4cc5-a2c0-52d17152d522" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221315Z:6ca0ca81-6295-4cc5-a2c0-52d17152d522" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8417589f-d30f-41b5-a194-504d3353c98a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7157" - ], - "x-ms-correlation-request-id": [ - "70c99630-a130-4882-9728-f0c76f47ac4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221316Z:70c99630-a130-4882-9728-f0c76f47ac4b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f9ee132-b99b-452e-ab57-d1f8caeb1756" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7156" - ], - "x-ms-correlation-request-id": [ - "de16a0ee-071a-496a-9c53-e88eaef4bf8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221316Z:de16a0ee-071a-496a-9c53-e88eaef4bf8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "22cbb11b-c492-41d9-993e-fa6bcb7f741a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7155" - ], - "x-ms-correlation-request-id": [ - "cd43632b-88e1-4293-924d-1c4036487242" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221316Z:cd43632b-88e1-4293-924d-1c4036487242" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d89db176-3175-4b25-8d10-82e430a24072" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7154" - ], - "x-ms-correlation-request-id": [ - "40b09fce-c214-4951-abcd-d6ed2b8dba7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221316Z:40b09fce-c214-4951-abcd-d6ed2b8dba7e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5cd435a-f0c4-48b0-afab-26f4e3c6c543" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7153" - ], - "x-ms-correlation-request-id": [ - "09efcc2e-8e32-4d03-930d-3c0c5e73ec04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221316Z:09efcc2e-8e32-4d03-930d-3c0c5e73ec04" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7634401-58cd-4a49-9e4f-2d64c8a97a2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7152" - ], - "x-ms-correlation-request-id": [ - "01db72d4-9a56-4854-9379-71bd7cf68238" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221316Z:01db72d4-9a56-4854-9379-71bd7cf68238" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8f1a6e3-e84b-40bb-b3f0-cf6f0d31e438" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7151" - ], - "x-ms-correlation-request-id": [ - "803dabc7-2000-4cba-9bee-3c144dae18e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221317Z:803dabc7-2000-4cba-9bee-3c144dae18e1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7c67158-79cd-4240-be5b-dab662b67df1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7150" - ], - "x-ms-correlation-request-id": [ - "a29c7fdb-ee44-41ba-ba8f-ad3da3409532" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221317Z:a29c7fdb-ee44-41ba-ba8f-ad3da3409532" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2d06ea3c-1dd1-4d0c-a144-f5be82358639" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7149" - ], - "x-ms-correlation-request-id": [ - "97271d7c-cf9d-48fc-b8bf-9d4b8fc39df7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221317Z:97271d7c-cf9d-48fc-b8bf-9d4b8fc39df7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "613c17f8-963f-40a0-bc2b-eab559edaad5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7148" - ], - "x-ms-correlation-request-id": [ - "273b0c20-8904-4a0c-8636-4c758df99d7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221317Z:273b0c20-8904-4a0c-8636-4c758df99d7e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f4ad0d6-80b9-4c9b-8d6f-ddd65992573b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7147" - ], - "x-ms-correlation-request-id": [ - "8b22ae26-ea9b-43dd-bd2d-76f1a182d965" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221317Z:8b22ae26-ea9b-43dd-bd2d-76f1a182d965" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "562f6940-675f-44f0-b0f3-56ae9a3abc72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7146" - ], - "x-ms-correlation-request-id": [ - "8421ea8c-5d7e-4cde-8370-b7892139077a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221317Z:8421ea8c-5d7e-4cde-8370-b7892139077a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93560e10-23a0-41cc-bb7f-7c277885d737" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7145" - ], - "x-ms-correlation-request-id": [ - "49ebbfaf-6b5c-4227-9df7-7f8df85fdffe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221317Z:49ebbfaf-6b5c-4227-9df7-7f8df85fdffe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1b2fed2-d2e0-402b-abe0-1bf60bd632d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7144" - ], - "x-ms-correlation-request-id": [ - "7a8159b4-ae41-4141-8416-132be944ece1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221318Z:7a8159b4-ae41-4141-8416-132be944ece1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "763087b3-aedd-4738-8422-556de5f9beea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7143" - ], - "x-ms-correlation-request-id": [ - "ffc391f6-4768-47dc-98e4-6e1e5bc96104" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221318Z:ffc391f6-4768-47dc-98e4-6e1e5bc96104" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84fb19bc-6bd1-494a-bb23-aac1f9a8ee1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7142" - ], - "x-ms-correlation-request-id": [ - "df5d87a5-5c69-45bb-980d-9e08c64f8128" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221318Z:df5d87a5-5c69-45bb-980d-9e08c64f8128" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57987e37-d054-42d1-bf7b-c0c9ae35e7aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7141" - ], - "x-ms-correlation-request-id": [ - "bfece8a0-af25-48fe-b3cb-2cf062024671" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221318Z:bfece8a0-af25-48fe-b3cb-2cf062024671" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad35e8dc-1436-4f8f-b0ee-057ad23eeeef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7140" - ], - "x-ms-correlation-request-id": [ - "a9ecaee7-680a-400f-8ce5-b3f74ec8e148" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221318Z:a9ecaee7-680a-400f-8ce5-b3f74ec8e148" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "999b2b7b-bf71-4243-8e47-45a9d2d04d30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7139" - ], - "x-ms-correlation-request-id": [ - "cf280529-1ad9-4fb3-a8e5-cb668a923cd6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221319Z:cf280529-1ad9-4fb3-a8e5-cb668a923cd6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "197a400d-edaf-47e9-9414-f2d365417fc9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7138" - ], - "x-ms-correlation-request-id": [ - "b30be41f-9db6-44cb-b779-26f396c8d76e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221319Z:b30be41f-9db6-44cb-b779-26f396c8d76e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b076e3f5-696e-410e-842d-759c5469cd45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7137" - ], - "x-ms-correlation-request-id": [ - "33d6a914-04e8-4943-8690-6c1d83df1667" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221319Z:33d6a914-04e8-4943-8690-6c1d83df1667" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "edae989e-bd7e-4119-bb95-97750758d29b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7136" - ], - "x-ms-correlation-request-id": [ - "7a03d644-b556-4986-9d98-1164294d8562" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221319Z:7a03d644-b556-4986-9d98-1164294d8562" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90b70070-d093-4894-b79a-7c433ea85f7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7135" - ], - "x-ms-correlation-request-id": [ - "28d46cd2-87de-44af-81b0-720b8d018929" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221320Z:28d46cd2-87de-44af-81b0-720b8d018929" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f270cf5c-72b8-4163-9837-4e7290e92e1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7134" - ], - "x-ms-correlation-request-id": [ - "5efb71dd-9028-4e52-a212-2bb3c3422767" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221320Z:5efb71dd-9028-4e52-a212-2bb3c3422767" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47fa889b-9559-46b3-a88e-37a224574190" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7133" - ], - "x-ms-correlation-request-id": [ - "a15eb27d-4d46-437b-82da-18070263b41f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221320Z:a15eb27d-4d46-437b-82da-18070263b41f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ecd234a4-bbb1-4646-b947-3b8ecd49e148" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7132" - ], - "x-ms-correlation-request-id": [ - "013a4275-797e-4839-ab71-37c9fde46ea3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221320Z:013a4275-797e-4839-ab71-37c9fde46ea3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "540ce7c5-4566-4e81-b325-1fac14e8736f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7131" - ], - "x-ms-correlation-request-id": [ - "a82f8de9-5509-4077-a710-6dccf141228a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221320Z:a82f8de9-5509-4077-a710-6dccf141228a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8e3ab9ba-3e79-476c-9978-0a10457b9f01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7130" - ], - "x-ms-correlation-request-id": [ - "9cf805ea-3ffb-4ac8-bb27-f1a740887515" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221320Z:9cf805ea-3ffb-4ac8-bb27-f1a740887515" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4532015a-1b14-4253-8a17-837e5324a183" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7129" - ], - "x-ms-correlation-request-id": [ - "34f4e608-d27c-4567-8e02-8d8edd505dde" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221321Z:34f4e608-d27c-4567-8e02-8d8edd505dde" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9bac1f35-b99c-45b2-b9a3-1fa6efd9a90d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7128" - ], - "x-ms-correlation-request-id": [ - "b905eea4-d8cb-4fc6-9980-cdf872369212" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221321Z:b905eea4-d8cb-4fc6-9980-cdf872369212" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e676edb-f041-4baf-aac5-f89dd6a75947" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7127" - ], - "x-ms-correlation-request-id": [ - "31a114cd-7472-440f-8746-565d1a77b06c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221321Z:31a114cd-7472-440f-8746-565d1a77b06c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a11c0aa-edd5-43ab-93d2-19d39dd79c36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7126" - ], - "x-ms-correlation-request-id": [ - "9be9f5f2-8795-47bc-a237-3a7f6965756a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221321Z:9be9f5f2-8795-47bc-a237-3a7f6965756a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97aa4ac1-6e19-4d57-a899-0268ecf117c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7125" - ], - "x-ms-correlation-request-id": [ - "866a152f-fbc3-4893-9613-3491557fa23f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221321Z:866a152f-fbc3-4893-9613-3491557fa23f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16d9664f-db91-41c8-9270-2ca063dc9c32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7124" - ], - "x-ms-correlation-request-id": [ - "ac8f7e97-7072-41d8-9bfa-899348653616" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221322Z:ac8f7e97-7072-41d8-9bfa-899348653616" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6db046ef-c954-4c49-ae0a-3034c7a92066" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7123" - ], - "x-ms-correlation-request-id": [ - "c1242f19-e39a-40e0-90cc-a2cc09b1e251" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221322Z:c1242f19-e39a-40e0-90cc-a2cc09b1e251" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06020e0c-8fb1-46a1-ba83-6a43f97d1ab9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7122" - ], - "x-ms-correlation-request-id": [ - "e29f7a5b-d886-4d01-ac64-9239ad9f6a0e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221322Z:e29f7a5b-d886-4d01-ac64-9239ad9f6a0e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40f2f66c-6aae-44f5-94bf-a26b9b1610ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7121" - ], - "x-ms-correlation-request-id": [ - "96192599-370b-4798-b2f3-4ba1d022bd45" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221322Z:96192599-370b-4798-b2f3-4ba1d022bd45" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "599cb9f7-dc65-4b57-a921-67c69d39840b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7120" - ], - "x-ms-correlation-request-id": [ - "34e41cc0-0a50-4759-bb74-936d104cb1ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221322Z:34e41cc0-0a50-4759-bb74-936d104cb1ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bd3397d-4897-4842-bd0a-287396d49ed5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7119" - ], - "x-ms-correlation-request-id": [ - "b05f8696-12cf-43be-a268-994a948da265" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221322Z:b05f8696-12cf-43be-a268-994a948da265" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b8a83d4-79b6-4a46-8550-20c6989e1ef2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7118" - ], - "x-ms-correlation-request-id": [ - "72777ffc-99b7-4e29-ae56-f13758c9a3d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221323Z:72777ffc-99b7-4e29-ae56-f13758c9a3d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac6b3b0d-7c9e-4ca0-a27c-73abccb9fc13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7117" - ], - "x-ms-correlation-request-id": [ - "1ada5d6c-917c-4507-ba06-7e7901b0cf04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221323Z:1ada5d6c-917c-4507-ba06-7e7901b0cf04" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20757d9c-2d41-4f0d-b7b9-1d2c37ff6675" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7116" - ], - "x-ms-correlation-request-id": [ - "5ebe402f-17ee-4e06-979c-7e93b5531cbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221323Z:5ebe402f-17ee-4e06-979c-7e93b5531cbf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9def5560-3357-48c7-86cf-d17d86803b7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7115" - ], - "x-ms-correlation-request-id": [ - "8574bc25-9f69-44af-b37c-46df6f95b59c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221323Z:8574bc25-9f69-44af-b37c-46df6f95b59c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1ec60d8-0c04-403e-93b6-f85d234ca230" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7114" - ], - "x-ms-correlation-request-id": [ - "94074510-5100-4ee4-b358-8af7a92ddabb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221323Z:94074510-5100-4ee4-b358-8af7a92ddabb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82d6a2c4-a1e4-4cde-93c7-42112e87e96f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7113" - ], - "x-ms-correlation-request-id": [ - "d26a7d31-6796-4cc0-8b8f-a1d6f55cf492" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221323Z:d26a7d31-6796-4cc0-8b8f-a1d6f55cf492" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "670a0107-004a-41f8-9281-4d0d10faef6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7112" - ], - "x-ms-correlation-request-id": [ - "491d4ad9-d08b-480e-b3f1-dcb0e0b91950" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221323Z:491d4ad9-d08b-480e-b3f1-dcb0e0b91950" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24a58002-e745-4de3-bd08-982becf8a97a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7111" - ], - "x-ms-correlation-request-id": [ - "a9895580-6d90-48f4-9c9f-f23050d22504" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221324Z:a9895580-6d90-48f4-9c9f-f23050d22504" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ffccff9-fa95-46f3-a422-5ad2c8fddcd5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7110" - ], - "x-ms-correlation-request-id": [ - "8ddad354-e52c-416c-8252-4262f8743881" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221324Z:8ddad354-e52c-416c-8252-4262f8743881" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67298f2c-04a5-406e-9426-127e67955e36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7109" - ], - "x-ms-correlation-request-id": [ - "db2378d7-6102-4d32-9147-d7b965c8896b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221324Z:db2378d7-6102-4d32-9147-d7b965c8896b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f3334bf-2995-4a9a-8b1f-3d9f4735da2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7108" - ], - "x-ms-correlation-request-id": [ - "d9c4a491-2e3f-4cae-a6bb-ce66defdb8f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221324Z:d9c4a491-2e3f-4cae-a6bb-ce66defdb8f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2cd5d5c7-184b-4982-81e6-770fc0652928" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7107" - ], - "x-ms-correlation-request-id": [ - "fea954cb-7880-4703-9ed9-a461bc2bf157" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221324Z:fea954cb-7880-4703-9ed9-a461bc2bf157" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73e9017e-bb9c-4030-86c2-bb91047c53bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7106" - ], - "x-ms-correlation-request-id": [ - "cd479917-2836-4902-a34a-6cd3b6bc567b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221324Z:cd479917-2836-4902-a34a-6cd3b6bc567b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "253e1c5e-d2cd-4da9-b690-2b687acee3a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7105" - ], - "x-ms-correlation-request-id": [ - "9d83ccc8-5942-4616-9803-1b20e35d9c52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221325Z:9d83ccc8-5942-4616-9803-1b20e35d9c52" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91409f79-798c-4b1b-8788-c2e21b48e496" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7104" - ], - "x-ms-correlation-request-id": [ - "f1e4f8a5-e4f8-470c-a3ed-656bc8ce8e65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221325Z:f1e4f8a5-e4f8-470c-a3ed-656bc8ce8e65" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f55ea3d2-8218-4ec7-aca3-91f9b35eb7e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7103" - ], - "x-ms-correlation-request-id": [ - "fdbd0a6f-d636-4aa9-b597-f3f19bc00cb4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221325Z:fdbd0a6f-d636-4aa9-b597-f3f19bc00cb4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d261c4fa-cc58-4917-825b-a4534bcd62ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7102" - ], - "x-ms-correlation-request-id": [ - "213cf3ac-b8ce-4081-8f3c-221705b5c054" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221325Z:213cf3ac-b8ce-4081-8f3c-221705b5c054" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8e886d38-e0c3-4f89-9fe7-2df718f5ab58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7101" - ], - "x-ms-correlation-request-id": [ - "abf58f4f-ee5c-4d3d-b60b-67d2aea00394" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221325Z:abf58f4f-ee5c-4d3d-b60b-67d2aea00394" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "864160a4-d5b3-4834-b036-071d0916012e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7100" - ], - "x-ms-correlation-request-id": [ - "640f7573-8c64-43fb-b2d9-c180b572b28e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221325Z:640f7573-8c64-43fb-b2d9-c180b572b28e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5c027bd-160c-4bed-9864-015f04c57aad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7099" - ], - "x-ms-correlation-request-id": [ - "67676514-25f3-42c9-8edd-bd3a8d13d4cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221326Z:67676514-25f3-42c9-8edd-bd3a8d13d4cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce7ec191-e82b-48e0-8811-a68765148f2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7098" - ], - "x-ms-correlation-request-id": [ - "6f575f54-1705-417a-a164-94395f0d84e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221326Z:6f575f54-1705-417a-a164-94395f0d84e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38242328-8c5c-48bd-935b-2eced64dd906" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7097" - ], - "x-ms-correlation-request-id": [ - "3a648378-6110-4373-ba30-d532f19b01ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221326Z:3a648378-6110-4373-ba30-d532f19b01ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8e96414a-2776-495b-9539-f00f257ed414" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7096" - ], - "x-ms-correlation-request-id": [ - "a3590fb8-36a6-457c-a534-071d08ce4aa6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221326Z:a3590fb8-36a6-457c-a534-071d08ce4aa6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f92557b0-eff6-4c1d-9b49-9b20c0dfe5ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7095" - ], - "x-ms-correlation-request-id": [ - "b20e5b45-540f-4b6b-8ecb-c797cb9e28d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221327Z:b20e5b45-540f-4b6b-8ecb-c797cb9e28d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c0b71ae-604c-4f4b-ae8a-a0e2e5383ddd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7094" - ], - "x-ms-correlation-request-id": [ - "02972b51-5f68-4b46-a562-a4a7594d6f5b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221327Z:02972b51-5f68-4b46-a562-a4a7594d6f5b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5447326f-c861-4394-8b87-f6561947b3b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7093" - ], - "x-ms-correlation-request-id": [ - "12fc564f-e145-4bd2-a740-8e0f4e02e449" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221327Z:12fc564f-e145-4bd2-a740-8e0f4e02e449" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf4db5c9-a957-48cf-841d-8403888d7e34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7092" - ], - "x-ms-correlation-request-id": [ - "5f4f7284-1456-4413-9413-fcf31d1e78b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221327Z:5f4f7284-1456-4413-9413-fcf31d1e78b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b08d540-165d-44fd-9056-3653af5c640d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7091" - ], - "x-ms-correlation-request-id": [ - "4d63b5d8-e49f-4f98-aa84-828bf8b415fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221327Z:4d63b5d8-e49f-4f98-aa84-828bf8b415fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "749a9d0a-0519-4f61-9ae5-adbcbb3332c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7090" - ], - "x-ms-correlation-request-id": [ - "f18ba2e6-b683-4321-8b39-3de65717f7f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221327Z:f18ba2e6-b683-4321-8b39-3de65717f7f5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "add1aa6c-ad09-4bee-bbc5-d28f8d7dc046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7089" - ], - "x-ms-correlation-request-id": [ - "526d9153-510e-4995-ba7a-da4c33ca2211" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221328Z:526d9153-510e-4995-ba7a-da4c33ca2211" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02e8796b-47a0-41e0-91fd-5666cf0b6e50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7088" - ], - "x-ms-correlation-request-id": [ - "b00ff123-c719-41a2-b03c-f833784375d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221328Z:b00ff123-c719-41a2-b03c-f833784375d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0358f86-c7e5-4d3e-9360-f50c4c7cd744" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7087" - ], - "x-ms-correlation-request-id": [ - "15e8c6bb-b161-43c3-87f9-d3a3cbd6fa21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221328Z:15e8c6bb-b161-43c3-87f9-d3a3cbd6fa21" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9249d98-8230-45b7-aae8-51d1eb7af8b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7086" - ], - "x-ms-correlation-request-id": [ - "ea529cac-c6f1-49ca-878f-03dc60aada3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221328Z:ea529cac-c6f1-49ca-878f-03dc60aada3b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a6e22ca2-62cb-4ef9-9319-70131be11d04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7085" - ], - "x-ms-correlation-request-id": [ - "ac0b5948-9bd8-4aaa-abeb-c8e2d57acadf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221328Z:ac0b5948-9bd8-4aaa-abeb-c8e2d57acadf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4342731f-4c1a-4c05-a68e-caee4795e6c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7084" - ], - "x-ms-correlation-request-id": [ - "b1f999da-0cd9-4cb3-85f4-d17d3a92f06b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221328Z:b1f999da-0cd9-4cb3-85f4-d17d3a92f06b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab5c2da4-76e9-46ef-9d56-878d0031bdf8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7083" - ], - "x-ms-correlation-request-id": [ - "aadc96ed-14de-482c-addd-a0863638625f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221329Z:aadc96ed-14de-482c-addd-a0863638625f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f2b74ef-a0fc-4d22-9bb8-ab711839767f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7082" - ], - "x-ms-correlation-request-id": [ - "ccbd96aa-2da1-4b0b-8474-a3aaa9adad4f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221329Z:ccbd96aa-2da1-4b0b-8474-a3aaa9adad4f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ab95e13-f1e7-4d76-be1e-300be0505366" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7081" - ], - "x-ms-correlation-request-id": [ - "16c2fd6b-02e8-4cd8-bfa2-00487a12bbf1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221329Z:16c2fd6b-02e8-4cd8-bfa2-00487a12bbf1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a3f839d-07ca-46a6-b622-e188a2229789" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7080" - ], - "x-ms-correlation-request-id": [ - "1fdf9b49-f0da-410f-8599-fdf211b9dde1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221329Z:1fdf9b49-f0da-410f-8599-fdf211b9dde1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "12c8eb1f-ea37-4799-ab71-9be61f2707cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7079" - ], - "x-ms-correlation-request-id": [ - "758d5513-66c9-46f2-88c6-6bbc34f54a75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221329Z:758d5513-66c9-46f2-88c6-6bbc34f54a75" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb4a44c4-afa9-419f-8200-19e7be31366f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7078" - ], - "x-ms-correlation-request-id": [ - "1a030a71-bcb8-49fd-9c16-af0f92061c23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221330Z:1a030a71-bcb8-49fd-9c16-af0f92061c23" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c2dc132-21c8-4e68-8095-65c2acea2fe9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7077" - ], - "x-ms-correlation-request-id": [ - "88e77464-3d0e-46de-aa20-3101ce2a0b4d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221330Z:88e77464-3d0e-46de-aa20-3101ce2a0b4d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb1799a9-3421-41df-95ec-d5128359925b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7076" - ], - "x-ms-correlation-request-id": [ - "9e2d1115-7753-47df-a43d-4f74cb0086cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221330Z:9e2d1115-7753-47df-a43d-4f74cb0086cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1701f694-4e8e-4e8b-98ac-c5942a2ba29b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7075" - ], - "x-ms-correlation-request-id": [ - "0291c290-ac5c-455b-b191-2491818c3afc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221330Z:0291c290-ac5c-455b-b191-2491818c3afc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5f752e6-f33f-4495-af12-8aa25b6d1a82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7074" - ], - "x-ms-correlation-request-id": [ - "826d00ab-3198-4186-83cc-6c25291209c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221330Z:826d00ab-3198-4186-83cc-6c25291209c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6bd1ac19-5fd8-47b0-9253-b5180f7f1719" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7073" - ], - "x-ms-correlation-request-id": [ - "922c2f5a-abe3-4875-b7d4-d5a27ec7d6d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221331Z:922c2f5a-abe3-4875-b7d4-d5a27ec7d6d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6cf99578-3655-498c-a8c1-1215ce7ad005" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7072" - ], - "x-ms-correlation-request-id": [ - "7249a475-b37e-4a99-ad3e-f9fd9f91a686" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221331Z:7249a475-b37e-4a99-ad3e-f9fd9f91a686" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35bcdfd8-eed6-46b7-8d6c-5728b298725a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7071" - ], - "x-ms-correlation-request-id": [ - "fff8e228-d6aa-437c-82e3-f8ba5cb72eba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221331Z:fff8e228-d6aa-437c-82e3-f8ba5cb72eba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0c206832-1fde-4eb7-a13d-96ee8554912a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7070" - ], - "x-ms-correlation-request-id": [ - "4c458e24-d487-42f8-8fcf-80166b8b5fe8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221332Z:4c458e24-d487-42f8-8fcf-80166b8b5fe8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d39202e5-0d2d-4402-b82f-badd510a75a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7069" - ], - "x-ms-correlation-request-id": [ - "4ab15d6b-d605-4727-bd50-2a4edb29bbc4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221332Z:4ab15d6b-d605-4727-bd50-2a4edb29bbc4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40cca3b5-279f-4fe2-bc76-a2a0d3efd19b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7068" - ], - "x-ms-correlation-request-id": [ - "de2e2103-b1c9-481c-abec-05a8054a03c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221332Z:de2e2103-b1c9-481c-abec-05a8054a03c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02bec7bc-9184-4f8b-bb73-f26a81b7ffe6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7067" - ], - "x-ms-correlation-request-id": [ - "704e0623-4a2c-4472-99f1-0e20029e3060" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221332Z:704e0623-4a2c-4472-99f1-0e20029e3060" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7b1f432-4c49-495e-805a-dbf194f063a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7066" - ], - "x-ms-correlation-request-id": [ - "da9153e8-4922-477a-9d49-ae4b2d78da70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221332Z:da9153e8-4922-477a-9d49-ae4b2d78da70" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51e6418a-4469-4a72-8f33-377d6e7262a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7065" - ], - "x-ms-correlation-request-id": [ - "2b75dded-db34-423b-907c-ed33b50274cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221333Z:2b75dded-db34-423b-907c-ed33b50274cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f72c107e-7493-4525-8eaa-43f0bc86e47e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7064" - ], - "x-ms-correlation-request-id": [ - "5dde68a9-0328-4a15-af59-900aac8a3154" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221333Z:5dde68a9-0328-4a15-af59-900aac8a3154" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "155e1503-26d8-4533-add9-888e6d0be5de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7063" - ], - "x-ms-correlation-request-id": [ - "5c5886be-2e59-44c3-b090-4f01eed471a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221333Z:5c5886be-2e59-44c3-b090-4f01eed471a2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f522958-7f64-42aa-9762-04a4bced0753" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7062" - ], - "x-ms-correlation-request-id": [ - "f97e6be2-4031-4986-a470-061dcf46366b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221333Z:f97e6be2-4031-4986-a470-061dcf46366b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a0729d2-c685-4326-b263-a896918a3405" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7061" - ], - "x-ms-correlation-request-id": [ - "f88e1bea-478a-4acb-b784-29c4b24ed9e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221333Z:f88e1bea-478a-4acb-b784-29c4b24ed9e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ddbe043-9409-4077-9a7c-9c052281052d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7060" - ], - "x-ms-correlation-request-id": [ - "cb54356f-0fc6-414d-a0c5-7e557c344584" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221334Z:cb54356f-0fc6-414d-a0c5-7e557c344584" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e59a1ea-f09d-4537-b04b-20e455725bac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7059" - ], - "x-ms-correlation-request-id": [ - "f54f0bd2-73a8-4d1f-ad71-276515c71ae6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221334Z:f54f0bd2-73a8-4d1f-ad71-276515c71ae6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b803de6-4238-4c8f-bb8e-95e0c15c2320" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7058" - ], - "x-ms-correlation-request-id": [ - "f66a43e6-1a31-45f0-acab-8fe4c524332c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221334Z:f66a43e6-1a31-45f0-acab-8fe4c524332c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a22c093-f42f-43bf-a0d0-8c1d958edc51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7057" - ], - "x-ms-correlation-request-id": [ - "c1de2525-7e83-4cd3-b63b-49afbee7c5f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221334Z:c1de2525-7e83-4cd3-b63b-49afbee7c5f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "249093fa-1787-4782-a966-e5ba094ae360" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7056" - ], - "x-ms-correlation-request-id": [ - "7475c740-5026-4193-a00c-bb61375d07b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221334Z:7475c740-5026-4193-a00c-bb61375d07b1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16cf2836-4352-4913-9eb0-69a0cbc4800c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7055" - ], - "x-ms-correlation-request-id": [ - "06d9a9d8-7336-4184-b00d-4ff2d8183a61" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221335Z:06d9a9d8-7336-4184-b00d-4ff2d8183a61" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43317230-bf3f-4d1f-a7eb-44bfeb3128e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7054" - ], - "x-ms-correlation-request-id": [ - "c71d5808-8a45-4b06-8d24-feddbbd451c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221335Z:c71d5808-8a45-4b06-8d24-feddbbd451c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69fe711e-25bc-4f9b-981c-1b33d04b6281" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7053" - ], - "x-ms-correlation-request-id": [ - "3b73f789-c931-42c0-8849-196e15fbf667" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221335Z:3b73f789-c931-42c0-8849-196e15fbf667" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "287e5ba8-1ce0-4cec-aa5f-261fa9b7738b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7052" - ], - "x-ms-correlation-request-id": [ - "07af22fb-1390-4728-93f7-f32a25f9afc5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221335Z:07af22fb-1390-4728-93f7-f32a25f9afc5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3052f278-bd5c-4851-8f3f-e3cc05a55874" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7051" - ], - "x-ms-correlation-request-id": [ - "2fb2fbab-ec12-4236-b473-3c35e8d62f1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221335Z:2fb2fbab-ec12-4236-b473-3c35e8d62f1c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f967c65d-220c-4be2-92b0-caac19f6d2cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7050" - ], - "x-ms-correlation-request-id": [ - "d6ff982c-ab3d-4157-960e-644ad030e81a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221335Z:d6ff982c-ab3d-4157-960e-644ad030e81a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f91f7dd2-cd94-49e8-bb3c-c540dfce19b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7049" - ], - "x-ms-correlation-request-id": [ - "b99002c3-41f6-4bf8-be99-27eeaab03b25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221336Z:b99002c3-41f6-4bf8-be99-27eeaab03b25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2f20c78-1d64-4a3d-abdc-39b8e410ef39" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7048" - ], - "x-ms-correlation-request-id": [ - "fcb636ab-ffe7-4108-9c08-0ac826f63fa2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221336Z:fcb636ab-ffe7-4108-9c08-0ac826f63fa2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9485f347-594c-4e7f-9236-def66a9b802b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7047" - ], - "x-ms-correlation-request-id": [ - "a92b178a-706f-4c32-b14d-62e27c13fa98" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221336Z:a92b178a-706f-4c32-b14d-62e27c13fa98" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e89c918-5c37-45de-a968-fc6f6a5be37e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7046" - ], - "x-ms-correlation-request-id": [ - "3f586ec1-35b2-497d-b325-6b075e7f150c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221336Z:3f586ec1-35b2-497d-b325-6b075e7f150c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2cfe9819-4655-4f8b-9053-c4ef00762579" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7045" - ], - "x-ms-correlation-request-id": [ - "2669fad7-c63c-42b9-87bc-0dee51945ad2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221336Z:2669fad7-c63c-42b9-87bc-0dee51945ad2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0da2d1a8-e119-4919-a485-d09081086bb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7044" - ], - "x-ms-correlation-request-id": [ - "02dee3cb-b98e-4309-9963-14225e84ebb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221337Z:02dee3cb-b98e-4309-9963-14225e84ebb9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "349d78cf-3fb4-4e47-8e55-eef4d0537650" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7043" - ], - "x-ms-correlation-request-id": [ - "36045be8-0ce8-425a-97fd-243d9ab3df6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221337Z:36045be8-0ce8-425a-97fd-243d9ab3df6f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "495d8500-0108-4c16-84d8-cbd6c7a22a30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7042" - ], - "x-ms-correlation-request-id": [ - "9003cf5a-6bbb-4078-943f-3f5f4e55ecc5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221337Z:9003cf5a-6bbb-4078-943f-3f5f4e55ecc5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "814fd37e-f577-4971-8786-5c2ef007e8b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7041" - ], - "x-ms-correlation-request-id": [ - "6027d38e-30ab-4766-b05b-2f8cd1347dd8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221337Z:6027d38e-30ab-4766-b05b-2f8cd1347dd8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac131ccd-0c7a-4ecb-af98-88e4497a4c4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7040" - ], - "x-ms-correlation-request-id": [ - "778478c1-fa31-487e-842b-64eaf7c52ecc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221337Z:778478c1-fa31-487e-842b-64eaf7c52ecc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d6d5b93-b2c0-4cfe-b19b-856cdc923ace" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7039" - ], - "x-ms-correlation-request-id": [ - "5aa11964-7cb7-4d6f-b318-95463c9f900e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221337Z:5aa11964-7cb7-4d6f-b318-95463c9f900e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0268ae53-1e72-4513-a6b9-7df9b8e5749e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7038" - ], - "x-ms-correlation-request-id": [ - "3379549f-c255-4470-8f20-e11387e776f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221337Z:3379549f-c255-4470-8f20-e11387e776f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b421408-5a61-4e3b-b89c-d5ac533c4e2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7037" - ], - "x-ms-correlation-request-id": [ - "b6dc11b3-024e-486c-9771-7f25ba8da204" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221338Z:b6dc11b3-024e-486c-9771-7f25ba8da204" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7dc0c4e0-6496-475a-9c03-170916a92fdc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7036" - ], - "x-ms-correlation-request-id": [ - "c7910713-269a-4495-a1c9-2180c69bf513" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221338Z:c7910713-269a-4495-a1c9-2180c69bf513" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "66b43a78-feca-4d44-b9c6-eeafa8931628" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7035" - ], - "x-ms-correlation-request-id": [ - "17e1256e-47bc-4383-bdc4-cc3944fb47e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221338Z:17e1256e-47bc-4383-bdc4-cc3944fb47e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ef1587c-3a64-4cdb-9856-d4d5f183e674" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7034" - ], - "x-ms-correlation-request-id": [ - "83b755d7-c2ce-4e2d-a734-f62dbe9171f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221338Z:83b755d7-c2ce-4e2d-a734-f62dbe9171f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aba60062-8a84-44e0-a5e1-d858aec01a15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7033" - ], - "x-ms-correlation-request-id": [ - "52c61ee1-84f6-4a74-b533-612bf02bc4a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221338Z:52c61ee1-84f6-4a74-b533-612bf02bc4a0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79b51521-9a3d-4233-9d90-56e3649e6bce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7032" - ], - "x-ms-correlation-request-id": [ - "3ee65815-6b73-4b44-9a3a-21796caa38e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221338Z:3ee65815-6b73-4b44-9a3a-21796caa38e5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dfac6737-223a-44a7-acaa-e7ed021a10d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7031" - ], - "x-ms-correlation-request-id": [ - "ca78dcf5-477a-4e56-8e6c-f3a5bf5fb6af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221339Z:ca78dcf5-477a-4e56-8e6c-f3a5bf5fb6af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efd531fb-c8d4-43c6-be59-f62850d75d30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7030" - ], - "x-ms-correlation-request-id": [ - "0736f5e5-d3b7-4630-ba1c-2da598849fbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221339Z:0736f5e5-d3b7-4630-ba1c-2da598849fbe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23d290b5-4a3e-4995-9aaa-41f619430591" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7029" - ], - "x-ms-correlation-request-id": [ - "ba233d3f-76f9-4941-927b-8cf8bd45701c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221339Z:ba233d3f-76f9-4941-927b-8cf8bd45701c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c3935d8-9a29-480c-a7cd-68f37fba89b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7028" - ], - "x-ms-correlation-request-id": [ - "8d6bebd5-5f9c-4190-83bf-135ece0ffbb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221339Z:8d6bebd5-5f9c-4190-83bf-135ece0ffbb9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60774e55-a155-4b5d-92aa-7d77946ccd34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7027" - ], - "x-ms-correlation-request-id": [ - "00ad0496-0f03-4315-93d4-d2c65676b742" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221339Z:00ad0496-0f03-4315-93d4-d2c65676b742" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf8e82e8-0748-4122-9828-5423cebca851" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7026" - ], - "x-ms-correlation-request-id": [ - "12008272-1075-457d-8462-412206a64683" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221339Z:12008272-1075-457d-8462-412206a64683" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7a0e80f-07a3-4325-84b7-7ba260f752b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7025" - ], - "x-ms-correlation-request-id": [ - "813e40b3-6041-4278-baa8-dee94c0555dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221340Z:813e40b3-6041-4278-baa8-dee94c0555dd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e46c9d6e-7d17-4d60-bb66-756de68d9736" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7024" - ], - "x-ms-correlation-request-id": [ - "cf87f5f5-4a2c-4cee-aba9-f99d637e882c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221340Z:cf87f5f5-4a2c-4cee-aba9-f99d637e882c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f97d62c1-e367-4e10-91a5-2afca3047b74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7023" - ], - "x-ms-correlation-request-id": [ - "37a904d8-56bd-4b1c-a3c5-53933001489e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221340Z:37a904d8-56bd-4b1c-a3c5-53933001489e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "725013af-e473-4a85-947b-441ea171a46b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7022" - ], - "x-ms-correlation-request-id": [ - "3ab0d6ed-de61-4595-8c15-c5fce205947e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221340Z:3ab0d6ed-de61-4595-8c15-c5fce205947e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1e548a5-ee23-48b3-8f53-bb0e851f209b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7021" - ], - "x-ms-correlation-request-id": [ - "17bc2f03-cbe3-43c4-8c8b-f625af57fd3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221340Z:17bc2f03-cbe3-43c4-8c8b-f625af57fd3e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "314a56ab-8975-4f1c-97e7-060d7088908a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7020" - ], - "x-ms-correlation-request-id": [ - "869d3165-4ad8-479c-8402-59dc383a7ce1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221340Z:869d3165-4ad8-479c-8402-59dc383a7ce1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "814ac4a4-d890-46ec-b6fb-bac07702d884" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7019" - ], - "x-ms-correlation-request-id": [ - "a5a5d227-da3f-4ec5-85ae-79178f03f2c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221341Z:a5a5d227-da3f-4ec5-85ae-79178f03f2c4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e44bce8-ab40-488a-9443-f52cc4446185" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7018" - ], - "x-ms-correlation-request-id": [ - "24f53624-ca2f-40dd-b8de-417108783766" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221341Z:24f53624-ca2f-40dd-b8de-417108783766" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4587086a-1105-498c-84ab-d52f1a539ccd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7017" - ], - "x-ms-correlation-request-id": [ - "330c0d5e-19c5-4e1e-b301-7aedcd010db0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221341Z:330c0d5e-19c5-4e1e-b301-7aedcd010db0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86a091b0-96de-4433-92d8-a4e8d1f7f3ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7016" - ], - "x-ms-correlation-request-id": [ - "1dc88ff5-88a2-4161-b533-45cd403e850c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221341Z:1dc88ff5-88a2-4161-b533-45cd403e850c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77c3b3fc-0894-4cf9-bdea-f0db7ff983fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7015" - ], - "x-ms-correlation-request-id": [ - "28995131-cdd6-4219-9cef-99647f1de6d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221341Z:28995131-cdd6-4219-9cef-99647f1de6d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2bb11ce1-a1ad-4c3d-8d14-c75f48c545e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7014" - ], - "x-ms-correlation-request-id": [ - "ddda160b-f5c5-47a5-b769-1dc90a80e463" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221341Z:ddda160b-f5c5-47a5-b769-1dc90a80e463" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e96bfd2a-b734-4fa7-99f4-bfc68022dbf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7013" - ], - "x-ms-correlation-request-id": [ - "2db895ce-e284-45a6-9a20-e65e5d90efb6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221341Z:2db895ce-e284-45a6-9a20-e65e5d90efb6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5569caec-8afd-44db-b9a6-df6398f95eab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7012" - ], - "x-ms-correlation-request-id": [ - "49577110-0776-4a67-9179-12887b60b0f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221342Z:49577110-0776-4a67-9179-12887b60b0f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "50163e52-525d-4a08-b643-33b645385aca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7011" - ], - "x-ms-correlation-request-id": [ - "cb98a318-35bd-4640-acee-50b1f813caef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221342Z:cb98a318-35bd-4640-acee-50b1f813caef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be55d1a1-86b6-4fee-9b8d-cc1ec9357429" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7010" - ], - "x-ms-correlation-request-id": [ - "18144bcd-e348-449f-a15a-f30cc7041233" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221342Z:18144bcd-e348-449f-a15a-f30cc7041233" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60b23e54-7eae-4f8c-bfbe-0d6ef12b839a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7009" - ], - "x-ms-correlation-request-id": [ - "219f8d7a-3438-4669-9718-7855c9bd499c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221342Z:219f8d7a-3438-4669-9718-7855c9bd499c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1f9f8ad-b6e3-4b71-b0cc-5b4997b699c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7008" - ], - "x-ms-correlation-request-id": [ - "f23afca3-8980-4493-bea2-f32806700044" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221342Z:f23afca3-8980-4493-bea2-f32806700044" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d9802b1-d556-4882-9d6d-718b284cc6b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7007" - ], - "x-ms-correlation-request-id": [ - "9212c6f4-0ecc-4b79-81fc-f1fe54b5e1f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221343Z:9212c6f4-0ecc-4b79-81fc-f1fe54b5e1f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccc61a69-af68-4bb4-bf70-177f10321049" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7006" - ], - "x-ms-correlation-request-id": [ - "d5be5a2f-af2c-493e-9440-c761e4fe3bed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221343Z:d5be5a2f-af2c-493e-9440-c761e4fe3bed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b793346c-17aa-47c0-ba48-8f1905d6fbe1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7005" - ], - "x-ms-correlation-request-id": [ - "e4677272-ff6a-4606-98af-78f30dded464" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221343Z:e4677272-ff6a-4606-98af-78f30dded464" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "617df2f8-8830-4478-a05a-53885c97b8d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7004" - ], - "x-ms-correlation-request-id": [ - "c88eb1c8-7c2f-46c0-8849-f7c2951f5e4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221343Z:c88eb1c8-7c2f-46c0-8849-f7c2951f5e4b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c6daa81-0856-4a8f-9c5c-6673764cbfcb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7003" - ], - "x-ms-correlation-request-id": [ - "e3e1eabf-c45b-4b6b-9620-87c058d4a41a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221343Z:e3e1eabf-c45b-4b6b-9620-87c058d4a41a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de5105e2-0346-4db4-b509-467f2fb0f83f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7002" - ], - "x-ms-correlation-request-id": [ - "6f3383b9-7f60-40a5-bab3-08ed8bfcd7e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221344Z:6f3383b9-7f60-40a5-bab3-08ed8bfcd7e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "afb0b038-b23f-4283-ab35-632289446fef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7001" - ], - "x-ms-correlation-request-id": [ - "34454746-402b-4b55-89ba-0a91042fd6a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221344Z:34454746-402b-4b55-89ba-0a91042fd6a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb878adb-cddf-4a3c-8390-19f7811f9238" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "7000" - ], - "x-ms-correlation-request-id": [ - "6e9385bf-e88c-4ca0-a8c8-9e950bcfebba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221344Z:6e9385bf-e88c-4ca0-a8c8-9e950bcfebba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "791c10d0-7331-4a77-9aad-2918f5344244" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6999" - ], - "x-ms-correlation-request-id": [ - "24b994b5-027a-426d-84d6-93ef5bdda22f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221344Z:24b994b5-027a-426d-84d6-93ef5bdda22f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f19c6c6-a24b-4669-925a-e016be455cf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6998" - ], - "x-ms-correlation-request-id": [ - "b0c8d011-2888-4e2e-b84b-85146ed61b55" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221344Z:b0c8d011-2888-4e2e-b84b-85146ed61b55" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3adb2dc-9ec2-4186-9c9d-e0c5d60540f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6997" - ], - "x-ms-correlation-request-id": [ - "70d2da6a-3309-478a-8a7b-ffb1e979cf69" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221345Z:70d2da6a-3309-478a-8a7b-ffb1e979cf69" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a45c6c7-784c-4553-b9c7-362eea8e263d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6996" - ], - "x-ms-correlation-request-id": [ - "05f15d52-16da-462d-8a4b-8b9acaf79dc7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221345Z:05f15d52-16da-462d-8a4b-8b9acaf79dc7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89738c50-8548-445a-90b4-0b4e0d3564ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6995" - ], - "x-ms-correlation-request-id": [ - "95b6fab2-3db7-46e6-80a1-c053a7866a25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221345Z:95b6fab2-3db7-46e6-80a1-c053a7866a25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99d41c87-a11b-4d25-9ec3-ce3aeab7ef1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6994" - ], - "x-ms-correlation-request-id": [ - "f7557082-82e8-4d44-b393-793cbc3f655d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221345Z:f7557082-82e8-4d44-b393-793cbc3f655d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8646c09-26e0-4289-99e8-136433c07c8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6993" - ], - "x-ms-correlation-request-id": [ - "8e52051e-18fd-4227-ba27-cfc42778aad1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221345Z:8e52051e-18fd-4227-ba27-cfc42778aad1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81247855-fc82-40ab-86ea-ad14a7257ac5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6992" - ], - "x-ms-correlation-request-id": [ - "abf4e685-1250-43e1-b36c-dbe831c78d1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221345Z:abf4e685-1250-43e1-b36c-dbe831c78d1c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39b4e967-85ad-43e9-b35f-7a3d5018031c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6991" - ], - "x-ms-correlation-request-id": [ - "366f8bb4-7805-40d2-bc47-94281ac20209" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221346Z:366f8bb4-7805-40d2-bc47-94281ac20209" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "552b856f-d3f0-4841-856b-734b1faa99e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6990" - ], - "x-ms-correlation-request-id": [ - "47916a56-45af-4a84-97a2-04e9845c848d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221346Z:47916a56-45af-4a84-97a2-04e9845c848d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de2ee895-834d-477b-80d7-e7e973479d4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6989" - ], - "x-ms-correlation-request-id": [ - "d2625acf-73e2-4d68-9aa0-84bbaaefa4d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221346Z:d2625acf-73e2-4d68-9aa0-84bbaaefa4d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb4fd7b1-378e-4ebe-8353-8cd3439b2d57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6988" - ], - "x-ms-correlation-request-id": [ - "1e31686c-5dff-4df5-9f89-07c02ff0018c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221346Z:1e31686c-5dff-4df5-9f89-07c02ff0018c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b7a45ae-506a-4e24-8030-08cb7fe58588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6987" - ], - "x-ms-correlation-request-id": [ - "36ee969a-cfa5-4ffb-b18e-a114a96b1a4d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221346Z:36ee969a-cfa5-4ffb-b18e-a114a96b1a4d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c63a6c28-98c7-40a9-8331-39b4fb479ca7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6986" - ], - "x-ms-correlation-request-id": [ - "3aa5f384-8027-4bad-b56a-b58a659ac011" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221347Z:3aa5f384-8027-4bad-b56a-b58a659ac011" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2087a88f-5390-4bea-869b-6d9427d9b509" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6985" - ], - "x-ms-correlation-request-id": [ - "f461fbec-8474-4237-9640-cbb06d6ae8df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221347Z:f461fbec-8474-4237-9640-cbb06d6ae8df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bca870ef-94b6-43b2-9b5f-cbc897b0d51e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6984" - ], - "x-ms-correlation-request-id": [ - "16cacfd3-793b-4afc-bea4-25fa9b13635f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221347Z:16cacfd3-793b-4afc-bea4-25fa9b13635f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f767084-49f8-4c70-8912-e646017f28eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6983" - ], - "x-ms-correlation-request-id": [ - "428c8b60-88f1-4a71-a1ca-dfcb91b5507f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221347Z:428c8b60-88f1-4a71-a1ca-dfcb91b5507f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee0eeb5e-46a5-4bd0-a7ba-be9b156b1787" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6982" - ], - "x-ms-correlation-request-id": [ - "a2f22973-39eb-458d-90cc-5147b20fa052" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221347Z:a2f22973-39eb-458d-90cc-5147b20fa052" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9115bd4f-ab7b-488b-84e5-0848e8418bec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6981" - ], - "x-ms-correlation-request-id": [ - "f8d3d560-ccdd-43bc-b761-0242e2fc9142" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221347Z:f8d3d560-ccdd-43bc-b761-0242e2fc9142" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4029f8cd-248a-4863-9270-25ac03d2b18b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6980" - ], - "x-ms-correlation-request-id": [ - "aa499ece-aa4f-4f01-85e8-d02a8406b851" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221348Z:aa499ece-aa4f-4f01-85e8-d02a8406b851" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42e6ad65-b775-4933-9059-4c91134125ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6979" - ], - "x-ms-correlation-request-id": [ - "96f9d605-003a-40bf-8499-12bbdd9ab881" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221348Z:96f9d605-003a-40bf-8499-12bbdd9ab881" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b410fff-b6a3-4c1d-92aa-05840f11a06d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6978" - ], - "x-ms-correlation-request-id": [ - "58143f17-cba6-4a4a-b43e-0929a38123bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221348Z:58143f17-cba6-4a4a-b43e-0929a38123bc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69b7199b-c360-4d05-b778-47efb582ddb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6977" - ], - "x-ms-correlation-request-id": [ - "e72af8e9-cae8-4598-ab8b-07746637a7ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221348Z:e72af8e9-cae8-4598-ab8b-07746637a7ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19674390-c9bb-4506-a51a-248b6672381a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6976" - ], - "x-ms-correlation-request-id": [ - "d7a6b31d-a7e1-4438-b4ac-61366a97264c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221348Z:d7a6b31d-a7e1-4438-b4ac-61366a97264c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f4ea538-1ab1-4de1-a822-533552cf3832" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6975" - ], - "x-ms-correlation-request-id": [ - "3e77015e-a70a-432d-943b-01b6d37517e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221348Z:3e77015e-a70a-432d-943b-01b6d37517e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a817be7a-2a3d-4b08-a1e6-b9e8df573147" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6974" - ], - "x-ms-correlation-request-id": [ - "f7b726f7-4ed0-4b52-9a94-9b340cca97aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221348Z:f7b726f7-4ed0-4b52-9a94-9b340cca97aa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5cbc925a-34b0-450a-a0a7-917a91469fc4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6973" - ], - "x-ms-correlation-request-id": [ - "b8ec5038-0000-4a86-8943-acf8d8b49bce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221349Z:b8ec5038-0000-4a86-8943-acf8d8b49bce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc6ec68d-f211-444f-977f-3230f15298dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6972" - ], - "x-ms-correlation-request-id": [ - "8ee46f8b-b845-4616-84bb-8bd650979b83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221349Z:8ee46f8b-b845-4616-84bb-8bd650979b83" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77de03f9-ae3d-4716-9df3-9d81f70d410d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6971" - ], - "x-ms-correlation-request-id": [ - "7a84ece0-89d9-4ea0-b23a-44a274a68cb7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221349Z:7a84ece0-89d9-4ea0-b23a-44a274a68cb7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fbd107ab-abac-4803-bb38-ddb7b4648d1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6970" - ], - "x-ms-correlation-request-id": [ - "6fdd6096-c2cb-44b1-a219-f188b0c0cad9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221349Z:6fdd6096-c2cb-44b1-a219-f188b0c0cad9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bee9f38e-0308-4938-af22-c042ff08a3bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6969" - ], - "x-ms-correlation-request-id": [ - "6a756ae3-de09-4ec0-9f0d-f59c21d63ec4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221349Z:6a756ae3-de09-4ec0-9f0d-f59c21d63ec4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "abb9ccff-86e8-48a3-ae59-ab816c6f8a22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6968" - ], - "x-ms-correlation-request-id": [ - "c23cb05b-4626-43c2-a603-1acd250a4f22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221349Z:c23cb05b-4626-43c2-a603-1acd250a4f22" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3f90c54-f951-4682-b6dc-7264e6e1a364" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6967" - ], - "x-ms-correlation-request-id": [ - "df53aaf6-026f-48af-a13f-8a8c8e756feb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221349Z:df53aaf6-026f-48af-a13f-8a8c8e756feb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "385f85ab-20c0-4115-90b5-67accb0da0b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6966" - ], - "x-ms-correlation-request-id": [ - "1d634a9b-105f-44db-817e-ec21c4efce3a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221350Z:1d634a9b-105f-44db-817e-ec21c4efce3a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f909eca-3742-4b1d-b612-66cffc4ec573" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6965" - ], - "x-ms-correlation-request-id": [ - "c5ae7660-5d76-4273-aab5-ff6ea14a5734" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221350Z:c5ae7660-5d76-4273-aab5-ff6ea14a5734" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1a86bd4-fa3e-476b-8127-4b3030816650" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6964" - ], - "x-ms-correlation-request-id": [ - "010b770a-adea-47af-932c-9adec95bc780" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221350Z:010b770a-adea-47af-932c-9adec95bc780" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bf7ff2f-4976-4cb8-a02f-9e0af2cf55bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6963" - ], - "x-ms-correlation-request-id": [ - "a9e2f2e4-8e34-4810-8caa-05188153bdaf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221350Z:a9e2f2e4-8e34-4810-8caa-05188153bdaf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6213a13-6ac6-43e2-ba73-fb3e208af5d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6962" - ], - "x-ms-correlation-request-id": [ - "5c02b047-65ec-4093-ad72-c8416d113a09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221350Z:5c02b047-65ec-4093-ad72-c8416d113a09" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6810f79-2636-4880-a52b-841aebbd7eee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6961" - ], - "x-ms-correlation-request-id": [ - "4471d04b-4fea-4219-a335-7414c8170f9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221351Z:4471d04b-4fea-4219-a335-7414c8170f9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5eabfb5e-2d2e-4643-b1b7-da8397d24080" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6960" - ], - "x-ms-correlation-request-id": [ - "b2105fdf-352d-4128-8ab5-1f52784a286d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221351Z:b2105fdf-352d-4128-8ab5-1f52784a286d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31afe950-54c8-4ec3-bebd-f0b248dec4d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6959" - ], - "x-ms-correlation-request-id": [ - "c46b0329-a399-4c7d-8f2c-b8674697d872" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221351Z:c46b0329-a399-4c7d-8f2c-b8674697d872" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "afdf795a-88b9-4840-995c-bd8a425eb6e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6958" - ], - "x-ms-correlation-request-id": [ - "aefa8de8-9c1e-4bc3-af7c-52e1a1d4d645" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221351Z:aefa8de8-9c1e-4bc3-af7c-52e1a1d4d645" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8184fc8-2edb-4dd6-9218-536f566c2f84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6957" - ], - "x-ms-correlation-request-id": [ - "e113cc07-323b-4209-abc8-b1b482411bd9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221351Z:e113cc07-323b-4209-abc8-b1b482411bd9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69424e7a-76f7-4619-a877-bfa5c0499bde" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6956" - ], - "x-ms-correlation-request-id": [ - "703f62d0-dcea-4584-b82c-818623bb1782" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221351Z:703f62d0-dcea-4584-b82c-818623bb1782" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c445515d-1e82-4e4f-8e30-30c3a2969b0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6955" - ], - "x-ms-correlation-request-id": [ - "71585477-e232-40eb-8fd7-451eec2d30d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221352Z:71585477-e232-40eb-8fd7-451eec2d30d0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38ddfd80-f3f0-41e2-9f6a-e5667c1830b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6954" - ], - "x-ms-correlation-request-id": [ - "0d4025fa-6164-4d46-9271-54b2cb9a6de4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221352Z:0d4025fa-6164-4d46-9271-54b2cb9a6de4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c1eaf53-a0fd-4a68-98e4-54a78ae61ba6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6953" - ], - "x-ms-correlation-request-id": [ - "27dbd09b-7ddb-470b-bb11-a45ba2afd99d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221352Z:27dbd09b-7ddb-470b-bb11-a45ba2afd99d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "581c7585-6966-493d-8afe-213c36162afd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6952" - ], - "x-ms-correlation-request-id": [ - "692d1f16-79d9-4441-9c17-fe97fa4db402" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221352Z:692d1f16-79d9-4441-9c17-fe97fa4db402" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d37dc215-f1dd-4ce9-aace-1b38f8381669" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6951" - ], - "x-ms-correlation-request-id": [ - "2fb84250-9929-463f-88a4-6bc32685f40f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221352Z:2fb84250-9929-463f-88a4-6bc32685f40f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c750b815-2780-426c-9c66-0e97fdb3dc86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6950" - ], - "x-ms-correlation-request-id": [ - "2bd6f3dd-d5a5-4191-858b-6d55dcf0725b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221352Z:2bd6f3dd-d5a5-4191-858b-6d55dcf0725b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b8eb56b-c412-4748-aca6-1c584469b3cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6949" - ], - "x-ms-correlation-request-id": [ - "f190ef33-14aa-438d-a685-5ab92c949c46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221353Z:f190ef33-14aa-438d-a685-5ab92c949c46" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76a028b5-8ac6-4803-b2e8-aed2d70b3a30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6948" - ], - "x-ms-correlation-request-id": [ - "0c170c21-d0a8-4be6-951d-46f77775fa1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221353Z:0c170c21-d0a8-4be6-951d-46f77775fa1b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa252143-c856-4b0d-acfd-b8f43cb816a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6947" - ], - "x-ms-correlation-request-id": [ - "6a4a69b2-3094-40bc-b248-3c9454be717f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221353Z:6a4a69b2-3094-40bc-b248-3c9454be717f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2c48201-1957-4a41-b702-d193d9b87d3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6946" - ], - "x-ms-correlation-request-id": [ - "6edaff1d-0e7d-4958-88d7-a3491d19cf9b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221353Z:6edaff1d-0e7d-4958-88d7-a3491d19cf9b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5853084-c2c7-417f-ab45-d9fa35cfdc99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6945" - ], - "x-ms-correlation-request-id": [ - "39d6da80-f9fc-42b8-92d6-ec3c834f5f87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221353Z:39d6da80-f9fc-42b8-92d6-ec3c834f5f87" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc99545d-7b69-4d7f-9648-0e7bd5b705ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6944" - ], - "x-ms-correlation-request-id": [ - "ab1ae76f-ab88-4751-8f35-f18d616e5878" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221353Z:ab1ae76f-ab88-4751-8f35-f18d616e5878" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "950ec63f-ad3b-46ce-a109-5aabd37dc024" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6943" - ], - "x-ms-correlation-request-id": [ - "3ed157c3-c2b4-4a84-9a00-24a69f2e1fd4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221353Z:3ed157c3-c2b4-4a84-9a00-24a69f2e1fd4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5986418-c8b4-4db9-a08c-eab49124d823" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6942" - ], - "x-ms-correlation-request-id": [ - "8fcf8d66-18bf-4405-8eeb-688ddb8cd6cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221354Z:8fcf8d66-18bf-4405-8eeb-688ddb8cd6cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b927c305-5c87-4f46-b24e-ac650dce369e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6941" - ], - "x-ms-correlation-request-id": [ - "81513f4b-4c8c-42b3-9413-e33cf8e38de1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221354Z:81513f4b-4c8c-42b3-9413-e33cf8e38de1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6598f2de-1ff6-4612-b71a-4a51c5a057fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6940" - ], - "x-ms-correlation-request-id": [ - "65b57d61-d8c6-4871-9a83-89df6a51de3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221354Z:65b57d61-d8c6-4871-9a83-89df6a51de3d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1fc61fd1-b30b-408f-bacd-76fb1e2c18f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6939" - ], - "x-ms-correlation-request-id": [ - "97bc2d68-2ab7-4a6c-b370-f1123c008380" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221354Z:97bc2d68-2ab7-4a6c-b370-f1123c008380" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "af9d2288-d5fc-42b2-b9d6-7a4bbc68cb69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6938" - ], - "x-ms-correlation-request-id": [ - "93475df8-33eb-4c6d-a5d0-dd7a359748cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221354Z:93475df8-33eb-4c6d-a5d0-dd7a359748cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a37d760e-855d-4ab4-adf2-39c81bcf5bfb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6937" - ], - "x-ms-correlation-request-id": [ - "869d5b8d-a13b-4550-ac81-265c17917e6e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221354Z:869d5b8d-a13b-4550-ac81-265c17917e6e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "846ca7d8-200d-4067-a436-b5668730f316" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6936" - ], - "x-ms-correlation-request-id": [ - "bc31f789-946c-48a8-b989-43ea5b4e44ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221355Z:bc31f789-946c-48a8-b989-43ea5b4e44ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4954fbb7-de4c-47cf-80d5-194993cf9329" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6935" - ], - "x-ms-correlation-request-id": [ - "a409317f-b494-46de-961b-cfb48b4d12fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221355Z:a409317f-b494-46de-961b-cfb48b4d12fc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0afa54ae-d56c-4dba-bbee-4a81fd8914ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6934" - ], - "x-ms-correlation-request-id": [ - "836778b0-7ed2-4bb8-8d8e-962a36157fa8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221355Z:836778b0-7ed2-4bb8-8d8e-962a36157fa8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d903cb9-919a-44c0-8f40-e534fac1e906" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6933" - ], - "x-ms-correlation-request-id": [ - "c8854c09-00c8-476a-8cfc-0bbd570989a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221355Z:c8854c09-00c8-476a-8cfc-0bbd570989a4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "684587d5-75e1-4e8f-a67b-e257a4c28dfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6932" - ], - "x-ms-correlation-request-id": [ - "236f4914-d692-4751-9596-3f0206e4c702" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221355Z:236f4914-d692-4751-9596-3f0206e4c702" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a44a0a75-b4f3-46c1-af41-f566c9f16bdf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6931" - ], - "x-ms-correlation-request-id": [ - "74cc966b-1c01-4339-ae6f-4a09d08d6cec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221355Z:74cc966b-1c01-4339-ae6f-4a09d08d6cec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f761034-aab7-404d-85ab-40b96485dd17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6930" - ], - "x-ms-correlation-request-id": [ - "608e8548-cdd6-4c85-a882-258b28f2769b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221355Z:608e8548-cdd6-4c85-a882-258b28f2769b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c035cc5c-855f-4605-b633-183f854ad7cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6929" - ], - "x-ms-correlation-request-id": [ - "5a0d8183-c46c-44ac-922e-22a6772413b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221356Z:5a0d8183-c46c-44ac-922e-22a6772413b5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f178bedc-d42a-4ec1-a681-7a8725f67639" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6928" - ], - "x-ms-correlation-request-id": [ - "fe93e2e3-d641-4371-9dd0-1e7028074258" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221356Z:fe93e2e3-d641-4371-9dd0-1e7028074258" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "414dfba3-0cf4-4f49-a8db-60a921a340cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6927" - ], - "x-ms-correlation-request-id": [ - "297671bc-6f19-4d83-ac3b-7cd0281df62f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221356Z:297671bc-6f19-4d83-ac3b-7cd0281df62f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "585b8fd1-fb43-4192-8ecc-577ea6550925" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6926" - ], - "x-ms-correlation-request-id": [ - "fca7eec3-8f19-4128-8d7e-3e4170d73303" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221356Z:fca7eec3-8f19-4128-8d7e-3e4170d73303" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b3833233-5481-4c5c-8d7b-d8902df2631f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6925" - ], - "x-ms-correlation-request-id": [ - "d99de593-a219-4083-8fe0-615bdafdb002" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221356Z:d99de593-a219-4083-8fe0-615bdafdb002" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db4b3e34-b05c-469b-b116-9bba7202b56d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6924" - ], - "x-ms-correlation-request-id": [ - "d2389588-134f-4dbe-805e-5e02e260b0fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221356Z:d2389588-134f-4dbe-805e-5e02e260b0fa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bd2585f0-5232-4a8f-a28a-b90468301e2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6923" - ], - "x-ms-correlation-request-id": [ - "65d314bd-ab1e-4e6c-8b3e-a52643b81ed6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221357Z:65d314bd-ab1e-4e6c-8b3e-a52643b81ed6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70c87fd6-4e63-4e34-8514-c6a52b077fd5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6922" - ], - "x-ms-correlation-request-id": [ - "1a45b2a2-ccf8-4f7c-b138-7d7457bf215f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221357Z:1a45b2a2-ccf8-4f7c-b138-7d7457bf215f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56dc98b4-0935-44b9-bf81-87b0549729e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6921" - ], - "x-ms-correlation-request-id": [ - "5d137a17-b5e8-49a4-9862-a4cf75e1c93c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221357Z:5d137a17-b5e8-49a4-9862-a4cf75e1c93c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83e86a84-1532-45ce-9934-23d322572abb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6920" - ], - "x-ms-correlation-request-id": [ - "45da3ad4-9b05-4ad9-ab90-0fe6aedbcfd2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221357Z:45da3ad4-9b05-4ad9-ab90-0fe6aedbcfd2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "918c7879-1c4b-4c72-a509-5248fb8a9762" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6919" - ], - "x-ms-correlation-request-id": [ - "1abe3e0a-74c0-4c2e-8ba9-6e77645565e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221357Z:1abe3e0a-74c0-4c2e-8ba9-6e77645565e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b38d37b9-6280-457c-a861-a653a735fc32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6918" - ], - "x-ms-correlation-request-id": [ - "a97b4ba7-dbeb-4798-a221-a9da1db0ec1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221357Z:a97b4ba7-dbeb-4798-a221-a9da1db0ec1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1be22372-9f3b-4e4a-b1f2-dfef445ce960" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6917" - ], - "x-ms-correlation-request-id": [ - "0cf61dc8-66f1-43d6-9d21-f97d64f08058" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221357Z:0cf61dc8-66f1-43d6-9d21-f97d64f08058" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a86896ca-ebef-498e-bfe2-d33d2b774d04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6916" - ], - "x-ms-correlation-request-id": [ - "48bc7227-b1f7-42eb-ba92-d76f86b5335e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221358Z:48bc7227-b1f7-42eb-ba92-d76f86b5335e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed9221e5-f835-467f-a26c-f7e6a0b03dde" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6915" - ], - "x-ms-correlation-request-id": [ - "cebc006e-d974-4569-bbb3-897df1a2f983" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221358Z:cebc006e-d974-4569-bbb3-897df1a2f983" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "58d8c911-011d-4a9a-a35a-57e2e7ddaaf8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6914" - ], - "x-ms-correlation-request-id": [ - "73c036db-bce2-434f-95d4-d929605938c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221358Z:73c036db-bce2-434f-95d4-d929605938c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1bbe95dc-862e-4427-9ecf-4aa0558871b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6913" - ], - "x-ms-correlation-request-id": [ - "c66f54a4-46a3-4e3f-a94f-fe8289e3cd85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221358Z:c66f54a4-46a3-4e3f-a94f-fe8289e3cd85" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57023d0f-207d-461a-bd34-4f59ef42ab42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6912" - ], - "x-ms-correlation-request-id": [ - "97d32fe0-b73b-4951-b438-f49ac7d6f71a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221358Z:97d32fe0-b73b-4951-b438-f49ac7d6f71a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f90121a6-7074-4a49-8fa2-ee2428d5bd0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6911" - ], - "x-ms-correlation-request-id": [ - "18522f5d-8205-40ac-8e21-e570c0e42900" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221358Z:18522f5d-8205-40ac-8e21-e570c0e42900" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36566abd-ccb9-4487-a2dc-9923d2c6e14a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6910" - ], - "x-ms-correlation-request-id": [ - "d9c7e1b9-4450-4c39-bcfb-37f8b34c18d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221359Z:d9c7e1b9-4450-4c39-bcfb-37f8b34c18d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ac413ab-26ee-4c98-80fb-7e036872e9d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6909" - ], - "x-ms-correlation-request-id": [ - "89a1b39a-1407-42ab-aa9b-7a7a9ce8ad5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221359Z:89a1b39a-1407-42ab-aa9b-7a7a9ce8ad5d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b0f9225-ee53-4296-aff6-0d2aac2f0498" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6908" - ], - "x-ms-correlation-request-id": [ - "dfe4ce97-98f8-4e81-9765-e156fb5a52a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221359Z:dfe4ce97-98f8-4e81-9765-e156fb5a52a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b3a2ef9a-0d04-43fe-b40f-a7b8b5dc7f68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6907" - ], - "x-ms-correlation-request-id": [ - "40b19417-23aa-46be-8aae-0e09355d06b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221359Z:40b19417-23aa-46be-8aae-0e09355d06b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf588545-7d93-4e79-ac6f-5e84661249a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6906" - ], - "x-ms-correlation-request-id": [ - "7afd0095-7a97-451e-a84b-72e298722368" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221400Z:7afd0095-7a97-451e-a84b-72e298722368" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4836d28f-0a75-436c-beca-37497b6ccb98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6905" - ], - "x-ms-correlation-request-id": [ - "4a58925a-be13-450a-af02-f876dcfce19e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221400Z:4a58925a-be13-450a-af02-f876dcfce19e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:13:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ff69a90-f135-4ed6-a57c-347f467e2a5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6904" - ], - "x-ms-correlation-request-id": [ - "45d060c2-7cf0-4e6d-bca0-2fdd4a87d2f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221400Z:45d060c2-7cf0-4e6d-bca0-2fdd4a87d2f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca117847-3f61-40fa-87bb-59e7c944f9e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6903" - ], - "x-ms-correlation-request-id": [ - "df6365a4-70a7-4ce0-a784-5e299000375e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221400Z:df6365a4-70a7-4ce0-a784-5e299000375e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9cb445ca-45d8-4827-95c6-41a3e16c6614" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6902" - ], - "x-ms-correlation-request-id": [ - "84085aaf-3825-4ddc-97e1-a40811a58d92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221400Z:84085aaf-3825-4ddc-97e1-a40811a58d92" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8fa98b8-e373-482a-a146-95a98b7b1aeb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6901" - ], - "x-ms-correlation-request-id": [ - "7c12fc03-93cd-4ff0-bc5f-6c1c53e668b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221400Z:7c12fc03-93cd-4ff0-bc5f-6c1c53e668b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3665a07b-58a3-4bc9-b691-b9b20d0aeec0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6900" - ], - "x-ms-correlation-request-id": [ - "864f5e0c-2e8b-4f1b-bc2d-614016bebb98" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221401Z:864f5e0c-2e8b-4f1b-bc2d-614016bebb98" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86c3634c-43e0-4b6b-8085-16e4d78c7366" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6899" - ], - "x-ms-correlation-request-id": [ - "9f5796b9-0647-475e-b47f-a172c1cdddb5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221401Z:9f5796b9-0647-475e-b47f-a172c1cdddb5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9af95f5e-2413-403a-9e0d-e6dd56f75c39" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6898" - ], - "x-ms-correlation-request-id": [ - "cf24c30b-c4b9-463c-9993-5ba1d94c6afb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221401Z:cf24c30b-c4b9-463c-9993-5ba1d94c6afb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ee64082-4c36-420d-9a6e-056358df0004" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6897" - ], - "x-ms-correlation-request-id": [ - "588851d7-fd2a-442f-8e46-3edf6aaf82dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221401Z:588851d7-fd2a-442f-8e46-3edf6aaf82dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "406bc399-a2db-4d92-bd86-0ba93084ecec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6896" - ], - "x-ms-correlation-request-id": [ - "09fe69fe-d866-4c4e-bae8-eb0beab94ae2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221401Z:09fe69fe-d866-4c4e-bae8-eb0beab94ae2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "798a58c9-8e68-45bd-9c4c-412189057fa3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6895" - ], - "x-ms-correlation-request-id": [ - "4577b922-7537-4142-be28-079f9af7ce5c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221401Z:4577b922-7537-4142-be28-079f9af7ce5c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01ed0a6d-0b18-464f-b627-baf5ff49921f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6894" - ], - "x-ms-correlation-request-id": [ - "b7ed41dc-ff5e-4f8b-b7cf-203c67bbdef5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221402Z:b7ed41dc-ff5e-4f8b-b7cf-203c67bbdef5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0809ae9-9608-4980-a4d5-8065ecb152e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6893" - ], - "x-ms-correlation-request-id": [ - "1882bcb8-e464-4cad-83eb-cbf1cd8c28b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221402Z:1882bcb8-e464-4cad-83eb-cbf1cd8c28b5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "517ec641-cf66-42f0-955d-ada1e5cbcdd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6892" - ], - "x-ms-correlation-request-id": [ - "22121c86-2d7b-474e-a983-ac8950e478bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221402Z:22121c86-2d7b-474e-a983-ac8950e478bc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49f8c0b9-cc98-4f72-9e3c-96ba52c44f2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6891" - ], - "x-ms-correlation-request-id": [ - "79b03a27-aba0-4741-8066-3b8560523c09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221402Z:79b03a27-aba0-4741-8066-3b8560523c09" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c15e8e8-d9c7-4f09-a95b-f7b1c21a8be8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6890" - ], - "x-ms-correlation-request-id": [ - "063c8f38-895c-4c43-80d1-f84820f124e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221402Z:063c8f38-895c-4c43-80d1-f84820f124e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "64cbcd83-484f-4c26-beea-0bda04d39d0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6889" - ], - "x-ms-correlation-request-id": [ - "54f2fc3b-27a2-45fd-8aa6-71bf2e8ea494" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221402Z:54f2fc3b-27a2-45fd-8aa6-71bf2e8ea494" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5cf1754-96dd-4d2c-ab3c-e6ff0cc5d541" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6888" - ], - "x-ms-correlation-request-id": [ - "f4a2ea76-5d80-4e9d-be0a-f9138b0c276d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221402Z:f4a2ea76-5d80-4e9d-be0a-f9138b0c276d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b3cf92f8-e2a7-44c1-afc8-326599d74091" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6887" - ], - "x-ms-correlation-request-id": [ - "155415fa-6fc6-49ff-a4a5-95873f7d5e91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221403Z:155415fa-6fc6-49ff-a4a5-95873f7d5e91" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36794663-13a0-4f29-b6cd-009940fd8a5f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6886" - ], - "x-ms-correlation-request-id": [ - "cd43f99a-6db5-408c-a83c-45b64c40a14c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221403Z:cd43f99a-6db5-408c-a83c-45b64c40a14c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6dd90ff-99f1-4ddd-beff-acb7c788c030" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6885" - ], - "x-ms-correlation-request-id": [ - "094ac8a8-8f85-4905-943b-04d5b332c54c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221403Z:094ac8a8-8f85-4905-943b-04d5b332c54c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d65aa21-5a73-45f1-bd3d-c14b3609d40c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6884" - ], - "x-ms-correlation-request-id": [ - "ea571483-1f4f-46ec-8f6d-b97675adc5c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221403Z:ea571483-1f4f-46ec-8f6d-b97675adc5c9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "287e92cd-1296-41c3-92d7-76cb6b6168fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6883" - ], - "x-ms-correlation-request-id": [ - "700bc584-362c-43d1-8a2d-4f99fe498966" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221403Z:700bc584-362c-43d1-8a2d-4f99fe498966" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f897f77e-07d6-4a1a-b058-73c49982aa8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6882" - ], - "x-ms-correlation-request-id": [ - "f78d22e9-72a4-4946-87fc-ae1143a49e57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221403Z:f78d22e9-72a4-4946-87fc-ae1143a49e57" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91366f24-f2bb-495c-831c-fddc4a1e98ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6881" - ], - "x-ms-correlation-request-id": [ - "ec129123-1d4d-45d0-a2ba-c6a921339d14" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221404Z:ec129123-1d4d-45d0-a2ba-c6a921339d14" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5c4b22d-a72d-46a9-9eb5-4e7107e8b8a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6880" - ], - "x-ms-correlation-request-id": [ - "12f15abf-30ec-41a3-a53b-7adaf5385eeb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221404Z:12f15abf-30ec-41a3-a53b-7adaf5385eeb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68f97691-2254-4f7e-9663-4196676c28a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6879" - ], - "x-ms-correlation-request-id": [ - "64c31191-aac9-4de8-984b-a7ffb1e5fb9b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221404Z:64c31191-aac9-4de8-984b-a7ffb1e5fb9b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "faac8c3e-4887-4b73-b0dc-e3220463b2aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6878" - ], - "x-ms-correlation-request-id": [ - "8c17962d-9234-4aae-9c19-2b8494539365" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221404Z:8c17962d-9234-4aae-9c19-2b8494539365" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4dbd38fd-cd41-4465-9a9d-fd82201cecd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6877" - ], - "x-ms-correlation-request-id": [ - "bda7a692-9d5c-46dd-bd4b-c25e76bac680" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221404Z:bda7a692-9d5c-46dd-bd4b-c25e76bac680" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5bfaa374-dc23-4e12-95ea-2b361d14ff64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6876" - ], - "x-ms-correlation-request-id": [ - "d74633c0-a1e2-4adf-a5e7-4dd4fa974827" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221404Z:d74633c0-a1e2-4adf-a5e7-4dd4fa974827" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cad9cf55-0591-42bb-8544-35f24bb1dfd6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6875" - ], - "x-ms-correlation-request-id": [ - "8be2d679-d28c-4bb3-8f92-f3dce08fce98" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221404Z:8be2d679-d28c-4bb3-8f92-f3dce08fce98" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1871e9b8-60be-4b73-a95c-6468c58677bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6874" - ], - "x-ms-correlation-request-id": [ - "edaeb59a-769d-446b-9c86-922d2eb97599" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221405Z:edaeb59a-769d-446b-9c86-922d2eb97599" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69efb070-9754-42e9-abc5-177ca7ffad0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6873" - ], - "x-ms-correlation-request-id": [ - "9bc39aa2-fb53-4528-a32a-37dd7d442511" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221405Z:9bc39aa2-fb53-4528-a32a-37dd7d442511" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ce3155d3-ff98-436c-9b18-56ebd59bf1cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6872" - ], - "x-ms-correlation-request-id": [ - "3efce11f-c28a-4d1d-bb19-e4ea7d754d2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221405Z:3efce11f-c28a-4d1d-bb19-e4ea7d754d2c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92f668d7-0476-47ba-bcd0-7e5fffbf3f34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6871" - ], - "x-ms-correlation-request-id": [ - "0914ded7-142e-4b28-91e7-875e9d6460ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221405Z:0914ded7-142e-4b28-91e7-875e9d6460ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb2bb6db-6a6f-41ed-af1b-3be29cd84ba9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6870" - ], - "x-ms-correlation-request-id": [ - "c8f66fa1-1b5f-4413-8beb-fec74a300c13" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221405Z:c8f66fa1-1b5f-4413-8beb-fec74a300c13" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0e134b3-000c-4b5a-ab19-cb9389b7cc16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6869" - ], - "x-ms-correlation-request-id": [ - "a4a772f8-610c-42af-9862-4ffb1e9614c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221405Z:a4a772f8-610c-42af-9862-4ffb1e9614c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5da96450-ac09-4485-ab1c-70d313bdeca0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6868" - ], - "x-ms-correlation-request-id": [ - "3cf193fd-504e-4463-b3c2-01d6d945b304" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221406Z:3cf193fd-504e-4463-b3c2-01d6d945b304" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c518b601-073e-43df-b32c-3249b0fc15b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6867" - ], - "x-ms-correlation-request-id": [ - "818b77fa-e351-4948-8744-21fac57a6bef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221406Z:818b77fa-e351-4948-8744-21fac57a6bef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d8b1158-5eb9-4902-8fe3-80384fc9395c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6866" - ], - "x-ms-correlation-request-id": [ - "43ae9780-376b-4d83-9454-c295742ef987" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221406Z:43ae9780-376b-4d83-9454-c295742ef987" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6c84d79-31b8-4c92-b11e-e514940d65d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6865" - ], - "x-ms-correlation-request-id": [ - "8ec9304d-6bda-4ce1-9565-094e3e5ea22d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221406Z:8ec9304d-6bda-4ce1-9565-094e3e5ea22d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c4f4f54-5b26-49de-93eb-d62d9e6a0d8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6864" - ], - "x-ms-correlation-request-id": [ - "4385e5dd-46d2-4d1f-8926-4036f16be121" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221406Z:4385e5dd-46d2-4d1f-8926-4036f16be121" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7aabdcf1-bc02-4d40-97fa-a7b355064e11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6863" - ], - "x-ms-correlation-request-id": [ - "42268fda-082f-4382-8706-9a8698f2c0ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221406Z:42268fda-082f-4382-8706-9a8698f2c0ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bcbbbbd7-012d-4b79-b5b9-db6ffce22cd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6862" - ], - "x-ms-correlation-request-id": [ - "33573c9b-2586-456b-9778-11dbc096b855" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221406Z:33573c9b-2586-456b-9778-11dbc096b855" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efb98ead-5b8c-46b9-b2a3-3adac85f2258" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6861" - ], - "x-ms-correlation-request-id": [ - "942db5c4-2338-4f22-95d9-a3a18f2cdd03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221407Z:942db5c4-2338-4f22-95d9-a3a18f2cdd03" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1409ba70-1d28-4d9e-b22e-9fe95387ba4f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6860" - ], - "x-ms-correlation-request-id": [ - "45818dfe-025a-4273-96b3-bb86482ec88d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221407Z:45818dfe-025a-4273-96b3-bb86482ec88d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79a74e5e-1121-44ac-b5c9-7c406037c0a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6859" - ], - "x-ms-correlation-request-id": [ - "2b41d129-dc04-4ba9-a29b-2c5dbf4b6076" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221407Z:2b41d129-dc04-4ba9-a29b-2c5dbf4b6076" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31fd2c77-08e8-4809-9a67-b08c04d05f5d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6858" - ], - "x-ms-correlation-request-id": [ - "93788288-7889-4de4-89f6-d7c11815eadb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221407Z:93788288-7889-4de4-89f6-d7c11815eadb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba380ca7-c884-4dd0-ae04-8fed85f7cd7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6857" - ], - "x-ms-correlation-request-id": [ - "93be436c-e321-4634-8b6d-24a827bb651b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221407Z:93be436c-e321-4634-8b6d-24a827bb651b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f44c775-ff02-4a53-9d1e-5ff2b96366fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6856" - ], - "x-ms-correlation-request-id": [ - "70e12480-406a-4c18-84fa-7558d1c485b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221407Z:70e12480-406a-4c18-84fa-7558d1c485b9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3268399-22d4-4bd2-8562-af770a6c6205" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6855" - ], - "x-ms-correlation-request-id": [ - "7334bc2c-fd2b-483e-bd98-d557b3f99dc7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221407Z:7334bc2c-fd2b-483e-bd98-d557b3f99dc7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c762678b-99ae-4cd7-8000-eeaf7b3a9c92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6854" - ], - "x-ms-correlation-request-id": [ - "a88e16a6-59a3-44a7-9c55-6fb8c72056b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221408Z:a88e16a6-59a3-44a7-9c55-6fb8c72056b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb09b200-559f-49e6-b087-97a8f68783b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6853" - ], - "x-ms-correlation-request-id": [ - "267f43d4-4e47-4600-a749-2d2c9a2ee46e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221408Z:267f43d4-4e47-4600-a749-2d2c9a2ee46e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1951bd6-45d0-4069-a410-7b1d75f4cb08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6852" - ], - "x-ms-correlation-request-id": [ - "82e3018e-a280-4fb0-8c05-ab0d6572bad5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221408Z:82e3018e-a280-4fb0-8c05-ab0d6572bad5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84d9a811-3838-49ff-b189-dd780f6dd343" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6851" - ], - "x-ms-correlation-request-id": [ - "0198b1b3-d0c5-4660-9230-dc2e017ea5fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221408Z:0198b1b3-d0c5-4660-9230-dc2e017ea5fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e59f6e33-0b8f-42cf-82c2-bbeb0160fd47" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6850" - ], - "x-ms-correlation-request-id": [ - "88427c99-14cf-4393-8ca2-c8b4fb894828" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221408Z:88427c99-14cf-4393-8ca2-c8b4fb894828" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ec2c0c19-fb86-43b8-a167-5acbcd8ca568" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6849" - ], - "x-ms-correlation-request-id": [ - "0604a0a2-6ce2-4bb1-810d-ea643693e332" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221408Z:0604a0a2-6ce2-4bb1-810d-ea643693e332" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5f2c518-1e6a-4414-81c7-a8b580be9e10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6848" - ], - "x-ms-correlation-request-id": [ - "b91f42c4-5e68-468f-8b73-72cb266c36eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221408Z:b91f42c4-5e68-468f-8b73-72cb266c36eb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6861aa47-cf3f-4b27-a0ec-af449e3632e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6847" - ], - "x-ms-correlation-request-id": [ - "60d036c5-9107-4dad-bed3-4912ca82e020" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221409Z:60d036c5-9107-4dad-bed3-4912ca82e020" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9dea98ce-1a67-4d7f-9aca-68ed797c1b42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6846" - ], - "x-ms-correlation-request-id": [ - "7e2ae8eb-bbef-43e4-80f2-fa90562cca71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221409Z:7e2ae8eb-bbef-43e4-80f2-fa90562cca71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4c5ec29-ff06-43f4-9a31-1e0b7871ef4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6845" - ], - "x-ms-correlation-request-id": [ - "c4141eec-0a3c-473d-8651-f613d6f6ad4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221409Z:c4141eec-0a3c-473d-8651-f613d6f6ad4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb44e789-78da-422d-82d9-df17ed1b2bc9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6844" - ], - "x-ms-correlation-request-id": [ - "c22a68eb-c6cd-4bcb-a2f3-6bc21400b20a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221409Z:c22a68eb-c6cd-4bcb-a2f3-6bc21400b20a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7252c22a-f1cf-4558-9edc-99e164f7aa35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6843" - ], - "x-ms-correlation-request-id": [ - "5bfa32da-52a4-46e4-acea-f1f3e61fcd48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221409Z:5bfa32da-52a4-46e4-acea-f1f3e61fcd48" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ced03291-ce06-4130-b4d7-e161cbfbce87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6842" - ], - "x-ms-correlation-request-id": [ - "6d270dce-7101-4794-a4e9-a91c4f30e782" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221409Z:6d270dce-7101-4794-a4e9-a91c4f30e782" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a4c2060-2cf7-4dc5-81f7-3e3018a7285c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6841" - ], - "x-ms-correlation-request-id": [ - "53786221-f797-45df-b273-6fd8f25c07ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221410Z:53786221-f797-45df-b273-6fd8f25c07ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c50bdd2d-0f31-466f-954f-faff165f615d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6840" - ], - "x-ms-correlation-request-id": [ - "952704a8-9dc4-42fc-8c3d-c19f5d8c8fcb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221410Z:952704a8-9dc4-42fc-8c3d-c19f5d8c8fcb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2048efb9-0b70-4aa6-a5ce-1332666ed365" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6839" - ], - "x-ms-correlation-request-id": [ - "5f5525c7-263a-440f-9923-74c1cfab3e8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221410Z:5f5525c7-263a-440f-9923-74c1cfab3e8c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cab94778-83b1-4a54-96ef-d7e67517e238" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6838" - ], - "x-ms-correlation-request-id": [ - "5b552c6c-b283-4d2f-8060-b110bb58b1d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221410Z:5b552c6c-b283-4d2f-8060-b110bb58b1d0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7da8ca94-7640-4c5f-a37c-7da7812c05db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6837" - ], - "x-ms-correlation-request-id": [ - "19d734f4-4c5b-4427-ae8c-de1337673e16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221410Z:19d734f4-4c5b-4427-ae8c-de1337673e16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d00ce1fe-d220-45cb-b558-ad4f90be0fd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6836" - ], - "x-ms-correlation-request-id": [ - "e7b7875e-5c0a-4f15-ab83-88162fb43970" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221410Z:e7b7875e-5c0a-4f15-ab83-88162fb43970" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "606589c5-0ec6-4901-b9ab-634207675d89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6835" - ], - "x-ms-correlation-request-id": [ - "a127aa0b-044e-4996-86fe-b9be03cbaeeb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221411Z:a127aa0b-044e-4996-86fe-b9be03cbaeeb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be9a3fa7-696b-4db7-b693-a0bd3807a2b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6834" - ], - "x-ms-correlation-request-id": [ - "8d259ffc-1317-4c84-a85a-d20e79f1f000" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221411Z:8d259ffc-1317-4c84-a85a-d20e79f1f000" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0b25625-7bd9-4ad3-818c-6ceb152bdec5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6833" - ], - "x-ms-correlation-request-id": [ - "5fa3f564-7bf6-414a-84f5-d4db3cdf1eaa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221411Z:5fa3f564-7bf6-414a-84f5-d4db3cdf1eaa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a70bab2-80ac-485f-beea-8d35928e2b04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6832" - ], - "x-ms-correlation-request-id": [ - "a064cbdf-e38f-4031-b2d8-03bfc1ed5c59" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221411Z:a064cbdf-e38f-4031-b2d8-03bfc1ed5c59" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59bc9093-32f2-4b21-bb43-44d4ae1617f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6831" - ], - "x-ms-correlation-request-id": [ - "da80c201-ae36-46ad-90b1-ab17a0ec078b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221411Z:da80c201-ae36-46ad-90b1-ab17a0ec078b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84b9f7c8-e965-43ad-8a2b-c4122c57af7f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6830" - ], - "x-ms-correlation-request-id": [ - "90e9b862-7f49-4582-aa1c-b1d06c2fe89f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221411Z:90e9b862-7f49-4582-aa1c-b1d06c2fe89f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dbac8909-d0f8-40e7-97f3-df732a15f2a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6829" - ], - "x-ms-correlation-request-id": [ - "94c22ca6-b40e-468c-80b0-1f0081b9761a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221412Z:94c22ca6-b40e-468c-80b0-1f0081b9761a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f7eaace-74d0-42fa-aa79-978cb2f0c832" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6828" - ], - "x-ms-correlation-request-id": [ - "e18de8a8-fa28-4222-9580-27ae17b76803" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221412Z:e18de8a8-fa28-4222-9580-27ae17b76803" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "908c9153-03e3-4c43-b472-7c5ea6e31d3d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6827" - ], - "x-ms-correlation-request-id": [ - "5f2559e6-17ff-4ad7-93db-aba264d1268d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221412Z:5f2559e6-17ff-4ad7-93db-aba264d1268d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "085dd83c-7605-4643-80b9-e74fb9d80751" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6826" - ], - "x-ms-correlation-request-id": [ - "dbc08c8d-900a-4bf3-baf0-46d8f3bfbf9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221412Z:dbc08c8d-900a-4bf3-baf0-46d8f3bfbf9a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d86fdbe-c1a4-4d1e-9206-a9c5b50d4bfc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6825" - ], - "x-ms-correlation-request-id": [ - "0750beb8-8661-43ff-a89a-9b1b6f53ff8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221412Z:0750beb8-8661-43ff-a89a-9b1b6f53ff8c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3089e924-a7cb-4d7c-bd47-74dc15d5a51d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6824" - ], - "x-ms-correlation-request-id": [ - "fde91cf3-0e7c-4bc1-9192-96a613ec28b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221412Z:fde91cf3-0e7c-4bc1-9192-96a613ec28b7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "79a1bf26-596f-42a7-aeaf-80d110c46a26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6823" - ], - "x-ms-correlation-request-id": [ - "078281c9-6126-4e5b-88dd-ef14af54a062" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221413Z:078281c9-6126-4e5b-88dd-ef14af54a062" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6f77868-29f5-48ce-9c74-7092eb45c55f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6822" - ], - "x-ms-correlation-request-id": [ - "24975dcc-e560-428b-ab3a-14712670452e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221413Z:24975dcc-e560-428b-ab3a-14712670452e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e05e00b4-f01c-4602-9b0c-4a6c69f7ae6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6821" - ], - "x-ms-correlation-request-id": [ - "9dc2e5d7-29c0-4e6c-a323-4c6f8c5f9db3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221413Z:9dc2e5d7-29c0-4e6c-a323-4c6f8c5f9db3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2144cba0-3002-49b1-9477-5c4382587bf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6820" - ], - "x-ms-correlation-request-id": [ - "d4d8bc47-cedc-4400-8690-0de76b840cec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221413Z:d4d8bc47-cedc-4400-8690-0de76b840cec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f105e58a-7dee-4b8c-8e89-287f4de181d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6819" - ], - "x-ms-correlation-request-id": [ - "68ade97d-6240-4f2d-bc4a-9d1407645d57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221413Z:68ade97d-6240-4f2d-bc4a-9d1407645d57" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a259f76b-ec91-4f32-b6f2-51fa7a5f4592" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6818" - ], - "x-ms-correlation-request-id": [ - "bab3fda8-a8b6-4b1d-b57f-2363a31c2854" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221413Z:bab3fda8-a8b6-4b1d-b57f-2363a31c2854" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68817685-9daa-48bd-886f-3c5ae88c3ef2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6817" - ], - "x-ms-correlation-request-id": [ - "db913e1c-ffed-4f44-92c9-2bd808b01c9c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221414Z:db913e1c-ffed-4f44-92c9-2bd808b01c9c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5489ec38-664a-4afe-a6c8-a07548230d5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6816" - ], - "x-ms-correlation-request-id": [ - "95cf3e5c-7067-4c50-8942-71a786a0b97f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221414Z:95cf3e5c-7067-4c50-8942-71a786a0b97f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94d716c7-6459-4d32-a9f9-6a4320d47f2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6815" - ], - "x-ms-correlation-request-id": [ - "79837753-8178-4f0c-adf3-a765c671f791" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221414Z:79837753-8178-4f0c-adf3-a765c671f791" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1854b18-3c5b-4ec6-8ff7-1134d27143e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6814" - ], - "x-ms-correlation-request-id": [ - "e82c5a88-49a2-4402-844a-4c7deb97572d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221414Z:e82c5a88-49a2-4402-844a-4c7deb97572d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2009108a-9d4c-4fd8-a85c-40d40a103c46" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6813" - ], - "x-ms-correlation-request-id": [ - "fdcd0176-4b38-43d5-bdd9-bd796d80e6e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221414Z:fdcd0176-4b38-43d5-bdd9-bd796d80e6e0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "319e95e9-f57a-43f5-84fd-8b3932c5fb4f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6812" - ], - "x-ms-correlation-request-id": [ - "9f2299e8-13da-4562-9008-ea9160e362d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221414Z:9f2299e8-13da-4562-9008-ea9160e362d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1cd73e70-ced4-4756-beef-61c9cf45b032" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6811" - ], - "x-ms-correlation-request-id": [ - "18d6bb36-db62-493c-a249-dac04d422940" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221414Z:18d6bb36-db62-493c-a249-dac04d422940" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25fceada-ea91-4b53-9368-5eaeb0a639ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6810" - ], - "x-ms-correlation-request-id": [ - "160450f8-6731-4b8d-8d6a-ae3c42038d58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221415Z:160450f8-6731-4b8d-8d6a-ae3c42038d58" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "64df5b94-7e13-4e01-bbe7-a0e7ae5c7937" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6809" - ], - "x-ms-correlation-request-id": [ - "d64d6354-5269-4f99-ae9e-40062df2a19e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221415Z:d64d6354-5269-4f99-ae9e-40062df2a19e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94eec948-d1f9-4023-ad6b-5a417dbb0cc0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6808" - ], - "x-ms-correlation-request-id": [ - "28aaa123-6131-4b2f-9c79-429b6c26111a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221415Z:28aaa123-6131-4b2f-9c79-429b6c26111a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6fdb0c59-bd58-4c05-8e22-492152623cfc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6807" - ], - "x-ms-correlation-request-id": [ - "e3776ab0-0355-42b7-9ab7-52966b171144" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221415Z:e3776ab0-0355-42b7-9ab7-52966b171144" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94cbaa90-1a0f-4a11-adc3-864da06f8b9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6806" - ], - "x-ms-correlation-request-id": [ - "14654b28-b1ef-4128-bf6e-027d7866385b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221415Z:14654b28-b1ef-4128-bf6e-027d7866385b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04657692-6097-4ad3-a751-4177b2c98468" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6805" - ], - "x-ms-correlation-request-id": [ - "dba18d21-da51-4ff1-98a6-feb022d46ede" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221415Z:dba18d21-da51-4ff1-98a6-feb022d46ede" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea62bae1-ce16-48cc-a9ed-f1b598e64d5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6804" - ], - "x-ms-correlation-request-id": [ - "529e49a0-c07c-4fae-ac1e-07b869d6df70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221416Z:529e49a0-c07c-4fae-ac1e-07b869d6df70" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91b82cc3-2e22-4543-8680-022860da2185" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6803" - ], - "x-ms-correlation-request-id": [ - "c2596d4d-9d20-48c7-a365-092879b1ee16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221416Z:c2596d4d-9d20-48c7-a365-092879b1ee16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bd4a24c-c515-4be0-89de-3001e18aec47" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6802" - ], - "x-ms-correlation-request-id": [ - "88bfc85e-0e08-46cb-ba46-8c9bbf11be66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221416Z:88bfc85e-0e08-46cb-ba46-8c9bbf11be66" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d90d2de6-d951-47ca-994c-b1063c3a60ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6801" - ], - "x-ms-correlation-request-id": [ - "ecaa6e12-c52f-443f-87e7-00a6667109e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221416Z:ecaa6e12-c52f-443f-87e7-00a6667109e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4893c3d2-5e08-4c6c-8881-a6c45e5ad732" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6800" - ], - "x-ms-correlation-request-id": [ - "80306afe-dcec-422e-b2c6-bd40f43647a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221416Z:80306afe-dcec-422e-b2c6-bd40f43647a0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7be9b1bc-d571-4f2c-b665-e9c6f1f68c9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6799" - ], - "x-ms-correlation-request-id": [ - "11266180-c8cd-4d42-9796-c36631021cf5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221416Z:11266180-c8cd-4d42-9796-c36631021cf5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40023d69-4be8-4954-958d-745b9540427a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6798" - ], - "x-ms-correlation-request-id": [ - "3a22f2ca-5e9f-4908-b377-e4d41251eecb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221416Z:3a22f2ca-5e9f-4908-b377-e4d41251eecb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29a7e1b3-df1b-4101-be7f-fd601d394647" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6797" - ], - "x-ms-correlation-request-id": [ - "6bcc367a-a109-480a-b165-7656f945464b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221417Z:6bcc367a-a109-480a-b165-7656f945464b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1c660de-d9ee-40da-8637-8d7aa8bcb1e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6796" - ], - "x-ms-correlation-request-id": [ - "e16b39ba-b76f-4278-a904-88ec4e96079f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221417Z:e16b39ba-b76f-4278-a904-88ec4e96079f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42b2a675-13fc-4c3e-8d9f-cfc3fec2ff26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6795" - ], - "x-ms-correlation-request-id": [ - "ba15c4b8-0959-4689-ad77-5515e91d6d17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221417Z:ba15c4b8-0959-4689-ad77-5515e91d6d17" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d3bef9b-51cb-46bb-98f0-6a0072f8cf7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6794" - ], - "x-ms-correlation-request-id": [ - "b3bf6dc0-64cd-4a9b-9757-0834ac21ef33" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221417Z:b3bf6dc0-64cd-4a9b-9757-0834ac21ef33" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24c60b7e-e65c-475a-98b6-1e1e7cba1149" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6793" - ], - "x-ms-correlation-request-id": [ - "c0218414-6738-4eaf-b63e-310b3133e9d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221417Z:c0218414-6738-4eaf-b63e-310b3133e9d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "510c65df-f5dc-4787-808c-052198de1a11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6792" - ], - "x-ms-correlation-request-id": [ - "417d4429-0162-42d3-91e0-228091317957" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221417Z:417d4429-0162-42d3-91e0-228091317957" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f1b1918-33e1-4676-9392-58a2d1b8fe03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6791" - ], - "x-ms-correlation-request-id": [ - "393d813c-28bd-4fe1-8ce4-91b82bb11945" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221418Z:393d813c-28bd-4fe1-8ce4-91b82bb11945" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae29560a-0998-4e3b-a492-651c150193ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6790" - ], - "x-ms-correlation-request-id": [ - "b73abe7f-663f-4d14-a7a8-63a38d0408dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221418Z:b73abe7f-663f-4d14-a7a8-63a38d0408dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5c9a686-f207-4862-af12-f87e679f47a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6789" - ], - "x-ms-correlation-request-id": [ - "c34b21f2-9c98-4562-995e-73818ecdb775" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221418Z:c34b21f2-9c98-4562-995e-73818ecdb775" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e63866c8-4e0c-41c8-8914-dcf5a27a5547" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6788" - ], - "x-ms-correlation-request-id": [ - "f565d27d-1263-4ddb-9ebc-4f35d26bb029" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221418Z:f565d27d-1263-4ddb-9ebc-4f35d26bb029" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "961b6c53-0a90-4450-a6e3-715e1d907297" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6787" - ], - "x-ms-correlation-request-id": [ - "314c012d-d8ab-4323-b5ba-ff99ef760027" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221418Z:314c012d-d8ab-4323-b5ba-ff99ef760027" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2362dd53-16c9-44ef-b758-2c6b35d7581d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6786" - ], - "x-ms-correlation-request-id": [ - "70a8dcc9-16b3-4e9e-a90b-4cb90687e08b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221418Z:70a8dcc9-16b3-4e9e-a90b-4cb90687e08b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b823d2c-d6dd-4b5f-ae74-86b3c943abd4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6785" - ], - "x-ms-correlation-request-id": [ - "e1d1f2af-087a-4dd2-b937-2ed4f69901c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221418Z:e1d1f2af-087a-4dd2-b937-2ed4f69901c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0070d221-ec18-431b-ba5f-707309927a0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6784" - ], - "x-ms-correlation-request-id": [ - "f5c6530d-dd17-4e69-ab30-f0a03f83856d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221419Z:f5c6530d-dd17-4e69-ab30-f0a03f83856d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03f85fb5-4701-442a-b523-522cc3e5aa17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6783" - ], - "x-ms-correlation-request-id": [ - "e1daaf51-6c5c-4a96-a077-b8ddcdf194a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221419Z:e1daaf51-6c5c-4a96-a077-b8ddcdf194a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98902e0c-8df3-4b8d-9ac9-c03028d1a2f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6782" - ], - "x-ms-correlation-request-id": [ - "44c3b7f7-8fb5-4ff3-acd2-ca42fde6e3d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221419Z:44c3b7f7-8fb5-4ff3-acd2-ca42fde6e3d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "033e326a-9d4b-4082-9ac3-0a86ee527d67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6781" - ], - "x-ms-correlation-request-id": [ - "60196acf-2299-4eae-8327-d4ec056edde7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221419Z:60196acf-2299-4eae-8327-d4ec056edde7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8035a27-a58d-4b66-8f53-75b11be9b739" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6780" - ], - "x-ms-correlation-request-id": [ - "56e7bdfb-ed39-4e2a-b121-98762e8973a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221419Z:56e7bdfb-ed39-4e2a-b121-98762e8973a6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4feee02c-33fc-44ce-8bc0-da6a06533f57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6779" - ], - "x-ms-correlation-request-id": [ - "81233f93-2629-4e5b-b603-0c065f06e070" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221419Z:81233f93-2629-4e5b-b603-0c065f06e070" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7644166-5a4f-4db8-bfbf-b9773f85bc93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6778" - ], - "x-ms-correlation-request-id": [ - "bf64fe62-47ec-4b21-9be0-9861a94493d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221420Z:bf64fe62-47ec-4b21-9be0-9861a94493d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0c68fcdf-6ac7-4715-9c3c-e8aac7217ea4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6777" - ], - "x-ms-correlation-request-id": [ - "68f4e7d4-23a6-450a-a5b5-084d5c3a2eff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221420Z:68f4e7d4-23a6-450a-a5b5-084d5c3a2eff" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf55df55-83de-401c-9af3-fc855ffb34ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6776" - ], - "x-ms-correlation-request-id": [ - "df8e36bd-807c-4c2b-ab02-83305ec1bcf9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221420Z:df8e36bd-807c-4c2b-ab02-83305ec1bcf9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c442ab2-70c2-4c5f-9a51-2557fc0cd909" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6775" - ], - "x-ms-correlation-request-id": [ - "e711a153-d7e7-4e1c-9421-ee735f4fceae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221420Z:e711a153-d7e7-4e1c-9421-ee735f4fceae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b807191-5dec-4ac6-93ed-ae3f0c27f376" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6774" - ], - "x-ms-correlation-request-id": [ - "40fc18d8-87bb-465a-ad9f-4ef5e53ac08f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221420Z:40fc18d8-87bb-465a-ad9f-4ef5e53ac08f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "022f1f28-e21d-4937-9cb2-db531856224f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6773" - ], - "x-ms-correlation-request-id": [ - "ecd3a36e-9f6a-4bf4-8bbf-7d9047cb12d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221420Z:ecd3a36e-9f6a-4bf4-8bbf-7d9047cb12d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20a27660-2e6e-4a02-aaa2-6b6ca67839fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6772" - ], - "x-ms-correlation-request-id": [ - "5f22e02d-2a93-4d32-9df9-4057a9ef1e9c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221421Z:5f22e02d-2a93-4d32-9df9-4057a9ef1e9c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b4b0a5d-5808-4dc9-8c61-793777126377" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6771" - ], - "x-ms-correlation-request-id": [ - "e35dde72-c7e2-49ba-a85b-47396ad00845" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221421Z:e35dde72-c7e2-49ba-a85b-47396ad00845" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "185de6fe-157a-4692-a5a4-6a76d4707125" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6770" - ], - "x-ms-correlation-request-id": [ - "5ed7d0bf-c1df-4977-9054-fd603577de49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221421Z:5ed7d0bf-c1df-4977-9054-fd603577de49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fef94ea1-1dee-40fa-9958-4f1c74f96377" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6769" - ], - "x-ms-correlation-request-id": [ - "98284c62-7999-4fd4-92bc-18f12c08c5c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221421Z:98284c62-7999-4fd4-92bc-18f12c08c5c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69de8262-8b0f-4ff7-ae9f-45dea218e456" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6768" - ], - "x-ms-correlation-request-id": [ - "c7ae3c70-38df-4744-8617-9a6abb253d11" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221421Z:c7ae3c70-38df-4744-8617-9a6abb253d11" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f2d0663-2a68-4865-ad9c-215222dbfa7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6767" - ], - "x-ms-correlation-request-id": [ - "78c80f94-1947-4bb7-8d2f-8b909bffd76d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221421Z:78c80f94-1947-4bb7-8d2f-8b909bffd76d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b185d9d1-7ce3-49b5-8658-8562af0eeb6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6766" - ], - "x-ms-correlation-request-id": [ - "3a15a98e-0bcc-4a5b-82c8-8c50ad8479d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221422Z:3a15a98e-0bcc-4a5b-82c8-8c50ad8479d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b61929dd-bc44-4488-babb-0255d6fccd96" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6765" - ], - "x-ms-correlation-request-id": [ - "f00a2cf6-1535-448e-ad80-f3af61bda52b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221422Z:f00a2cf6-1535-448e-ad80-f3af61bda52b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99d0b4aa-7310-478b-94f8-592b60a8b139" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6764" - ], - "x-ms-correlation-request-id": [ - "1dd929e9-feee-4a8d-b592-0c7b4e202fa6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221422Z:1dd929e9-feee-4a8d-b592-0c7b4e202fa6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33e6cd1c-cd19-4ade-ba75-53814d389c5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6763" - ], - "x-ms-correlation-request-id": [ - "a4f09924-308c-4518-8f7e-97210b8e2892" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221422Z:a4f09924-308c-4518-8f7e-97210b8e2892" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2da12c0-e7b3-46de-b2f7-c4f70b3d8de8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6762" - ], - "x-ms-correlation-request-id": [ - "6583e43e-80f0-4f7c-88c2-1ce8c21b9390" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221422Z:6583e43e-80f0-4f7c-88c2-1ce8c21b9390" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1f79cb0-44ff-4c3d-8e64-c6b9ff509a30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6761" - ], - "x-ms-correlation-request-id": [ - "e30e93ad-ac8f-4395-8fb4-f15aa4d7606d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221422Z:e30e93ad-ac8f-4395-8fb4-f15aa4d7606d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3777f62f-c7fb-4ea8-b076-13f1d6083533" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6760" - ], - "x-ms-correlation-request-id": [ - "c77ad681-6811-4f96-9505-a6ea0c67f71b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221423Z:c77ad681-6811-4f96-9505-a6ea0c67f71b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e80e5e06-4e65-46e7-9b24-18778ba90b23" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6759" - ], - "x-ms-correlation-request-id": [ - "eeefd523-717f-4a5e-98e4-52796e18fb8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221423Z:eeefd523-717f-4a5e-98e4-52796e18fb8e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e4c5a49-7439-4305-ade6-2e59e47c4556" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6758" - ], - "x-ms-correlation-request-id": [ - "200e0e3c-c713-460f-8b6f-534e9d40b71f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221423Z:200e0e3c-c713-460f-8b6f-534e9d40b71f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d477618-e484-4130-a3ef-b5155bdd79ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6757" - ], - "x-ms-correlation-request-id": [ - "34e25b54-7634-4c66-9505-55532a06acee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221423Z:34e25b54-7634-4c66-9505-55532a06acee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da408442-393c-45cf-92ad-a0b02b727ce7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6756" - ], - "x-ms-correlation-request-id": [ - "f21e4314-35e5-4b1a-867c-f390bbd9e72a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221423Z:f21e4314-35e5-4b1a-867c-f390bbd9e72a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9bf9c0f-06be-40df-9c07-6eacf6e4950c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6755" - ], - "x-ms-correlation-request-id": [ - "4becf26b-8c1d-4759-a051-45fe80b1e5d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221423Z:4becf26b-8c1d-4759-a051-45fe80b1e5d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8863a4d-220a-430b-a25a-54a8fd655674" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6754" - ], - "x-ms-correlation-request-id": [ - "5bcbff61-7f24-4929-b181-c92daaacca36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221424Z:5bcbff61-7f24-4929-b181-c92daaacca36" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb7ac958-6358-4fce-9f7b-1c2621ca22d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6753" - ], - "x-ms-correlation-request-id": [ - "c1c9c762-152c-4ac0-af76-d251fa66d8ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221424Z:c1c9c762-152c-4ac0-af76-d251fa66d8ec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a2875a0-8608-4278-84f7-2e05321357ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6752" - ], - "x-ms-correlation-request-id": [ - "23643b45-9629-4852-9cf2-491a849feb97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221424Z:23643b45-9629-4852-9cf2-491a849feb97" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e832adf-d0e9-4925-80d6-cbf0c17779eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6751" - ], - "x-ms-correlation-request-id": [ - "31fe5a0a-b08f-46ca-8f7b-511794869b40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221424Z:31fe5a0a-b08f-46ca-8f7b-511794869b40" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "630d6a43-27c0-475b-b849-a785157591b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6750" - ], - "x-ms-correlation-request-id": [ - "ff2c20e8-0821-43f3-986c-1e52c7a37fa3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221424Z:ff2c20e8-0821-43f3-986c-1e52c7a37fa3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee4224f5-b1c4-43bc-985e-f869d4d14448" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6749" - ], - "x-ms-correlation-request-id": [ - "515fa546-add2-4eaa-b348-04b7a6f80dcd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221424Z:515fa546-add2-4eaa-b348-04b7a6f80dcd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2dc0d4d0-8e34-4531-9805-07717247fdcb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6748" - ], - "x-ms-correlation-request-id": [ - "c92f1c89-c1ec-4886-994a-8adc29ffe489" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221424Z:c92f1c89-c1ec-4886-994a-8adc29ffe489" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "170c4b45-3634-4c8e-9dc3-dbbc6933350b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6747" - ], - "x-ms-correlation-request-id": [ - "ad57feee-551d-493c-ad96-1f494e79dabe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221425Z:ad57feee-551d-493c-ad96-1f494e79dabe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00cd3aca-540f-44d5-80ca-73f7dd3b183f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6746" - ], - "x-ms-correlation-request-id": [ - "0ce50ba8-180f-4a2c-8224-f787c5d3de26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221425Z:0ce50ba8-180f-4a2c-8224-f787c5d3de26" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9f37a4f-dbd4-42b9-9bd7-dd92dc5fb198" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6745" - ], - "x-ms-correlation-request-id": [ - "38e56591-7b31-4586-a4e9-c6543ad69808" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221425Z:38e56591-7b31-4586-a4e9-c6543ad69808" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bae682c4-fd92-465b-96fd-f14d317a77d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6744" - ], - "x-ms-correlation-request-id": [ - "5448e1a1-a7a3-49d7-ab42-1da0778068f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221425Z:5448e1a1-a7a3-49d7-ab42-1da0778068f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4704dcbe-7435-4f06-8df0-c24208ff1c6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6743" - ], - "x-ms-correlation-request-id": [ - "a5ea6f56-051c-4fc3-81cd-2a8dedc98c73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221425Z:a5ea6f56-051c-4fc3-81cd-2a8dedc98c73" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ae12fd4-abbf-428d-ae0d-427a2170c36e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6742" - ], - "x-ms-correlation-request-id": [ - "8fa0695c-ce23-421a-b9fe-9a859e66bacc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221425Z:8fa0695c-ce23-421a-b9fe-9a859e66bacc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c749976-0a2d-474a-b5b1-c6bbc4117b4f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6741" - ], - "x-ms-correlation-request-id": [ - "65190f8a-73fa-4dbc-8c0a-e8d1bf139629" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221426Z:65190f8a-73fa-4dbc-8c0a-e8d1bf139629" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0f65e3a-8da1-4932-845d-dafe7be0679c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6740" - ], - "x-ms-correlation-request-id": [ - "3dd2853f-4aad-4ab8-8517-a8e3c887a4c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221426Z:3dd2853f-4aad-4ab8-8517-a8e3c887a4c4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87372598-36a2-4362-8648-649d13dfdddd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6739" - ], - "x-ms-correlation-request-id": [ - "f6d531cc-f1ba-490a-8546-6042a982f2ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221426Z:f6d531cc-f1ba-490a-8546-6042a982f2ed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "096b7d63-50a8-4379-8069-f08497329fdb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6738" - ], - "x-ms-correlation-request-id": [ - "9b3326ba-5152-41f9-a93f-2d08a58d14e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221426Z:9b3326ba-5152-41f9-a93f-2d08a58d14e1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e205d47-2eb4-44ac-87ef-bf5e45ffc73a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6737" - ], - "x-ms-correlation-request-id": [ - "a4f6dbcd-26fa-4bec-a391-d1893c9a883d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221426Z:a4f6dbcd-26fa-4bec-a391-d1893c9a883d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c48d979-bfc5-445b-88b7-68466b22b7da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6736" - ], - "x-ms-correlation-request-id": [ - "8fd69d01-4e52-4f6b-a83d-1ea84b77be81" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221426Z:8fd69d01-4e52-4f6b-a83d-1ea84b77be81" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bffee76c-8230-4bc1-bd66-29480b8b1ef0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6735" - ], - "x-ms-correlation-request-id": [ - "b4058907-5e50-4c4d-bc6c-91a8a968579e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221427Z:b4058907-5e50-4c4d-bc6c-91a8a968579e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb648c42-510e-467f-9e76-0956e8901697" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6734" - ], - "x-ms-correlation-request-id": [ - "c6a69c95-8002-463a-bb0e-6b763318e76c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221427Z:c6a69c95-8002-463a-bb0e-6b763318e76c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59b01a17-c083-4b31-a296-40f6965eb7cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6733" - ], - "x-ms-correlation-request-id": [ - "90fe9ce2-1e30-4157-86b1-5d4a95441b35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221427Z:90fe9ce2-1e30-4157-86b1-5d4a95441b35" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "147c227f-1948-4871-ab29-0787f93e75ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6732" - ], - "x-ms-correlation-request-id": [ - "4991b412-8edd-4503-afe8-b0af22b10dc3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221427Z:4991b412-8edd-4503-afe8-b0af22b10dc3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a0f5dfa-8416-4f1e-9a67-a5212eadfc74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6731" - ], - "x-ms-correlation-request-id": [ - "de078cea-5303-4918-afef-7233c17750e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221427Z:de078cea-5303-4918-afef-7233c17750e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87127b43-556f-45d6-aa25-7cf8392c3546" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6730" - ], - "x-ms-correlation-request-id": [ - "ea93fc61-fb7e-44b7-ad04-95def75614aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221427Z:ea93fc61-fb7e-44b7-ad04-95def75614aa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43a7afbb-8f9e-4a8f-9193-a8c21ce6d988" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6729" - ], - "x-ms-correlation-request-id": [ - "11519305-2fa6-4afd-afa2-b236ec883f3f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221428Z:11519305-2fa6-4afd-afa2-b236ec883f3f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d96f12c2-8ea0-42b4-af87-b1380222d40e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6728" - ], - "x-ms-correlation-request-id": [ - "d84676b8-0e5a-4b6e-b5b0-28730b6ec083" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221428Z:d84676b8-0e5a-4b6e-b5b0-28730b6ec083" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c03bb21d-27ef-4436-a142-2a5b816416ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6727" - ], - "x-ms-correlation-request-id": [ - "647e6d0c-dad5-467c-b96e-21a041519f52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221428Z:647e6d0c-dad5-467c-b96e-21a041519f52" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3cf6463e-8d84-402d-9a90-87168f651d9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6726" - ], - "x-ms-correlation-request-id": [ - "ae91bb79-d6d8-4e88-80cf-a12436c9879b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221428Z:ae91bb79-d6d8-4e88-80cf-a12436c9879b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3c929a7-4e5e-4fb0-80fc-5e571e38f3bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6725" - ], - "x-ms-correlation-request-id": [ - "db78f06b-9e0d-4d4d-b0fe-839d09ad7e71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221428Z:db78f06b-9e0d-4d4d-b0fe-839d09ad7e71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d67d788f-2f3e-450f-8dc2-52ec667143a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6724" - ], - "x-ms-correlation-request-id": [ - "a796744e-bc9e-4a85-9ae7-9c68d445220f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221428Z:a796744e-bc9e-4a85-9ae7-9c68d445220f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba8da64e-93ea-4faf-b83f-4df19cc1ddfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6723" - ], - "x-ms-correlation-request-id": [ - "d2369761-8709-4ead-890e-ed27f3f96430" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221429Z:d2369761-8709-4ead-890e-ed27f3f96430" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ef94b15-727e-4cda-a865-8abc0df12860" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6722" - ], - "x-ms-correlation-request-id": [ - "ff26cf9b-8d50-4dcd-9e0c-0e40c855b218" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221429Z:ff26cf9b-8d50-4dcd-9e0c-0e40c855b218" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d324995d-8446-4ba8-85ba-ca56fbc58030" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6721" - ], - "x-ms-correlation-request-id": [ - "53c9fc99-229f-4c5d-8423-7f7015f22367" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221429Z:53c9fc99-229f-4c5d-8423-7f7015f22367" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7b0d633-2697-4006-a662-ca7998a528eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6720" - ], - "x-ms-correlation-request-id": [ - "b2ff9794-e15e-4494-a058-23854a69c7f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221429Z:b2ff9794-e15e-4494-a058-23854a69c7f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6513d0dc-b58a-4af4-a303-5546a58a19a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6719" - ], - "x-ms-correlation-request-id": [ - "b348baf7-9352-4241-8e7e-f50338de868b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221429Z:b348baf7-9352-4241-8e7e-f50338de868b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9a4c89a-8c4d-4ebf-9163-64a16e85f9b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6718" - ], - "x-ms-correlation-request-id": [ - "72baa349-6323-4d40-87d6-4054db39fb26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221429Z:72baa349-6323-4d40-87d6-4054db39fb26" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed09d59f-7b6a-4d44-8ac3-78b20ddb7c50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6717" - ], - "x-ms-correlation-request-id": [ - "e75cd2a9-0ed2-45b7-afe6-140dcc57c10f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221430Z:e75cd2a9-0ed2-45b7-afe6-140dcc57c10f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "161e6f69-73b0-4f0e-8307-2ce9425beaeb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6716" - ], - "x-ms-correlation-request-id": [ - "c7246829-0d23-487c-97c2-8b4e0897819e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221430Z:c7246829-0d23-487c-97c2-8b4e0897819e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96d5b28d-327a-4271-944c-f256974256a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6715" - ], - "x-ms-correlation-request-id": [ - "35c9e30c-1569-420b-94bf-d7d770a5f4ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221430Z:35c9e30c-1569-420b-94bf-d7d770a5f4ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99e1df19-1e5c-4d9d-bc7b-795d15e6a2dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6714" - ], - "x-ms-correlation-request-id": [ - "5b9d80db-1471-42d9-b48b-dddc519f45d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221430Z:5b9d80db-1471-42d9-b48b-dddc519f45d7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f452822-1129-4e66-8e68-2d669c54a253" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6713" - ], - "x-ms-correlation-request-id": [ - "45cce025-ea1d-4678-8c3a-0fa29c195b0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221430Z:45cce025-ea1d-4678-8c3a-0fa29c195b0c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5bdb799-9ad5-459d-932e-5509c1885bc7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6712" - ], - "x-ms-correlation-request-id": [ - "210d45a7-8bd7-4280-b88c-f6691cba952a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221431Z:210d45a7-8bd7-4280-b88c-f6691cba952a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6c5bb08-e541-446b-a4db-c87339610d3e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6711" - ], - "x-ms-correlation-request-id": [ - "aad2da99-e0cb-4c00-bcce-2be3004fd0d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221431Z:aad2da99-e0cb-4c00-bcce-2be3004fd0d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1c245d5-7d93-4d8c-bdf6-0670bea4682a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6710" - ], - "x-ms-correlation-request-id": [ - "ea0a2872-3a2c-4b80-bcc1-0e1f6f850a64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221431Z:ea0a2872-3a2c-4b80-bcc1-0e1f6f850a64" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e318c9d-62b2-458f-8f89-7de0a1c862fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6709" - ], - "x-ms-correlation-request-id": [ - "2058e748-371b-46bd-b01c-5a632da2ad57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221431Z:2058e748-371b-46bd-b01c-5a632da2ad57" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e330df2-ea9d-4aa0-841f-28b685b51177" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6708" - ], - "x-ms-correlation-request-id": [ - "a5272f39-3cbb-4fb2-b403-26d2cab1668c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221431Z:a5272f39-3cbb-4fb2-b403-26d2cab1668c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5d9c9ca-cd65-49b9-982a-10938680ba30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6707" - ], - "x-ms-correlation-request-id": [ - "ea9f8f15-09f1-4799-a498-195c6d78beb2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221431Z:ea9f8f15-09f1-4799-a498-195c6d78beb2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed0286e7-4476-4fab-a46f-3d4fb5bcee3d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6706" - ], - "x-ms-correlation-request-id": [ - "f88990d1-ec88-418f-b254-7b9d74d212cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221432Z:f88990d1-ec88-418f-b254-7b9d74d212cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75d93471-1d0d-4ecf-9f20-167a022524b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6705" - ], - "x-ms-correlation-request-id": [ - "9f32e890-45f0-487c-8122-eace7a151ad1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221432Z:9f32e890-45f0-487c-8122-eace7a151ad1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "55ac25c9-7163-4566-a555-1c871a72af0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6704" - ], - "x-ms-correlation-request-id": [ - "cbfc0b59-8a73-493a-a95e-6af99fe30c24" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221432Z:cbfc0b59-8a73-493a-a95e-6af99fe30c24" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ef2eec6-9580-456f-b20b-03e66bfb66e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6703" - ], - "x-ms-correlation-request-id": [ - "10828f74-d5ac-411f-b5a5-53dad883a670" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221432Z:10828f74-d5ac-411f-b5a5-53dad883a670" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c7e4b80-de5b-4f29-a75b-961790e0ac77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6702" - ], - "x-ms-correlation-request-id": [ - "1b09f1e6-1d3b-4312-a7c8-35704cf036ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221432Z:1b09f1e6-1d3b-4312-a7c8-35704cf036ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01e9c1cd-868b-4551-9bd3-f3b23e3ba153" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6701" - ], - "x-ms-correlation-request-id": [ - "370c03a3-91a1-40a4-9dfe-9c5d6fcf6c87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221432Z:370c03a3-91a1-40a4-9dfe-9c5d6fcf6c87" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e2c3d05-fa24-476d-8942-3741b06172b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6700" - ], - "x-ms-correlation-request-id": [ - "77e52478-0fd1-4414-89cf-e89130c5540a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221433Z:77e52478-0fd1-4414-89cf-e89130c5540a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c309a3b2-8983-4ea6-9755-fe9e9f7fda89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6699" - ], - "x-ms-correlation-request-id": [ - "0284d713-6e35-4a08-8ddb-11b79ac7090b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221433Z:0284d713-6e35-4a08-8ddb-11b79ac7090b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "677fc84d-0a36-4546-9665-acb4cc5fe105" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6698" - ], - "x-ms-correlation-request-id": [ - "f99f453f-bbe7-40c4-9534-7e8db03a6832" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221433Z:f99f453f-bbe7-40c4-9534-7e8db03a6832" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b9859a0-7c56-49dd-af9c-88c71466f168" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6697" - ], - "x-ms-correlation-request-id": [ - "ca33e6fa-1e83-493c-9ce8-5df0d9abc02f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221433Z:ca33e6fa-1e83-493c-9ce8-5df0d9abc02f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "34ba0ede-7055-46d9-86a8-bffc6a751734" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6696" - ], - "x-ms-correlation-request-id": [ - "67283a8f-6278-424a-b3a7-bf9a48ef249e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221433Z:67283a8f-6278-424a-b3a7-bf9a48ef249e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7da2fee4-d19a-44b9-b66c-e9c34176759f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6695" - ], - "x-ms-correlation-request-id": [ - "b4dc374b-522c-474a-a841-b562c5ed7cda" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221433Z:b4dc374b-522c-474a-a841-b562c5ed7cda" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d24bbbb1-3882-4590-ac78-113de41534a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6694" - ], - "x-ms-correlation-request-id": [ - "f089df19-d1ab-4dc8-92e4-06c93ce9adbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221434Z:f089df19-d1ab-4dc8-92e4-06c93ce9adbf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59a2c171-bc11-4ea6-bf53-2aaff0fdadb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6693" - ], - "x-ms-correlation-request-id": [ - "0d360330-4e75-4f5f-aa22-659106ea50c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221434Z:0d360330-4e75-4f5f-aa22-659106ea50c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6a2055d-f3f1-4463-915e-4939f8856af0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6692" - ], - "x-ms-correlation-request-id": [ - "a3c6bff3-44a8-47b8-a58d-f00639f3c0dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221434Z:a3c6bff3-44a8-47b8-a58d-f00639f3c0dd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd1ded14-9fd9-4aa1-82d2-a500737c17dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6691" - ], - "x-ms-correlation-request-id": [ - "0b08c125-cb93-473c-bd2c-cc036d23978c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221434Z:0b08c125-cb93-473c-bd2c-cc036d23978c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39af49e6-2192-46a2-9b19-e2259ccd5998" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6690" - ], - "x-ms-correlation-request-id": [ - "687cbc93-3f0f-4a1c-8f8e-0ca8bcd98886" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221434Z:687cbc93-3f0f-4a1c-8f8e-0ca8bcd98886" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "199a5060-a5a1-461c-a4a7-52e32b395a38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6689" - ], - "x-ms-correlation-request-id": [ - "71e28d5b-b159-4350-9f28-561b0e2ce359" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221434Z:71e28d5b-b159-4350-9f28-561b0e2ce359" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "424f34d4-6e61-4368-beda-d5b2016fcb92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6688" - ], - "x-ms-correlation-request-id": [ - "46dd3483-7603-48b4-8805-42e8128df8b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221434Z:46dd3483-7603-48b4-8805-42e8128df8b1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5e90b36-b373-42e5-8436-2cdc597ae235" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6687" - ], - "x-ms-correlation-request-id": [ - "0a9c5edb-3769-4756-a5cc-842b873f3f5b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221435Z:0a9c5edb-3769-4756-a5cc-842b873f3f5b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6ec1f16-5989-4455-812c-6557a6ea22f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6686" - ], - "x-ms-correlation-request-id": [ - "fe80130f-9528-4610-8644-f4a2d4499af5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221435Z:fe80130f-9528-4610-8644-f4a2d4499af5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "916e3375-1cdb-493d-adf5-1b8c8f0361cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6685" - ], - "x-ms-correlation-request-id": [ - "1d2c4ecf-9a9c-456a-9a4d-58bc3be1cd17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221435Z:1d2c4ecf-9a9c-456a-9a4d-58bc3be1cd17" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e70d6ba-ede9-4215-9e73-95d997871b2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6684" - ], - "x-ms-correlation-request-id": [ - "b7244f5b-4398-4f71-96cb-26f494342e87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221435Z:b7244f5b-4398-4f71-96cb-26f494342e87" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13eb2c6a-5a63-4d19-8f0e-c0f20d3eaf1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6683" - ], - "x-ms-correlation-request-id": [ - "047d45fd-ddb0-4aa5-b468-3a538ef2e100" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221435Z:047d45fd-ddb0-4aa5-b468-3a538ef2e100" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a58d475-8131-44bb-85ab-3503a682e9bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6682" - ], - "x-ms-correlation-request-id": [ - "3333e65e-af54-4a1d-95b0-7f9b7575c470" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221435Z:3333e65e-af54-4a1d-95b0-7f9b7575c470" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2eae839b-a55e-4ed2-bed2-71e64bc9046a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6681" - ], - "x-ms-correlation-request-id": [ - "4d1e9d40-5075-40bc-bf1b-f9e9fd3b0c2d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221435Z:4d1e9d40-5075-40bc-bf1b-f9e9fd3b0c2d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4808fb90-a121-42f8-8379-ba8563e806a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6680" - ], - "x-ms-correlation-request-id": [ - "49fef8cc-1862-4b5f-907b-139f7cb9658d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221436Z:49fef8cc-1862-4b5f-907b-139f7cb9658d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc4bbfaf-1e03-4465-905f-0866cf6bb646" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6679" - ], - "x-ms-correlation-request-id": [ - "ba731040-49cd-4d2c-9cfb-b5b3e0144e86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221436Z:ba731040-49cd-4d2c-9cfb-b5b3e0144e86" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b803d20-d891-4bb4-bbb4-e7aef1ecb122" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6678" - ], - "x-ms-correlation-request-id": [ - "b58b7bd1-4788-40dc-81d7-d9cf7cc5f9fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221436Z:b58b7bd1-4788-40dc-81d7-d9cf7cc5f9fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "890509e6-41fa-45d6-9556-8f366a274768" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6677" - ], - "x-ms-correlation-request-id": [ - "b3d92df7-1bd4-4848-9054-0d5634ca741e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221436Z:b3d92df7-1bd4-4848-9054-0d5634ca741e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6576793c-ec1a-42fe-9e8b-36e304bf9dab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6676" - ], - "x-ms-correlation-request-id": [ - "24151ef1-d7dd-4f5e-a314-88e04192dbab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221436Z:24151ef1-d7dd-4f5e-a314-88e04192dbab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b38136f-55d2-4ac8-bc52-e8e27347ec2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6675" - ], - "x-ms-correlation-request-id": [ - "287dbe50-3781-44bc-96e8-e7b483e7b587" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221437Z:287dbe50-3781-44bc-96e8-e7b483e7b587" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9c33793-10bc-497b-a058-c3e4fa3fd65b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6674" - ], - "x-ms-correlation-request-id": [ - "8336b5b1-2798-4ec1-ae0e-f979f63e7151" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221437Z:8336b5b1-2798-4ec1-ae0e-f979f63e7151" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02ad5981-4421-48a0-a546-116c728eb193" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6673" - ], - "x-ms-correlation-request-id": [ - "e7305eb7-ee74-454a-a1b1-82dc83a62c5c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221437Z:e7305eb7-ee74-454a-a1b1-82dc83a62c5c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "708719d7-b716-49db-8dc9-c24cac4daba5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6672" - ], - "x-ms-correlation-request-id": [ - "4bd85be9-fbb1-4350-922c-ed1fb2f096af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221437Z:4bd85be9-fbb1-4350-922c-ed1fb2f096af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "368a163a-af5f-4ca2-838c-201b316f815f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6671" - ], - "x-ms-correlation-request-id": [ - "d7426885-9029-44cc-a956-4da77857c7c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221437Z:d7426885-9029-44cc-a956-4da77857c7c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8ac42cd-8bed-42bb-8ae2-75a972153e0a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6670" - ], - "x-ms-correlation-request-id": [ - "c184134d-7b0a-47ec-9888-1fb75ea9333a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221437Z:c184134d-7b0a-47ec-9888-1fb75ea9333a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "15cea399-e6cb-4bdb-8840-f22e036758e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6669" - ], - "x-ms-correlation-request-id": [ - "74d139c4-8ee2-4431-94d5-c0f27bc7ac1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221437Z:74d139c4-8ee2-4431-94d5-c0f27bc7ac1c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "679379a0-5ca0-4545-a597-54d03d2cbc8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6668" - ], - "x-ms-correlation-request-id": [ - "82ffe67c-a3b5-4c30-8a01-6ceb0687bacd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221438Z:82ffe67c-a3b5-4c30-8a01-6ceb0687bacd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a48ff047-415f-4f4d-83af-94c9064fab7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6667" - ], - "x-ms-correlation-request-id": [ - "ff042d3d-c8ec-4cf4-bb0f-5a3592213928" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221438Z:ff042d3d-c8ec-4cf4-bb0f-5a3592213928" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02af2a21-194b-4d22-bbd3-25f482059770" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6666" - ], - "x-ms-correlation-request-id": [ - "ba8f99c2-2317-42ef-92b2-c040e5f82c16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221438Z:ba8f99c2-2317-42ef-92b2-c040e5f82c16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d086124e-e400-4e29-b491-5532e2f81832" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6665" - ], - "x-ms-correlation-request-id": [ - "520d5e4e-0dc1-4eb5-a41a-fea17259a1af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221438Z:520d5e4e-0dc1-4eb5-a41a-fea17259a1af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85adecd5-4014-41c9-a11e-5d101ad8f9b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6664" - ], - "x-ms-correlation-request-id": [ - "796bc507-5e9e-468d-971e-1670179f559e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221438Z:796bc507-5e9e-468d-971e-1670179f559e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c4cd3ea2-db86-486c-b4e6-1f9040401b89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6663" - ], - "x-ms-correlation-request-id": [ - "1052c982-c575-405d-993c-431cca6f00bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221438Z:1052c982-c575-405d-993c-431cca6f00bf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "34c831e8-e2fc-4f39-9c70-aceb2307a521" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6662" - ], - "x-ms-correlation-request-id": [ - "5ea3d75e-f0b4-493f-b064-2c884c4b88cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221439Z:5ea3d75e-f0b4-493f-b064-2c884c4b88cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "521b85ce-f4d9-49ae-858c-99faec30dbfb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6661" - ], - "x-ms-correlation-request-id": [ - "4483765a-dd95-47c2-bb4b-928bb8d63c1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221439Z:4483765a-dd95-47c2-bb4b-928bb8d63c1f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "befa1c0b-8495-4272-8c7d-2b70fedb35d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6660" - ], - "x-ms-correlation-request-id": [ - "782c4e03-5b53-4b75-9c0f-c6a4cdd6109e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221439Z:782c4e03-5b53-4b75-9c0f-c6a4cdd6109e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85d92f46-55b9-48b7-93a0-0746cd5f1952" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6659" - ], - "x-ms-correlation-request-id": [ - "1cf10333-1253-41b3-b39a-476c826f950b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221439Z:1cf10333-1253-41b3-b39a-476c826f950b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23093a47-1433-4d6a-89a4-ec3ee442d866" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6658" - ], - "x-ms-correlation-request-id": [ - "07fa5ccb-46f1-4ebf-8e64-321df9616330" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221439Z:07fa5ccb-46f1-4ebf-8e64-321df9616330" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f25d18f9-e96e-4c90-873e-c5464ddec4a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6657" - ], - "x-ms-correlation-request-id": [ - "b5094971-890d-4361-99c6-7b6c4a69ce89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221439Z:b5094971-890d-4361-99c6-7b6c4a69ce89" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2d2202a-b236-4f4f-8dc1-674bd9155a48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6656" - ], - "x-ms-correlation-request-id": [ - "0051ab54-1ace-4d4f-8162-b9fbb82b1bcb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221439Z:0051ab54-1ace-4d4f-8162-b9fbb82b1bcb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53a087cf-634b-4f9d-b8dd-a8ae033cdb11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6655" - ], - "x-ms-correlation-request-id": [ - "a30c922b-69b5-4cd6-967b-2a048978b012" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221440Z:a30c922b-69b5-4cd6-967b-2a048978b012" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7351e7f6-c5a9-469d-bf59-4da2ca4212b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6654" - ], - "x-ms-correlation-request-id": [ - "f9f39be0-4abf-4ac5-8233-c58443f3fb03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221440Z:f9f39be0-4abf-4ac5-8233-c58443f3fb03" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d312642c-a42f-4944-a682-def6a2701d7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6653" - ], - "x-ms-correlation-request-id": [ - "405de9ef-2085-49fa-bccd-681408c74d8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221440Z:405de9ef-2085-49fa-bccd-681408c74d8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29333887-e2bf-4f04-95a7-cf6c052a6de6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6652" - ], - "x-ms-correlation-request-id": [ - "07475d11-8218-4730-9d51-d6e6a28c7263" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221440Z:07475d11-8218-4730-9d51-d6e6a28c7263" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7623c1a4-57db-449b-9349-677cb3a62ccf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6651" - ], - "x-ms-correlation-request-id": [ - "44174b1f-b31a-4a10-a9d2-24ccca337e45" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221440Z:44174b1f-b31a-4a10-a9d2-24ccca337e45" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0bcf3f32-865a-4892-b651-310834f73d47" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6650" - ], - "x-ms-correlation-request-id": [ - "823eb973-2887-4f65-87b6-144ea45be738" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221440Z:823eb973-2887-4f65-87b6-144ea45be738" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76f1fa7c-4648-4935-8104-959dee912800" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6649" - ], - "x-ms-correlation-request-id": [ - "3d605478-28fa-4f1e-a256-977ec9b7b5a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221441Z:3d605478-28fa-4f1e-a256-977ec9b7b5a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54079071-9d83-4348-9be0-c43a4aa82a64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6648" - ], - "x-ms-correlation-request-id": [ - "a8418826-e4d1-40ac-a14c-79a93d3879f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221441Z:a8418826-e4d1-40ac-a14c-79a93d3879f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ceeb43d9-f933-41f6-8512-13f5c6912020" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6647" - ], - "x-ms-correlation-request-id": [ - "c27a66ea-db33-43b3-9894-22aa6672531d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221441Z:c27a66ea-db33-43b3-9894-22aa6672531d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a38cbd01-4e9c-4355-8e62-d59483cd3a05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6646" - ], - "x-ms-correlation-request-id": [ - "5030114b-5e86-4a42-bbed-9ddb242308e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221442Z:5030114b-5e86-4a42-bbed-9ddb242308e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aaa551f0-b4e4-4e7f-bcca-240c3c44a65f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6645" - ], - "x-ms-correlation-request-id": [ - "261831e9-00e2-4677-ba3d-ad86cda97c37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221442Z:261831e9-00e2-4677-ba3d-ad86cda97c37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f2b5171-1570-4628-809d-de74f5ef4862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6644" - ], - "x-ms-correlation-request-id": [ - "558b3a04-dcac-4012-afcf-a76126ddb83e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221442Z:558b3a04-dcac-4012-afcf-a76126ddb83e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82c8f48c-ea94-4e6f-b005-45629cd444d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6643" - ], - "x-ms-correlation-request-id": [ - "3ce87f1c-5caf-4f61-8720-ddd594ce7ef6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221442Z:3ce87f1c-5caf-4f61-8720-ddd594ce7ef6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "179214ca-202a-44e5-b7b1-9f6ec0ce4d87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6642" - ], - "x-ms-correlation-request-id": [ - "c2ea0962-3ab4-48a2-84e2-1dab043f3102" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221442Z:c2ea0962-3ab4-48a2-84e2-1dab043f3102" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78bb2bbf-00b5-4ee5-a429-5ec54fffd76e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6641" - ], - "x-ms-correlation-request-id": [ - "9696e499-dd0c-48ca-93b4-46cdd59c291a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221442Z:9696e499-dd0c-48ca-93b4-46cdd59c291a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51c9026e-bb26-4e07-9918-7f691049b2c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6640" - ], - "x-ms-correlation-request-id": [ - "86afa376-e9bf-4dd0-9eb4-e8ddfe7d8fee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221442Z:86afa376-e9bf-4dd0-9eb4-e8ddfe7d8fee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19800cdd-7b4b-4bb5-bcd3-6a709ff2c671" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6639" - ], - "x-ms-correlation-request-id": [ - "d6d039b3-6880-457e-a596-565d403ae022" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221443Z:d6d039b3-6880-457e-a596-565d403ae022" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "054ab30f-6850-4960-ab24-868ebc89f651" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6638" - ], - "x-ms-correlation-request-id": [ - "51a6380c-5541-4b27-a2dd-e94e4de72abb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221443Z:51a6380c-5541-4b27-a2dd-e94e4de72abb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b863b74-2a9b-4118-ab20-c16356ac8c43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6637" - ], - "x-ms-correlation-request-id": [ - "9ab8f9d2-6ad8-4929-adec-e4f42b7bb9e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221443Z:9ab8f9d2-6ad8-4929-adec-e4f42b7bb9e1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1213b458-c28a-4064-b36b-c872d467fcba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6636" - ], - "x-ms-correlation-request-id": [ - "a181588b-68f0-4fc1-878f-2501450d2ccb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221443Z:a181588b-68f0-4fc1-878f-2501450d2ccb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc02753b-9632-4d56-a6bc-434b1ccca579" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6635" - ], - "x-ms-correlation-request-id": [ - "f4c2f628-d63f-4c01-b7cb-a3dc0d9cec6b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221444Z:f4c2f628-d63f-4c01-b7cb-a3dc0d9cec6b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea7d1d61-c951-49f7-8f33-65d2cc053942" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6634" - ], - "x-ms-correlation-request-id": [ - "5fb9682f-67ee-4779-9a05-94829a751712" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221444Z:5fb9682f-67ee-4779-9a05-94829a751712" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "117e62a4-c709-4435-9153-e0ca449e4ba8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6633" - ], - "x-ms-correlation-request-id": [ - "e60a4823-ca00-45f7-aec5-81a172709d7c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221444Z:e60a4823-ca00-45f7-aec5-81a172709d7c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7bcdd9b4-5d18-4bfa-a7f0-9c1d1a04119a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6632" - ], - "x-ms-correlation-request-id": [ - "dc0504af-d04f-4395-ab64-ac7029f7d81f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221444Z:dc0504af-d04f-4395-ab64-ac7029f7d81f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39238823-d5f0-4858-bfae-c4ffc282e2d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6631" - ], - "x-ms-correlation-request-id": [ - "6c0c78c0-5f7b-40be-bf76-e2dd0d5084c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221444Z:6c0c78c0-5f7b-40be-bf76-e2dd0d5084c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bbd733a3-ea93-44e0-a85e-953262466b99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6630" - ], - "x-ms-correlation-request-id": [ - "0934f25d-8adf-4444-9f8d-0e340ffa04d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221444Z:0934f25d-8adf-4444-9f8d-0e340ffa04d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7fdc25b9-c364-4612-9fde-619b118976c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6629" - ], - "x-ms-correlation-request-id": [ - "e80367fd-fefe-46de-b338-4444938d8c6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221445Z:e80367fd-fefe-46de-b338-4444938d8c6c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cea99902-ff85-4905-b72b-aafd481a57e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6628" - ], - "x-ms-correlation-request-id": [ - "60322bb9-0822-4bb7-b544-f913e3cecd6e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221445Z:60322bb9-0822-4bb7-b544-f913e3cecd6e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8e8f142e-5e30-4dd1-812c-de0aaa2c8290" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6627" - ], - "x-ms-correlation-request-id": [ - "66e6c7e2-7f27-487f-939d-400092a684d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221445Z:66e6c7e2-7f27-487f-939d-400092a684d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c31267fc-ada2-4f68-be60-f22bb3aceaa4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6626" - ], - "x-ms-correlation-request-id": [ - "c6675d2f-1eb0-47d0-86c2-30191f1e3b4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221445Z:c6675d2f-1eb0-47d0-86c2-30191f1e3b4b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6421b587-fd2e-4150-8085-8e4b8d264d97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6625" - ], - "x-ms-correlation-request-id": [ - "4fb30583-8c20-471e-b1e2-9d9b39a92505" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221445Z:4fb30583-8c20-471e-b1e2-9d9b39a92505" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9207e8a-1283-4fa4-9384-2c6dadf3987f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6624" - ], - "x-ms-correlation-request-id": [ - "b7b86156-4021-4bb1-9bbc-de8ace2bda51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221445Z:b7b86156-4021-4bb1-9bbc-de8ace2bda51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "746175b6-cc22-42ae-92cb-a8e4c5586600" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6623" - ], - "x-ms-correlation-request-id": [ - "1e10e6ae-032d-4a78-8077-742e55c20742" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221446Z:1e10e6ae-032d-4a78-8077-742e55c20742" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "589c7bdd-7e32-411a-a6cb-56229c60d6fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6622" - ], - "x-ms-correlation-request-id": [ - "b6c8cc8c-6cc4-47c4-8efb-f5b77b9e3404" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221446Z:b6c8cc8c-6cc4-47c4-8efb-f5b77b9e3404" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2044fb8e-7ff5-4d67-8158-e04e177fb527" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6621" - ], - "x-ms-correlation-request-id": [ - "4f81c8bc-a00b-47b3-9257-e1a349c21020" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221446Z:4f81c8bc-a00b-47b3-9257-e1a349c21020" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6821733-c092-415e-acea-b37c481b6fcc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6620" - ], - "x-ms-correlation-request-id": [ - "ea1969ed-e253-4839-befe-c1e1d2c116ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221446Z:ea1969ed-e253-4839-befe-c1e1d2c116ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4deda534-3a56-4782-beb4-fa4492872f1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6619" - ], - "x-ms-correlation-request-id": [ - "8704d839-c1a9-48f6-9b28-9e537476b5c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221446Z:8704d839-c1a9-48f6-9b28-9e537476b5c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "981b6e13-551b-48f5-99cd-6b5ae67c0a44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6618" - ], - "x-ms-correlation-request-id": [ - "18e55b62-0c0b-457d-ba60-66a63cdb0a4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221447Z:18e55b62-0c0b-457d-ba60-66a63cdb0a4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49724b41-5f08-4778-b94e-122b178ed6b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6617" - ], - "x-ms-correlation-request-id": [ - "0741640b-299e-47c9-83c6-09010addf39c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221447Z:0741640b-299e-47c9-83c6-09010addf39c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9bcc46cc-3489-4aa5-9ced-033f3d9dbd8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6616" - ], - "x-ms-correlation-request-id": [ - "ce05f06f-9e08-486d-b89e-ce8979a864af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221447Z:ce05f06f-9e08-486d-b89e-ce8979a864af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "faaafd4e-7a05-41ad-8452-fb3ccf74a02d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6615" - ], - "x-ms-correlation-request-id": [ - "36c374a6-0932-4c15-b07c-1d08c79d59ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221447Z:36c374a6-0932-4c15-b07c-1d08c79d59ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f063a4d9-ee02-4f86-a464-468005402fd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6614" - ], - "x-ms-correlation-request-id": [ - "67a3be5e-10b7-4aea-ae5a-90712ba80d5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221447Z:67a3be5e-10b7-4aea-ae5a-90712ba80d5a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a5b4cf7-b2e4-424c-9d5d-93dfd6c4c846" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6613" - ], - "x-ms-correlation-request-id": [ - "0be21be3-73ff-4b1b-986e-464e6e46b872" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221448Z:0be21be3-73ff-4b1b-986e-464e6e46b872" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a20a9c7-d60f-4c4a-85e1-f59a89bfa826" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6612" - ], - "x-ms-correlation-request-id": [ - "f28371ea-6c38-47c7-ba34-c05cebccb818" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221448Z:f28371ea-6c38-47c7-ba34-c05cebccb818" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c77437a1-1ca7-4383-abc1-645be370dd8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6611" - ], - "x-ms-correlation-request-id": [ - "e088776b-e7d3-4d7d-9f1b-60d5e59841a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221448Z:e088776b-e7d3-4d7d-9f1b-60d5e59841a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "298d8dde-e33f-4071-afe4-23a1c4a29797" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6610" - ], - "x-ms-correlation-request-id": [ - "cfaa3c67-0900-4c0a-a1c9-e5657175e032" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221448Z:cfaa3c67-0900-4c0a-a1c9-e5657175e032" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2fcf3a81-51f3-4836-9e3d-2faf16b085df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6609" - ], - "x-ms-correlation-request-id": [ - "97dd53f2-5b95-47eb-933b-27751473eba4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221448Z:97dd53f2-5b95-47eb-933b-27751473eba4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9348f056-7385-4c6c-994d-08b43d63354c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6608" - ], - "x-ms-correlation-request-id": [ - "494d9e37-7333-40c4-ac29-b96e48822284" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221448Z:494d9e37-7333-40c4-ac29-b96e48822284" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae2e3178-74a6-4476-9c53-88bbbc3a5687" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6607" - ], - "x-ms-correlation-request-id": [ - "5bfaf3ad-b821-4217-a174-3cc84166adbd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221449Z:5bfaf3ad-b821-4217-a174-3cc84166adbd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5751b09c-d577-4247-8760-1b9ac79d2979" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6606" - ], - "x-ms-correlation-request-id": [ - "906cecf9-3a87-469d-a871-2a25db60ecc9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221449Z:906cecf9-3a87-469d-a871-2a25db60ecc9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f84c534f-4e40-4a87-b843-1e0270c895ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6605" - ], - "x-ms-correlation-request-id": [ - "f4968264-63e1-431c-9566-9bc5d306f3ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221449Z:f4968264-63e1-431c-9566-9bc5d306f3ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4ad95e3-29a6-4b04-a796-a17e893e3135" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6604" - ], - "x-ms-correlation-request-id": [ - "b5cec093-d05a-4263-b4c8-3ceb55a555d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221449Z:b5cec093-d05a-4263-b4c8-3ceb55a555d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "558411b3-ec31-48e7-a053-b4ed7b621718" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6603" - ], - "x-ms-correlation-request-id": [ - "e5d6078d-1498-46c2-a1af-64961020856b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221449Z:e5d6078d-1498-46c2-a1af-64961020856b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06c9c7b8-70e7-43e1-8a85-f61a5e1dc1bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6602" - ], - "x-ms-correlation-request-id": [ - "171690dc-ba25-4be1-a30f-7dd60b289bc7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221449Z:171690dc-ba25-4be1-a30f-7dd60b289bc7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6792de48-ac29-4aca-aeb7-76f605f6ee91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6601" - ], - "x-ms-correlation-request-id": [ - "c3b05075-ddaf-4600-83d6-5f12aa92265d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221449Z:c3b05075-ddaf-4600-83d6-5f12aa92265d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab73fd0e-dc03-4d7e-aa9a-48e303928ed9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6600" - ], - "x-ms-correlation-request-id": [ - "51b4cd4d-a0fc-4a19-af2a-7ed356dc8c26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221450Z:51b4cd4d-a0fc-4a19-af2a-7ed356dc8c26" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9da8b30c-a601-4384-a39c-f3cfa43804fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6599" - ], - "x-ms-correlation-request-id": [ - "8a1c9564-6509-4735-a472-895bd6d4129e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221450Z:8a1c9564-6509-4735-a472-895bd6d4129e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b02c6f5-b03a-4edb-b4c3-df77856395dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6598" - ], - "x-ms-correlation-request-id": [ - "aa1620b2-4633-4880-9d97-187089438b62" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221450Z:aa1620b2-4633-4880-9d97-187089438b62" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "893330d8-18fc-4207-a6f3-175c7d1054c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6597" - ], - "x-ms-correlation-request-id": [ - "0888de3c-e0d8-4229-94ce-38e8b7348ec8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221450Z:0888de3c-e0d8-4229-94ce-38e8b7348ec8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c51776a-89a5-40fa-b065-d3caaed40dfb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6596" - ], - "x-ms-correlation-request-id": [ - "915de15e-3073-4636-82e0-ed0970061b54" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221450Z:915de15e-3073-4636-82e0-ed0970061b54" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db0813ba-9ae3-4a5a-84d0-edf9a2f5cd89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6595" - ], - "x-ms-correlation-request-id": [ - "02dc9ff3-6f52-487b-9f11-fae99a584fed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221451Z:02dc9ff3-6f52-487b-9f11-fae99a584fed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03e47454-0293-40d2-ad7e-a682a1f3f850" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6594" - ], - "x-ms-correlation-request-id": [ - "e5b2a588-b38f-41e2-832f-cd1b8ccc3b84" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221451Z:e5b2a588-b38f-41e2-832f-cd1b8ccc3b84" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "daeab4d9-7484-4e71-b2b3-bbfe50279b48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6593" - ], - "x-ms-correlation-request-id": [ - "8733c00a-2396-4a00-9f52-65003dcb7ddb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221451Z:8733c00a-2396-4a00-9f52-65003dcb7ddb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b08a30a3-0ab2-4430-9a52-2e390f93281a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6592" - ], - "x-ms-correlation-request-id": [ - "3f8798b0-d526-426a-95dc-2b1796a36489" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221451Z:3f8798b0-d526-426a-95dc-2b1796a36489" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c380720-38db-4c8e-b399-14834bcc8616" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6591" - ], - "x-ms-correlation-request-id": [ - "868fe352-418f-41aa-8124-4840810d7615" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221451Z:868fe352-418f-41aa-8124-4840810d7615" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9672f36f-9708-42d7-abd2-3cbfe710598a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6590" - ], - "x-ms-correlation-request-id": [ - "8c807f74-d90d-4307-a474-752956637741" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221451Z:8c807f74-d90d-4307-a474-752956637741" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3d9a04a-ff3b-452e-ad22-637db4b4cb1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6589" - ], - "x-ms-correlation-request-id": [ - "4bed4801-5977-488b-a68d-4b62454f0ac7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221452Z:4bed4801-5977-488b-a68d-4b62454f0ac7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "224e6681-2bea-42f3-8ea4-0efe617c7c84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6588" - ], - "x-ms-correlation-request-id": [ - "22865e56-bb2c-41c0-b2dd-e9b21a26239d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221452Z:22865e56-bb2c-41c0-b2dd-e9b21a26239d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ea6840b-0c84-4d9f-b0ba-65871dc67c6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6587" - ], - "x-ms-correlation-request-id": [ - "c5208677-c93f-405a-a555-e78b25dc7029" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221452Z:c5208677-c93f-405a-a555-e78b25dc7029" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b07be2b4-cab3-4fc8-b538-e79ddd2e088e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6586" - ], - "x-ms-correlation-request-id": [ - "c06fe5ed-661f-48a7-9998-65419529b29d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221452Z:c06fe5ed-661f-48a7-9998-65419529b29d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "111e7ffb-6bc9-4a5f-8d37-824c29bac4fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6585" - ], - "x-ms-correlation-request-id": [ - "782248bf-e11a-46f8-82c5-47ecdff48053" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221452Z:782248bf-e11a-46f8-82c5-47ecdff48053" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1231c646-85a1-47b0-bc6b-61b4fedd36b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6584" - ], - "x-ms-correlation-request-id": [ - "557c8e16-1400-4354-9be7-204be5b0c2c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221453Z:557c8e16-1400-4354-9be7-204be5b0c2c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7bdfc6c-b715-47d9-9edd-063c8998ae30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6583" - ], - "x-ms-correlation-request-id": [ - "52fe928f-9c72-4104-9ccc-401e30f29a47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221453Z:52fe928f-9c72-4104-9ccc-401e30f29a47" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "846269e4-2c20-4b0c-8bea-c028b8fc0874" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6582" - ], - "x-ms-correlation-request-id": [ - "5e8974eb-1016-42d4-9fed-3360614e8135" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221453Z:5e8974eb-1016-42d4-9fed-3360614e8135" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad908972-b720-4af3-8b10-e1860cdf90c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6581" - ], - "x-ms-correlation-request-id": [ - "2b7b0e27-813a-4749-9a06-f0bdce6c3b95" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221453Z:2b7b0e27-813a-4749-9a06-f0bdce6c3b95" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "238f04ce-8356-4272-b0b9-81e0924dc124" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6580" - ], - "x-ms-correlation-request-id": [ - "3924be04-56fe-4793-86c1-2a119bc1ce3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221453Z:3924be04-56fe-4793-86c1-2a119bc1ce3e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed748f7a-102e-487a-9efe-28641bd6540d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6579" - ], - "x-ms-correlation-request-id": [ - "24930a1e-f3a6-4eac-ba68-0a3db7890ba0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221453Z:24930a1e-f3a6-4eac-ba68-0a3db7890ba0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59028116-f037-44a6-bb87-6b326e8e4aa3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6578" - ], - "x-ms-correlation-request-id": [ - "b3379684-3f04-4616-a7f8-ac4d7f799c98" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221454Z:b3379684-3f04-4616-a7f8-ac4d7f799c98" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c4c9b1da-3bf1-4a61-8b3b-603237967338" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6577" - ], - "x-ms-correlation-request-id": [ - "5a9d037a-58bd-4151-9b5c-ddd14b6edda2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221454Z:5a9d037a-58bd-4151-9b5c-ddd14b6edda2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06b92b58-51dd-40a7-843b-e623d89df35e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6576" - ], - "x-ms-correlation-request-id": [ - "fcd8627a-93e2-4879-a91c-94435765351f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221454Z:fcd8627a-93e2-4879-a91c-94435765351f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc57eff3-86ac-4670-84c2-c12f4d5cc79f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6575" - ], - "x-ms-correlation-request-id": [ - "0546aef7-3ea3-4710-a8cd-156be08ef9ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221454Z:0546aef7-3ea3-4710-a8cd-156be08ef9ff" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf2ed1d1-4120-4f54-8dde-6f9bc6edd62b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6574" - ], - "x-ms-correlation-request-id": [ - "92827e8b-6af3-4d09-a7df-605661bb8830" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221454Z:92827e8b-6af3-4d09-a7df-605661bb8830" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa853bc9-2f32-45c7-984a-8a7fd5da81e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6573" - ], - "x-ms-correlation-request-id": [ - "9bbb31c9-8ff4-4fb0-ac10-c837f8df28cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221454Z:9bbb31c9-8ff4-4fb0-ac10-c837f8df28cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7996ce0a-d565-45c9-9ba3-aa0928dabd16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6572" - ], - "x-ms-correlation-request-id": [ - "361477b4-b2fd-41d7-9f77-829fcbb9939c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221455Z:361477b4-b2fd-41d7-9f77-829fcbb9939c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f94bba11-814f-4778-bd8f-746f3d999e0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6571" - ], - "x-ms-correlation-request-id": [ - "81da0364-8386-4cda-b5f4-ca6297a87b2a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221455Z:81da0364-8386-4cda-b5f4-ca6297a87b2a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "caab22e9-8a88-401c-a340-555dba951107" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6570" - ], - "x-ms-correlation-request-id": [ - "4b1768a9-d88c-4d61-bb4b-6822542562af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221455Z:4b1768a9-d88c-4d61-bb4b-6822542562af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8bb7380-4e58-430c-9403-a17d1d22c32e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6569" - ], - "x-ms-correlation-request-id": [ - "f6abce00-4885-413e-81fe-aeaffefa79e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221455Z:f6abce00-4885-413e-81fe-aeaffefa79e0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2775beb5-a7a1-4858-b09a-e9068b3b9f00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6568" - ], - "x-ms-correlation-request-id": [ - "e950d7dc-d34e-49e1-8d76-517bdbbf242c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221455Z:e950d7dc-d34e-49e1-8d76-517bdbbf242c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf5e0769-fc25-48f3-bb23-8773d2a182ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6567" - ], - "x-ms-correlation-request-id": [ - "172c89c8-93ae-4959-b606-b38482b635d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221455Z:172c89c8-93ae-4959-b606-b38482b635d7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75a2ea94-3ea3-442c-a43f-3d889d63bec8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6566" - ], - "x-ms-correlation-request-id": [ - "7f0bf8e8-f2ba-4406-bd57-e0bc3bf3bfe3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221456Z:7f0bf8e8-f2ba-4406-bd57-e0bc3bf3bfe3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5c649dc-c6ac-4d0e-a369-8d04213987b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6565" - ], - "x-ms-correlation-request-id": [ - "fa1b8cf4-6d44-420c-954c-f43bd3a2863d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221456Z:fa1b8cf4-6d44-420c-954c-f43bd3a2863d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ff6ac2e-5fdc-43bc-8fb8-f0b4a199f788" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6564" - ], - "x-ms-correlation-request-id": [ - "b90c9471-a665-46f5-8080-1a0b64fb73d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221456Z:b90c9471-a665-46f5-8080-1a0b64fb73d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac7269d9-9664-4c2c-8a0d-ea5fdeb2a5dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6563" - ], - "x-ms-correlation-request-id": [ - "6a7b242b-3211-447f-aa3e-402ec5eb58cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221456Z:6a7b242b-3211-447f-aa3e-402ec5eb58cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "007aa51f-d2d0-4b13-8153-8471f279a7ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6562" - ], - "x-ms-correlation-request-id": [ - "2f45fd52-e3fa-4524-8871-b779cb58d652" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221456Z:2f45fd52-e3fa-4524-8871-b779cb58d652" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d2edf61-b817-4121-adc5-db0bd10ebe95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6561" - ], - "x-ms-correlation-request-id": [ - "4e67deba-6db7-43e5-ba15-b0fd12b83ef6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221457Z:4e67deba-6db7-43e5-ba15-b0fd12b83ef6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aed9b33b-ca37-493c-9321-b054b9fa3249" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6560" - ], - "x-ms-correlation-request-id": [ - "3cfb6301-6911-42ab-a831-8d2f30661b3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221457Z:3cfb6301-6911-42ab-a831-8d2f30661b3d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "465816ca-9f6f-48a0-92de-7ea2dea2ee5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6559" - ], - "x-ms-correlation-request-id": [ - "f1e6cf1a-0a17-48c8-8f81-109c21e46b52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221457Z:f1e6cf1a-0a17-48c8-8f81-109c21e46b52" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e41bc041-b4bb-4a64-bdb9-2920d431e084" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6558" - ], - "x-ms-correlation-request-id": [ - "8b87fb18-bbca-40fe-9471-d405780141c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221457Z:8b87fb18-bbca-40fe-9471-d405780141c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "016b5317-43d0-4ca2-895b-7f7e4660b701" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6557" - ], - "x-ms-correlation-request-id": [ - "aa77beb9-b627-4034-8020-fdf361e62eda" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221457Z:aa77beb9-b627-4034-8020-fdf361e62eda" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed390f29-ce31-491b-bda1-d2d2fc4e4d02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6556" - ], - "x-ms-correlation-request-id": [ - "243a7f1d-d307-4c88-8afc-eec77f722a78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221457Z:243a7f1d-d307-4c88-8afc-eec77f722a78" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "419d8331-5e63-4b9f-9ea7-73990eb555d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6555" - ], - "x-ms-correlation-request-id": [ - "08f02c51-8142-4d5a-b019-7ef70ea578c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221457Z:08f02c51-8142-4d5a-b019-7ef70ea578c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb89f1c9-f56a-4445-a4f4-69023b9c0807" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6554" - ], - "x-ms-correlation-request-id": [ - "05d02345-1dd0-4189-9a03-c732337f5e80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221458Z:05d02345-1dd0-4189-9a03-c732337f5e80" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85f96a68-2526-47a5-afb4-d42f9fbc6fc8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6553" - ], - "x-ms-correlation-request-id": [ - "af593836-7409-4c26-a4e4-2bf3570af1ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221458Z:af593836-7409-4c26-a4e4-2bf3570af1ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b4717df6-ca01-40c3-83bd-727175376bea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6552" - ], - "x-ms-correlation-request-id": [ - "280844e6-dd59-4ae7-ae0b-422c183de046" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221458Z:280844e6-dd59-4ae7-ae0b-422c183de046" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a78097e2-d1a4-4617-817b-8466aa795c6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6551" - ], - "x-ms-correlation-request-id": [ - "b6336070-fe5a-4533-b1d7-c64f29a06f76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221458Z:b6336070-fe5a-4533-b1d7-c64f29a06f76" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9c849dd-63e3-4646-9dfe-3bbeb7bde2cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6550" - ], - "x-ms-correlation-request-id": [ - "5856cb5d-ca18-4969-9dba-d3bd21a952ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221458Z:5856cb5d-ca18-4969-9dba-d3bd21a952ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6041b16-cd72-4abf-b9d7-698ac40f365f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6549" - ], - "x-ms-correlation-request-id": [ - "979e4deb-8388-4ffd-a616-57ca3e41e448" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221459Z:979e4deb-8388-4ffd-a616-57ca3e41e448" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "befc6aa6-79b2-4888-ba8d-8fb034a5cf2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6548" - ], - "x-ms-correlation-request-id": [ - "e848a437-6414-4318-808c-4987461f4cfc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221459Z:e848a437-6414-4318-808c-4987461f4cfc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7c5924d-71cf-40b9-845b-f9779810ed1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6547" - ], - "x-ms-correlation-request-id": [ - "d146d8f5-6d34-476b-ba17-b43eef134f75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221459Z:d146d8f5-6d34-476b-ba17-b43eef134f75" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca978c34-00f8-4429-b122-a95c5aca4e5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6546" - ], - "x-ms-correlation-request-id": [ - "eb63d1d5-5de0-4af7-ac4a-8bf153c4dfe7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221459Z:eb63d1d5-5de0-4af7-ac4a-8bf153c4dfe7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7722feb-3799-4afa-a65c-14dfd71e7e19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6545" - ], - "x-ms-correlation-request-id": [ - "55188977-c3f4-4a5f-a363-2e3b74abcd8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221459Z:55188977-c3f4-4a5f-a363-2e3b74abcd8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa7671c4-16b4-4507-bc5c-29c6698dd472" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6544" - ], - "x-ms-correlation-request-id": [ - "8d7fb4eb-dca4-4de0-88fe-4f13f5e9bb29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221459Z:8d7fb4eb-dca4-4de0-88fe-4f13f5e9bb29" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a01e3dda-a9be-4c60-9057-391817d3d50f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6543" - ], - "x-ms-correlation-request-id": [ - "f2076a42-b14e-46bd-9b70-6b19d9a160b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221500Z:f2076a42-b14e-46bd-9b70-6b19d9a160b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a83ab5d-7f7b-4ab4-b1fe-837338a4d1bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6542" - ], - "x-ms-correlation-request-id": [ - "73442e67-f2f8-44e0-87cb-de948c824a1d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221500Z:73442e67-f2f8-44e0-87cb-de948c824a1d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5694744d-1467-485d-ac0a-2ccf5d41353f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6541" - ], - "x-ms-correlation-request-id": [ - "1b1c714e-dfee-464b-b92a-a9eb33f403d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221500Z:1b1c714e-dfee-464b-b92a-a9eb33f403d6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb7043c5-ca26-4e06-9eb5-04609ffe7135" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6540" - ], - "x-ms-correlation-request-id": [ - "fd017033-9cf6-4143-92a0-62c4db9b9790" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221500Z:fd017033-9cf6-4143-92a0-62c4db9b9790" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1bd1a821-7647-40fa-81da-cb6c9e12a7ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6539" - ], - "x-ms-correlation-request-id": [ - "d9004870-855c-43b9-9f88-86ddbcd895f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221500Z:d9004870-855c-43b9-9f88-86ddbcd895f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:14:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "920d8de5-54af-4fd1-9a86-89f07614c387" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6538" - ], - "x-ms-correlation-request-id": [ - "712c9050-896b-420d-880b-98eec7e21478" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221500Z:712c9050-896b-420d-880b-98eec7e21478" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f9a14ee-bc79-4337-bac1-ff8fadd3b0ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6537" - ], - "x-ms-correlation-request-id": [ - "9c3bca71-286a-413b-99c1-1c6c3d051429" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221501Z:9c3bca71-286a-413b-99c1-1c6c3d051429" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "77ebf309-f8bb-4a81-b084-93c89d299bd6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6536" - ], - "x-ms-correlation-request-id": [ - "948a1a91-c9e0-419d-bdb7-6ea3cfa0f4c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221501Z:948a1a91-c9e0-419d-bdb7-6ea3cfa0f4c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7074a00-b20b-44f0-9ba3-b07e9365d74e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6535" - ], - "x-ms-correlation-request-id": [ - "f040571d-598e-40c3-a72d-d99ee999de0b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221501Z:f040571d-598e-40c3-a72d-d99ee999de0b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b784981f-b56b-4ce7-8e2b-a28770f30255" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6534" - ], - "x-ms-correlation-request-id": [ - "901ffc5f-414d-4a59-8a0b-a6a3c3511298" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221501Z:901ffc5f-414d-4a59-8a0b-a6a3c3511298" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3446442e-4bef-430e-a0ca-39865264c429" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6533" - ], - "x-ms-correlation-request-id": [ - "c3ee24ab-8223-453b-8447-aadc6d62eb09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221501Z:c3ee24ab-8223-453b-8447-aadc6d62eb09" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7fe99dda-5b6a-4ca7-bf50-71786ca64b6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6532" - ], - "x-ms-correlation-request-id": [ - "1233dbc4-ec28-4671-8183-0d3f0b389b6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221501Z:1233dbc4-ec28-4671-8183-0d3f0b389b6f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "333f5326-16ef-4bdf-9c84-0b781fb2ad43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6531" - ], - "x-ms-correlation-request-id": [ - "fdd2b551-401e-449a-96be-9d12154bb9ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221502Z:fdd2b551-401e-449a-96be-9d12154bb9ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "442340d8-2c5e-4491-a412-167e97ac90a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6530" - ], - "x-ms-correlation-request-id": [ - "f64a0764-e52e-498d-926d-2bcdc64a1c55" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221502Z:f64a0764-e52e-498d-926d-2bcdc64a1c55" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a594e82b-c955-453a-a966-df2e4d3e5b83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6529" - ], - "x-ms-correlation-request-id": [ - "be266836-6e14-4f1f-977c-4f55dd6f01f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221502Z:be266836-6e14-4f1f-977c-4f55dd6f01f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "399ee5ec-867c-460c-b235-5ebbdf81c71d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6528" - ], - "x-ms-correlation-request-id": [ - "c6a71bd4-5fbf-4134-b719-55a38d3aacc2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221502Z:c6a71bd4-5fbf-4134-b719-55a38d3aacc2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78d27507-b238-4734-97de-94aa33d037d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6527" - ], - "x-ms-correlation-request-id": [ - "24f8f685-d45a-4a3c-b55a-376e04ca621d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221502Z:24f8f685-d45a-4a3c-b55a-376e04ca621d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f53a8ef-6664-437b-b5ce-2dd992605dcc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6526" - ], - "x-ms-correlation-request-id": [ - "b6a3c97c-39e7-49b9-9c70-bcd86fd87bb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221502Z:b6a3c97c-39e7-49b9-9c70-bcd86fd87bb8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6bce771f-8b0e-4c36-8a2c-20c6a90f3af9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6525" - ], - "x-ms-correlation-request-id": [ - "118e5b63-84f9-40ac-88c9-5424ae1f1224" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221503Z:118e5b63-84f9-40ac-88c9-5424ae1f1224" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2d6c165-f67b-4bce-a0ae-eefe81355b70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6524" - ], - "x-ms-correlation-request-id": [ - "3a809d88-1635-4c52-860a-94cfa15fb2f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221503Z:3a809d88-1635-4c52-860a-94cfa15fb2f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47a73385-f94d-4509-9339-e03e7c37162d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6523" - ], - "x-ms-correlation-request-id": [ - "9a9bfbd3-2460-4eb0-aebc-2c2f770350d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221503Z:9a9bfbd3-2460-4eb0-aebc-2c2f770350d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5089b881-b0c3-499c-9e0e-4cc2301c1352" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6522" - ], - "x-ms-correlation-request-id": [ - "6752e109-2d59-4600-83ec-3f9a0a1c520b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221503Z:6752e109-2d59-4600-83ec-3f9a0a1c520b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87b90896-0a90-46f6-883a-9e4c45d44281" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6521" - ], - "x-ms-correlation-request-id": [ - "7c54a8db-e35a-4817-b397-e353ee37b645" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221503Z:7c54a8db-e35a-4817-b397-e353ee37b645" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "380323e2-7133-4ba8-96ed-993bcd07bfeb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6520" - ], - "x-ms-correlation-request-id": [ - "7554cec1-c5b8-46df-9389-89287d39abba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221503Z:7554cec1-c5b8-46df-9389-89287d39abba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0a1440c-5521-4f95-9516-a58b478a1285" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6519" - ], - "x-ms-correlation-request-id": [ - "5ee7148f-3c83-449d-8c76-c7bdd3a12d05" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221503Z:5ee7148f-3c83-449d-8c76-c7bdd3a12d05" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1251bee-c8c9-4ccd-baa1-c5839926c254" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6518" - ], - "x-ms-correlation-request-id": [ - "0718d7fc-8ef1-49ef-b7fd-d25180c8b854" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221504Z:0718d7fc-8ef1-49ef-b7fd-d25180c8b854" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "033a9e5f-5159-4104-a8d1-29c67b22731f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6517" - ], - "x-ms-correlation-request-id": [ - "abb3e748-f85f-4adb-bbfc-437c6e22ee21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221504Z:abb3e748-f85f-4adb-bbfc-437c6e22ee21" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06c5d666-5d91-4d91-9fb0-9445a9709add" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6516" - ], - "x-ms-correlation-request-id": [ - "61a350f5-f4a9-4b29-9e7f-92f77423897e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221504Z:61a350f5-f4a9-4b29-9e7f-92f77423897e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a2fc8c1-4d31-435a-8f64-c7cd98c71aa4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6515" - ], - "x-ms-correlation-request-id": [ - "f777fb40-551a-4366-aeb6-92049c2321e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221504Z:f777fb40-551a-4366-aeb6-92049c2321e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a747f9b-118e-4162-8564-8d14d868daa9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6514" - ], - "x-ms-correlation-request-id": [ - "5a41dc58-1288-4ff2-9d42-988a5a6898c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221504Z:5a41dc58-1288-4ff2-9d42-988a5a6898c4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ad57b77-b3d9-4535-a770-63dd98449c4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6513" - ], - "x-ms-correlation-request-id": [ - "6d718caf-2a59-4f42-b72f-d5edda748cfd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221505Z:6d718caf-2a59-4f42-b72f-d5edda748cfd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ca418fe-0f14-480c-80a0-9139b933d697" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6512" - ], - "x-ms-correlation-request-id": [ - "0078159d-87e2-4f04-b044-915e30f44cba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221505Z:0078159d-87e2-4f04-b044-915e30f44cba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "240f0b4b-a64a-452b-b9e6-39789fa82c6d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6511" - ], - "x-ms-correlation-request-id": [ - "ee625f3c-c7be-42cb-a168-465f912452be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221505Z:ee625f3c-c7be-42cb-a168-465f912452be" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a6d5ba2-a25d-48a7-847d-83de43b9e30a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6510" - ], - "x-ms-correlation-request-id": [ - "c3bcd372-4a71-4355-b4e9-f00748200d11" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221505Z:c3bcd372-4a71-4355-b4e9-f00748200d11" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9937488c-5769-444e-b098-bd7a43ee5af2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6509" - ], - "x-ms-correlation-request-id": [ - "22e539e4-6fd6-4906-aa20-6822ce098339" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221505Z:22e539e4-6fd6-4906-aa20-6822ce098339" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bca921c7-1dad-4fb2-b33d-d7669d6fe48d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6508" - ], - "x-ms-correlation-request-id": [ - "955d096a-fe1d-44dc-b555-2181e01aa616" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221505Z:955d096a-fe1d-44dc-b555-2181e01aa616" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "177e80df-d23e-4ff1-ac8f-f9e6b47ba164" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6507" - ], - "x-ms-correlation-request-id": [ - "aaa463f6-1e53-4536-9df0-0f586f0fb92c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221506Z:aaa463f6-1e53-4536-9df0-0f586f0fb92c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28efc6bd-7991-40ac-ab82-e5fdb9f34dc3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6506" - ], - "x-ms-correlation-request-id": [ - "cd030434-20fa-4661-807d-5955d2262d40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221506Z:cd030434-20fa-4661-807d-5955d2262d40" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7545f9a-2423-42f9-9c0b-26002d78d824" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6505" - ], - "x-ms-correlation-request-id": [ - "bc4e3de1-13e3-4bb9-b87b-e5c745fc6631" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221506Z:bc4e3de1-13e3-4bb9-b87b-e5c745fc6631" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "227e5716-134d-4cda-a3f8-c07b5f7d0888" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6504" - ], - "x-ms-correlation-request-id": [ - "3bc4c12e-7990-4ac5-a29f-9c98b5da200e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221506Z:3bc4c12e-7990-4ac5-a29f-9c98b5da200e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38c3b184-01ed-4c8c-a39d-79307c6a66c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6503" - ], - "x-ms-correlation-request-id": [ - "79471fd3-3832-45de-afd5-ee744942e62b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221506Z:79471fd3-3832-45de-afd5-ee744942e62b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c88c6c0-0ad3-4e2f-93f2-5c0176058401" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6502" - ], - "x-ms-correlation-request-id": [ - "8262b8ef-cf5d-4b30-bf7e-59ccf53d2919" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221506Z:8262b8ef-cf5d-4b30-bf7e-59ccf53d2919" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c8e7654-8cc3-4cea-99b9-fbc8b66a7a88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6501" - ], - "x-ms-correlation-request-id": [ - "2e34027a-a8af-46a5-859b-aa0f0cf7ec0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221507Z:2e34027a-a8af-46a5-859b-aa0f0cf7ec0c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bbc4f50-967e-40d1-9f1e-bd1a5be73a52" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6500" - ], - "x-ms-correlation-request-id": [ - "cf20fd44-1880-49da-a0e7-2496a8b6e26d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221507Z:cf20fd44-1880-49da-a0e7-2496a8b6e26d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb55adbb-c507-4cb4-bbde-b97a283d4330" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6499" - ], - "x-ms-correlation-request-id": [ - "78ffb58c-1a38-41e5-853b-a608818a5d61" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221507Z:78ffb58c-1a38-41e5-853b-a608818a5d61" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1ccafdf-6dc3-458a-b5b3-99995a6030a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6498" - ], - "x-ms-correlation-request-id": [ - "9a51da61-78a0-4aa4-bc90-da8696fcf555" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221507Z:9a51da61-78a0-4aa4-bc90-da8696fcf555" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c17df8b1-97f7-4235-bb8b-7f928c90935c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6497" - ], - "x-ms-correlation-request-id": [ - "90463f05-b21b-499c-9c2b-d190e7dd3297" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221507Z:90463f05-b21b-499c-9c2b-d190e7dd3297" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44f02c09-df9c-4e58-a973-70d91f716ae9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6496" - ], - "x-ms-correlation-request-id": [ - "a3b78539-ed57-40d8-a7d8-d54a5a3ba5bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221508Z:a3b78539-ed57-40d8-a7d8-d54a5a3ba5bd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d2f0b6a-4251-40e0-8eb6-db5388313851" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6495" - ], - "x-ms-correlation-request-id": [ - "bc0dd73c-418d-4603-bbd5-aedc098367d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221508Z:bc0dd73c-418d-4603-bbd5-aedc098367d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0bb54828-3979-483c-ad46-90b25777ba5f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6494" - ], - "x-ms-correlation-request-id": [ - "2486d719-e449-496c-bfa7-85892b062614" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221508Z:2486d719-e449-496c-bfa7-85892b062614" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a291dba7-04d0-46b7-b54a-bae67edbb3aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6493" - ], - "x-ms-correlation-request-id": [ - "668dc061-c90d-4468-9f03-7c77519f261a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221508Z:668dc061-c90d-4468-9f03-7c77519f261a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67b7db17-e0cc-434b-9529-30335f9ce61a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6492" - ], - "x-ms-correlation-request-id": [ - "d7a11fc0-33f8-4868-b0cb-f3d5ac2943a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221508Z:d7a11fc0-33f8-4868-b0cb-f3d5ac2943a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae68f191-9c3e-4665-95f7-cdc097904789" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6491" - ], - "x-ms-correlation-request-id": [ - "f4900e0b-f06b-4107-93e7-a6bf704ae9ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221508Z:f4900e0b-f06b-4107-93e7-a6bf704ae9ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c2629b8e-fde0-4b2d-b0af-779cc608624c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6490" - ], - "x-ms-correlation-request-id": [ - "e45d0737-d116-4012-8199-9841edfc241a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221509Z:e45d0737-d116-4012-8199-9841edfc241a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ad572dc-4837-4d9f-81f5-5973fc1d2d18" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6489" - ], - "x-ms-correlation-request-id": [ - "68c8e492-1386-4015-b408-66400e9b26df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221509Z:68c8e492-1386-4015-b408-66400e9b26df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4671a0ca-a068-4496-9bd8-3092f55587c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6488" - ], - "x-ms-correlation-request-id": [ - "7448a043-5ef8-4fbd-a376-8322bb28269c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221509Z:7448a043-5ef8-4fbd-a376-8322bb28269c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c53cc60c-2dc9-49e1-80fa-1218005e0f89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6487" - ], - "x-ms-correlation-request-id": [ - "97ae98db-e83f-4611-bae3-bd6200eb8fe7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221509Z:97ae98db-e83f-4611-bae3-bd6200eb8fe7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d470bb78-3474-4df9-9c7d-84006a007277" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6486" - ], - "x-ms-correlation-request-id": [ - "02270f30-684c-4a5d-b423-ee13b7295a73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221509Z:02270f30-684c-4a5d-b423-ee13b7295a73" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96131197-a8c8-469f-bc92-fd14727fcf06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6485" - ], - "x-ms-correlation-request-id": [ - "f76e08bf-c920-4ad2-a444-17da4ed94034" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221509Z:f76e08bf-c920-4ad2-a444-17da4ed94034" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14ce838b-833a-47a8-9abe-b20006f0a88b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6484" - ], - "x-ms-correlation-request-id": [ - "9680ab79-93a6-4a24-b5a9-12075aea6bda" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221510Z:9680ab79-93a6-4a24-b5a9-12075aea6bda" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e8aa9ca-b97f-4155-9561-73a61bcbc6af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6483" - ], - "x-ms-correlation-request-id": [ - "468b2576-49e0-4451-9cee-36cf7aaef40a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221510Z:468b2576-49e0-4451-9cee-36cf7aaef40a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "27a3ab5c-5ee0-4eba-992c-cb70f954cca5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6482" - ], - "x-ms-correlation-request-id": [ - "0e0df405-8667-4fe2-a80b-14d62fbacdf2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221510Z:0e0df405-8667-4fe2-a80b-14d62fbacdf2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac5a4b59-87e4-4653-8dcc-16a83501449b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6481" - ], - "x-ms-correlation-request-id": [ - "e18a0c71-c894-400f-af4f-acac22950926" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221510Z:e18a0c71-c894-400f-af4f-acac22950926" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2795ff3e-a4bd-4faa-b5b7-eb25ce67ce52" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6480" - ], - "x-ms-correlation-request-id": [ - "28c08245-26d2-41fe-855b-62da6bdd8f08" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221510Z:28c08245-26d2-41fe-855b-62da6bdd8f08" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "956bd6d7-7ec7-4d40-9449-a68e0bd9e18c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6479" - ], - "x-ms-correlation-request-id": [ - "c82515a9-107a-4119-821a-0e3084c4ce39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221511Z:c82515a9-107a-4119-821a-0e3084c4ce39" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f55013b-7ee1-4e1a-a7ef-b1c9d1e50a7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6478" - ], - "x-ms-correlation-request-id": [ - "a305059c-1917-4cd9-9188-c8c4eea93444" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221511Z:a305059c-1917-4cd9-9188-c8c4eea93444" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a21ffd1-bb07-48d8-a90d-ed484d3b86cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6477" - ], - "x-ms-correlation-request-id": [ - "39377010-e9f6-4576-a371-7d537f2f9ef2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221511Z:39377010-e9f6-4576-a371-7d537f2f9ef2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a485df20-65a4-40b3-ad37-51f34d9ef502" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6476" - ], - "x-ms-correlation-request-id": [ - "12c92313-2a4a-4018-84be-f23e29dba586" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221511Z:12c92313-2a4a-4018-84be-f23e29dba586" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "694b4968-f5c4-4a25-8e5b-0906ba14e9d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6475" - ], - "x-ms-correlation-request-id": [ - "3aa82627-11dc-436c-8543-674074c2d0b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221511Z:3aa82627-11dc-436c-8543-674074c2d0b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99b011a9-ebbd-4aa8-8853-f8a1ca92b7a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6474" - ], - "x-ms-correlation-request-id": [ - "461871df-9d96-4bae-a86b-c4a52e5c20ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221512Z:461871df-9d96-4bae-a86b-c4a52e5c20ce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd515b47-6a14-4815-9bf2-7b59e4413b65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6473" - ], - "x-ms-correlation-request-id": [ - "0201c903-66d1-4ffd-9eb5-e835c03750c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221512Z:0201c903-66d1-4ffd-9eb5-e835c03750c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad3bcdfc-4588-470b-9732-82b7696a75f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6472" - ], - "x-ms-correlation-request-id": [ - "276d2aad-bd9d-4106-90be-8876601f9eed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221512Z:276d2aad-bd9d-4106-90be-8876601f9eed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72c78e88-a65d-46a7-b305-40a3eda50953" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6471" - ], - "x-ms-correlation-request-id": [ - "baf506c5-e26e-4ece-ab5a-fd96f26af5df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221512Z:baf506c5-e26e-4ece-ab5a-fd96f26af5df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80a2309a-41a5-4a05-b50c-33b205f7312d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6470" - ], - "x-ms-correlation-request-id": [ - "e00900a8-37c2-409f-a49b-66d6ba24abd7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221512Z:e00900a8-37c2-409f-a49b-66d6ba24abd7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e14e7b4-1e0a-48e4-aeb6-3aa981314340" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6469" - ], - "x-ms-correlation-request-id": [ - "d1d3a4df-c561-451e-b750-3a3438cfddbb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221513Z:d1d3a4df-c561-451e-b750-3a3438cfddbb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b262fb92-f3c9-412f-920f-b6e5dbe4f4d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6468" - ], - "x-ms-correlation-request-id": [ - "a4c96681-49a1-49c5-bd6d-6e3f8b8f1e8b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221513Z:a4c96681-49a1-49c5-bd6d-6e3f8b8f1e8b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "340e733e-4f0a-4688-b4c7-4474162687bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6467" - ], - "x-ms-correlation-request-id": [ - "bf48c34f-7ed6-4e29-bd13-6535b3fcf2cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221513Z:bf48c34f-7ed6-4e29-bd13-6535b3fcf2cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4018d661-f4e3-4341-95a3-7d66bb0476ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6466" - ], - "x-ms-correlation-request-id": [ - "25a16df6-7030-4f51-9ed6-601672f1c8fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221513Z:25a16df6-7030-4f51-9ed6-601672f1c8fc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "610dfba0-b937-4940-98d8-48978050da74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6465" - ], - "x-ms-correlation-request-id": [ - "434081b7-37b0-4805-a796-59b542c3ba0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221513Z:434081b7-37b0-4805-a796-59b542c3ba0d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41ca4584-de76-44df-aedd-c300366e1edd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6464" - ], - "x-ms-correlation-request-id": [ - "1c26f1dd-0119-413f-b448-01c9f989d247" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221513Z:1c26f1dd-0119-413f-b448-01c9f989d247" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7122850a-a7c5-462e-8ceb-a31222cbca1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6463" - ], - "x-ms-correlation-request-id": [ - "c280bc17-119e-4be5-9126-d624fc26d250" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221514Z:c280bc17-119e-4be5-9126-d624fc26d250" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "baf7a2da-5df3-4b9e-87b8-e904ca6dbcf6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6462" - ], - "x-ms-correlation-request-id": [ - "d16af7a4-ac24-43a5-a45c-0d862b1b7cdd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221514Z:d16af7a4-ac24-43a5-a45c-0d862b1b7cdd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5692149f-e6d1-4eb8-9eff-a68a360af92a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6461" - ], - "x-ms-correlation-request-id": [ - "1e393f90-6da2-42b5-a78f-80993bbac8ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221514Z:1e393f90-6da2-42b5-a78f-80993bbac8ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e71a1531-fcc8-40f4-85d3-18082fc09271" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6460" - ], - "x-ms-correlation-request-id": [ - "c141d3a1-e250-4f12-af98-5351e0c7eee6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221514Z:c141d3a1-e250-4f12-af98-5351e0c7eee6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fbd1e91d-7e0e-4796-90b5-4ead23bd3cab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6459" - ], - "x-ms-correlation-request-id": [ - "6f431037-a431-41a5-9020-93f73e989904" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221514Z:6f431037-a431-41a5-9020-93f73e989904" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc17c4b5-d4ed-4681-b484-ac778497006d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6458" - ], - "x-ms-correlation-request-id": [ - "646b2e7b-a0b5-480a-a1ae-0de4a353377b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221514Z:646b2e7b-a0b5-480a-a1ae-0de4a353377b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ca6648d-8be2-462a-8966-37d722a67912" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6457" - ], - "x-ms-correlation-request-id": [ - "bf3c7bc5-372b-406e-90e0-17e398e4c054" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221515Z:bf3c7bc5-372b-406e-90e0-17e398e4c054" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5befba19-9b89-41f4-8015-e9bfe1400016" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6456" - ], - "x-ms-correlation-request-id": [ - "de68595d-0aa5-4d8c-88e9-5c8a83b295dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221515Z:de68595d-0aa5-4d8c-88e9-5c8a83b295dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c90a2cdf-b6e4-438c-92cc-6c1d09fecacf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6455" - ], - "x-ms-correlation-request-id": [ - "a9fbdada-606a-4adb-8f8a-6fa91ad67d75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221515Z:a9fbdada-606a-4adb-8f8a-6fa91ad67d75" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48238b05-8728-4b50-8409-16d970b22d80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6454" - ], - "x-ms-correlation-request-id": [ - "83ea7757-2140-417c-b639-285b4d8b73da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221515Z:83ea7757-2140-417c-b639-285b4d8b73da" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "64b9db64-92f0-4968-a66f-8237933ebe78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6453" - ], - "x-ms-correlation-request-id": [ - "050f62df-6ef7-4e42-bd60-9605ffbfde58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221515Z:050f62df-6ef7-4e42-bd60-9605ffbfde58" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e26c16f4-85c7-4fbf-ab5c-a5cd8590ca16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6452" - ], - "x-ms-correlation-request-id": [ - "87b4cba0-772b-4fdd-967f-1df38598d027" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221515Z:87b4cba0-772b-4fdd-967f-1df38598d027" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ed84def-8f8c-40f0-bae1-c900f6cddf82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6451" - ], - "x-ms-correlation-request-id": [ - "583cae81-1d84-4f50-af9b-a37fa551eb6c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221516Z:583cae81-1d84-4f50-af9b-a37fa551eb6c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4224d754-4ae9-4e18-8c95-cefddc921894" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6450" - ], - "x-ms-correlation-request-id": [ - "b06a919d-ba46-420b-b21f-44965b1a58f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221516Z:b06a919d-ba46-420b-b21f-44965b1a58f3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48f53528-fb3a-4e66-bb52-6e01c12187e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6449" - ], - "x-ms-correlation-request-id": [ - "c8b0f81e-cb8b-4af4-b745-640124728086" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221516Z:c8b0f81e-cb8b-4af4-b745-640124728086" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cf12649f-dc89-4045-80bf-d47302b2a1cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6448" - ], - "x-ms-correlation-request-id": [ - "7382bca8-0dae-47fe-aa82-8d6e5778213f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221516Z:7382bca8-0dae-47fe-aa82-8d6e5778213f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "57729320-ec37-4b29-b05c-4bb3727e4135" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6447" - ], - "x-ms-correlation-request-id": [ - "6d899c74-38ce-491c-8dbe-f5901d3d9593" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221516Z:6d899c74-38ce-491c-8dbe-f5901d3d9593" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1b20882-fc9c-46bf-97ac-6dd437e507f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6446" - ], - "x-ms-correlation-request-id": [ - "abf5ffef-c731-478a-9a2e-337cfafc7836" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221516Z:abf5ffef-c731-478a-9a2e-337cfafc7836" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17a415a3-7af4-45a6-bb37-7c4bf73c0eab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6445" - ], - "x-ms-correlation-request-id": [ - "22da0909-c41d-4716-a7bf-6e63e5ef4b88" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221516Z:22da0909-c41d-4716-a7bf-6e63e5ef4b88" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49297897-784c-49b3-b254-1f947504a936" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6444" - ], - "x-ms-correlation-request-id": [ - "e4805c77-be99-43fe-8913-8f222ff535a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221517Z:e4805c77-be99-43fe-8913-8f222ff535a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/9e982f7b-9617-4e12-b3e8-9840334ae48f?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWU5ODJmN2ItOTYxNy00ZTEyLWIzZTgtOTg0MDMzNGFlNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "29" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a78f3e00-e51b-4fa2-9c9a-ed51d49d28da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6443" - ], - "x-ms-correlation-request-id": [ - "da2e2a6e-27e2-4c9e-9931-290231d746a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221517Z:da2e2a6e-27e2-4c9e-9931-290231d746a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4f4a5d4-6f75-4e0e-8193-b265a8416848" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6438" - ], - "x-ms-correlation-request-id": [ - "b5db1f93-a13d-4dc3-aaf5-7b2760058496" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221520Z:b5db1f93-a13d-4dc3-aaf5-7b2760058496" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6149f110-da50-46f8-a649-b322c6755e74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6437" - ], - "x-ms-correlation-request-id": [ - "fe360d2a-2927-4191-a380-892aff81c766" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221520Z:fe360d2a-2927-4191-a380-892aff81c766" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d16e29fe-d22a-419f-8658-99bed9668842" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6436" - ], - "x-ms-correlation-request-id": [ - "1c63ea11-2c75-4e04-b22e-606c9d0ed7c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221520Z:1c63ea11-2c75-4e04-b22e-606c9d0ed7c4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56ebcea1-05b3-438f-82b3-cc5154d9ea60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6435" - ], - "x-ms-correlation-request-id": [ - "5984ffb4-c215-4f3e-9ec2-d5eba179cb1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221521Z:5984ffb4-c215-4f3e-9ec2-d5eba179cb1b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b026956-3354-4747-acdf-860987da0218" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6434" - ], - "x-ms-correlation-request-id": [ - "d3ae5135-1e75-4207-a14f-5566128ab771" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221521Z:d3ae5135-1e75-4207-a14f-5566128ab771" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4ea1e46-d355-4f20-9caf-0b5f1301ecea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6433" - ], - "x-ms-correlation-request-id": [ - "9c7df9d1-f916-48f4-ab9d-eabde3f2f78e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221521Z:9c7df9d1-f916-48f4-ab9d-eabde3f2f78e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "896bb3e9-941c-41eb-a01a-41951093b677" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6432" - ], - "x-ms-correlation-request-id": [ - "0264b2c0-9739-4cfd-9b4e-10258915238d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221521Z:0264b2c0-9739-4cfd-9b4e-10258915238d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be357a0a-f8ca-410b-8f14-8c010024fe9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6431" - ], - "x-ms-correlation-request-id": [ - "14b3453e-6e4a-44b7-878b-cab4896f9763" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221521Z:14b3453e-6e4a-44b7-878b-cab4896f9763" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3af95d63-6574-43cb-b5e8-6c08e8fb95ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6430" - ], - "x-ms-correlation-request-id": [ - "1226d34f-84ac-4258-a640-b75a7a333872" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221521Z:1226d34f-84ac-4258-a640-b75a7a333872" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba291e73-082b-4e14-9d21-6a2ff0ef4231" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6429" - ], - "x-ms-correlation-request-id": [ - "2cf6fba1-34df-477d-a1c5-a8c934a86223" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221522Z:2cf6fba1-34df-477d-a1c5-a8c934a86223" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5dfc44df-4d43-46b7-8e26-ef475f931288" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6428" - ], - "x-ms-correlation-request-id": [ - "9b248bf3-60e6-42d3-a4c0-b5bdcc6b36c4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221522Z:9b248bf3-60e6-42d3-a4c0-b5bdcc6b36c4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f64d7afb-1c65-4212-8bdd-0d0977d53022" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6427" - ], - "x-ms-correlation-request-id": [ - "b450ce12-bf55-415e-9bfa-f250586f3399" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221522Z:b450ce12-bf55-415e-9bfa-f250586f3399" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b962b0d4-6ecc-4a06-b90d-fe5203c50083" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6426" - ], - "x-ms-correlation-request-id": [ - "678a0aac-54d9-45d1-b23b-b24ea1764d39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221522Z:678a0aac-54d9-45d1-b23b-b24ea1764d39" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f924cef-8122-4e39-be03-5364b2b9d0d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6425" - ], - "x-ms-correlation-request-id": [ - "e9f75a39-a836-4d24-b6d8-10586ecc756e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221522Z:e9f75a39-a836-4d24-b6d8-10586ecc756e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0495dd57-9c02-4cff-8163-9b49be809e7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6424" - ], - "x-ms-correlation-request-id": [ - "0d6fc285-8cb0-4d18-bbcb-782416d98cc7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221522Z:0d6fc285-8cb0-4d18-bbcb-782416d98cc7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0da34b81-6db3-4c8f-84f0-fd6e0445a827" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6423" - ], - "x-ms-correlation-request-id": [ - "f012ef55-5d64-4025-800a-b2e3e3290f7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221523Z:f012ef55-5d64-4025-800a-b2e3e3290f7a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61698824-f8eb-42c5-9eb4-3d265caea35b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6422" - ], - "x-ms-correlation-request-id": [ - "33beaf57-2776-4e25-81d8-a8a3be002c79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221523Z:33beaf57-2776-4e25-81d8-a8a3be002c79" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a328348-49e9-468a-a61f-5e19f788c747" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6421" - ], - "x-ms-correlation-request-id": [ - "7eb90ecc-ee74-4720-b2bd-3c94b72806b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221523Z:7eb90ecc-ee74-4720-b2bd-3c94b72806b7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c39c9dff-a37a-49c5-93e8-8251a85a286d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6420" - ], - "x-ms-correlation-request-id": [ - "fab773d0-3b9c-42dc-b4c3-53ca144f13ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221523Z:fab773d0-3b9c-42dc-b4c3-53ca144f13ed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8487574-fabc-4b08-9a3e-fe3cd2d988d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6419" - ], - "x-ms-correlation-request-id": [ - "45c424fe-2480-4859-826c-62c4e11bd413" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221523Z:45c424fe-2480-4859-826c-62c4e11bd413" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c68092c-65cd-4bfc-8ca5-fa83442c48fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6418" - ], - "x-ms-correlation-request-id": [ - "8363fda6-c680-45b6-b337-79c0250f35b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221523Z:8363fda6-c680-45b6-b337-79c0250f35b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "55b4de88-9fe8-4fbb-83e2-7a7ce1561d11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6417" - ], - "x-ms-correlation-request-id": [ - "7398fd04-6809-4fcc-8236-44eff533dc12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221523Z:7398fd04-6809-4fcc-8236-44eff533dc12" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70a91b7b-0d92-4073-8fde-6385a724831f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6416" - ], - "x-ms-correlation-request-id": [ - "36c527f7-8d26-42ae-8b3a-f674679ef05f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221524Z:36c527f7-8d26-42ae-8b3a-f674679ef05f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "421758b2-c2aa-462f-ba43-535d3d361d55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6415" - ], - "x-ms-correlation-request-id": [ - "27d152e8-7d92-4cc8-929e-a0f387a85adb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221524Z:27d152e8-7d92-4cc8-929e-a0f387a85adb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f44f1964-4767-40af-a571-1ac387a946d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6414" - ], - "x-ms-correlation-request-id": [ - "e99f1e56-e132-45a3-a873-6a20ff0c4843" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221524Z:e99f1e56-e132-45a3-a873-6a20ff0c4843" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08dce963-c68e-4191-abf0-7b1a1e1994e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6413" - ], - "x-ms-correlation-request-id": [ - "cdb606c9-15e9-4f63-b390-c2bd0641ed5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221524Z:cdb606c9-15e9-4f63-b390-c2bd0641ed5d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a16c8cd7-9da1-4461-a219-3e3bf4ba13e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6412" - ], - "x-ms-correlation-request-id": [ - "bf6fb63f-4da4-45a8-afac-51337360d802" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221524Z:bf6fb63f-4da4-45a8-afac-51337360d802" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ca57017-8354-47b0-bd64-1967e0f261a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6411" - ], - "x-ms-correlation-request-id": [ - "56912811-2a4f-47ba-a581-1ccb6db8b058" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221524Z:56912811-2a4f-47ba-a581-1ccb6db8b058" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75231490-34be-4294-ad07-58e7b5c13e1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6410" - ], - "x-ms-correlation-request-id": [ - "4e3d11e4-5485-4e81-b5db-8ccb92f2bb1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221525Z:4e3d11e4-5485-4e81-b5db-8ccb92f2bb1e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "26a05f02-90aa-4ce7-ae22-b2984a863409" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6409" - ], - "x-ms-correlation-request-id": [ - "c9417bb4-500b-4042-aa07-8faf6f1dbdeb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221525Z:c9417bb4-500b-4042-aa07-8faf6f1dbdeb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9fb96687-5a41-4c63-9a8a-eabfa339b5e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6408" - ], - "x-ms-correlation-request-id": [ - "8b7050cd-e9bb-468f-a5fc-b9dabb5ca49d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221525Z:8b7050cd-e9bb-468f-a5fc-b9dabb5ca49d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f463f6f-60d5-45a0-9008-82e2576e1d5f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6407" - ], - "x-ms-correlation-request-id": [ - "986fe9af-df45-4e2f-a5e1-37d125c94d60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221525Z:986fe9af-df45-4e2f-a5e1-37d125c94d60" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5f41a0b-52f6-4dbe-b42e-02a77ba65090" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6406" - ], - "x-ms-correlation-request-id": [ - "6714aa77-6dce-4cbf-9f5d-d58b2ba6422b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221525Z:6714aa77-6dce-4cbf-9f5d-d58b2ba6422b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7e13c5f-73cb-4dae-a7b5-443a7022d3ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6405" - ], - "x-ms-correlation-request-id": [ - "363beb51-98d1-4d11-8730-69157acdd9b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221526Z:363beb51-98d1-4d11-8730-69157acdd9b0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b407907-599e-4537-8f33-87441b1c45c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6404" - ], - "x-ms-correlation-request-id": [ - "cec0b40b-51a2-4c6a-b853-992a48d310d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221526Z:cec0b40b-51a2-4c6a-b853-992a48d310d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "435d4fca-7c4c-40c8-b64c-3f510de8d1d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6403" - ], - "x-ms-correlation-request-id": [ - "50a02026-ab44-41dc-a8c0-6a8ec242337c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221526Z:50a02026-ab44-41dc-a8c0-6a8ec242337c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19a1515a-10ee-46f4-a0d1-ff4de764c0e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6402" - ], - "x-ms-correlation-request-id": [ - "d46fe0a2-4b5e-47bf-a9f6-dc4adf597aa6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221526Z:d46fe0a2-4b5e-47bf-a9f6-dc4adf597aa6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "571ebbad-d03f-4631-90d1-6cfa54861cb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6401" - ], - "x-ms-correlation-request-id": [ - "95f95460-431a-42ed-9c4b-5194826e211f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221526Z:95f95460-431a-42ed-9c4b-5194826e211f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc1c0dd3-bcda-4859-a2ba-e00770d5650f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6400" - ], - "x-ms-correlation-request-id": [ - "9e08ea79-0209-41ec-88c0-292b09ed9f0f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221526Z:9e08ea79-0209-41ec-88c0-292b09ed9f0f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7f81c86-3f48-49d9-a626-dbedbeddb585" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6399" - ], - "x-ms-correlation-request-id": [ - "62af6210-aaee-4a1a-b447-6ae097a13d1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221527Z:62af6210-aaee-4a1a-b447-6ae097a13d1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe36b9ca-3c9d-467e-8aff-3fa982d3a8b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6398" - ], - "x-ms-correlation-request-id": [ - "3b0d511f-3c7c-47fb-8a77-12ff4a89112a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221527Z:3b0d511f-3c7c-47fb-8a77-12ff4a89112a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d663dad6-ff0b-4f7f-a656-f181da405528" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6397" - ], - "x-ms-correlation-request-id": [ - "c3fe17d8-c645-402f-ad1d-c954278ef7ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221527Z:c3fe17d8-c645-402f-ad1d-c954278ef7ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8c76d5e-a9f9-4978-a58d-3eb0acdf6f70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6396" - ], - "x-ms-correlation-request-id": [ - "9d0fa8a8-ee6e-49b1-a249-c1cf9d730bc2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221527Z:9d0fa8a8-ee6e-49b1-a249-c1cf9d730bc2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "66f5142a-ce5a-49f3-8be8-f61db58a780d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6395" - ], - "x-ms-correlation-request-id": [ - "1a1dd81d-b25b-40c3-82ee-1581f2a0c761" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221527Z:1a1dd81d-b25b-40c3-82ee-1581f2a0c761" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b992382-9ca1-4eb6-9e58-9c10a38f63f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6394" - ], - "x-ms-correlation-request-id": [ - "c0683ab1-e28a-4e8f-9a3d-f4f6b009f595" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221527Z:c0683ab1-e28a-4e8f-9a3d-f4f6b009f595" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c2e6ccb9-7d4c-44aa-8ccd-edf40e2686c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6393" - ], - "x-ms-correlation-request-id": [ - "594e0152-2562-4fbd-b469-411c5d2b5d25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221528Z:594e0152-2562-4fbd-b469-411c5d2b5d25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a567ba01-1c05-4b9a-b812-b9267abc66d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6392" - ], - "x-ms-correlation-request-id": [ - "a9e34364-5803-48b0-a2e8-48609e17deaa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221528Z:a9e34364-5803-48b0-a2e8-48609e17deaa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14823c4e-dd01-40a9-84c9-384b046a9eeb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6391" - ], - "x-ms-correlation-request-id": [ - "c651224f-6f40-43eb-bf96-15438d6ce1f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221528Z:c651224f-6f40-43eb-bf96-15438d6ce1f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f6e41df-ce0a-437e-88e6-a74b59f96578" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6390" - ], - "x-ms-correlation-request-id": [ - "e8546d6a-8846-463a-b3a5-8c25c3740f46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221528Z:e8546d6a-8846-463a-b3a5-8c25c3740f46" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c1a624f-b6df-4421-8051-8e523bd74a5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6389" - ], - "x-ms-correlation-request-id": [ - "37d3ea30-da71-45a1-bea1-bc31bc22c1ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221528Z:37d3ea30-da71-45a1-bea1-bc31bc22c1ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d63d7301-cdc6-4335-bb6a-e5b177251b37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6388" - ], - "x-ms-correlation-request-id": [ - "fb328732-21ed-4065-9fcd-dc27d4c24326" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221528Z:fb328732-21ed-4065-9fcd-dc27d4c24326" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99012a05-44fc-42d7-bb44-96f4eeece814" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6387" - ], - "x-ms-correlation-request-id": [ - "d1d8c267-7840-49b1-92c0-7d54e4c8d47f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221528Z:d1d8c267-7840-49b1-92c0-7d54e4c8d47f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9bd308f4-27cc-4bf6-a640-020ee9a9e3ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6386" - ], - "x-ms-correlation-request-id": [ - "2cf083ba-c6e7-4dbe-a0b3-c9f97b5e6f64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221529Z:2cf083ba-c6e7-4dbe-a0b3-c9f97b5e6f64" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c7a41f6-8254-4111-bd44-723ca8ae6124" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6385" - ], - "x-ms-correlation-request-id": [ - "c131440b-e5c4-4f85-853e-e2d6d91d6f76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221529Z:c131440b-e5c4-4f85-853e-e2d6d91d6f76" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2c94981-1c2c-4cf1-a2a9-680957687c82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6384" - ], - "x-ms-correlation-request-id": [ - "26070407-089e-432a-9216-0237b76f7e29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221529Z:26070407-089e-432a-9216-0237b76f7e29" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0222ed5b-5b80-4d97-aec7-3312ec8639ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6383" - ], - "x-ms-correlation-request-id": [ - "55634358-89e0-481c-acb6-0c230475e117" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221529Z:55634358-89e0-481c-acb6-0c230475e117" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88ea9831-f11d-4f56-92de-41dde6d724e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6382" - ], - "x-ms-correlation-request-id": [ - "d61d298a-5d45-4cb6-8fbc-9ce6b3ba1796" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221529Z:d61d298a-5d45-4cb6-8fbc-9ce6b3ba1796" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8751079f-d67d-4467-ab55-b8e663546fae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6381" - ], - "x-ms-correlation-request-id": [ - "0aec138c-ed7d-432a-83f7-4dfa5c871c5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221529Z:0aec138c-ed7d-432a-83f7-4dfa5c871c5a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4bfaab40-97cb-456e-a293-8a8038f22ca3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6380" - ], - "x-ms-correlation-request-id": [ - "c9770968-1186-4f2c-89a1-f67fcd740d1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221530Z:c9770968-1186-4f2c-89a1-f67fcd740d1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e90eaa58-14da-4b95-8fcf-b15c5c9929f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6379" - ], - "x-ms-correlation-request-id": [ - "8611f4d0-1085-4b59-9b6c-fb80bb6a6475" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221530Z:8611f4d0-1085-4b59-9b6c-fb80bb6a6475" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c7ccb0c0-755d-498e-9bdf-db12f08d3098" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6378" - ], - "x-ms-correlation-request-id": [ - "aedf6371-4a45-4932-b290-5edf812ee0ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221530Z:aedf6371-4a45-4932-b290-5edf812ee0ce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "315142f0-c163-4075-93d7-f1c234b49fd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6377" - ], - "x-ms-correlation-request-id": [ - "4df8179a-e713-48d7-b294-63616c2f1f19" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221530Z:4df8179a-e713-48d7-b294-63616c2f1f19" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "939e1671-ac60-45a1-b3cd-3bc376532650" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6376" - ], - "x-ms-correlation-request-id": [ - "f46ad955-1b0a-4c25-a1ed-0757134947b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221530Z:f46ad955-1b0a-4c25-a1ed-0757134947b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bb00b79-aaab-4a15-a23a-9b56bd51733a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6375" - ], - "x-ms-correlation-request-id": [ - "3e565377-c8f5-4453-b884-c7e2b993f946" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221531Z:3e565377-c8f5-4453-b884-c7e2b993f946" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "609b8de5-0d1f-4533-984b-0aeb8b2e9ae1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6374" - ], - "x-ms-correlation-request-id": [ - "8ce08100-9ce7-46d1-a6d7-19144345a3dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221531Z:8ce08100-9ce7-46d1-a6d7-19144345a3dd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e990063-2227-48d8-ade0-890416bd5edc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6373" - ], - "x-ms-correlation-request-id": [ - "afde20c5-411c-4a53-92c8-2f8d8b01b248" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221531Z:afde20c5-411c-4a53-92c8-2f8d8b01b248" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "27ac2a87-a9ec-4080-a8e6-a26134cc7628" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6372" - ], - "x-ms-correlation-request-id": [ - "0b1c64a9-51e7-4f9f-b29a-e40acf7bd0ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221531Z:0b1c64a9-51e7-4f9f-b29a-e40acf7bd0ec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cbe4a3b3-7b5b-4a15-961a-b67079b71980" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6371" - ], - "x-ms-correlation-request-id": [ - "5f80a95a-1fcb-4095-a690-6037b323efb7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221532Z:5f80a95a-1fcb-4095-a690-6037b323efb7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9ab2790-8228-4923-a7c8-2ee773d79e4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6370" - ], - "x-ms-correlation-request-id": [ - "506e36f2-6af9-46c9-8db3-206e4e17bb04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221532Z:506e36f2-6af9-46c9-8db3-206e4e17bb04" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0da488ee-e1fd-46c5-b3b8-1f4a2cb03b69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6369" - ], - "x-ms-correlation-request-id": [ - "8e741f1c-6e8d-4d26-8159-cc42a016d899" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221532Z:8e741f1c-6e8d-4d26-8159-cc42a016d899" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe8caff6-4310-4c88-9b14-fa260761c03d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6368" - ], - "x-ms-correlation-request-id": [ - "8872a5e6-ce49-41c4-a397-9527e85fc8b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221532Z:8872a5e6-ce49-41c4-a397-9527e85fc8b7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90b99602-3372-4d67-ae22-e55d4a91c950" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6367" - ], - "x-ms-correlation-request-id": [ - "dbcd6728-b607-4482-aeb6-3af1f8ea79a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221532Z:dbcd6728-b607-4482-aeb6-3af1f8ea79a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7efb2773-3b29-4e16-85ce-d0629347d12d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6366" - ], - "x-ms-correlation-request-id": [ - "2894823a-d920-4837-9319-91ed61c70598" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221532Z:2894823a-d920-4837-9319-91ed61c70598" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ffd61fc-b7c2-4ba6-b25c-8a57a0abb378" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6365" - ], - "x-ms-correlation-request-id": [ - "61fe41f0-8db1-4983-9431-0c19a5784e03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221532Z:61fe41f0-8db1-4983-9431-0c19a5784e03" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc0473f2-b5ff-4031-ad20-bdf936d9586b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6364" - ], - "x-ms-correlation-request-id": [ - "568a2016-373f-4363-8792-f29d306c18c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221533Z:568a2016-373f-4363-8792-f29d306c18c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "05585ee8-d2cd-44b0-aaf2-9371a74338e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6363" - ], - "x-ms-correlation-request-id": [ - "900f9225-f0bb-48d7-bf0d-e462266a3ef7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221533Z:900f9225-f0bb-48d7-bf0d-e462266a3ef7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0ce7b86-3b77-47b3-ac02-529d4da5d514" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6362" - ], - "x-ms-correlation-request-id": [ - "651c3c53-0da1-4809-86c6-c739e69ccbaa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221533Z:651c3c53-0da1-4809-86c6-c739e69ccbaa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f8edc36-6b9a-4f5a-a2d1-adaedec7c68e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6361" - ], - "x-ms-correlation-request-id": [ - "db7f8485-c190-4f3c-b422-00370450c654" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221533Z:db7f8485-c190-4f3c-b422-00370450c654" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5bf3f0a-0a02-4e06-a3d0-c019fb38e307" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6360" - ], - "x-ms-correlation-request-id": [ - "2c66e486-7e32-42c4-afb7-37dc649fc927" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221533Z:2c66e486-7e32-42c4-afb7-37dc649fc927" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "921aae39-40f1-4ac7-95f7-99283c26b7e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6359" - ], - "x-ms-correlation-request-id": [ - "590bbcab-9891-48e9-ae8f-a1b74a00eadf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221534Z:590bbcab-9891-48e9-ae8f-a1b74a00eadf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76057c42-d3c2-4a5d-a6e9-3fbc3647641b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6358" - ], - "x-ms-correlation-request-id": [ - "d5d88bcd-5bcb-4f34-8304-2406589a05d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221534Z:d5d88bcd-5bcb-4f34-8304-2406589a05d6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9983377-0bd9-4c7f-b627-edc39ebbfbdc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6357" - ], - "x-ms-correlation-request-id": [ - "b62e3b3b-7be9-418d-95a8-4bd6d43c82c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221534Z:b62e3b3b-7be9-418d-95a8-4bd6d43c82c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5358025e-0b36-4fbc-b450-9af1b3099a3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6356" - ], - "x-ms-correlation-request-id": [ - "68927f7a-093e-443a-8268-9d8c022cfb55" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221534Z:68927f7a-093e-443a-8268-9d8c022cfb55" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "84c19e87-8f77-4e38-89b2-e468c4d384b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6355" - ], - "x-ms-correlation-request-id": [ - "eb60e21f-23a1-45b5-9b1b-c8a7f00f665f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221534Z:eb60e21f-23a1-45b5-9b1b-c8a7f00f665f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e02171f9-e99b-496e-8c87-c69254f17a55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6354" - ], - "x-ms-correlation-request-id": [ - "7843d5b5-c543-4797-9c21-fb1347e59a86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221535Z:7843d5b5-c543-4797-9c21-fb1347e59a86" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f38fc59-512c-41cf-bcc4-63463e3c1cf8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6353" - ], - "x-ms-correlation-request-id": [ - "4c5f5b09-873e-4775-83e9-b45e26970237" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221535Z:4c5f5b09-873e-4775-83e9-b45e26970237" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47ece368-b9b0-4b9c-a39e-f065b1a081c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6352" - ], - "x-ms-correlation-request-id": [ - "3c479e64-e991-453a-a9bd-9b87870b2d79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221535Z:3c479e64-e991-453a-a9bd-9b87870b2d79" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81907bfc-a7dc-4d3b-bfbd-bde6aa863d32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6351" - ], - "x-ms-correlation-request-id": [ - "af54af27-1aa9-4dfb-a3fd-f96f94a5a8fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221535Z:af54af27-1aa9-4dfb-a3fd-f96f94a5a8fb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11995f27-af29-4668-b130-e73e24018f13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6350" - ], - "x-ms-correlation-request-id": [ - "b955a099-d154-4727-85b0-c93e1dcd0b6e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221535Z:b955a099-d154-4727-85b0-c93e1dcd0b6e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67f97dc3-3480-432d-9683-ff5c7be4da1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6349" - ], - "x-ms-correlation-request-id": [ - "93b799fa-b405-4eaa-aba8-370e08929f57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221536Z:93b799fa-b405-4eaa-aba8-370e08929f57" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1aa82240-7669-4d57-9457-ce4f8a9e48eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6348" - ], - "x-ms-correlation-request-id": [ - "f7c7c976-f033-4a04-9dbf-1932d8c5842c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221536Z:f7c7c976-f033-4a04-9dbf-1932d8c5842c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13dc3b90-2382-40d6-a8d9-fab02fb12321" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6347" - ], - "x-ms-correlation-request-id": [ - "c26dee11-1181-4429-8fb5-55e82bf1ea36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221536Z:c26dee11-1181-4429-8fb5-55e82bf1ea36" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ae2d593-5a02-40c9-a45e-099661f5f306" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6346" - ], - "x-ms-correlation-request-id": [ - "c833def0-7d7f-45fd-b136-66ac53f25f13" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221536Z:c833def0-7d7f-45fd-b136-66ac53f25f13" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ab69710-b0f2-42ad-ab99-7c71ca2c0c81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6345" - ], - "x-ms-correlation-request-id": [ - "ce25ca63-9f0f-4cce-be35-5051d7c40505" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221537Z:ce25ca63-9f0f-4cce-be35-5051d7c40505" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2570a1b0-45d2-49a2-9bdf-c6dfec2bced4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6344" - ], - "x-ms-correlation-request-id": [ - "3218e161-2a1a-4a4c-b26d-645e6efb55c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221537Z:3218e161-2a1a-4a4c-b26d-645e6efb55c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd10de03-f6ac-4732-93e6-905a8f760e44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6343" - ], - "x-ms-correlation-request-id": [ - "a758347c-c787-468b-a0b8-11e6987441f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221537Z:a758347c-c787-468b-a0b8-11e6987441f5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7906901-b84e-40ff-9a1a-461de0624eda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6342" - ], - "x-ms-correlation-request-id": [ - "249ce5ec-9898-4a3a-b646-4617b7a45384" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221537Z:249ce5ec-9898-4a3a-b646-4617b7a45384" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23d04edf-f187-4987-a395-36b57625a7bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6341" - ], - "x-ms-correlation-request-id": [ - "7d639bc2-62fe-4d6b-89e8-fe7abae0bd12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221537Z:7d639bc2-62fe-4d6b-89e8-fe7abae0bd12" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3780d4e6-c6f5-4014-a9f7-e87a268fe206" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6340" - ], - "x-ms-correlation-request-id": [ - "2d1d6a8f-6f92-49b2-a75e-614e10d70df0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221537Z:2d1d6a8f-6f92-49b2-a75e-614e10d70df0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3723ad9-ddec-44f3-8087-0964f33c1eff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6339" - ], - "x-ms-correlation-request-id": [ - "024ab3d3-a67f-454d-9c21-6a2e809241a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221538Z:024ab3d3-a67f-454d-9c21-6a2e809241a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e53d597c-2df0-4916-a47d-886b0eee893c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6338" - ], - "x-ms-correlation-request-id": [ - "cc775a81-f441-4250-b8af-85446bf4e1ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221538Z:cc775a81-f441-4250-b8af-85446bf4e1ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5506770d-2345-4e42-b724-63c64ca9ddd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6337" - ], - "x-ms-correlation-request-id": [ - "1a91183c-201b-42c1-ac59-f81626dbc9cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221538Z:1a91183c-201b-42c1-ac59-f81626dbc9cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9bce424-6474-4d14-af1f-a09f2c3eb1b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6336" - ], - "x-ms-correlation-request-id": [ - "36933bad-e6b7-4566-ac26-01bdb166121f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221538Z:36933bad-e6b7-4566-ac26-01bdb166121f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5bd0cad2-8ef9-4b64-b445-73f0ee568cbd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6335" - ], - "x-ms-correlation-request-id": [ - "65ccdf02-eda8-4ca9-848d-f99d6b3dc50a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221539Z:65ccdf02-eda8-4ca9-848d-f99d6b3dc50a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76b966ef-604b-404d-b7c5-539112bf6f5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6334" - ], - "x-ms-correlation-request-id": [ - "927d07ea-ac65-428a-9b99-02c76a97e159" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221539Z:927d07ea-ac65-428a-9b99-02c76a97e159" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e03debda-30d5-451d-aa41-78fd366ae244" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6333" - ], - "x-ms-correlation-request-id": [ - "2b8e11e3-6aaa-460d-84fc-ee7bcc5d4175" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221539Z:2b8e11e3-6aaa-460d-84fc-ee7bcc5d4175" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5f05c69-8b8f-4827-a778-22c076618072" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6332" - ], - "x-ms-correlation-request-id": [ - "5fabb91a-09a8-4567-9373-639950fb9364" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221539Z:5fabb91a-09a8-4567-9373-639950fb9364" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "858a6e69-00b0-4085-99b8-a6beebe973f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6331" - ], - "x-ms-correlation-request-id": [ - "f0df951a-2bb9-4599-a550-ce72d4c3777c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221539Z:f0df951a-2bb9-4599-a550-ce72d4c3777c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8cdb2bbd-0011-4ac3-a625-594989c4d26d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6330" - ], - "x-ms-correlation-request-id": [ - "bdf7bdb1-4d82-41ef-9934-2b3355fe6f84" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221539Z:bdf7bdb1-4d82-41ef-9934-2b3355fe6f84" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d39e26fc-0837-42e3-b48b-db6b1fd560e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6329" - ], - "x-ms-correlation-request-id": [ - "0fc0a980-45d9-4559-8739-a45d40e446fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221540Z:0fc0a980-45d9-4559-8739-a45d40e446fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4919076-63d4-4a6f-9ccf-f3c7aa4ada2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6328" - ], - "x-ms-correlation-request-id": [ - "6f91f5f4-0b1c-40e1-bf74-fe83d7687cbb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221540Z:6f91f5f4-0b1c-40e1-bf74-fe83d7687cbb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7035882-0142-4760-be15-83b0aed432a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6327" - ], - "x-ms-correlation-request-id": [ - "265f3c8f-8ec7-4e0e-86f7-cd7a5ca45a02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221540Z:265f3c8f-8ec7-4e0e-86f7-cd7a5ca45a02" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c394be7-e0c1-4e5e-ae0c-05f9325c0a21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6326" - ], - "x-ms-correlation-request-id": [ - "eb4b0ee7-2140-470f-94d1-f232610e5623" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221540Z:eb4b0ee7-2140-470f-94d1-f232610e5623" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "017a1cac-015e-4ec6-b899-3da8cd6ac736" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6325" - ], - "x-ms-correlation-request-id": [ - "41dc1532-17ff-4586-82f4-1b472141468b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221540Z:41dc1532-17ff-4586-82f4-1b472141468b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b70d791a-8109-4242-bb52-259401c64307" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6324" - ], - "x-ms-correlation-request-id": [ - "ecd374e5-a168-45f8-9d83-fae780cc8301" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221540Z:ecd374e5-a168-45f8-9d83-fae780cc8301" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a60e3ab-7b0e-4717-ab2b-bc3e4b479c2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6323" - ], - "x-ms-correlation-request-id": [ - "513c9066-f21f-4a0e-a3b4-e9622fd7df7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221540Z:513c9066-f21f-4a0e-a3b4-e9622fd7df7e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd06424f-ab90-47d7-803f-a9fd09446d1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6322" - ], - "x-ms-correlation-request-id": [ - "1e11954c-44f5-44c8-a4ca-e8e29c0741b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221541Z:1e11954c-44f5-44c8-a4ca-e8e29c0741b3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2823840b-9f2b-402d-a2d3-ade7df003202" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6321" - ], - "x-ms-correlation-request-id": [ - "c24fef1c-0e12-4d78-8d52-737368cbbbea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221541Z:c24fef1c-0e12-4d78-8d52-737368cbbbea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72373d5e-3a59-4660-b6b3-4474477801b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6320" - ], - "x-ms-correlation-request-id": [ - "888f230e-9a1e-4b48-9e15-5b75b0439fd7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221541Z:888f230e-9a1e-4b48-9e15-5b75b0439fd7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "242749f8-eeff-4a1a-b405-c8435482b56e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6319" - ], - "x-ms-correlation-request-id": [ - "19faba6a-4d32-4959-8524-16276d85e793" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221541Z:19faba6a-4d32-4959-8524-16276d85e793" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2404a811-6020-49f5-a289-343f759359ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6318" - ], - "x-ms-correlation-request-id": [ - "99f885ac-8e0f-4d3d-a47d-2912b1d9a41e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221541Z:99f885ac-8e0f-4d3d-a47d-2912b1d9a41e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "66beaaab-4659-4722-8140-b7bf9f8d0908" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6317" - ], - "x-ms-correlation-request-id": [ - "f49f50a0-8037-468a-ae03-e92ad0d4df61" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221541Z:f49f50a0-8037-468a-ae03-e92ad0d4df61" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "193f994e-951e-4ee1-90c7-d18096165e31" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6316" - ], - "x-ms-correlation-request-id": [ - "22548ac8-f785-4935-bbfc-8d2aed611343" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221542Z:22548ac8-f785-4935-bbfc-8d2aed611343" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff080602-a4db-40e1-82ff-38be712e7d78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6315" - ], - "x-ms-correlation-request-id": [ - "d5bcd930-8651-4cee-bf3a-a81e75ec2ebc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221542Z:d5bcd930-8651-4cee-bf3a-a81e75ec2ebc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f98d1041-a9b9-4388-9333-11d5d1d72ce0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6314" - ], - "x-ms-correlation-request-id": [ - "1125a2f6-3f0b-47ae-87eb-ac6452842997" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221542Z:1125a2f6-3f0b-47ae-87eb-ac6452842997" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb8ed1e3-16a5-4acc-bcb5-f78adf77351a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6313" - ], - "x-ms-correlation-request-id": [ - "c5ed25f4-52db-4d58-bdba-aef555174eb4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221542Z:c5ed25f4-52db-4d58-bdba-aef555174eb4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42d5bb31-437f-4f51-b3d4-f60ab3544aeb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6312" - ], - "x-ms-correlation-request-id": [ - "b534e228-4a88-4f32-aebc-6420f734aa3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221542Z:b534e228-4a88-4f32-aebc-6420f734aa3d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78348093-adcc-4d6b-afee-974cd025ee4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6311" - ], - "x-ms-correlation-request-id": [ - "60a576cc-5476-4fee-8a76-2e1ffdfe18ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221542Z:60a576cc-5476-4fee-8a76-2e1ffdfe18ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ad548b2-7bf6-42e5-bf40-c7c28385ed82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6310" - ], - "x-ms-correlation-request-id": [ - "986d5db7-4ef0-4c04-bb49-b420957f1d10" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221542Z:986d5db7-4ef0-4c04-bb49-b420957f1d10" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b10645f3-a2c9-409d-af93-3c4699513ed6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6309" - ], - "x-ms-correlation-request-id": [ - "a53dd92d-0f23-4af1-a29d-a4cead771efb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221543Z:a53dd92d-0f23-4af1-a29d-a4cead771efb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f56be75-18a5-4a84-98e6-dadafe384cd5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6308" - ], - "x-ms-correlation-request-id": [ - "a5a84a40-dc35-4daa-9a7f-6cc51dd4e567" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221543Z:a5a84a40-dc35-4daa-9a7f-6cc51dd4e567" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c653d4d-4d24-4cde-ab6f-1251b4f32ce5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6307" - ], - "x-ms-correlation-request-id": [ - "1620d5a3-2416-4927-9134-34faf3a0b405" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221543Z:1620d5a3-2416-4927-9134-34faf3a0b405" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0c05482-49df-43a3-a559-cf05bc5a1476" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6306" - ], - "x-ms-correlation-request-id": [ - "f241b6f3-bf25-46a2-937a-cc0f3ea119ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221543Z:f241b6f3-bf25-46a2-937a-cc0f3ea119ed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "355a38bd-2ab6-4fe4-8736-bb804c50f514" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6305" - ], - "x-ms-correlation-request-id": [ - "9953b4af-7713-4e9a-8240-13e5e24b8d6e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221543Z:9953b4af-7713-4e9a-8240-13e5e24b8d6e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53f54e48-41d5-4546-9fd6-01c2fbb7783b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6304" - ], - "x-ms-correlation-request-id": [ - "48ab979c-5a9c-4ff9-816d-3c09e83f25c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221543Z:48ab979c-5a9c-4ff9-816d-3c09e83f25c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e5eb862-f404-4fa8-b53f-32279fcf380a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6303" - ], - "x-ms-correlation-request-id": [ - "a19cacda-04fa-48c9-9937-87c86efa21df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221544Z:a19cacda-04fa-48c9-9937-87c86efa21df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc9f925e-7fa5-4473-b13e-011f02e24601" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6302" - ], - "x-ms-correlation-request-id": [ - "2a242cc7-1563-4aa1-953e-e7aa0083fa7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221544Z:2a242cc7-1563-4aa1-953e-e7aa0083fa7a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dfd8d1b3-1330-4a9b-ada3-380f8b4eb083" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6301" - ], - "x-ms-correlation-request-id": [ - "63a3cfc6-af71-40b1-956d-889c917cce1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221544Z:63a3cfc6-af71-40b1-956d-889c917cce1b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24332854-0b65-4029-aa6e-1ee64b76e68b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6300" - ], - "x-ms-correlation-request-id": [ - "cbd77c31-234c-4565-a6b6-9bd994ac2165" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221544Z:cbd77c31-234c-4565-a6b6-9bd994ac2165" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1dad4f9-1e6f-4c63-a1c6-acb19f9c107d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6299" - ], - "x-ms-correlation-request-id": [ - "c445a8fb-493c-47e4-946c-2031116270cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221544Z:c445a8fb-493c-47e4-946c-2031116270cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62b3cc0b-a806-4019-a8c9-d88342dc6cc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6298" - ], - "x-ms-correlation-request-id": [ - "3482c649-7b69-47cc-9acc-d6ac8289058a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221544Z:3482c649-7b69-47cc-9acc-d6ac8289058a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5faf0951-a5bc-4b2f-b522-30f0be865459" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6297" - ], - "x-ms-correlation-request-id": [ - "c49e6e1f-58a7-4744-b699-3c873f116a5f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221545Z:c49e6e1f-58a7-4744-b699-3c873f116a5f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c900c54-37ac-4f11-80ad-72bbec1159dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6296" - ], - "x-ms-correlation-request-id": [ - "a137d6b3-b2ec-4750-b30f-31ff60c49cdc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221545Z:a137d6b3-b2ec-4750-b30f-31ff60c49cdc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "defbfb62-de2e-48a3-bde5-aa7fc9af3181" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6295" - ], - "x-ms-correlation-request-id": [ - "226d1ef8-6621-44b3-947c-49b77b10c3a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221545Z:226d1ef8-6621-44b3-947c-49b77b10c3a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d65cc984-9fe2-495a-9137-89f291fc6e0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6294" - ], - "x-ms-correlation-request-id": [ - "869e17fb-716f-4807-8efb-dfa61e9454f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221545Z:869e17fb-716f-4807-8efb-dfa61e9454f5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1d2c7ff-a92c-4e79-86a6-5340ab15e5af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6293" - ], - "x-ms-correlation-request-id": [ - "713c4d44-6aec-410f-8965-7d4b894eda01" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221545Z:713c4d44-6aec-410f-8965-7d4b894eda01" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2e0c103-7094-42bd-ae7e-4b3a5da8db93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6292" - ], - "x-ms-correlation-request-id": [ - "bc2cbc3c-b773-4dd8-9fa7-74f3cc74ffd2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221545Z:bc2cbc3c-b773-4dd8-9fa7-74f3cc74ffd2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee952d43-537b-4f4b-88da-7c7ebb8f2ccb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6291" - ], - "x-ms-correlation-request-id": [ - "2aea543e-88ec-4a3a-afde-0760d73da87a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221546Z:2aea543e-88ec-4a3a-afde-0760d73da87a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "32988608-c7d8-4e80-a55c-faa412860550" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6290" - ], - "x-ms-correlation-request-id": [ - "32daf8e9-eda9-428d-8376-2c1b533a9686" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221546Z:32daf8e9-eda9-428d-8376-2c1b533a9686" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5e657d4-5ef9-4365-8431-d03697d0cf71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6289" - ], - "x-ms-correlation-request-id": [ - "5bce6e4e-a768-4569-96b5-97ffd5b9922f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221546Z:5bce6e4e-a768-4569-96b5-97ffd5b9922f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4af2f49-3857-4124-8bba-7f614466b96f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6288" - ], - "x-ms-correlation-request-id": [ - "cbfe8dd5-9257-482e-bffa-56f137d52569" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221546Z:cbfe8dd5-9257-482e-bffa-56f137d52569" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "34f25b16-198c-472f-bcd6-e045f709155d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6287" - ], - "x-ms-correlation-request-id": [ - "6915ba83-b4db-4e19-b858-0d0dd470d852" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221546Z:6915ba83-b4db-4e19-b858-0d0dd470d852" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6ea59dc-db33-4b4a-8e8f-8108b449d15a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6286" - ], - "x-ms-correlation-request-id": [ - "c3f664f6-8a0c-4e0d-98bb-88e3a76bb19e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221547Z:c3f664f6-8a0c-4e0d-98bb-88e3a76bb19e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ae48969e-8a76-4947-b2e7-d74cb3c34318" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6285" - ], - "x-ms-correlation-request-id": [ - "38f0b658-dbaf-4544-9eea-232e83be1ef7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221547Z:38f0b658-dbaf-4544-9eea-232e83be1ef7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c29edd1-2f4e-44c6-98f3-6f73c607b8b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6284" - ], - "x-ms-correlation-request-id": [ - "d94586a5-6d6f-4510-abd2-91b5558c1f03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221547Z:d94586a5-6d6f-4510-abd2-91b5558c1f03" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "330ac260-f841-4a1c-975f-2e62ea42a2a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6283" - ], - "x-ms-correlation-request-id": [ - "ee16ddbd-e056-4137-82c4-5ef0ad8baa0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221547Z:ee16ddbd-e056-4137-82c4-5ef0ad8baa0d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8aef74d8-78b0-4ca8-9f90-fd43f6ac7299" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6282" - ], - "x-ms-correlation-request-id": [ - "2f89de9e-cf9a-43e0-8cfa-365a8326fe8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221547Z:2f89de9e-cf9a-43e0-8cfa-365a8326fe8c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fbf82dd-3aab-43a2-b99b-5fef1cf6571e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6281" - ], - "x-ms-correlation-request-id": [ - "f0a26d21-5f7a-46b2-9ff4-269197e1ccd3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221547Z:f0a26d21-5f7a-46b2-9ff4-269197e1ccd3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a30b43c6-2827-4b1c-a0aa-087a0e862875" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6280" - ], - "x-ms-correlation-request-id": [ - "f9dbc5dc-98ac-4335-a0c6-c830a534b7fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221547Z:f9dbc5dc-98ac-4335-a0c6-c830a534b7fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cff71068-9e12-4e45-8d91-53806f536a3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6279" - ], - "x-ms-correlation-request-id": [ - "ea507823-f198-4fc5-a28f-9cacc64b6cfe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221548Z:ea507823-f198-4fc5-a28f-9cacc64b6cfe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4aee7ab5-0192-4def-a963-f5bb53318d2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6278" - ], - "x-ms-correlation-request-id": [ - "8bf48b8f-54fb-4a21-b48d-9ff8ba4588e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221548Z:8bf48b8f-54fb-4a21-b48d-9ff8ba4588e4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6415aa45-5dc7-4dd1-a56c-fd1e2c719a11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6277" - ], - "x-ms-correlation-request-id": [ - "3999fb3d-2832-4316-8c51-61cc5ef2cfc3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221548Z:3999fb3d-2832-4316-8c51-61cc5ef2cfc3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39f3904c-86a2-4bc1-9743-68722aa3e2b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6276" - ], - "x-ms-correlation-request-id": [ - "e1972688-fd31-4ce5-9b88-3b55a46a02d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221548Z:e1972688-fd31-4ce5-9b88-3b55a46a02d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aecbd00d-bd0f-4e09-bd1a-555a6695d333" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6275" - ], - "x-ms-correlation-request-id": [ - "46038835-d855-4064-9a8b-11e7e850f50e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221548Z:46038835-d855-4064-9a8b-11e7e850f50e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a81a7a90-8481-4130-ad26-2f5800a99835" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6274" - ], - "x-ms-correlation-request-id": [ - "8bff2d51-5d05-4100-8fe3-fd4c42d5747b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221548Z:8bff2d51-5d05-4100-8fe3-fd4c42d5747b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "328b63fb-36e3-46bc-af69-07416e950ed6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6273" - ], - "x-ms-correlation-request-id": [ - "3da838d1-3c9a-4581-aad0-ecc8ff3b0846" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221549Z:3da838d1-3c9a-4581-aad0-ecc8ff3b0846" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "adcb67a2-9597-4a1b-9937-6a4b518c1bbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6272" - ], - "x-ms-correlation-request-id": [ - "eb201099-0bf0-4c15-b6da-3b13a6cf2c62" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221549Z:eb201099-0bf0-4c15-b6da-3b13a6cf2c62" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f084622-1a85-4b83-92c2-0ad0555a4d69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6271" - ], - "x-ms-correlation-request-id": [ - "44fd34f8-c595-4161-9b7c-3072756aa053" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221549Z:44fd34f8-c595-4161-9b7c-3072756aa053" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5c7c60e-d604-40c4-9f63-90729ca9b778" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6270" - ], - "x-ms-correlation-request-id": [ - "740b1443-4b4c-40e0-b05f-a15d8a6c3538" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221549Z:740b1443-4b4c-40e0-b05f-a15d8a6c3538" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5cbe10c8-8813-46c8-8f5a-5756e78584b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6269" - ], - "x-ms-correlation-request-id": [ - "358b016e-0182-4c99-a6d7-5feb3340f354" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221549Z:358b016e-0182-4c99-a6d7-5feb3340f354" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75ce17c0-6e89-4fa8-aff4-fab9e1b0a54f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6268" - ], - "x-ms-correlation-request-id": [ - "a6e506aa-58ca-48a3-91cd-b026dcd9095a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221549Z:a6e506aa-58ca-48a3-91cd-b026dcd9095a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d44164fc-5551-4a05-871d-2c047ff41929" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6267" - ], - "x-ms-correlation-request-id": [ - "c935e745-e0cb-4955-9dbc-26949149a02b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221550Z:c935e745-e0cb-4955-9dbc-26949149a02b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "793ba746-1d21-41d7-9f88-9ab5400071cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6266" - ], - "x-ms-correlation-request-id": [ - "6f7d7e5e-07b8-4058-b6ba-111870839ad9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221550Z:6f7d7e5e-07b8-4058-b6ba-111870839ad9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9ba7c6d-9b51-482a-b754-21e1f98b40c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6265" - ], - "x-ms-correlation-request-id": [ - "af112ed1-64a5-4015-84c3-753d27db8368" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221550Z:af112ed1-64a5-4015-84c3-753d27db8368" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f8eeb68-42c9-4478-bf82-5e9b9621e3df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6264" - ], - "x-ms-correlation-request-id": [ - "b14a5c15-dfae-4f5b-a146-6263ee1ecbb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221550Z:b14a5c15-dfae-4f5b-a146-6263ee1ecbb9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7d6e033-2e16-4f0a-8081-b4c7ccbf1b06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6263" - ], - "x-ms-correlation-request-id": [ - "f2be4385-16de-4f39-a169-15cdc963817d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221550Z:f2be4385-16de-4f39-a169-15cdc963817d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "066b4ecb-6fc6-4dee-9d6f-e6f07b8cf475" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6262" - ], - "x-ms-correlation-request-id": [ - "374c6515-8e9a-4891-b0ca-750c41e59ffa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221550Z:374c6515-8e9a-4891-b0ca-750c41e59ffa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69bef840-f911-44fe-b0dc-156bb51e8ccb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6261" - ], - "x-ms-correlation-request-id": [ - "e6e67589-1718-4326-a804-a20ed5293071" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221551Z:e6e67589-1718-4326-a804-a20ed5293071" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "190824c7-ea67-484e-87af-7c56ab1784fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6260" - ], - "x-ms-correlation-request-id": [ - "bf3f8899-4d62-4219-b871-36f6f05e9b5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221551Z:bf3f8899-4d62-4219-b871-36f6f05e9b5a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ff9eafe-2aac-4522-8055-3d392d1bc222" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6259" - ], - "x-ms-correlation-request-id": [ - "3f71f7c3-e5b8-4daa-a1c3-84819b490849" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221551Z:3f71f7c3-e5b8-4daa-a1c3-84819b490849" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97238296-7198-4e0b-8cc9-49157a559896" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6258" - ], - "x-ms-correlation-request-id": [ - "e925cb2d-97da-4007-88d0-b8533b038808" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221551Z:e925cb2d-97da-4007-88d0-b8533b038808" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38f460e7-823b-4007-96ac-318d450c7fb9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6257" - ], - "x-ms-correlation-request-id": [ - "36606fe4-db65-4696-ab4e-3e831c5529fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221551Z:36606fe4-db65-4696-ab4e-3e831c5529fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1dcf8e3-9465-4377-845a-e311969faf13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6256" - ], - "x-ms-correlation-request-id": [ - "2ef5221a-69bd-4270-910e-620ba1241279" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221551Z:2ef5221a-69bd-4270-910e-620ba1241279" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8acd1bff-f353-4ae2-9c69-542ad5c31786" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6255" - ], - "x-ms-correlation-request-id": [ - "6e3a1bc5-b7c0-4c21-9b3b-c9fab0a81728" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221551Z:6e3a1bc5-b7c0-4c21-9b3b-c9fab0a81728" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c519c538-31c6-4c6d-bef7-dbe0176d6d1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6254" - ], - "x-ms-correlation-request-id": [ - "53e2a2fe-4010-4c6e-8086-c76a4086cd0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221552Z:53e2a2fe-4010-4c6e-8086-c76a4086cd0d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b867293-056c-450b-85bb-31b7a8a82c66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6253" - ], - "x-ms-correlation-request-id": [ - "a23155f6-7d45-4ffa-b549-2aa953f7493f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221552Z:a23155f6-7d45-4ffa-b549-2aa953f7493f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82426636-5fc6-44a8-8115-19164ecb653b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6252" - ], - "x-ms-correlation-request-id": [ - "c72d1801-48f7-4b87-8c7d-50c9f0fd7dda" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221552Z:c72d1801-48f7-4b87-8c7d-50c9f0fd7dda" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36f8a2a7-447d-454f-a459-7f8e017ace99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6251" - ], - "x-ms-correlation-request-id": [ - "42071b5b-0739-4ee3-bda0-6300f4f72ced" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221552Z:42071b5b-0739-4ee3-bda0-6300f4f72ced" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee22c37b-953d-4615-9e09-5913f3560bea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6250" - ], - "x-ms-correlation-request-id": [ - "4f5e6ec7-3564-4e7f-be80-220a842f5104" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221552Z:4f5e6ec7-3564-4e7f-be80-220a842f5104" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41b6846d-a845-488c-a2f8-b82421bb3845" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6249" - ], - "x-ms-correlation-request-id": [ - "89554fcc-19fe-4695-9d47-12f7a283190e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221552Z:89554fcc-19fe-4695-9d47-12f7a283190e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3fad9abd-3f1e-4be6-8301-d58d71e23f40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6248" - ], - "x-ms-correlation-request-id": [ - "750955ff-9ba1-4b92-9001-2b296724f055" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221553Z:750955ff-9ba1-4b92-9001-2b296724f055" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe493497-834c-4f14-9f4b-4f58fa9ed091" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6247" - ], - "x-ms-correlation-request-id": [ - "43a7a55f-9a30-4649-839d-0bb2c78960d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221553Z:43a7a55f-9a30-4649-839d-0bb2c78960d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1d162fb-5e37-483f-8edf-4e2f18503776" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6246" - ], - "x-ms-correlation-request-id": [ - "96b8d5df-31e6-4f8d-999c-1c1e12466459" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221553Z:96b8d5df-31e6-4f8d-999c-1c1e12466459" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2dceb9c1-8c19-4131-9ff1-802998e78c72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6245" - ], - "x-ms-correlation-request-id": [ - "53960bdd-084e-4b96-98f2-72250bcb067a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221553Z:53960bdd-084e-4b96-98f2-72250bcb067a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "12961535-050d-4135-b33a-bf94898b03b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6244" - ], - "x-ms-correlation-request-id": [ - "c9c9f375-6d28-4de5-8b55-b78346a5aa80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221553Z:c9c9f375-6d28-4de5-8b55-b78346a5aa80" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fadb20c6-8bab-4ae0-8d23-60fd01d5a116" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6243" - ], - "x-ms-correlation-request-id": [ - "4a38900e-344c-4e1f-b087-ee7ac5a0a7cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221553Z:4a38900e-344c-4e1f-b087-ee7ac5a0a7cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ec3dd2c1-b860-48b5-8325-53be91545611" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6242" - ], - "x-ms-correlation-request-id": [ - "32633181-bc23-413f-bf8f-d4e627f87549" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221554Z:32633181-bc23-413f-bf8f-d4e627f87549" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b919355f-2d07-4500-82d8-3614ea1f1a78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6241" - ], - "x-ms-correlation-request-id": [ - "bd3650de-4f38-4c12-8b7a-117c626602d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221554Z:bd3650de-4f38-4c12-8b7a-117c626602d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7965773-5389-4d70-a58d-a76a2b53b603" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6240" - ], - "x-ms-correlation-request-id": [ - "d7f2f4f2-ef81-4418-ab27-fea6f2aa7475" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221554Z:d7f2f4f2-ef81-4418-ab27-fea6f2aa7475" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f8408a8-d58d-4a4c-8111-4307866358f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6239" - ], - "x-ms-correlation-request-id": [ - "6c398a17-508f-4731-aaa6-991d51b162b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221554Z:6c398a17-508f-4731-aaa6-991d51b162b3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "242f0d0e-3eb1-4b1c-8e3d-1516f9c3818d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6238" - ], - "x-ms-correlation-request-id": [ - "5caabe08-814c-4ea4-8446-927a46ce6376" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221554Z:5caabe08-814c-4ea4-8446-927a46ce6376" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69cd4fea-99d4-4ad3-a39f-b7cf957d46a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6237" - ], - "x-ms-correlation-request-id": [ - "9e5e91eb-0836-4d7d-a3a3-6d7f55c72d3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221554Z:9e5e91eb-0836-4d7d-a3a3-6d7f55c72d3c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44e32938-1e25-4771-8382-bbe79155b851" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6236" - ], - "x-ms-correlation-request-id": [ - "6b124956-a3dc-40a8-9ed8-4408ef9d3a8b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221554Z:6b124956-a3dc-40a8-9ed8-4408ef9d3a8b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "370f60e6-1230-4f64-9872-57de47a2a58a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6235" - ], - "x-ms-correlation-request-id": [ - "9c192f3a-336c-439a-9a14-7eb3570dc241" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221555Z:9c192f3a-336c-439a-9a14-7eb3570dc241" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39028669-d060-4f98-92e3-997bcc980292" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6234" - ], - "x-ms-correlation-request-id": [ - "cd71a6f0-a8c0-488a-af9d-3244b8bcc404" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221555Z:cd71a6f0-a8c0-488a-af9d-3244b8bcc404" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "adf1eda2-27a7-482f-bacc-a2612d93ee58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6233" - ], - "x-ms-correlation-request-id": [ - "4551f0e8-c42b-4214-9f64-d0ab53ea36a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221555Z:4551f0e8-c42b-4214-9f64-d0ab53ea36a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "85ba36ff-d62d-4afe-9390-ea5f55b53ace" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6232" - ], - "x-ms-correlation-request-id": [ - "5aef3af3-0f63-4968-bb5c-992355bfe71b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221555Z:5aef3af3-0f63-4968-bb5c-992355bfe71b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d79ca9e6-cb3b-4a1d-ba95-435aff8336c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6231" - ], - "x-ms-correlation-request-id": [ - "52f09bab-4746-45d8-83c4-132b123496f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221555Z:52f09bab-4746-45d8-83c4-132b123496f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d10504a-cb3c-4aef-b04e-a5f1c58966d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6230" - ], - "x-ms-correlation-request-id": [ - "457a02f1-7322-4d14-b652-e9ba24c3e88f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221555Z:457a02f1-7322-4d14-b652-e9ba24c3e88f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a5dc994-dbd1-4935-9eaf-e6b99bc6c724" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6229" - ], - "x-ms-correlation-request-id": [ - "6f268315-9dd7-4617-8e9a-d2a46c91c14b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221555Z:6f268315-9dd7-4617-8e9a-d2a46c91c14b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b29da55-cc17-441c-80c6-066bf095ff21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6228" - ], - "x-ms-correlation-request-id": [ - "a388e775-e0d6-49f4-b943-045296aa334b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221556Z:a388e775-e0d6-49f4-b943-045296aa334b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c40dc5a-2393-4ece-9168-bcbe1b56e769" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6227" - ], - "x-ms-correlation-request-id": [ - "e4f6463e-36de-454a-ad6d-9161285aa88e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221556Z:e4f6463e-36de-454a-ad6d-9161285aa88e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b10f3114-b748-400d-a1ae-24a363678c26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6226" - ], - "x-ms-correlation-request-id": [ - "dc818fb8-bde9-48f7-9e81-687db9b201e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221556Z:dc818fb8-bde9-48f7-9e81-687db9b201e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "feb9352a-11a9-4c75-9570-98b98ff104dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6225" - ], - "x-ms-correlation-request-id": [ - "461c8500-71ab-4bce-9b51-4bbc7fe278dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221556Z:461c8500-71ab-4bce-9b51-4bbc7fe278dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37fd7830-756f-4e52-9a86-108df595a043" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6224" - ], - "x-ms-correlation-request-id": [ - "9058a2b7-f860-47fb-9075-849121c9df73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221556Z:9058a2b7-f860-47fb-9075-849121c9df73" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b38ea0cb-df05-40a4-be67-dd7624949abb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6223" - ], - "x-ms-correlation-request-id": [ - "3ea08f79-a007-4c63-8762-7752f767e48e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221556Z:3ea08f79-a007-4c63-8762-7752f767e48e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46d350f7-1c30-49c4-9a5f-b3f6f2d531a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6222" - ], - "x-ms-correlation-request-id": [ - "71d49c08-f488-4b17-8162-a79c431259a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221557Z:71d49c08-f488-4b17-8162-a79c431259a5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54ddd6de-736e-4c6d-afb7-872cf029bc32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6221" - ], - "x-ms-correlation-request-id": [ - "3d79bf34-a643-42f1-9366-2433da126ad1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221557Z:3d79bf34-a643-42f1-9366-2433da126ad1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d517e2ae-8758-417a-ab56-bc7f2d760ee3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6220" - ], - "x-ms-correlation-request-id": [ - "177d5346-6bde-43b6-a6da-24ca2e89c0ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221557Z:177d5346-6bde-43b6-a6da-24ca2e89c0ed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8542bec8-63e5-4439-9b2d-1f0e63af5c97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6219" - ], - "x-ms-correlation-request-id": [ - "e9e6087e-12b3-4cff-8f83-14601addf43b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221557Z:e9e6087e-12b3-4cff-8f83-14601addf43b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe07006f-1d61-4537-a27d-0e8b94d860c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6218" - ], - "x-ms-correlation-request-id": [ - "851908d7-7259-456a-b404-d6d01aba86cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221557Z:851908d7-7259-456a-b404-d6d01aba86cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dcf726d0-0d5a-413f-9efe-15aafac844f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6217" - ], - "x-ms-correlation-request-id": [ - "8147d364-b33c-4303-a67d-6e5a76f9da24" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221558Z:8147d364-b33c-4303-a67d-6e5a76f9da24" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed7667c4-deb3-4a95-bc60-271d6b06c7e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6216" - ], - "x-ms-correlation-request-id": [ - "3f96f888-b418-4777-bde3-0da71ab66406" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221558Z:3f96f888-b418-4777-bde3-0da71ab66406" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "379b10ce-193b-4040-bd56-034f4e2e1d2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6215" - ], - "x-ms-correlation-request-id": [ - "33d86093-824c-4a67-a75e-8cce7bec0e85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221558Z:33d86093-824c-4a67-a75e-8cce7bec0e85" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdbaf69d-fd71-4316-b01e-b26013a22922" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6214" - ], - "x-ms-correlation-request-id": [ - "968f5958-6eac-4178-bd6a-324ad5485112" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221558Z:968f5958-6eac-4178-bd6a-324ad5485112" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51c08918-9cba-4bb0-9bc5-6c585f79e185" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6213" - ], - "x-ms-correlation-request-id": [ - "bc5363c2-0d51-4026-bc4e-d470378fc277" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221558Z:bc5363c2-0d51-4026-bc4e-d470378fc277" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3153f302-dcde-43ee-bff8-8600ab8a6d2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6212" - ], - "x-ms-correlation-request-id": [ - "b7b3bfa9-f10d-4ba4-a8de-6959afde01fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221558Z:b7b3bfa9-f10d-4ba4-a8de-6959afde01fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70f9fd0a-3d8a-4e0d-ad74-c5c4c3751540" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6211" - ], - "x-ms-correlation-request-id": [ - "87fefef2-541d-4bed-a841-3246e0e91735" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221559Z:87fefef2-541d-4bed-a841-3246e0e91735" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "34da3714-c745-4753-9ff5-fdbc1f36230d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6210" - ], - "x-ms-correlation-request-id": [ - "2b3ce189-7164-45d7-a604-5b62aa25bbd8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221559Z:2b3ce189-7164-45d7-a604-5b62aa25bbd8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3417366e-18db-4af7-95b9-7ac63788ee9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6209" - ], - "x-ms-correlation-request-id": [ - "d410e977-ea7c-4f16-aff8-81082d19cd9c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221559Z:d410e977-ea7c-4f16-aff8-81082d19cd9c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "34629785-f9a0-4925-8414-4dae2ae63c32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6208" - ], - "x-ms-correlation-request-id": [ - "bc675282-5cfe-4881-9b17-0ebc3a712d62" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221559Z:bc675282-5cfe-4881-9b17-0ebc3a712d62" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "253d9d92-e262-4042-a6b9-4c744a2b8eff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6207" - ], - "x-ms-correlation-request-id": [ - "1abc5081-c69c-4a85-b059-1ff1c2434c91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221559Z:1abc5081-c69c-4a85-b059-1ff1c2434c91" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0fad031-7095-4c1c-a6d7-3dd6ff20324e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6206" - ], - "x-ms-correlation-request-id": [ - "61dd1321-a61e-40ab-8cb4-5fa85a53cf02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221559Z:61dd1321-a61e-40ab-8cb4-5fa85a53cf02" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f57c12cc-c93f-413b-9bcd-b41f6b8fe236" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6205" - ], - "x-ms-correlation-request-id": [ - "04d808f6-4081-4d55-ac65-a74bf8c071d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221600Z:04d808f6-4081-4d55-ac65-a74bf8c071d6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:15:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb2b547c-d252-4693-a0da-bb923eee29d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6204" - ], - "x-ms-correlation-request-id": [ - "f6cf1f6a-fed7-4070-b07c-c47800be28ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221600Z:f6cf1f6a-fed7-4070-b07c-c47800be28ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "debdf173-8fde-4418-9239-fc7effb970eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6203" - ], - "x-ms-correlation-request-id": [ - "20da76fc-2081-431f-aa1c-327b554a42db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221600Z:20da76fc-2081-431f-aa1c-327b554a42db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "907bd206-469f-4c2e-82b0-d83531bacd54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6202" - ], - "x-ms-correlation-request-id": [ - "1bb59671-4c87-44d7-a2df-131f17d91438" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221600Z:1bb59671-4c87-44d7-a2df-131f17d91438" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4bad14a1-6443-415c-b93c-264caa2f050d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6201" - ], - "x-ms-correlation-request-id": [ - "6433739f-b9a0-4091-964f-20155a30a1f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221600Z:6433739f-b9a0-4091-964f-20155a30a1f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75631f79-f0be-44db-8bd5-fbd771d1c96d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6200" - ], - "x-ms-correlation-request-id": [ - "c499c75f-2c65-4d97-87cb-436329575418" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221600Z:c499c75f-2c65-4d97-87cb-436329575418" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "615ea293-6ab1-46c2-9f8f-fd707e5e9f5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6199" - ], - "x-ms-correlation-request-id": [ - "9c4b69bb-5043-478d-aae2-798cf47844f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221601Z:9c4b69bb-5043-478d-aae2-798cf47844f3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d07ab11-e346-495e-8e08-bd1e5e2e4e2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6198" - ], - "x-ms-correlation-request-id": [ - "4e780f0d-2a3e-4104-a7f4-bf52470c8fea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221601Z:4e780f0d-2a3e-4104-a7f4-bf52470c8fea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb96e8a6-fdc6-4546-876b-2b5edb4bc876" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6197" - ], - "x-ms-correlation-request-id": [ - "4a2c4128-3b5f-4955-8e09-d388efab98a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221601Z:4a2c4128-3b5f-4955-8e09-d388efab98a2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3120045-239a-4ae8-a7dc-fa208d925a85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6196" - ], - "x-ms-correlation-request-id": [ - "b07e3be2-bf3d-4525-aa84-12b10c04e73d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221601Z:b07e3be2-bf3d-4525-aa84-12b10c04e73d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6710ef90-4ea4-46a7-b71f-6af4e2f0f2a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6195" - ], - "x-ms-correlation-request-id": [ - "06521911-c1f3-4b8c-87c4-231164096547" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221601Z:06521911-c1f3-4b8c-87c4-231164096547" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aeae3b42-7613-4402-bf5a-96c8b86f138b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6194" - ], - "x-ms-correlation-request-id": [ - "502e49a5-606e-4445-91a7-4430a9e70419" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221601Z:502e49a5-606e-4445-91a7-4430a9e70419" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b43aa801-972f-450d-960d-bd1c2425075a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6193" - ], - "x-ms-correlation-request-id": [ - "609ed841-d1d8-4525-85f3-fbd83de086b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221602Z:609ed841-d1d8-4525-85f3-fbd83de086b1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d64a4f46-fc91-4bc2-9363-3485ca1ccd0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6192" - ], - "x-ms-correlation-request-id": [ - "3cd01abb-4b67-4f75-8ad8-f801ea11f62d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221602Z:3cd01abb-4b67-4f75-8ad8-f801ea11f62d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6cb2e011-4852-4db8-8f1e-c1f755146e8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6191" - ], - "x-ms-correlation-request-id": [ - "99a67e21-29c5-4566-ac82-8acb49e377ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221602Z:99a67e21-29c5-4566-ac82-8acb49e377ec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "837b065e-e43a-481d-951d-44790cd5eee3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6190" - ], - "x-ms-correlation-request-id": [ - "bc9d065d-00a4-472b-b7f7-78c5d661f3c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221602Z:bc9d065d-00a4-472b-b7f7-78c5d661f3c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9dd0e620-e919-4d34-a630-bbec12cad270" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6189" - ], - "x-ms-correlation-request-id": [ - "a3fd6f54-9534-419e-a5ca-d7c0ea4c124a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221602Z:a3fd6f54-9534-419e-a5ca-d7c0ea4c124a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "acc672fa-ea87-4c17-abbe-d3dfae536514" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6188" - ], - "x-ms-correlation-request-id": [ - "eadaba14-644e-4076-b9b6-c96a17507ee5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221602Z:eadaba14-644e-4076-b9b6-c96a17507ee5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ec1e3e09-25f0-4dfc-901d-5fbcaf16be2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6187" - ], - "x-ms-correlation-request-id": [ - "6933913b-6faf-44f8-8825-dda445b5a3fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221603Z:6933913b-6faf-44f8-8825-dda445b5a3fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a69bc6c9-f98b-40c8-acdb-99e46c894ed2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6186" - ], - "x-ms-correlation-request-id": [ - "496e1308-6029-4af8-8a80-4d5ec474e90c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221603Z:496e1308-6029-4af8-8a80-4d5ec474e90c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "56d3514d-974a-42e7-b57a-ba87de6b30d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6185" - ], - "x-ms-correlation-request-id": [ - "5585e4ce-9081-4ef8-9bba-f0c97fb29410" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221603Z:5585e4ce-9081-4ef8-9bba-f0c97fb29410" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "645d50db-e70b-4eb9-9c4f-34b50186396a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6184" - ], - "x-ms-correlation-request-id": [ - "b9dedbe5-4ebe-4213-b431-1ce538277623" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221603Z:b9dedbe5-4ebe-4213-b431-1ce538277623" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "623bdcfe-e972-4cfa-ac7d-342aedbcca2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6183" - ], - "x-ms-correlation-request-id": [ - "67175cbb-bc5f-4620-9832-e3a89f9fac0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221603Z:67175cbb-bc5f-4620-9832-e3a89f9fac0c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80386c08-09ff-4db9-9b7b-e50413c6c9ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6182" - ], - "x-ms-correlation-request-id": [ - "a4a00323-3dfa-4d68-8f1d-602726b546d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221603Z:a4a00323-3dfa-4d68-8f1d-602726b546d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68e30eae-2b7a-41ec-b071-b0d056a25762" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6181" - ], - "x-ms-correlation-request-id": [ - "33f51e08-526c-473e-8bc2-c9c079df3b2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221604Z:33f51e08-526c-473e-8bc2-c9c079df3b2e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0310863c-8c6a-4009-9a4c-95a00ffdcb38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6180" - ], - "x-ms-correlation-request-id": [ - "3a2c0407-019e-4b74-b9f6-71635e7580d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221604Z:3a2c0407-019e-4b74-b9f6-71635e7580d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c448461-414a-4f0a-afd7-68a122a1b56f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6179" - ], - "x-ms-correlation-request-id": [ - "e0758631-ca14-4600-b79d-88e7562fbcde" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221604Z:e0758631-ca14-4600-b79d-88e7562fbcde" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76be1870-020c-453f-af9f-707513851662" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6178" - ], - "x-ms-correlation-request-id": [ - "28eb99d4-34e5-4fc2-a603-125ef49fd636" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221604Z:28eb99d4-34e5-4fc2-a603-125ef49fd636" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e24d5a6-23fa-400e-846c-307930c2ebfb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6177" - ], - "x-ms-correlation-request-id": [ - "eedaf27a-6b10-442f-97cb-58ff6cac913e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221604Z:eedaf27a-6b10-442f-97cb-58ff6cac913e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "812f2830-b24d-4a6a-beb8-70557c5fe1f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6176" - ], - "x-ms-correlation-request-id": [ - "04c2499a-fe2e-4a31-b942-52e9861ebfdf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221604Z:04c2499a-fe2e-4a31-b942-52e9861ebfdf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3a41a96-36af-4ecb-b03f-1b8f3ecb2c20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6175" - ], - "x-ms-correlation-request-id": [ - "06025239-ec6e-4d1c-8ec3-48ceed3abcb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221605Z:06025239-ec6e-4d1c-8ec3-48ceed3abcb1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5aedb85-75b4-4c29-a8d3-153e00ab61e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6174" - ], - "x-ms-correlation-request-id": [ - "d915a8a2-60f1-4218-84fa-20b3e5282ae6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221605Z:d915a8a2-60f1-4218-84fa-20b3e5282ae6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "420f3bb2-a624-4a34-87f6-10dcb78852be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6173" - ], - "x-ms-correlation-request-id": [ - "fdc8fbc0-5372-4cb8-be73-8bfc46ef5369" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221605Z:fdc8fbc0-5372-4cb8-be73-8bfc46ef5369" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b45ee90-a4e4-4b39-bc9a-ef21e2528ac0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6172" - ], - "x-ms-correlation-request-id": [ - "6fd951de-3c43-4e2d-adf4-a12f42e274e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221605Z:6fd951de-3c43-4e2d-adf4-a12f42e274e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31cb5b15-d30c-470f-8f05-a95f97b037e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6171" - ], - "x-ms-correlation-request-id": [ - "43cdf888-dbe5-43fe-8689-d492a8bfc340" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221605Z:43cdf888-dbe5-43fe-8689-d492a8bfc340" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3a3c9bd-1476-4a96-a816-dd8ba077ff28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6170" - ], - "x-ms-correlation-request-id": [ - "839c59b1-403e-45ea-938d-3e02e9ba754d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221605Z:839c59b1-403e-45ea-938d-3e02e9ba754d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f54b134b-2192-4c47-8a95-7ec094b555b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6169" - ], - "x-ms-correlation-request-id": [ - "b02d7938-9045-4dcd-b323-5d71a7fb6c34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221606Z:b02d7938-9045-4dcd-b323-5d71a7fb6c34" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dccb36b9-7ef4-4c9c-8b4f-f58313360913" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6168" - ], - "x-ms-correlation-request-id": [ - "f2d7535b-2d2f-4954-8847-5d9031e74432" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221606Z:f2d7535b-2d2f-4954-8847-5d9031e74432" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc8cfa2a-66fc-4c8b-94f9-dfcfccba169c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6167" - ], - "x-ms-correlation-request-id": [ - "76238c5c-25ef-4225-acfa-cca3a35bd350" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221606Z:76238c5c-25ef-4225-acfa-cca3a35bd350" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a954c224-66e2-4861-bf61-45ace2631dc4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6166" - ], - "x-ms-correlation-request-id": [ - "94b6c5cd-510e-4f91-98b6-505a1f9a52af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221606Z:94b6c5cd-510e-4f91-98b6-505a1f9a52af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efce2262-dcb3-489a-aa68-6842f0085033" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6165" - ], - "x-ms-correlation-request-id": [ - "807d3493-0e0c-4685-811e-b0e3e17970b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221606Z:807d3493-0e0c-4685-811e-b0e3e17970b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef45fd4b-c14d-4ee6-af4f-6f2d06ce49df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6164" - ], - "x-ms-correlation-request-id": [ - "834247ca-cf53-4b82-84dd-e930d45e3c10" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221606Z:834247ca-cf53-4b82-84dd-e930d45e3c10" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "989f2eab-6d8c-4cf5-8c67-7f3478b4acd1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6163" - ], - "x-ms-correlation-request-id": [ - "8f74f45f-9bfc-4d23-beac-31ef1fd406fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221606Z:8f74f45f-9bfc-4d23-beac-31ef1fd406fc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "426a33ea-0a1c-45f0-a18d-a9a0aca3d6a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6162" - ], - "x-ms-correlation-request-id": [ - "64ee7b06-dd55-4ff2-a9e4-0ba97f2526e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221607Z:64ee7b06-dd55-4ff2-a9e4-0ba97f2526e5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2bd997bf-2fa0-4b35-a77a-0c39176bb935" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6161" - ], - "x-ms-correlation-request-id": [ - "20ccf0ab-7b3c-41e8-8710-d9a9f916eeb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221607Z:20ccf0ab-7b3c-41e8-8710-d9a9f916eeb9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ec4f71b6-dad0-4f8c-8562-7586164f8815" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6160" - ], - "x-ms-correlation-request-id": [ - "cced2ca0-22b9-410b-b7e8-7cbefde950f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221607Z:cced2ca0-22b9-410b-b7e8-7cbefde950f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2f36014-9a93-43ec-814b-6b3aaf094576" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6159" - ], - "x-ms-correlation-request-id": [ - "40972c54-05d8-4328-8808-e7f4806c163e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221607Z:40972c54-05d8-4328-8808-e7f4806c163e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2f63674-f240-47c9-9b1c-7f58c2b5181e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6158" - ], - "x-ms-correlation-request-id": [ - "549a6fd3-2bfa-4de5-8709-43c97c800afe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221607Z:549a6fd3-2bfa-4de5-8709-43c97c800afe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89894b03-7e42-4914-8f84-a30e9953330b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6157" - ], - "x-ms-correlation-request-id": [ - "e5e5c961-b41d-4d9a-92ef-dbe10b269c5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221608Z:e5e5c961-b41d-4d9a-92ef-dbe10b269c5e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd97c341-83f2-4c97-b5fd-7503b2591f2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6156" - ], - "x-ms-correlation-request-id": [ - "cee3d52f-94bf-48a5-952d-799c49a0b154" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221608Z:cee3d52f-94bf-48a5-952d-799c49a0b154" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7233e78b-6f66-4d6c-9734-a8d486f37718" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6155" - ], - "x-ms-correlation-request-id": [ - "69be7ec3-3192-4e3f-b3ec-ff3caa90de40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221608Z:69be7ec3-3192-4e3f-b3ec-ff3caa90de40" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e40f90b-c471-4448-8d96-cff02bfe658e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6154" - ], - "x-ms-correlation-request-id": [ - "80a59b91-541f-4be6-8caf-7f02d79b78f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221608Z:80a59b91-541f-4be6-8caf-7f02d79b78f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6d475be-80cd-42f8-b4b1-a35a9bccaeaf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6153" - ], - "x-ms-correlation-request-id": [ - "7c51e9a1-535c-4068-ad1e-52bf57dc36d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221608Z:7c51e9a1-535c-4068-ad1e-52bf57dc36d0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e142eef-0302-4f3b-b8d1-1e18152b2db2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6152" - ], - "x-ms-correlation-request-id": [ - "f0c5d028-e308-4ce8-a508-5b096e2aed59" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221609Z:f0c5d028-e308-4ce8-a508-5b096e2aed59" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b50fc868-5dff-43c4-9bde-4935f39a43ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6151" - ], - "x-ms-correlation-request-id": [ - "db3d3638-d74f-4352-9f0e-f49efc2dc06a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221609Z:db3d3638-d74f-4352-9f0e-f49efc2dc06a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "390afe5a-4eed-4ccf-916f-2029435f7ce4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6150" - ], - "x-ms-correlation-request-id": [ - "a614da4c-a897-4140-871b-e2627152d240" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221609Z:a614da4c-a897-4140-871b-e2627152d240" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee3ef906-c3aa-4e3a-90fa-84ae84f2634f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6149" - ], - "x-ms-correlation-request-id": [ - "d14926eb-6697-45cb-98a0-8f5a6bfe87f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221609Z:d14926eb-6697-45cb-98a0-8f5a6bfe87f3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2bf9dacf-221f-4cb0-82fc-1f361e1a5fa5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6148" - ], - "x-ms-correlation-request-id": [ - "77788464-9421-4645-a398-9009874838a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221609Z:77788464-9421-4645-a398-9009874838a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1701cfb4-00a9-4ef2-bd82-b013e734e894" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6147" - ], - "x-ms-correlation-request-id": [ - "668d0eb2-a3ee-4403-acf8-1f93c94e1610" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221609Z:668d0eb2-a3ee-4403-acf8-1f93c94e1610" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8878d863-55a7-454a-9509-97c542509522" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6146" - ], - "x-ms-correlation-request-id": [ - "857d8643-174c-4343-839f-e745ebb738d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221610Z:857d8643-174c-4343-839f-e745ebb738d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93305f91-3a7b-4166-a3d0-e8402f2a8f86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6145" - ], - "x-ms-correlation-request-id": [ - "dc05d76d-1dc2-498a-8220-b5e14af4c56c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221610Z:dc05d76d-1dc2-498a-8220-b5e14af4c56c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab04973a-45bf-4b32-be68-37416778a8dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6144" - ], - "x-ms-correlation-request-id": [ - "4ef9e7f2-d85c-4c7d-9a05-a85b30044e7b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221610Z:4ef9e7f2-d85c-4c7d-9a05-a85b30044e7b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c46f28f-7285-4274-b93c-bb30bf28bdd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6143" - ], - "x-ms-correlation-request-id": [ - "e064f60e-581e-421b-9133-fb27c7fd0c1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221610Z:e064f60e-581e-421b-9133-fb27c7fd0c1e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b0d09ca-d363-45cd-8d3f-23e5c8d7da1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6142" - ], - "x-ms-correlation-request-id": [ - "1885cb83-dc15-4938-8566-1a3c3b836c4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221610Z:1885cb83-dc15-4938-8566-1a3c3b836c4e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe076cc2-645e-44f0-8f4d-d023e7507b19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6141" - ], - "x-ms-correlation-request-id": [ - "514aa586-e6bc-444f-8608-24f79eaa4ad2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221611Z:514aa586-e6bc-444f-8608-24f79eaa4ad2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3735ec01-e201-4b07-92c9-8dcd0426c73e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6140" - ], - "x-ms-correlation-request-id": [ - "9cb550d6-4c8a-4309-ba58-2c5fe458a7c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221611Z:9cb550d6-4c8a-4309-ba58-2c5fe458a7c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51784517-ef8e-4fa8-b5c2-f111821950dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6139" - ], - "x-ms-correlation-request-id": [ - "52d50925-c399-4568-bf28-072db34945d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221611Z:52d50925-c399-4568-bf28-072db34945d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9bfc077f-421f-4c57-8087-39e7566c9cfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6138" - ], - "x-ms-correlation-request-id": [ - "2c22f857-6c98-4a98-8144-98f9c2d382ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221611Z:2c22f857-6c98-4a98-8144-98f9c2d382ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "179e3557-7998-4bf1-b74f-afe81d768bf2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6137" - ], - "x-ms-correlation-request-id": [ - "7a51810b-1c21-47bc-8dfa-d665ab51337b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221611Z:7a51810b-1c21-47bc-8dfa-d665ab51337b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7063ecb-c48a-4ac4-874e-b94626380a66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6136" - ], - "x-ms-correlation-request-id": [ - "b0854d3a-4379-4cfe-94a8-920bfec7a918" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221612Z:b0854d3a-4379-4cfe-94a8-920bfec7a918" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01824a20-ccdb-4ef0-9558-57ef17759597" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6135" - ], - "x-ms-correlation-request-id": [ - "5a822e3f-5176-4a37-a53f-788f319aca2a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221612Z:5a822e3f-5176-4a37-a53f-788f319aca2a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "831edbdf-526f-4209-b473-7f42474c8d26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6134" - ], - "x-ms-correlation-request-id": [ - "fe3d1ee1-ca81-4d65-ba58-33146fca5957" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221612Z:fe3d1ee1-ca81-4d65-ba58-33146fca5957" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "225cf120-7b6c-4189-bfb1-7e9c1595835d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6133" - ], - "x-ms-correlation-request-id": [ - "06be96a2-1cf9-45f4-a9cf-9e8969fb4451" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221612Z:06be96a2-1cf9-45f4-a9cf-9e8969fb4451" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f895ae3-53c7-45f6-b1d6-76aeeea94d8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6132" - ], - "x-ms-correlation-request-id": [ - "777c877e-6efc-4836-828d-658066df8bd5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221615Z:777c877e-6efc-4836-828d-658066df8bd5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02ce1da5-f5c8-4e1d-929a-fde3d12d07a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6131" - ], - "x-ms-correlation-request-id": [ - "09efae6f-61b9-472c-bcb9-729d2d304403" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221615Z:09efae6f-61b9-472c-bcb9-729d2d304403" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c2f5ac63-1a1f-43ae-9529-a2ea4694363a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6130" - ], - "x-ms-correlation-request-id": [ - "f8f9193a-105c-41ed-999b-470604d7e3ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221615Z:f8f9193a-105c-41ed-999b-470604d7e3ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3e722b56-c098-463e-89dd-e5917585f29f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6129" - ], - "x-ms-correlation-request-id": [ - "dc09b10a-81a0-4ef6-bcf8-accb5a4a859d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221616Z:dc09b10a-81a0-4ef6-bcf8-accb5a4a859d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7700266c-c56c-48b2-b773-5daade611653" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6128" - ], - "x-ms-correlation-request-id": [ - "660aa839-5692-410c-863d-2346a6418bd2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221616Z:660aa839-5692-410c-863d-2346a6418bd2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80bc96d8-c0e9-4c99-9cd3-abcc0de8b990" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6127" - ], - "x-ms-correlation-request-id": [ - "cd47570f-2a8b-4890-8583-2b9b03ed5c81" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221616Z:cd47570f-2a8b-4890-8583-2b9b03ed5c81" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a548d1c6-194f-47dc-bb0a-b20c366bd99f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6126" - ], - "x-ms-correlation-request-id": [ - "5e616a0d-93f0-454c-9315-03ee76d084ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221616Z:5e616a0d-93f0-454c-9315-03ee76d084ec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf2d2bf4-17c9-4dd4-a89a-f9e197e08cc4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6125" - ], - "x-ms-correlation-request-id": [ - "e1a9aae9-6a55-4dad-9655-03397cdaf910" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221616Z:e1a9aae9-6a55-4dad-9655-03397cdaf910" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "848db4ee-90e5-412f-ba09-98793365b03d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6124" - ], - "x-ms-correlation-request-id": [ - "a8961ca8-9c77-406a-9e23-dbaabb8a4609" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221617Z:a8961ca8-9c77-406a-9e23-dbaabb8a4609" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a103cc21-5497-4524-ba9e-de62f0eaed4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6123" - ], - "x-ms-correlation-request-id": [ - "d3a23e87-7337-4a4d-8d85-5584c0bf98fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221617Z:d3a23e87-7337-4a4d-8d85-5584c0bf98fb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6ab906a-b148-445e-90e4-ce7f65472d97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6122" - ], - "x-ms-correlation-request-id": [ - "77af2c56-58b2-46e5-97a2-3a019c949193" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221617Z:77af2c56-58b2-46e5-97a2-3a019c949193" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cca2335b-1ba1-47c3-a158-d5d6030132b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6121" - ], - "x-ms-correlation-request-id": [ - "d2541895-9a17-4134-b202-66ae0e54d851" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221617Z:d2541895-9a17-4134-b202-66ae0e54d851" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b34decac-c688-41b0-9a36-429abc5cc4c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6120" - ], - "x-ms-correlation-request-id": [ - "36bbc898-6219-40db-8d22-0e7f89d83dd6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221617Z:36bbc898-6219-40db-8d22-0e7f89d83dd6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "513651bb-75fd-4676-9361-24cabcae4fdf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6119" - ], - "x-ms-correlation-request-id": [ - "4a592ab1-4f05-46c3-89db-85f6b25152a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221617Z:4a592ab1-4f05-46c3-89db-85f6b25152a2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "78ca287b-da90-4c2c-b75c-a79bee344b21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6118" - ], - "x-ms-correlation-request-id": [ - "d19caf2f-b2d6-4380-bd9a-c7d139d6f6bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221617Z:d19caf2f-b2d6-4380-bd9a-c7d139d6f6bc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5cc00e2-e18c-46f1-a995-1eed3fa92c55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6117" - ], - "x-ms-correlation-request-id": [ - "04992c17-d0ac-4966-a85e-bbc17b3241d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221618Z:04992c17-d0ac-4966-a85e-bbc17b3241d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5f96267-1b8f-4559-b707-25c21f1a2725" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6116" - ], - "x-ms-correlation-request-id": [ - "ea89284e-f935-4050-9b41-43f38199c537" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221618Z:ea89284e-f935-4050-9b41-43f38199c537" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "715dc44b-f2f9-47e5-9349-d9dab7534e62" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6115" - ], - "x-ms-correlation-request-id": [ - "b1d33919-1e96-4352-b7a7-88c10a559aaa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221618Z:b1d33919-1e96-4352-b7a7-88c10a559aaa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4668b952-41e3-4e69-adc1-c4afe15aeb2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6114" - ], - "x-ms-correlation-request-id": [ - "282f7c54-d859-4f24-bf55-1736b111306b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221618Z:282f7c54-d859-4f24-bf55-1736b111306b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a2de559-21d1-447a-a2e1-106240896cb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6113" - ], - "x-ms-correlation-request-id": [ - "585fb540-4d90-4d17-9668-d4300942010f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221618Z:585fb540-4d90-4d17-9668-d4300942010f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46b3f759-e2b2-4c8a-918a-f434cdd129b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6112" - ], - "x-ms-correlation-request-id": [ - "00488d96-3fb8-4d30-b342-3fa4ff75bf4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221618Z:00488d96-3fb8-4d30-b342-3fa4ff75bf4c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e2091d7-1c05-427b-b6bd-9cb4e85c329f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6111" - ], - "x-ms-correlation-request-id": [ - "65bbd995-781b-4cb2-9e69-426589234a83" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221618Z:65bbd995-781b-4cb2-9e69-426589234a83" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "daf2c892-ecee-4766-b3ec-74a7e00ce3ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6110" - ], - "x-ms-correlation-request-id": [ - "3ae2ecc1-e773-4e82-bd71-b5cb669aa0b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221619Z:3ae2ecc1-e773-4e82-bd71-b5cb669aa0b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a69b1ef9-e26f-4482-9b93-773093c792ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6109" - ], - "x-ms-correlation-request-id": [ - "e2b9fb16-18c6-40ba-978b-7f64f3e34c30" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221619Z:e2b9fb16-18c6-40ba-978b-7f64f3e34c30" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b2ce6c1-53d1-42ad-968e-4737ba5d4fca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6108" - ], - "x-ms-correlation-request-id": [ - "851b8221-93e1-446a-87ad-d5d369744cba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221619Z:851b8221-93e1-446a-87ad-d5d369744cba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c34feb9d-8230-4651-9a3c-b0f160df5f87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6107" - ], - "x-ms-correlation-request-id": [ - "740e8be9-3a8b-4cbc-9944-8115438a4d87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221619Z:740e8be9-3a8b-4cbc-9944-8115438a4d87" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c42da514-d12c-4a4a-9f3f-c11217c13d2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6106" - ], - "x-ms-correlation-request-id": [ - "9c0a65ff-3d3b-4bbc-92f0-2d4db3ceb9ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221619Z:9c0a65ff-3d3b-4bbc-92f0-2d4db3ceb9ce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "050e09d5-c899-4070-bbcb-9970cd3e3cef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6105" - ], - "x-ms-correlation-request-id": [ - "6a46195b-0f0c-428d-87e2-931ece3431d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221619Z:6a46195b-0f0c-428d-87e2-931ece3431d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8bb8f76-b004-4643-afe1-307026a53d32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6104" - ], - "x-ms-correlation-request-id": [ - "f015ec90-d70a-4302-8030-5427b931b5c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221619Z:f015ec90-d70a-4302-8030-5427b931b5c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8f9a584-9f94-4da3-8050-9d91c4859866" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6103" - ], - "x-ms-correlation-request-id": [ - "1b6fc431-4c5e-4115-94cc-d5d92cbcb992" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221620Z:1b6fc431-4c5e-4115-94cc-d5d92cbcb992" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d28337c0-c006-4b06-9308-843803e58131" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6102" - ], - "x-ms-correlation-request-id": [ - "e870e0b8-7311-4c93-ad9a-43811cbddf25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221620Z:e870e0b8-7311-4c93-ad9a-43811cbddf25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9e3e80a3-765e-47ac-8785-b207c0648a94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6101" - ], - "x-ms-correlation-request-id": [ - "67036225-6c5b-4984-a3e9-263edce2ca52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221620Z:67036225-6c5b-4984-a3e9-263edce2ca52" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d2de070e-2330-4b4f-83b4-5838533aad53" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6100" - ], - "x-ms-correlation-request-id": [ - "44f43b52-e9b3-40da-8722-b659e174bb0f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221620Z:44f43b52-e9b3-40da-8722-b659e174bb0f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "200c2d40-0c7a-4a7e-aff2-406548946d0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6099" - ], - "x-ms-correlation-request-id": [ - "267a4689-eb40-470f-8fc9-d4f065d1dc49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221620Z:267a4689-eb40-470f-8fc9-d4f065d1dc49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a659320b-2334-43f1-b274-d99c031d53ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6098" - ], - "x-ms-correlation-request-id": [ - "196e40d9-8835-4d10-8966-94593b182662" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221620Z:196e40d9-8835-4d10-8966-94593b182662" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dbcf22fd-673d-4a75-97ce-f19c0031d3af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6097" - ], - "x-ms-correlation-request-id": [ - "00efece4-c57e-4011-be6c-868ab93467c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221620Z:00efece4-c57e-4011-be6c-868ab93467c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "161f841f-ea4a-49ba-b974-0166e9afb8ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6096" - ], - "x-ms-correlation-request-id": [ - "3d67673d-e3b0-48ef-bc52-d50eaeef3b9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221621Z:3d67673d-e3b0-48ef-bc52-d50eaeef3b9f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f024bdee-0134-43b4-97c5-7c8fd8c11e2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6095" - ], - "x-ms-correlation-request-id": [ - "ef7a2329-ee7e-4195-a8ca-57b31c3adf7f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221621Z:ef7a2329-ee7e-4195-a8ca-57b31c3adf7f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d5ac73a-de23-4b24-b912-69a29a8c1181" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6094" - ], - "x-ms-correlation-request-id": [ - "69ada16c-21e0-4863-a552-8da6460b66f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221621Z:69ada16c-21e0-4863-a552-8da6460b66f0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd8a3861-4e2d-42cb-bd65-f8b1fd8c0521" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6093" - ], - "x-ms-correlation-request-id": [ - "9a423ad4-65fb-4fcb-b13d-96ff71654b7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221621Z:9a423ad4-65fb-4fcb-b13d-96ff71654b7a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76336432-cb64-4e40-b0eb-da2661a98bcb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6092" - ], - "x-ms-correlation-request-id": [ - "3bb1780a-31c5-445d-b012-571aba517da4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221621Z:3bb1780a-31c5-445d-b012-571aba517da4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c5ba69af-caa0-47aa-ab88-58e57fd69b94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6091" - ], - "x-ms-correlation-request-id": [ - "cb7f37b0-c474-4f66-81da-3454ca7f3aa1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221621Z:cb7f37b0-c474-4f66-81da-3454ca7f3aa1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be0e0492-0795-49a4-9215-5f7bb62cb694" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6090" - ], - "x-ms-correlation-request-id": [ - "2ddc441b-a7fe-4847-bcfc-4bc4a2f922f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221622Z:2ddc441b-a7fe-4847-bcfc-4bc4a2f922f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b938d4d2-3811-45ba-be79-2b9ef4587cbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6089" - ], - "x-ms-correlation-request-id": [ - "cd820a52-e143-4371-8370-edebbc2bff04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221622Z:cd820a52-e143-4371-8370-edebbc2bff04" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1caf8ce-0fc8-4223-9365-358f34c8d344" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6088" - ], - "x-ms-correlation-request-id": [ - "2f6cc07d-1475-4362-90ab-dbd95512a24e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221622Z:2f6cc07d-1475-4362-90ab-dbd95512a24e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a079263-dec6-4932-8b00-1120ff5b7b7f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6087" - ], - "x-ms-correlation-request-id": [ - "d035c2f0-6c97-49c7-81d9-5c13a00ce0a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221622Z:d035c2f0-6c97-49c7-81d9-5c13a00ce0a9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2717d34b-34d2-4198-8467-d9887b9c73d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6086" - ], - "x-ms-correlation-request-id": [ - "d4f3ac69-b1ef-4029-8ea0-d7864fdf2d60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221622Z:d4f3ac69-b1ef-4029-8ea0-d7864fdf2d60" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7fe4596-9f8e-40e3-b2a9-35ebf4d77f98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6085" - ], - "x-ms-correlation-request-id": [ - "87aa0edc-73ae-412a-8180-621abc9762f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221623Z:87aa0edc-73ae-412a-8180-621abc9762f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d512b37-e6af-492c-b626-f8d321c79c54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6084" - ], - "x-ms-correlation-request-id": [ - "d6b38899-75c2-4ef6-9da7-2af26634896e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221623Z:d6b38899-75c2-4ef6-9da7-2af26634896e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c2f5d4d6-7fcd-4071-a300-bd7565f53e55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6083" - ], - "x-ms-correlation-request-id": [ - "292b3525-b1ba-4dc9-8517-037a648ff2aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221623Z:292b3525-b1ba-4dc9-8517-037a648ff2aa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "483e1299-cd08-4b56-a88c-d9305a8b5f42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6082" - ], - "x-ms-correlation-request-id": [ - "eb9d1744-95a6-4036-aa52-3f4e0891e1a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221623Z:eb9d1744-95a6-4036-aa52-3f4e0891e1a2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d80539a2-56a7-4a46-b944-f8632951fca3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6081" - ], - "x-ms-correlation-request-id": [ - "55bc6505-b1bc-4dca-895a-6f6a60eb6e99" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221623Z:55bc6505-b1bc-4dca-895a-6f6a60eb6e99" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b450de5-9d16-4d35-a57b-1f21dbecd96c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6080" - ], - "x-ms-correlation-request-id": [ - "62d0b084-f781-4c0f-a9d1-963d7717c492" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221623Z:62d0b084-f781-4c0f-a9d1-963d7717c492" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ebfe5f05-949b-4ab1-b01e-fc9158a2cdba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6079" - ], - "x-ms-correlation-request-id": [ - "3f7fe8a1-79e8-4363-a1c4-873f540e0e0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221624Z:3f7fe8a1-79e8-4363-a1c4-873f540e0e0c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5ac938e-b220-49dd-8832-a7f5e192f0d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6078" - ], - "x-ms-correlation-request-id": [ - "16042985-249d-4b7c-ac2f-5ff436d4702c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221624Z:16042985-249d-4b7c-ac2f-5ff436d4702c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01b716b2-f0ea-42ec-b54b-46b967b98dd4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6077" - ], - "x-ms-correlation-request-id": [ - "29670d12-2467-448d-a113-4d2830cd30f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221624Z:29670d12-2467-448d-a113-4d2830cd30f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1150fa0a-7494-450e-944a-ebbc255f74ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6076" - ], - "x-ms-correlation-request-id": [ - "6946b279-7990-4ac5-9f93-6d704e418d84" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221624Z:6946b279-7990-4ac5-9f93-6d704e418d84" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6484bbc7-7055-4f31-9ebb-9c9b4fb738ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6075" - ], - "x-ms-correlation-request-id": [ - "b7f18939-7632-4664-b1dc-0a3e62a55732" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221624Z:b7f18939-7632-4664-b1dc-0a3e62a55732" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fab5733f-ac84-499f-9217-3d97070058cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6074" - ], - "x-ms-correlation-request-id": [ - "a5328b55-9974-4385-8c89-5d0c79f86c53" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221624Z:a5328b55-9974-4385-8c89-5d0c79f86c53" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4340c7cb-8af2-490c-a3e8-62ab59810583" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6073" - ], - "x-ms-correlation-request-id": [ - "6c1b8930-97a5-48fe-9a7a-fcf430c00a8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221624Z:6c1b8930-97a5-48fe-9a7a-fcf430c00a8e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06a213c4-a0d7-4e19-a818-ab9101e143ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6072" - ], - "x-ms-correlation-request-id": [ - "545da7b5-418c-49ee-8608-61d59ae0eb3f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221625Z:545da7b5-418c-49ee-8608-61d59ae0eb3f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81e1c387-1a35-4fd3-98af-81cc14073c22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6071" - ], - "x-ms-correlation-request-id": [ - "c99fee30-4772-421a-8777-bc94dd92b74f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221625Z:c99fee30-4772-421a-8777-bc94dd92b74f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0caf5e56-c6da-4653-bc45-6f5a16db4fa9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6070" - ], - "x-ms-correlation-request-id": [ - "d459ab5f-5872-44ed-913f-5aafcc7a598c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221625Z:d459ab5f-5872-44ed-913f-5aafcc7a598c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "210568df-c829-4098-8de4-486669a7d5be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6069" - ], - "x-ms-correlation-request-id": [ - "815c7f4b-74d3-4584-8ace-ba949a8fb96f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221625Z:815c7f4b-74d3-4584-8ace-ba949a8fb96f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "538e6170-e1f1-431a-b78b-d47a18f625a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6068" - ], - "x-ms-correlation-request-id": [ - "41bbcef9-cc3f-4d90-a202-2dae5d5c86cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221625Z:41bbcef9-cc3f-4d90-a202-2dae5d5c86cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c322630-8487-4fdf-a576-b9022c02cf9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6067" - ], - "x-ms-correlation-request-id": [ - "200b1e87-3c01-45ab-b70b-9e88409b257f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221625Z:200b1e87-3c01-45ab-b70b-9e88409b257f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d970d7ee-ed00-442b-bb2a-bccfa184cde7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6066" - ], - "x-ms-correlation-request-id": [ - "630b0a31-3bf8-497a-b4ef-805b34657b14" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221626Z:630b0a31-3bf8-497a-b4ef-805b34657b14" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e43285d-741a-4d6f-833c-831adb3edb2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6065" - ], - "x-ms-correlation-request-id": [ - "020b4f92-8b2e-4857-8228-dc5f58221353" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221626Z:020b4f92-8b2e-4857-8228-dc5f58221353" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7cbac1c7-7921-4c0f-ad21-4325bfc6e900" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6064" - ], - "x-ms-correlation-request-id": [ - "51da95fc-9c98-4628-807d-4bd247ef8fe5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221626Z:51da95fc-9c98-4628-807d-4bd247ef8fe5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23314952-d329-452f-8302-6874f91a8234" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6063" - ], - "x-ms-correlation-request-id": [ - "0fab5e31-f9d1-4aee-8769-38f4035a48e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221626Z:0fab5e31-f9d1-4aee-8769-38f4035a48e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20a3c510-2d22-4ab9-ac8f-ac96c2becd4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6062" - ], - "x-ms-correlation-request-id": [ - "f6940979-dc07-49d5-a783-6a4bfe8ae692" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221626Z:f6940979-dc07-49d5-a783-6a4bfe8ae692" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "142a7144-ac97-4792-a6fb-595c1a093143" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6061" - ], - "x-ms-correlation-request-id": [ - "4d9f5d56-2291-453a-a6a1-2246740714a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221626Z:4d9f5d56-2291-453a-a6a1-2246740714a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b3b3a0a-bf80-434e-adbb-c6f89801063e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6060" - ], - "x-ms-correlation-request-id": [ - "6ba3b372-d00b-4302-9934-e60eee828912" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221627Z:6ba3b372-d00b-4302-9934-e60eee828912" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3fa3920-cb4c-470d-affb-f5f2fa692982" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6059" - ], - "x-ms-correlation-request-id": [ - "14e1b97f-bc55-430f-ab07-c4c254bc23f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221627Z:14e1b97f-bc55-430f-ab07-c4c254bc23f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6aef432b-d1e8-4eab-952d-895b7bb88d90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6058" - ], - "x-ms-correlation-request-id": [ - "97cd7348-447c-4fdb-ac55-6d99f9ab0233" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221627Z:97cd7348-447c-4fdb-ac55-6d99f9ab0233" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f17ee26-d6a9-4a7b-8c12-41e69c9331fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6057" - ], - "x-ms-correlation-request-id": [ - "39ceb75a-942b-4b53-9054-3165e96ff826" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221627Z:39ceb75a-942b-4b53-9054-3165e96ff826" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "224d4ebb-903a-457a-8e0e-de118a9a78cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6056" - ], - "x-ms-correlation-request-id": [ - "9703c938-a115-4229-9745-e194e916a2d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221627Z:9703c938-a115-4229-9745-e194e916a2d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ad3cc61-e7af-4a75-be6f-dcdc1a157573" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6055" - ], - "x-ms-correlation-request-id": [ - "8b31dfbf-41ac-482d-b2b2-c8acf6abebdf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221627Z:8b31dfbf-41ac-482d-b2b2-c8acf6abebdf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f5648ee5-f623-42ef-b957-6d49b5886ae0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6054" - ], - "x-ms-correlation-request-id": [ - "5875a535-e2e7-4be5-8240-0a13ecb40497" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221628Z:5875a535-e2e7-4be5-8240-0a13ecb40497" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9bb95a08-4d8a-40a1-a0f2-29425e5dd27d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6053" - ], - "x-ms-correlation-request-id": [ - "58723f61-a2a6-4fe4-aaae-ba93f207b275" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221628Z:58723f61-a2a6-4fe4-aaae-ba93f207b275" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a3d0dd40-f0f4-4a26-beac-04884c18e61c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6052" - ], - "x-ms-correlation-request-id": [ - "0ea6fb07-05be-4926-a85e-ec5d925469cb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221628Z:0ea6fb07-05be-4926-a85e-ec5d925469cb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20e9156e-2319-4cb6-ad25-522ffa4c2acf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6051" - ], - "x-ms-correlation-request-id": [ - "56989e99-9127-4619-b9fa-322de19c4a8f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221628Z:56989e99-9127-4619-b9fa-322de19c4a8f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c840ee3-4941-44a2-bbc6-0553190a47e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6050" - ], - "x-ms-correlation-request-id": [ - "8552280f-1a1f-40b2-8c2a-b975503e8e01" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221628Z:8552280f-1a1f-40b2-8c2a-b975503e8e01" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f674c979-8f3c-46f1-a9e9-0a3db76c0e5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6049" - ], - "x-ms-correlation-request-id": [ - "b2fc7425-0355-46f0-86f4-9ebf40d24319" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221629Z:b2fc7425-0355-46f0-86f4-9ebf40d24319" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "21285c71-6a6d-4e76-a155-9cc9f4cc79fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6048" - ], - "x-ms-correlation-request-id": [ - "4fecb7db-a3d0-4d8a-ae96-c607df66cbe8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221629Z:4fecb7db-a3d0-4d8a-ae96-c607df66cbe8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb373c75-c775-459b-94df-f07257fdd6d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6047" - ], - "x-ms-correlation-request-id": [ - "73308c80-4254-4769-8d34-dffa5d3e91df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221629Z:73308c80-4254-4769-8d34-dffa5d3e91df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd4cdc1e-1db6-4859-97ab-7463bd29f1d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6046" - ], - "x-ms-correlation-request-id": [ - "3a5947cb-f407-4994-9884-dd0fdac9b8f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221629Z:3a5947cb-f407-4994-9884-dd0fdac9b8f5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b6c8a83-acae-49a1-878f-7f69e55d7994" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6045" - ], - "x-ms-correlation-request-id": [ - "55574986-8a01-4c06-b747-537dc186908a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221629Z:55574986-8a01-4c06-b747-537dc186908a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97c701a3-8553-48c1-bdb6-7336c98504a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6044" - ], - "x-ms-correlation-request-id": [ - "1f264400-8661-40e5-9706-5ef7194a56c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221629Z:1f264400-8661-40e5-9706-5ef7194a56c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80cb5d9f-67a3-40bb-95f7-022918af289f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6043" - ], - "x-ms-correlation-request-id": [ - "a53a5099-44cf-4675-8cf7-61f5ebbe9197" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221630Z:a53a5099-44cf-4675-8cf7-61f5ebbe9197" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "322856f4-5e60-4a34-baa2-5b714b37ad52" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6042" - ], - "x-ms-correlation-request-id": [ - "bed64249-f478-43a9-a6d6-364728014a7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221630Z:bed64249-f478-43a9-a6d6-364728014a7a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4cd330cb-7aa6-4e89-98fb-3893ced6bfdf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6041" - ], - "x-ms-correlation-request-id": [ - "f96b2a1b-6857-4947-b6de-d6cfef6a4ca8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221630Z:f96b2a1b-6857-4947-b6de-d6cfef6a4ca8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4e0eb69-05fb-42f0-8edd-160f2458b6fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6040" - ], - "x-ms-correlation-request-id": [ - "7a08e55c-dabc-424d-9623-9007875eea52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221630Z:7a08e55c-dabc-424d-9623-9007875eea52" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fe74d89-a542-4585-844a-dcf6666fc1b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6039" - ], - "x-ms-correlation-request-id": [ - "18476056-0429-4a01-a624-26d46b5584fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221630Z:18476056-0429-4a01-a624-26d46b5584fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48c59b34-0f9a-4a0b-b636-accbd05ace74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6038" - ], - "x-ms-correlation-request-id": [ - "f5d6ce88-97dc-407c-a224-fc61efee7c30" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221630Z:f5d6ce88-97dc-407c-a224-fc61efee7c30" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f9d6775-ffc1-4ba4-a28e-82583d74488e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6037" - ], - "x-ms-correlation-request-id": [ - "bddd458a-226d-49e5-ac31-519d6d13ccb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221630Z:bddd458a-226d-49e5-ac31-519d6d13ccb8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "497e17e0-decd-4124-8f13-63081b0a3c92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6036" - ], - "x-ms-correlation-request-id": [ - "7692ec1c-7a26-4c61-a94d-ac3075d4cef6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221631Z:7692ec1c-7a26-4c61-a94d-ac3075d4cef6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3967fb48-6450-4f48-9e47-0df1f401c057" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6035" - ], - "x-ms-correlation-request-id": [ - "045d8cf6-9254-4122-aaf2-a277f986d439" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221631Z:045d8cf6-9254-4122-aaf2-a277f986d439" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06ccc5c2-9735-4e67-a7be-2e9382981d16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6034" - ], - "x-ms-correlation-request-id": [ - "d500cc18-4702-4166-82c0-1265db29f13d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221631Z:d500cc18-4702-4166-82c0-1265db29f13d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2e37a1de-a01e-4cc9-a55f-e5fc21818b21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6033" - ], - "x-ms-correlation-request-id": [ - "95b1bdb6-3ce6-42b8-962d-8f7f2bbb75f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221631Z:95b1bdb6-3ce6-42b8-962d-8f7f2bbb75f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d5c1926-698f-47e9-ab81-2f4461d3f1db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6032" - ], - "x-ms-correlation-request-id": [ - "56de57e7-9111-447c-8d15-8d7195f728f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221631Z:56de57e7-9111-447c-8d15-8d7195f728f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6434a865-2dc1-43ce-a75e-3439bb444fa2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6031" - ], - "x-ms-correlation-request-id": [ - "be3c6cc0-e260-454a-9d7d-8146542a4908" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221631Z:be3c6cc0-e260-454a-9d7d-8146542a4908" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b657c226-5a69-4dbe-837c-aba016ca0dce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6030" - ], - "x-ms-correlation-request-id": [ - "a214cc90-cded-417f-863f-c7f3a8d668fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221631Z:a214cc90-cded-417f-863f-c7f3a8d668fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54a7f7ca-5978-43da-a102-18b51e439a22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6029" - ], - "x-ms-correlation-request-id": [ - "3e60d777-41de-4196-a60c-5efdbd4bd754" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221632Z:3e60d777-41de-4196-a60c-5efdbd4bd754" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c6999226-6f35-4271-a2c9-d77dd704189c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6028" - ], - "x-ms-correlation-request-id": [ - "22078339-d030-4efd-913a-caa3e1fd3f73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221632Z:22078339-d030-4efd-913a-caa3e1fd3f73" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb50b39d-8faf-4d21-b9d8-ca83dc443ab4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6027" - ], - "x-ms-correlation-request-id": [ - "4313fa15-3467-49bb-b758-41c491d45d48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221632Z:4313fa15-3467-49bb-b758-41c491d45d48" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a7aee7d-cb8f-4619-b29d-a8c913ddd1b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6026" - ], - "x-ms-correlation-request-id": [ - "03a57b31-8217-4a9c-85ca-3a5681afcb5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221632Z:03a57b31-8217-4a9c-85ca-3a5681afcb5e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c206a47-c06d-4921-9be9-a46ca5f561df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6025" - ], - "x-ms-correlation-request-id": [ - "a72bd05c-7687-40ce-a866-07ebf027f399" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221632Z:a72bd05c-7687-40ce-a866-07ebf027f399" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c34f863f-876b-4175-93a4-1c1273435cf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6024" - ], - "x-ms-correlation-request-id": [ - "9d4095b0-03a3-4dae-a7fe-642a208ddb47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221633Z:9d4095b0-03a3-4dae-a7fe-642a208ddb47" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51960599-4a86-423d-8fde-60952a2d2863" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6023" - ], - "x-ms-correlation-request-id": [ - "e374702c-aa95-4537-91c3-c2e5576fca93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221633Z:e374702c-aa95-4537-91c3-c2e5576fca93" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4fbbeae-581f-4b84-bfba-be9289a0ba3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6022" - ], - "x-ms-correlation-request-id": [ - "5237b33e-82b4-44c6-97a4-ce8c03fe565d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221633Z:5237b33e-82b4-44c6-97a4-ce8c03fe565d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62d2766d-d561-4189-aa2d-bd268288d5be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6021" - ], - "x-ms-correlation-request-id": [ - "8a820d71-7ff2-4926-ab8d-d61866e27b5c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221633Z:8a820d71-7ff2-4926-ab8d-d61866e27b5c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42117cad-d81d-483e-850e-898de9ed77c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6020" - ], - "x-ms-correlation-request-id": [ - "ab8e8e7a-ce3c-4701-8f51-f064abbc2653" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221633Z:ab8e8e7a-ce3c-4701-8f51-f064abbc2653" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "769e9ac4-395e-45f3-bcab-c95ef4288692" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6019" - ], - "x-ms-correlation-request-id": [ - "16959df5-3756-474c-8568-ec859c2ce791" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221633Z:16959df5-3756-474c-8568-ec859c2ce791" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a6f3ef7-6f2f-4329-9eae-b1450b051881" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6018" - ], - "x-ms-correlation-request-id": [ - "b3c59ffb-196b-4f5a-9706-5bf4f934ed85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221634Z:b3c59ffb-196b-4f5a-9706-5bf4f934ed85" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6ca5c77-14e9-41cc-ae9e-2f889b9c1f45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6017" - ], - "x-ms-correlation-request-id": [ - "7ebc4d1d-9ce4-47df-b055-bce71520e855" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221634Z:7ebc4d1d-9ce4-47df-b055-bce71520e855" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38db73a8-87ac-478a-8470-2506450afbbb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6016" - ], - "x-ms-correlation-request-id": [ - "36449954-4451-49e8-9dc4-222edbb66cbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221634Z:36449954-4451-49e8-9dc4-222edbb66cbe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "796765fb-644b-463c-b443-7a6d5fbb036a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6015" - ], - "x-ms-correlation-request-id": [ - "9354834c-b7ee-4b77-a72d-572bfb98f75b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221634Z:9354834c-b7ee-4b77-a72d-572bfb98f75b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0c7fe53-a1a0-486f-bf7d-df2635565afa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6014" - ], - "x-ms-correlation-request-id": [ - "00a414a2-6941-4c3a-948a-1435823961da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221634Z:00a414a2-6941-4c3a-948a-1435823961da" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a74020ea-661c-4312-ac8b-a6f19b2846b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6013" - ], - "x-ms-correlation-request-id": [ - "f71f70a0-3977-48b5-990d-b4ab7bee7217" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221635Z:f71f70a0-3977-48b5-990d-b4ab7bee7217" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb74f475-12c3-49b2-b8b2-f5cdbd634ec8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6012" - ], - "x-ms-correlation-request-id": [ - "345b8917-ae74-4e86-bd96-c1bde9652465" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221635Z:345b8917-ae74-4e86-bd96-c1bde9652465" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ae4dc23-c050-4e7e-8a10-5bedbdcec757" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6011" - ], - "x-ms-correlation-request-id": [ - "c62607f9-9615-4c8c-8701-67932bc43d36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221635Z:c62607f9-9615-4c8c-8701-67932bc43d36" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b572241-4324-4c0f-8e0e-8061fd03c2da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6010" - ], - "x-ms-correlation-request-id": [ - "d9138fef-0348-43d5-9d0a-3bafe1c03302" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221635Z:d9138fef-0348-43d5-9d0a-3bafe1c03302" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17cfa329-0d2d-46d5-8118-682321b28b49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6009" - ], - "x-ms-correlation-request-id": [ - "2e83ce27-0ddc-445e-a573-a38e0b0398f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221635Z:2e83ce27-0ddc-445e-a573-a38e0b0398f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ab8e260-52ec-407a-8af8-eb9b7deea37c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6008" - ], - "x-ms-correlation-request-id": [ - "52b371e4-7a6e-4fb5-b6fb-1d9614be5308" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221636Z:52b371e4-7a6e-4fb5-b6fb-1d9614be5308" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "07ae9073-5613-42a5-91c6-7bea77267ef5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6007" - ], - "x-ms-correlation-request-id": [ - "e9b2802d-8d27-4d07-b19f-2f390ddee693" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221636Z:e9b2802d-8d27-4d07-b19f-2f390ddee693" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d2eafce-5350-4a7d-8292-a9114c4f7c68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6006" - ], - "x-ms-correlation-request-id": [ - "17aa8da5-aa59-45fc-a463-ecbf7b6ceaf0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221636Z:17aa8da5-aa59-45fc-a463-ecbf7b6ceaf0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81e69bcc-b4d6-4a59-9301-ff9e4c7d667c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6005" - ], - "x-ms-correlation-request-id": [ - "45292bee-61cd-4d9d-9769-1a3c7b42ec7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221636Z:45292bee-61cd-4d9d-9769-1a3c7b42ec7a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "024ab812-3f62-4e3a-a61d-4d683de034be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6004" - ], - "x-ms-correlation-request-id": [ - "8c19988c-6bb2-42f6-8c46-c10146432e82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221636Z:8c19988c-6bb2-42f6-8c46-c10146432e82" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1fdb6a65-7b7d-4aca-979c-685c7179e0e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6003" - ], - "x-ms-correlation-request-id": [ - "cfdc4c55-3718-4b7c-90b6-9f65bb7247c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221637Z:cfdc4c55-3718-4b7c-90b6-9f65bb7247c0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "038daa62-ea50-4d53-b6cd-039f0e152a76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6002" - ], - "x-ms-correlation-request-id": [ - "05c6e155-b6a7-488a-9e93-75200843f719" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221637Z:05c6e155-b6a7-488a-9e93-75200843f719" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d9c71c0-c586-4b1e-b45f-2f4950cd1173" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6001" - ], - "x-ms-correlation-request-id": [ - "0c2da057-9f19-49b1-af41-440fec0b11a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221637Z:0c2da057-9f19-49b1-af41-440fec0b11a9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "719fb0e8-a1e8-4b3d-8d26-9d336cc1c58f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "6000" - ], - "x-ms-correlation-request-id": [ - "74709c61-2265-4e24-9a8a-ceda1d67813e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221637Z:74709c61-2265-4e24-9a8a-ceda1d67813e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de051c68-5d62-47fc-9e39-5ef3445c4fab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5999" - ], - "x-ms-correlation-request-id": [ - "664abace-3cd7-4ed0-b5ff-ec48e4fa3256" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221637Z:664abace-3cd7-4ed0-b5ff-ec48e4fa3256" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74b6d172-147f-482b-9e8d-2fa501ab545e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5998" - ], - "x-ms-correlation-request-id": [ - "7f876744-026e-403f-b774-80fc50d04b73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221637Z:7f876744-026e-403f-b774-80fc50d04b73" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2247d569-3622-4232-9b67-80e566d24623" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5997" - ], - "x-ms-correlation-request-id": [ - "17863699-987e-4551-a1ce-0448437a2c55" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221638Z:17863699-987e-4551-a1ce-0448437a2c55" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "168d4505-d819-4ae7-a79c-83192335ef88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5996" - ], - "x-ms-correlation-request-id": [ - "1e5e44de-f67b-46f3-8748-fb4d21492a6b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221638Z:1e5e44de-f67b-46f3-8748-fb4d21492a6b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f722927-9d8f-4c26-a8b0-06b878ac5951" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5995" - ], - "x-ms-correlation-request-id": [ - "3149081c-b690-4cbd-bd44-7882a0fc23cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221638Z:3149081c-b690-4cbd-bd44-7882a0fc23cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "974aeb15-b391-4a81-a7d0-d396bc6f5e6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5994" - ], - "x-ms-correlation-request-id": [ - "e6c52e68-2ad7-4d99-a512-d3b6dcba17a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221638Z:e6c52e68-2ad7-4d99-a512-d3b6dcba17a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03eed2b0-d26e-4fa9-882d-77804beaa920" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5993" - ], - "x-ms-correlation-request-id": [ - "65e6fd71-a92f-47e8-9c9a-7e6ca6be9735" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221638Z:65e6fd71-a92f-47e8-9c9a-7e6ca6be9735" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "956be776-d37b-43fb-ab91-28f32f9d5d16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5992" - ], - "x-ms-correlation-request-id": [ - "0b026b3a-2973-4736-a77e-89fb2e0934f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221638Z:0b026b3a-2973-4736-a77e-89fb2e0934f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d3c7dd5-a741-4c74-9e41-b4591794cb3d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5991" - ], - "x-ms-correlation-request-id": [ - "cd6ffa6e-bcec-454c-a07e-9f6345978449" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221638Z:cd6ffa6e-bcec-454c-a07e-9f6345978449" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d7d26b1-ebd1-411b-a34e-94af9c606223" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5990" - ], - "x-ms-correlation-request-id": [ - "3dd35ba6-d71c-495b-9a5c-3c308e138a73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221639Z:3dd35ba6-d71c-495b-9a5c-3c308e138a73" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9a70187-2db5-4918-9a39-100ec321eeea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5989" - ], - "x-ms-correlation-request-id": [ - "805bba35-d6b7-40a4-9752-a86d06b65e8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221639Z:805bba35-d6b7-40a4-9752-a86d06b65e8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bafa1df0-6d6f-4709-a6ec-97449decd7fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5988" - ], - "x-ms-correlation-request-id": [ - "f171e7cd-708b-43be-9353-1d8ef129748f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221639Z:f171e7cd-708b-43be-9353-1d8ef129748f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89982d16-7264-4131-a6a4-5184bddf8c93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5987" - ], - "x-ms-correlation-request-id": [ - "7b4e9c5a-badc-4586-a170-e54d3f0e773b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221639Z:7b4e9c5a-badc-4586-a170-e54d3f0e773b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1531ad1-0d60-4c4f-8459-e61be2b1f840" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5986" - ], - "x-ms-correlation-request-id": [ - "2f33d134-b324-4941-9a80-c30672922b85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221639Z:2f33d134-b324-4941-9a80-c30672922b85" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4c6163e-e31e-40d6-8010-090e0ff16423" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5985" - ], - "x-ms-correlation-request-id": [ - "fc2874be-cd43-46dd-aaf0-45f13af5b160" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221639Z:fc2874be-cd43-46dd-aaf0-45f13af5b160" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f4fc45c-4feb-4155-8f46-8f9218af834e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5984" - ], - "x-ms-correlation-request-id": [ - "d815b292-b51a-4a44-a3e2-9b54f8835b58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221640Z:d815b292-b51a-4a44-a3e2-9b54f8835b58" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "590e15db-9236-4176-9851-c175884186af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5983" - ], - "x-ms-correlation-request-id": [ - "f5f0eea5-7eaf-42d4-a3ad-2273a7cb3a85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221640Z:f5f0eea5-7eaf-42d4-a3ad-2273a7cb3a85" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d415aa9e-1ab0-418d-9d0a-baf113e18102" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5982" - ], - "x-ms-correlation-request-id": [ - "b0c9eb9e-04f6-4bef-9441-900ecc2718b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221640Z:b0c9eb9e-04f6-4bef-9441-900ecc2718b5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1033f204-10d0-4c63-8bf0-e34d9a53494d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5981" - ], - "x-ms-correlation-request-id": [ - "66d8ec6c-2c82-4855-9099-9fdc51faf96c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221640Z:66d8ec6c-2c82-4855-9099-9fdc51faf96c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e0738e33-1b3f-41be-95ed-70abc1d2222f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5980" - ], - "x-ms-correlation-request-id": [ - "f8d143a9-d38b-4a0b-b2e3-92ac419f8c19" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221640Z:f8d143a9-d38b-4a0b-b2e3-92ac419f8c19" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ae4aaa3-c4a5-49c5-a979-7c84f6d5aa27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5979" - ], - "x-ms-correlation-request-id": [ - "31254045-28c9-45e2-ae45-07dd421b1572" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221640Z:31254045-28c9-45e2-ae45-07dd421b1572" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3087c354-c09f-4b08-b90c-6b9e3a39a9f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5978" - ], - "x-ms-correlation-request-id": [ - "f766f4fa-783f-4a72-9e99-62ddbb6f78bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221641Z:f766f4fa-783f-4a72-9e99-62ddbb6f78bc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "467eed1f-9b3f-47ec-a273-778717942ab2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5977" - ], - "x-ms-correlation-request-id": [ - "d3dda238-f37f-4180-8d50-81a9ed7289e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221641Z:d3dda238-f37f-4180-8d50-81a9ed7289e0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2e00ab4-ba1a-4cb6-bc54-ec9dcf083dd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5976" - ], - "x-ms-correlation-request-id": [ - "fff09f8c-f66a-4bc6-994d-5f373c611741" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221641Z:fff09f8c-f66a-4bc6-994d-5f373c611741" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4eaef9a0-526f-470c-b0c3-e3006e78f85a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5975" - ], - "x-ms-correlation-request-id": [ - "f1f39c4b-1c5a-4591-9f13-7621ca91529e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221641Z:f1f39c4b-1c5a-4591-9f13-7621ca91529e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cc5b2e62-c2e3-4f51-942f-05f0f5c08055" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5974" - ], - "x-ms-correlation-request-id": [ - "b55fdd0c-ae06-4189-bd2d-9c8719ee4840" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221641Z:b55fdd0c-ae06-4189-bd2d-9c8719ee4840" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d799bfed-3b6a-4dc2-9a55-21951c80532e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5973" - ], - "x-ms-correlation-request-id": [ - "fd0cc438-dc3d-47e4-8f37-f8087346fa88" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221641Z:fd0cc438-dc3d-47e4-8f37-f8087346fa88" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99810bfd-59fa-4d32-85cf-aee4d8a8be7f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5972" - ], - "x-ms-correlation-request-id": [ - "90d27c1c-827a-4e40-a4ab-55be9ee55ad6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221642Z:90d27c1c-827a-4e40-a4ab-55be9ee55ad6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "282c4ffa-ce06-4302-b2a4-5a842b66ea0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5971" - ], - "x-ms-correlation-request-id": [ - "41e0d2cd-74d0-4996-98a0-702f1fa509ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221642Z:41e0d2cd-74d0-4996-98a0-702f1fa509ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b051eaf-e4a0-4732-ab24-8cf2cba0e287" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5970" - ], - "x-ms-correlation-request-id": [ - "7b32d65e-3815-4d64-b7b9-6f517ea07d74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221642Z:7b32d65e-3815-4d64-b7b9-6f517ea07d74" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9fc87ef3-5ff5-4147-8ec8-fc8b567d3309" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5969" - ], - "x-ms-correlation-request-id": [ - "fb9ed39a-b915-4137-989d-365d5d1655ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221642Z:fb9ed39a-b915-4137-989d-365d5d1655ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2883ebff-3a40-4cea-b29c-3e7df4b106b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5968" - ], - "x-ms-correlation-request-id": [ - "eabb001e-2106-410e-a287-b83f4b7ec494" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221643Z:eabb001e-2106-410e-a287-b83f4b7ec494" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb582006-9da5-41d4-93ce-280073b0af1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5967" - ], - "x-ms-correlation-request-id": [ - "be04288c-b9aa-4fa0-91d9-262cfabacf21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221643Z:be04288c-b9aa-4fa0-91d9-262cfabacf21" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f808a77-7ba5-411b-860c-2238df7e244c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5966" - ], - "x-ms-correlation-request-id": [ - "05cfcc72-389b-4cbb-98fe-ed6b8e927070" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221643Z:05cfcc72-389b-4cbb-98fe-ed6b8e927070" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2cc0f0e-e378-4b52-84cb-3215c6303c8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5965" - ], - "x-ms-correlation-request-id": [ - "8934bf51-7792-4c7a-9bd3-ef0fd069f026" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221643Z:8934bf51-7792-4c7a-9bd3-ef0fd069f026" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70ce2395-697a-41ab-a6d7-bc639374e821" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5964" - ], - "x-ms-correlation-request-id": [ - "a1d9ce26-19d8-4cce-ab38-7e68d0937aa8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221643Z:a1d9ce26-19d8-4cce-ab38-7e68d0937aa8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f42983f7-3fae-49f8-911f-88b403916ee6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5963" - ], - "x-ms-correlation-request-id": [ - "1cfe1d27-4643-455a-8382-9a55bb9ffd20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221643Z:1cfe1d27-4643-455a-8382-9a55bb9ffd20" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a41b1655-6d92-48e7-812b-86561f6247dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5962" - ], - "x-ms-correlation-request-id": [ - "8b87515b-a4b5-4834-a18c-ea4405195520" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221643Z:8b87515b-a4b5-4834-a18c-ea4405195520" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9da6f161-b4b9-4d87-8cd8-083a86b74edd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5961" - ], - "x-ms-correlation-request-id": [ - "b3d0b8c1-043e-417a-8df1-d4f773d522ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221644Z:b3d0b8c1-043e-417a-8df1-d4f773d522ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ef62056-61b2-4e15-ab75-564441d2d8c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5960" - ], - "x-ms-correlation-request-id": [ - "c4721122-7fec-4a0f-8511-44e918c32d19" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221644Z:c4721122-7fec-4a0f-8511-44e918c32d19" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e437f7d0-92ba-46e0-8534-263b8af48929" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5959" - ], - "x-ms-correlation-request-id": [ - "59fdac01-cf92-4812-a12a-317455e003d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221644Z:59fdac01-cf92-4812-a12a-317455e003d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c7d08a19-ce7c-4adc-a3fe-0a9f55156b59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5958" - ], - "x-ms-correlation-request-id": [ - "4bee7406-8a12-4029-9ba0-33e5faf9b120" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221644Z:4bee7406-8a12-4029-9ba0-33e5faf9b120" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42f8ec18-b642-4661-bf72-b6ebcb5912af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5957" - ], - "x-ms-correlation-request-id": [ - "f3fffb4b-f081-4469-82b2-a39dc8a3686a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221644Z:f3fffb4b-f081-4469-82b2-a39dc8a3686a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40c01ba2-4ffb-431a-a780-31cad8606f9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5956" - ], - "x-ms-correlation-request-id": [ - "2eabae9d-38c5-4c32-91d7-13bf3158da92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221644Z:2eabae9d-38c5-4c32-91d7-13bf3158da92" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d603bace-6152-498a-961c-e00306b1dcdc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5955" - ], - "x-ms-correlation-request-id": [ - "58c2de45-c75f-4625-ba67-c1581a5e6b9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221645Z:58c2de45-c75f-4625-ba67-c1581a5e6b9f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ee79b3a-48e6-44c0-863e-b39f31aa6346" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5954" - ], - "x-ms-correlation-request-id": [ - "2049b8c5-6cc9-493b-91f8-0ffb774407da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221645Z:2049b8c5-6cc9-493b-91f8-0ffb774407da" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6acb48c0-8546-47b5-a8a6-bf9a5469dc4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5953" - ], - "x-ms-correlation-request-id": [ - "1be6e096-e490-438d-8049-310bb1b54188" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221645Z:1be6e096-e490-438d-8049-310bb1b54188" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60055ec8-4f56-43fe-af34-5183b1d9fbd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5952" - ], - "x-ms-correlation-request-id": [ - "c4d8dc73-6108-4e16-a067-a6d1482726d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221645Z:c4d8dc73-6108-4e16-a067-a6d1482726d4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6cd7592-bdd4-41d6-a6ee-42f509d474a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5951" - ], - "x-ms-correlation-request-id": [ - "9592719c-012c-4c74-ae9c-7f798bc78413" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221645Z:9592719c-012c-4c74-ae9c-7f798bc78413" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71af4f47-8c6a-4a40-9174-ebf2bc0edf40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5950" - ], - "x-ms-correlation-request-id": [ - "dcf0bf40-d311-4e1b-83b3-d94642c841c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221645Z:dcf0bf40-d311-4e1b-83b3-d94642c841c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c4c78ad4-d9a3-4ee3-a400-6c52e7e1f592" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5949" - ], - "x-ms-correlation-request-id": [ - "04d6d945-d77b-4982-aa9f-e5f47ed4406e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221645Z:04d6d945-d77b-4982-aa9f-e5f47ed4406e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42b048a6-1762-4a5a-8ddf-991c129eea51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5948" - ], - "x-ms-correlation-request-id": [ - "42261681-8fe8-4aca-829d-6d03109fb262" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221646Z:42261681-8fe8-4aca-829d-6d03109fb262" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cad66d64-59a5-45d3-b3a9-df9778684f90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5947" - ], - "x-ms-correlation-request-id": [ - "2276f02f-ec5d-4136-9260-a66fc55a28d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221646Z:2276f02f-ec5d-4136-9260-a66fc55a28d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eac2abac-af94-4c14-a13b-48d3734102d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5946" - ], - "x-ms-correlation-request-id": [ - "4d1953ae-01dd-4c2a-8b38-650a9d71d62a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221646Z:4d1953ae-01dd-4c2a-8b38-650a9d71d62a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a8afa76-e8ac-429f-b79c-258dba348760" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5945" - ], - "x-ms-correlation-request-id": [ - "a1d3fe92-fdec-4129-ad35-9ae343ef2625" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221646Z:a1d3fe92-fdec-4129-ad35-9ae343ef2625" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ebe61270-4788-4a69-bbb9-45ad59e6ef72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5944" - ], - "x-ms-correlation-request-id": [ - "25ee7abe-e50e-4e75-8fb3-b715669a475b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221646Z:25ee7abe-e50e-4e75-8fb3-b715669a475b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23186f96-b2db-4a46-a541-9d714a2c8c57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5943" - ], - "x-ms-correlation-request-id": [ - "aee351e3-418d-4f56-94f2-0e99429cc41e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221646Z:aee351e3-418d-4f56-94f2-0e99429cc41e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ffac607-4a16-4231-bf5c-cdd2d4cf4b16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5942" - ], - "x-ms-correlation-request-id": [ - "0f1587f3-3144-474e-8562-3a2d95c7e4e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221647Z:0f1587f3-3144-474e-8562-3a2d95c7e4e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fff2c888-b71f-47a6-b9dd-b3869734f783" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5941" - ], - "x-ms-correlation-request-id": [ - "211219d4-25d4-4bef-8467-dada944e7624" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221647Z:211219d4-25d4-4bef-8467-dada944e7624" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d56a6a7e-8d3b-4009-b8f6-88bed44c0c5d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5940" - ], - "x-ms-correlation-request-id": [ - "58262b9c-f6c7-44e6-ab21-3593f9dfdfc4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221647Z:58262b9c-f6c7-44e6-ab21-3593f9dfdfc4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24a12347-beef-4762-a3c6-f410610cbc71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5939" - ], - "x-ms-correlation-request-id": [ - "597a155d-68f2-4860-be4d-547bebd84e52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221647Z:597a155d-68f2-4860-be4d-547bebd84e52" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "14ec1eb7-a422-4cff-b6d0-396069a3dfd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5938" - ], - "x-ms-correlation-request-id": [ - "b67e4008-8d87-4436-affa-a17eb5c9032b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221647Z:b67e4008-8d87-4436-affa-a17eb5c9032b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b6567722-8b3d-40f8-9417-76486c500592" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5937" - ], - "x-ms-correlation-request-id": [ - "55c0b697-f162-44c8-98fc-21bb7bb1593c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221647Z:55c0b697-f162-44c8-98fc-21bb7bb1593c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92145eb9-ed7c-4552-8718-28866c395be7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5936" - ], - "x-ms-correlation-request-id": [ - "b42f63e5-5351-449b-a311-2f50102370dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221647Z:b42f63e5-5351-449b-a311-2f50102370dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3188f84-528b-45a2-864a-5c27782cc32a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5935" - ], - "x-ms-correlation-request-id": [ - "50abbd59-418b-4de9-8191-b3f3d38484ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221648Z:50abbd59-418b-4de9-8191-b3f3d38484ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9aa99a78-a639-48a8-ae3b-b477e1a1becc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5934" - ], - "x-ms-correlation-request-id": [ - "fb95e9a7-b290-4340-9737-bc082aa40e7d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221648Z:fb95e9a7-b290-4340-9737-bc082aa40e7d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b0bac67-b004-45ba-9780-bd6cc59bb693" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5933" - ], - "x-ms-correlation-request-id": [ - "78144947-94c2-4a6e-9619-0cb3c518c083" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221648Z:78144947-94c2-4a6e-9619-0cb3c518c083" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa9e402a-2fcd-4a85-a52a-50bbdbab2bdc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5932" - ], - "x-ms-correlation-request-id": [ - "1e977777-3c16-4fa6-a9b9-7b7b648fc00d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221648Z:1e977777-3c16-4fa6-a9b9-7b7b648fc00d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6db5535e-3fc0-4457-afaa-de61d8ad1fb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5931" - ], - "x-ms-correlation-request-id": [ - "b7cbf9f0-e91e-4b18-b62c-7da5514f6ad5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221648Z:b7cbf9f0-e91e-4b18-b62c-7da5514f6ad5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0c16ca55-b467-49cd-9b6d-46e7b3481bb8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5930" - ], - "x-ms-correlation-request-id": [ - "1145d316-8643-48b3-a040-e8f2406a24f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221649Z:1145d316-8643-48b3-a040-e8f2406a24f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1743118-139e-45e7-847f-3203f56a0e25" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5929" - ], - "x-ms-correlation-request-id": [ - "402c4f9d-cf8e-4c52-9b12-02b68dbedfb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221649Z:402c4f9d-cf8e-4c52-9b12-02b68dbedfb8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f8b90f6-a14d-4000-88bc-7561e81cdd65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5928" - ], - "x-ms-correlation-request-id": [ - "1e3eeaa4-63f8-4fa6-ab25-37be1cdf6349" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221649Z:1e3eeaa4-63f8-4fa6-ab25-37be1cdf6349" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "66b94388-d5c3-4ef5-9450-9088158c7135" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5927" - ], - "x-ms-correlation-request-id": [ - "30b2fd6e-a66c-4a44-947a-52eef659fc5b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221649Z:30b2fd6e-a66c-4a44-947a-52eef659fc5b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f2f5eda-4b5b-46f5-8862-b58e6453695f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5926" - ], - "x-ms-correlation-request-id": [ - "2df41d82-5740-4bb0-b8a6-833de960f2fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221649Z:2df41d82-5740-4bb0-b8a6-833de960f2fb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5efb0094-3f6d-4247-a353-b526c304abe7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5925" - ], - "x-ms-correlation-request-id": [ - "df7276d3-9c57-4fb9-93d1-d6b56dcbd1d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221649Z:df7276d3-9c57-4fb9-93d1-d6b56dcbd1d2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fdefab74-4533-4ec8-801b-ca0244a4c028" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5924" - ], - "x-ms-correlation-request-id": [ - "aec59551-2c78-4fc7-aaaf-44e1feb750db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221650Z:aec59551-2c78-4fc7-aaaf-44e1feb750db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb85dbef-9017-4535-931b-93cc1a65ac53" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5923" - ], - "x-ms-correlation-request-id": [ - "e7b20b82-8bac-49a0-959e-1ef7607c575b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221650Z:e7b20b82-8bac-49a0-959e-1ef7607c575b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d40b825-fce6-4ee0-9f03-5fccbc2936bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5922" - ], - "x-ms-correlation-request-id": [ - "eacbb744-e0db-4f94-87f7-36bb5e63d267" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221650Z:eacbb744-e0db-4f94-87f7-36bb5e63d267" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6027785-cafd-4404-a772-42d73d831e5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5921" - ], - "x-ms-correlation-request-id": [ - "8e1cf4f9-37c6-4e6a-8728-3301a77d98e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221650Z:8e1cf4f9-37c6-4e6a-8728-3301a77d98e5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48ea5292-c660-4b17-8972-cb128fffad67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5920" - ], - "x-ms-correlation-request-id": [ - "e489d3c3-ad19-482a-9896-c7576e3218e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221650Z:e489d3c3-ad19-482a-9896-c7576e3218e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d69f2a6-a95e-4c63-a9fa-2b6c956f344b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5919" - ], - "x-ms-correlation-request-id": [ - "1cad9712-c6df-49d2-871b-a62513db0cbc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221651Z:1cad9712-c6df-49d2-871b-a62513db0cbc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8315836b-3c6d-476f-953f-c0133dd1f893" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5918" - ], - "x-ms-correlation-request-id": [ - "3f491ab1-0292-4efe-9c6f-770cf1afa2b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221651Z:3f491ab1-0292-4efe-9c6f-770cf1afa2b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f955725-de2c-42c6-a4be-8672cbabe12b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5917" - ], - "x-ms-correlation-request-id": [ - "a74b8e03-1b16-438c-952d-486981e027c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221651Z:a74b8e03-1b16-438c-952d-486981e027c9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31ec96d1-1934-481d-adc9-8ff27fac4b93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5916" - ], - "x-ms-correlation-request-id": [ - "0b4b7f38-2fc4-43e6-8518-e923a3ef6bd6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221651Z:0b4b7f38-2fc4-43e6-8518-e923a3ef6bd6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45480f79-01e9-4578-b800-3febffd2f108" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5915" - ], - "x-ms-correlation-request-id": [ - "1bfa969c-0f8a-44e1-a2fa-134429d3de23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221651Z:1bfa969c-0f8a-44e1-a2fa-134429d3de23" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48a37f7e-4987-4044-900e-423aa7c916e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5914" - ], - "x-ms-correlation-request-id": [ - "4b9fa3b2-56d9-4c87-bc67-9e97959996e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221651Z:4b9fa3b2-56d9-4c87-bc67-9e97959996e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67a2655b-e6e9-433a-92de-b1a4752096e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5913" - ], - "x-ms-correlation-request-id": [ - "a395d5a7-87a2-44bc-9609-19d6eaffc15d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221652Z:a395d5a7-87a2-44bc-9609-19d6eaffc15d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c36570d-8a7b-4beb-ab96-c87076c2ea94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5912" - ], - "x-ms-correlation-request-id": [ - "bff1e495-d863-4e7e-8792-b387c480a5ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221652Z:bff1e495-d863-4e7e-8792-b387c480a5ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "becf548f-0a2f-4334-9153-e235d5928fd2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5911" - ], - "x-ms-correlation-request-id": [ - "785796ce-c0a9-4b37-99ac-d12fd7c25370" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221652Z:785796ce-c0a9-4b37-99ac-d12fd7c25370" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4a7ab8e-9d59-4841-bef5-10541d13b5a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5910" - ], - "x-ms-correlation-request-id": [ - "146e4b44-7302-4d11-afa0-f276da6e29c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221652Z:146e4b44-7302-4d11-afa0-f276da6e29c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "500cb550-ceda-4844-be81-b33059b2764c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5909" - ], - "x-ms-correlation-request-id": [ - "75e59a43-918d-4996-91b4-084c1df8db5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221652Z:75e59a43-918d-4996-91b4-084c1df8db5d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea818a47-08a4-475d-a73e-6604e2f84fc3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5908" - ], - "x-ms-correlation-request-id": [ - "9f09b9ac-be1d-4d8b-810a-dcb84d4c4e3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221652Z:9f09b9ac-be1d-4d8b-810a-dcb84d4c4e3d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6bfb4774-d21a-4491-8bbc-a9d712888acb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5907" - ], - "x-ms-correlation-request-id": [ - "b44cf170-c452-4d89-af8a-740d80ae9395" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221653Z:b44cf170-c452-4d89-af8a-740d80ae9395" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1dc0c5c-1341-4527-bad3-9bdd1f93c325" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5906" - ], - "x-ms-correlation-request-id": [ - "b26685c3-58bd-46d1-a8d5-719f8facacb0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221653Z:b26685c3-58bd-46d1-a8d5-719f8facacb0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19dd6eac-5da2-401b-9042-58315b270283" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5905" - ], - "x-ms-correlation-request-id": [ - "416acb6d-3f33-4d21-b88d-e3a48c43300d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221653Z:416acb6d-3f33-4d21-b88d-e3a48c43300d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2bbe4ee1-6ff2-44ba-8af2-471f33d232e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5904" - ], - "x-ms-correlation-request-id": [ - "7f55e693-e174-4a1e-94a3-b3773db5f641" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221653Z:7f55e693-e174-4a1e-94a3-b3773db5f641" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96f9e389-c156-4e0d-803d-c7f4a1fb5ae9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5903" - ], - "x-ms-correlation-request-id": [ - "a27eb754-d19c-41ee-903f-3819a9acb21d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221653Z:a27eb754-d19c-41ee-903f-3819a9acb21d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1999ecc-5b20-4968-ac05-1aea81c16660" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5902" - ], - "x-ms-correlation-request-id": [ - "c187905f-d2d9-438e-841c-5d8c3bf8abd8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221653Z:c187905f-d2d9-438e-841c-5d8c3bf8abd8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75d7ba15-7cba-4679-a4d7-b8ba047ab9ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5901" - ], - "x-ms-correlation-request-id": [ - "39a82997-1b70-427d-88f7-2b59ce03441d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221653Z:39a82997-1b70-427d-88f7-2b59ce03441d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c7a8715-c129-4bd9-a376-6165a81a1c7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5900" - ], - "x-ms-correlation-request-id": [ - "29b4231e-e895-41e3-9f69-85a76a5d0fd3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221654Z:29b4231e-e895-41e3-9f69-85a76a5d0fd3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97c090e6-41e9-43ab-844d-26314daa4d5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5899" - ], - "x-ms-correlation-request-id": [ - "0dd1f034-abc2-4fcc-ab48-9b917225a9db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221654Z:0dd1f034-abc2-4fcc-ab48-9b917225a9db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8cf7a663-22f6-43b6-852f-d31e7605da33" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5898" - ], - "x-ms-correlation-request-id": [ - "6ab61702-300b-42be-93a3-71f90bef4a71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221654Z:6ab61702-300b-42be-93a3-71f90bef4a71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b6eb8fe-5fd5-4755-8b1c-e842bf969a5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5897" - ], - "x-ms-correlation-request-id": [ - "e6ea185d-8e72-4ad1-bf8a-a52b3e2dd0a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221654Z:e6ea185d-8e72-4ad1-bf8a-a52b3e2dd0a4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1fec0b9-4bce-45b5-8bb8-d92376861d27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5896" - ], - "x-ms-correlation-request-id": [ - "450d6a7f-a564-458e-8a9e-f27f646862e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221654Z:450d6a7f-a564-458e-8a9e-f27f646862e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "51785cc9-5289-42c5-bd2a-3de38753442a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5895" - ], - "x-ms-correlation-request-id": [ - "cca1a7a2-ac82-416b-a05e-37525625bdaa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221654Z:cca1a7a2-ac82-416b-a05e-37525625bdaa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80ddc87c-bf33-4ba9-934b-499dab58be62" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5894" - ], - "x-ms-correlation-request-id": [ - "c29299a8-d4fa-4ad2-adb0-4da316665d46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221655Z:c29299a8-d4fa-4ad2-adb0-4da316665d46" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2862b1b4-b021-4fca-9b7d-3ead8c69029c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5893" - ], - "x-ms-correlation-request-id": [ - "e2c156b7-f6e8-4fda-b03b-baa7d742d018" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221655Z:e2c156b7-f6e8-4fda-b03b-baa7d742d018" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62e1651e-b8f5-47c2-8bf2-ebf2b1b94dc4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5892" - ], - "x-ms-correlation-request-id": [ - "fecf3b98-f7da-4c2f-8c07-fccbc4538dc9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221655Z:fecf3b98-f7da-4c2f-8c07-fccbc4538dc9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "426c91ed-d8db-4b7a-833c-5aa8003790c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5891" - ], - "x-ms-correlation-request-id": [ - "be780ef8-8ef6-4c28-ab69-9fa074e0a188" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221655Z:be780ef8-8ef6-4c28-ab69-9fa074e0a188" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e925f62-6155-41c2-bdc0-be6f48d48460" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5890" - ], - "x-ms-correlation-request-id": [ - "7a53290f-2070-4f75-8c69-f38a8c6aba35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221655Z:7a53290f-2070-4f75-8c69-f38a8c6aba35" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aae5ef27-9baf-48c6-bd78-3e14e2943d06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5889" - ], - "x-ms-correlation-request-id": [ - "af94fa27-f828-408b-b525-a331740a4e3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221655Z:af94fa27-f828-408b-b525-a331740a4e3e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92633893-0150-43ea-9caf-aef1194f7eea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5888" - ], - "x-ms-correlation-request-id": [ - "79cc182f-a77e-4888-82fd-d3eae98b59eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221656Z:79cc182f-a77e-4888-82fd-d3eae98b59eb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7de0fabe-79a6-4368-a840-192bf0d197e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5887" - ], - "x-ms-correlation-request-id": [ - "b306911c-bfba-4eac-9109-cb2b62a1e281" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221656Z:b306911c-bfba-4eac-9109-cb2b62a1e281" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ddc6fe29-b4d8-49b0-87e7-c6cbc8e03aa0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5886" - ], - "x-ms-correlation-request-id": [ - "71a213a0-d840-489a-8a86-d2b10dfee01e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221656Z:71a213a0-d840-489a-8a86-d2b10dfee01e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20cc9705-388c-4e8e-9469-e6de51f7c210" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5885" - ], - "x-ms-correlation-request-id": [ - "6b0be638-eccc-482d-9899-120b26fbdd02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221656Z:6b0be638-eccc-482d-9899-120b26fbdd02" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f470ba3d-bc6b-47cf-9d9b-8705334309f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5884" - ], - "x-ms-correlation-request-id": [ - "63434c6f-9ef2-42c4-8e08-a0a6529127f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221656Z:63434c6f-9ef2-42c4-8e08-a0a6529127f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0eff4463-f1c0-4297-8996-f4e7cf7a307b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5883" - ], - "x-ms-correlation-request-id": [ - "1a4713da-9bfa-4b63-882c-7345c0e46240" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221657Z:1a4713da-9bfa-4b63-882c-7345c0e46240" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "867afd88-56c9-4a38-b95d-bce3ca53c0c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5882" - ], - "x-ms-correlation-request-id": [ - "3fa2b40b-c585-4f5b-b278-57d3e711794e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221657Z:3fa2b40b-c585-4f5b-b278-57d3e711794e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91696d8b-886e-497b-80b9-c899629c1073" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5881" - ], - "x-ms-correlation-request-id": [ - "badd2450-a8cf-4a7d-b513-7042b511cc28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221657Z:badd2450-a8cf-4a7d-b513-7042b511cc28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f7f031e-2c9f-49cd-90cb-545568d5ce41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5880" - ], - "x-ms-correlation-request-id": [ - "85da9919-8ddd-4e76-b9ea-5dabd942d772" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221657Z:85da9919-8ddd-4e76-b9ea-5dabd942d772" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b7de56f-2290-4e6c-86e1-9ba94d30f270" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5879" - ], - "x-ms-correlation-request-id": [ - "a98641f7-5d33-41ba-9340-2d87012d0c89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221658Z:a98641f7-5d33-41ba-9340-2d87012d0c89" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c91871de-24b6-44f9-8ed4-9b01224cb9cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5878" - ], - "x-ms-correlation-request-id": [ - "e7397480-8ebf-4a23-8aa3-337ec07eb388" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221658Z:e7397480-8ebf-4a23-8aa3-337ec07eb388" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68ae60d0-147e-497e-8e2b-072c6056fe43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5877" - ], - "x-ms-correlation-request-id": [ - "dd0865ef-0787-45a1-877d-28da05d263e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221658Z:dd0865ef-0787-45a1-877d-28da05d263e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1cc96435-6ec9-47b0-9625-b6abb6effc1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5876" - ], - "x-ms-correlation-request-id": [ - "7aa50785-7e16-4cfd-b7d4-e03236dfb55e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221658Z:7aa50785-7e16-4cfd-b7d4-e03236dfb55e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "958ce979-60e0-482a-a544-98371e9ad3c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5875" - ], - "x-ms-correlation-request-id": [ - "b79db803-4d5b-4675-a4a1-7ea3c8c5404d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221658Z:b79db803-4d5b-4675-a4a1-7ea3c8c5404d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c803921-3d9f-463e-ad7a-4397fde1d2ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5874" - ], - "x-ms-correlation-request-id": [ - "9684ff89-df68-400c-adf1-f257e9179494" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221658Z:9684ff89-df68-400c-adf1-f257e9179494" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37406950-2163-4134-bb96-66d4239ad74d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5873" - ], - "x-ms-correlation-request-id": [ - "dafad3e8-90fb-473d-a6c7-5f2d0f0610d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221658Z:dafad3e8-90fb-473d-a6c7-5f2d0f0610d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed31777b-0880-44a0-b096-2062cf8ae967" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5872" - ], - "x-ms-correlation-request-id": [ - "667e1d4e-9bb2-4260-a77b-1d0e7d5c05f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221659Z:667e1d4e-9bb2-4260-a77b-1d0e7d5c05f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a482a13c-889f-41a7-b9db-e6aabc5bf02f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5871" - ], - "x-ms-correlation-request-id": [ - "7ccab1cf-d3c3-437c-9996-3b1e93bca206" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221659Z:7ccab1cf-d3c3-437c-9996-3b1e93bca206" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1a168b3c-cd3f-4026-9f42-70a3bcc56170" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5870" - ], - "x-ms-correlation-request-id": [ - "ce187b43-1238-489a-b44f-3705c05bcff0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221659Z:ce187b43-1238-489a-b44f-3705c05bcff0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bac7c047-d6f4-46cd-b1da-6f70e6686dff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5869" - ], - "x-ms-correlation-request-id": [ - "97327d42-07ce-4662-99fe-5efef31d7022" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221659Z:97327d42-07ce-4662-99fe-5efef31d7022" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29025cce-10d1-41f6-91c9-2590a536ef0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5868" - ], - "x-ms-correlation-request-id": [ - "06fe5462-ddf9-4849-9bb2-534119ce3e38" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221659Z:06fe5462-ddf9-4849-9bb2-534119ce3e38" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7ecbab3-cd92-4f33-89b1-cafee90d3965" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5867" - ], - "x-ms-correlation-request-id": [ - "7e640953-eaeb-4056-8bee-4fd012389060" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221659Z:7e640953-eaeb-4056-8bee-4fd012389060" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30b1fd8d-6ecd-40bc-9f98-c458ed6fcf30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5866" - ], - "x-ms-correlation-request-id": [ - "d5c32848-7414-4cfd-b16f-fce55f9c1725" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221659Z:d5c32848-7414-4cfd-b16f-fce55f9c1725" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a2ef1919-17d3-4c49-ac66-5f51b47a319c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5865" - ], - "x-ms-correlation-request-id": [ - "8b4ea1ae-bdab-4bc4-9e2c-272354775dcd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221700Z:8b4ea1ae-bdab-4bc4-9e2c-272354775dcd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa4c6434-affa-4ce6-b512-f7ca45763665" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5864" - ], - "x-ms-correlation-request-id": [ - "2bad2e7a-cf40-4c66-b2d5-89fcb390d2a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221700Z:2bad2e7a-cf40-4c66-b2d5-89fcb390d2a3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b75997c1-3c19-4ab0-a980-1e0cc0bfbf81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5863" - ], - "x-ms-correlation-request-id": [ - "11d42fcc-607c-4976-b7cf-3e3a96849877" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221700Z:11d42fcc-607c-4976-b7cf-3e3a96849877" - ], - "Date": [ - "Tue, 29 Aug 2017 22:16:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23ae3b96-df5c-4c2d-9341-ce4c761581c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5862" - ], - "x-ms-correlation-request-id": [ - "8466e63c-bd8d-4843-8987-b0d0b3bf0d6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221700Z:8466e63c-bd8d-4843-8987-b0d0b3bf0d6f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28c5db3a-66f1-4e65-b85e-4caf3fe4dc87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5861" - ], - "x-ms-correlation-request-id": [ - "26e26b05-8e1b-4aed-ae3b-8c058098a6bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221700Z:26e26b05-8e1b-4aed-ae3b-8c058098a6bc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a79d5e9-8707-423a-936d-9b720d46be39" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5860" - ], - "x-ms-correlation-request-id": [ - "dfda0090-26e7-4136-b04a-0a16f020629c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221700Z:dfda0090-26e7-4136-b04a-0a16f020629c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45726d5e-d72f-4702-b7af-b9a1040d08b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5859" - ], - "x-ms-correlation-request-id": [ - "08155d78-877d-494e-a59e-12440094707a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221701Z:08155d78-877d-494e-a59e-12440094707a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c06bd4bb-0fc7-4f03-b0e5-4b62af04dfd5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5858" - ], - "x-ms-correlation-request-id": [ - "951e236d-ac00-4de9-a598-7c0044db8258" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221701Z:951e236d-ac00-4de9-a598-7c0044db8258" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "01c997fb-4908-48f5-a512-ffc4d2fd5ea3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5857" - ], - "x-ms-correlation-request-id": [ - "5d2c6171-3257-468e-a6fb-2cc9be44fc84" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221701Z:5d2c6171-3257-468e-a6fb-2cc9be44fc84" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62dac311-00b3-4eb8-bcf8-8915cb9e97cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5856" - ], - "x-ms-correlation-request-id": [ - "e7e1f58f-4453-4a2f-be23-1f53508d5186" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221701Z:e7e1f58f-4453-4a2f-be23-1f53508d5186" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "057b8b98-f65b-456a-a393-337ceea280d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5855" - ], - "x-ms-correlation-request-id": [ - "4ede2f2c-d48a-4f25-ab9e-03796a25dfe7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221701Z:4ede2f2c-d48a-4f25-ab9e-03796a25dfe7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "210345a0-ee61-41c3-9fd0-5c672d5abe0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5854" - ], - "x-ms-correlation-request-id": [ - "4346e3ee-e636-4797-b472-395898386d8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221701Z:4346e3ee-e636-4797-b472-395898386d8e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96947415-67e8-4b97-9bee-4e065d303d26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5853" - ], - "x-ms-correlation-request-id": [ - "94b9d9bd-28f2-4aad-b88b-5cb352e92021" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221701Z:94b9d9bd-28f2-4aad-b88b-5cb352e92021" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0d78cb9-303d-46a2-9f10-45d189661327" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5852" - ], - "x-ms-correlation-request-id": [ - "96827d55-a7a0-4ca0-a799-5110345cf716" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221701Z:96827d55-a7a0-4ca0-a799-5110345cf716" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "34f9c988-8a88-467e-842f-74935f092ae6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5851" - ], - "x-ms-correlation-request-id": [ - "0bfec71d-0c28-44b5-86e8-b1a0b6e0d665" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221702Z:0bfec71d-0c28-44b5-86e8-b1a0b6e0d665" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e60aa46c-29e3-4c0a-89d8-b8c816b87b73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5850" - ], - "x-ms-correlation-request-id": [ - "8be8e1a8-515e-4fb8-bd36-d83775821eeb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221702Z:8be8e1a8-515e-4fb8-bd36-d83775821eeb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "305c2d38-0103-4a92-8d11-10e7553060f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5849" - ], - "x-ms-correlation-request-id": [ - "b07afcb8-8f6a-4bf7-a739-2b50706e6f6a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221702Z:b07afcb8-8f6a-4bf7-a739-2b50706e6f6a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10194c89-90f3-401f-8b1e-1fdf7bfb56cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5848" - ], - "x-ms-correlation-request-id": [ - "7ac21220-8e3d-4e78-bc7b-7f6eec311e68" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221702Z:7ac21220-8e3d-4e78-bc7b-7f6eec311e68" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48612b35-7d35-4e12-b69b-accbc6651763" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5847" - ], - "x-ms-correlation-request-id": [ - "e9100224-8e31-45b4-8019-30bd87c2a83b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221702Z:e9100224-8e31-45b4-8019-30bd87c2a83b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa6b87d2-5437-4862-be79-b3ae100b72e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5846" - ], - "x-ms-correlation-request-id": [ - "fec0db0c-1497-47db-93a3-183b8f1d2e33" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221703Z:fec0db0c-1497-47db-93a3-183b8f1d2e33" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ee40664-c0a9-47a2-a757-272012d5ec23" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5845" - ], - "x-ms-correlation-request-id": [ - "f9d81ef6-38a7-420f-a699-d6ebe960aa54" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221703Z:f9d81ef6-38a7-420f-a699-d6ebe960aa54" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e24699f-4a09-48f8-9624-52e940c26ed7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5844" - ], - "x-ms-correlation-request-id": [ - "5053e1a2-786e-4dc3-a557-5c89cd9afe4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221703Z:5053e1a2-786e-4dc3-a557-5c89cd9afe4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "013a0b50-8044-4c26-9e50-ddbcc71e6b19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5843" - ], - "x-ms-correlation-request-id": [ - "ea52fa4c-15c7-44fc-b7d9-bd9b087ee69b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221703Z:ea52fa4c-15c7-44fc-b7d9-bd9b087ee69b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "82a2608c-5b32-4b0d-934e-8d9c4e50bf2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5842" - ], - "x-ms-correlation-request-id": [ - "577fb18f-6230-4378-aee5-ff130835d4b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221703Z:577fb18f-6230-4378-aee5-ff130835d4b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "af5a451c-9e78-4811-b95d-97976e7f7785" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5841" - ], - "x-ms-correlation-request-id": [ - "d7f9ee80-c25a-47a1-a1ba-e9e2ccdcd1aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221703Z:d7f9ee80-c25a-47a1-a1ba-e9e2ccdcd1aa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5550eb9d-e43e-4ab4-8693-2430bcd6e1ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5840" - ], - "x-ms-correlation-request-id": [ - "1cb28adc-a1f9-4f7c-80e7-4143461a3cea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221704Z:1cb28adc-a1f9-4f7c-80e7-4143461a3cea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "364fbf4d-539a-4b06-9a35-b4c4648654dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5839" - ], - "x-ms-correlation-request-id": [ - "0ce1b182-4dba-4d04-b7e0-572dee2c5601" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221704Z:0ce1b182-4dba-4d04-b7e0-572dee2c5601" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1502fbde-0d67-40bc-bef2-9f02a5456f98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5838" - ], - "x-ms-correlation-request-id": [ - "0a49c1c6-d134-42ce-853d-48452ddd219a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221704Z:0a49c1c6-d134-42ce-853d-48452ddd219a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c340ae55-c08b-45e6-ba4c-27f6ab3587b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5837" - ], - "x-ms-correlation-request-id": [ - "1fe54aa0-3c8b-43e7-8950-79b415ca5c88" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221704Z:1fe54aa0-3c8b-43e7-8950-79b415ca5c88" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81a4977b-abc4-416d-bf8f-c17d76160057" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5836" - ], - "x-ms-correlation-request-id": [ - "00a01cf1-23e0-4620-a2fd-072bf3b62d75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221704Z:00a01cf1-23e0-4620-a2fd-072bf3b62d75" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e1a030a0-a994-4512-a4b4-5d1ddb2af407" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5835" - ], - "x-ms-correlation-request-id": [ - "79efa73f-50bd-468d-9029-b374863cbe68" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221704Z:79efa73f-50bd-468d-9029-b374863cbe68" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39cc17c2-1485-4603-a286-35bab0d9ac80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5834" - ], - "x-ms-correlation-request-id": [ - "2ef2e8bd-15b1-4772-ad12-6a65cdf9b83b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221705Z:2ef2e8bd-15b1-4772-ad12-6a65cdf9b83b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10825507-8fce-4bff-8eca-b21e6db3a8f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5833" - ], - "x-ms-correlation-request-id": [ - "954c89f4-0019-41f4-8237-178ba5398c07" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221705Z:954c89f4-0019-41f4-8237-178ba5398c07" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "158f61b1-b108-4c56-ac7b-bedbc2c86adf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5832" - ], - "x-ms-correlation-request-id": [ - "88638f40-3e3c-4b7c-abed-28c0580f050d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221705Z:88638f40-3e3c-4b7c-abed-28c0580f050d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a764179d-bee3-4a7c-a1da-ad9854340004" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5831" - ], - "x-ms-correlation-request-id": [ - "1c6c6ff1-4a01-4c14-94e7-e791bbf85831" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221705Z:1c6c6ff1-4a01-4c14-94e7-e791bbf85831" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a277d364-2759-4990-b44b-80dc349cd5f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5830" - ], - "x-ms-correlation-request-id": [ - "54714764-1e51-4d50-9771-68706a44c6b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221705Z:54714764-1e51-4d50-9771-68706a44c6b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c341eb2-e4a1-4e95-ac8e-c1ced85b85f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5829" - ], - "x-ms-correlation-request-id": [ - "f1ed3ad0-f000-4600-bc23-29d5ab89924d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221705Z:f1ed3ad0-f000-4600-bc23-29d5ab89924d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63fccaf8-60e9-480f-a537-44886ed3068c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5828" - ], - "x-ms-correlation-request-id": [ - "c517e948-bfc6-4f43-b6e2-c470710da0b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221706Z:c517e948-bfc6-4f43-b6e2-c470710da0b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "12d23cd1-14b5-45cb-8c7e-fb3c33a0b6ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5827" - ], - "x-ms-correlation-request-id": [ - "4939c9b5-95fe-4ae4-bd3b-ac8c301a0248" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221706Z:4939c9b5-95fe-4ae4-bd3b-ac8c301a0248" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6267520a-17c0-458b-8f06-6ef455b86c87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5826" - ], - "x-ms-correlation-request-id": [ - "f1f45773-f18a-4266-90f9-afc462e17c42" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221706Z:f1f45773-f18a-4266-90f9-afc462e17c42" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1d17a6e-09dd-4003-a418-ac942643f678" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5825" - ], - "x-ms-correlation-request-id": [ - "cdab4964-1659-4bfc-bd83-3bfa8e19acbd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221706Z:cdab4964-1659-4bfc-bd83-3bfa8e19acbd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d4c5f3a-636b-495c-b944-8abb95ee984f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5824" - ], - "x-ms-correlation-request-id": [ - "a9d34d9d-9e27-4cc3-beb3-655f97a50cad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221706Z:a9d34d9d-9e27-4cc3-beb3-655f97a50cad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02a9380a-9258-461b-893d-97fae89454e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5823" - ], - "x-ms-correlation-request-id": [ - "c69c65d6-fb9d-4780-8919-202935949dae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221706Z:c69c65d6-fb9d-4780-8919-202935949dae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37d79576-489a-47f2-8ac3-2d04ea01b22c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5822" - ], - "x-ms-correlation-request-id": [ - "73afd6fe-31c5-45bc-b9e0-d444e183e793" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221706Z:73afd6fe-31c5-45bc-b9e0-d444e183e793" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1b6126d-5959-42cb-98aa-065a6e37f54f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5821" - ], - "x-ms-correlation-request-id": [ - "a9706f19-a827-47b4-99d2-90153b126dcc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221707Z:a9706f19-a827-47b4-99d2-90153b126dcc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d167eae0-097e-4dca-9665-e450b2443fe1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5820" - ], - "x-ms-correlation-request-id": [ - "74f51262-a8fd-4dd9-b83b-602900cc7c66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221707Z:74f51262-a8fd-4dd9-b83b-602900cc7c66" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3344ea8e-8ad6-40c4-9c6b-9bc35a7abfcd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5819" - ], - "x-ms-correlation-request-id": [ - "13d7f7b7-46c5-41be-8bda-e561cb7f0b66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221707Z:13d7f7b7-46c5-41be-8bda-e561cb7f0b66" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b863344-ab85-4b95-9237-f3358272ec52" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5818" - ], - "x-ms-correlation-request-id": [ - "8b39a483-7e6c-49d8-80d4-8d1d9fd640b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221707Z:8b39a483-7e6c-49d8-80d4-8d1d9fd640b7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fbd4bd7d-1129-4ce9-86af-0f5e909f18f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5817" - ], - "x-ms-correlation-request-id": [ - "82962f44-24bd-4550-8f5b-a9ad4b6adfa2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221707Z:82962f44-24bd-4550-8f5b-a9ad4b6adfa2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb91c386-8a38-4b6d-b6f2-53c6e4e28dd2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5816" - ], - "x-ms-correlation-request-id": [ - "3df0ba8a-7cec-492a-86ce-0655716c4785" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221708Z:3df0ba8a-7cec-492a-86ce-0655716c4785" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c84b47b-66e6-4387-9a9c-93e7f3280d49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5815" - ], - "x-ms-correlation-request-id": [ - "6f4ee7d6-111f-4d51-8c88-efd0e58143bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221708Z:6f4ee7d6-111f-4d51-8c88-efd0e58143bd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "912c2288-394e-4841-b600-7f2fd0bb812c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5814" - ], - "x-ms-correlation-request-id": [ - "2d0c1b22-d30a-49c2-bc7c-bef8d6ea9c0d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221708Z:2d0c1b22-d30a-49c2-bc7c-bef8d6ea9c0d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8e0ab72-3822-4f4f-8eff-754c386a2ae5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5813" - ], - "x-ms-correlation-request-id": [ - "a9ee07d6-d32c-477f-b8ec-4d9ec8c37f37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221708Z:a9ee07d6-d32c-477f-b8ec-4d9ec8c37f37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b6ce2f0-ae06-46e6-9e4b-4da479acc29f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5812" - ], - "x-ms-correlation-request-id": [ - "52ec8486-28b3-4b6a-ac0c-fa12ee945e5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221708Z:52ec8486-28b3-4b6a-ac0c-fa12ee945e5a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c7da7967-4395-4884-aa56-fc772d2129d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5811" - ], - "x-ms-correlation-request-id": [ - "11d8959e-da45-4db2-8ceb-f0d8a34dbdd3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221709Z:11d8959e-da45-4db2-8ceb-f0d8a34dbdd3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3dc5c4da-6b16-452f-b307-26b713a52feb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5810" - ], - "x-ms-correlation-request-id": [ - "923e3eaf-0858-4f58-95c5-93eb32f5759e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221709Z:923e3eaf-0858-4f58-95c5-93eb32f5759e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89a10fdc-eae6-4214-9866-67c126e85c88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5809" - ], - "x-ms-correlation-request-id": [ - "7fe95f2d-1b80-44d9-b703-b22b6aee92c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221709Z:7fe95f2d-1b80-44d9-b703-b22b6aee92c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b5bcc81e-f46b-49be-bb45-6b5002c0830e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5808" - ], - "x-ms-correlation-request-id": [ - "e902d815-aad7-48af-978f-ec8410f25243" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221709Z:e902d815-aad7-48af-978f-ec8410f25243" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "12c92cb2-704a-468b-95fe-0b680ccfe3fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5807" - ], - "x-ms-correlation-request-id": [ - "12caa6fe-fb33-4c0d-9b71-6bc387c05605" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221709Z:12caa6fe-fb33-4c0d-9b71-6bc387c05605" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ab1655b5-f137-48b7-8590-d318dab42384" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5806" - ], - "x-ms-correlation-request-id": [ - "a5dc426f-acc4-4fe0-81a4-ea1d3e61314e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221709Z:a5dc426f-acc4-4fe0-81a4-ea1d3e61314e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4a936e0-3b0f-4f3a-9b54-f62bddd4eeb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5805" - ], - "x-ms-correlation-request-id": [ - "de78fbc7-7c5d-4b03-a4b3-b0d8dc7ae3d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221710Z:de78fbc7-7c5d-4b03-a4b3-b0d8dc7ae3d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f990b541-b03a-4b67-811d-00eaf3b98af8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5804" - ], - "x-ms-correlation-request-id": [ - "73c1edb3-ad07-46b2-84e2-032dc4cef8ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221710Z:73c1edb3-ad07-46b2-84e2-032dc4cef8ba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "325aefd3-4dee-4f74-83d5-ed92b71a9450" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5803" - ], - "x-ms-correlation-request-id": [ - "3aa66d4b-642d-4381-97c3-ebe531a4ec79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221710Z:3aa66d4b-642d-4381-97c3-ebe531a4ec79" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3e1bd181-c369-4cdf-8561-5d730b5346e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5802" - ], - "x-ms-correlation-request-id": [ - "e9d339b8-c33f-4269-835c-a5209f77d24b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221710Z:e9d339b8-c33f-4269-835c-a5209f77d24b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71b76195-bc81-4040-906f-2eda7725a671" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5801" - ], - "x-ms-correlation-request-id": [ - "45cfc75c-f321-41dc-9518-b24ac8d52d29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221710Z:45cfc75c-f321-41dc-9518-b24ac8d52d29" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7efceb7f-6336-4dcf-ac82-c37bdb950cf3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5800" - ], - "x-ms-correlation-request-id": [ - "2fd58545-68a6-4442-813e-756ff5530a35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221711Z:2fd58545-68a6-4442-813e-756ff5530a35" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17c444e0-0ce7-4389-8f19-8a31f5a0a339" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5799" - ], - "x-ms-correlation-request-id": [ - "c112c4bc-9f42-4573-85fe-ed5dfb6e70b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221711Z:c112c4bc-9f42-4573-85fe-ed5dfb6e70b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "18f39483-a9d8-4943-ae22-be99d38fafbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5798" - ], - "x-ms-correlation-request-id": [ - "deb7d897-3e7b-49c2-9af2-a0b953a46573" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221711Z:deb7d897-3e7b-49c2-9af2-a0b953a46573" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb07a84f-7aca-48d5-a224-6a671e97db4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5797" - ], - "x-ms-correlation-request-id": [ - "aaff07c5-76ce-458c-bfbe-f2807e77fb4f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221711Z:aaff07c5-76ce-458c-bfbe-f2807e77fb4f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75fdc4d4-b83f-41b0-8b8d-7e79528ffb6b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5796" - ], - "x-ms-correlation-request-id": [ - "853114e8-b6c4-4b61-be4e-ce9d268a70dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221711Z:853114e8-b6c4-4b61-be4e-ce9d268a70dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2828f47b-2335-4d48-8ad2-7240012e7c1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5795" - ], - "x-ms-correlation-request-id": [ - "25f5d7b6-e596-484e-851e-bd9f21ce01b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221712Z:25f5d7b6-e596-484e-851e-bd9f21ce01b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93b90839-e676-4c55-99ec-b189a5739875" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5794" - ], - "x-ms-correlation-request-id": [ - "395f089b-b699-48cd-8642-57e14acd5044" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221712Z:395f089b-b699-48cd-8642-57e14acd5044" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99deca43-f312-452c-909a-3ab05cecd0b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5793" - ], - "x-ms-correlation-request-id": [ - "1e17ec2f-3852-4e36-bbf1-70d7c6ed4ea5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221712Z:1e17ec2f-3852-4e36-bbf1-70d7c6ed4ea5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f09fbfdf-08ac-42b3-bad2-24cf636fcf39" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5792" - ], - "x-ms-correlation-request-id": [ - "4271c89b-1e7b-403a-b5eb-3b83f5b6e2c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221712Z:4271c89b-1e7b-403a-b5eb-3b83f5b6e2c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4fdc496c-6f81-4018-a94a-1a16fe7e2279" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5791" - ], - "x-ms-correlation-request-id": [ - "406288d0-5468-41a7-b175-36da23604f78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221712Z:406288d0-5468-41a7-b175-36da23604f78" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f52a0f13-92db-4d53-9ede-68b85d4d020a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5790" - ], - "x-ms-correlation-request-id": [ - "7058ac5c-859e-4437-a767-f449752084f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221712Z:7058ac5c-859e-4437-a767-f449752084f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f32236c-e83b-43eb-8099-c85f0764ff37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5789" - ], - "x-ms-correlation-request-id": [ - "a2f74bba-2d09-437a-9ff9-caa17183f625" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221713Z:a2f74bba-2d09-437a-9ff9-caa17183f625" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1915911-1527-4a05-b6f0-375fd836bd25" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5788" - ], - "x-ms-correlation-request-id": [ - "31d27e60-5ca8-4e70-8cec-55659c7e81fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221713Z:31d27e60-5ca8-4e70-8cec-55659c7e81fa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9d5a61f-837d-42f3-8cc7-577dbbff1fb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5787" - ], - "x-ms-correlation-request-id": [ - "2ded11f6-1d19-4dab-8c2d-7776f962ba66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221713Z:2ded11f6-1d19-4dab-8c2d-7776f962ba66" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fcb8cb34-7130-43e2-9015-5651881a3067" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5786" - ], - "x-ms-correlation-request-id": [ - "e42f8a84-79ca-4e35-addd-8abcca95cb92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221713Z:e42f8a84-79ca-4e35-addd-8abcca95cb92" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b9b47a7d-e68a-4259-9abf-be4469f27f14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5785" - ], - "x-ms-correlation-request-id": [ - "53406669-343c-47a4-a56a-9d8460c65eda" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221713Z:53406669-343c-47a4-a56a-9d8460c65eda" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1aed5d59-e1ef-4099-9015-37fc9d9c4aae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5784" - ], - "x-ms-correlation-request-id": [ - "153f1cc2-4ea3-492e-9572-b4dc61dde963" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221713Z:153f1cc2-4ea3-492e-9572-b4dc61dde963" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0593d584-9ef3-40f0-aab9-dda1d0021ac3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5783" - ], - "x-ms-correlation-request-id": [ - "a7dab795-92a8-420d-88d9-590f09f6e0f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221713Z:a7dab795-92a8-420d-88d9-590f09f6e0f3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e656eb82-857a-47d7-a7cd-3480a045d3a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5782" - ], - "x-ms-correlation-request-id": [ - "3c213d9c-94ac-4918-a006-dd8d10c6fbaf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221714Z:3c213d9c-94ac-4918-a006-dd8d10c6fbaf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ca348c8-888d-49bf-beb3-59aeff37a56c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5781" - ], - "x-ms-correlation-request-id": [ - "f0fbba63-56da-4890-93ab-d239474b8bb3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221714Z:f0fbba63-56da-4890-93ab-d239474b8bb3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5cf69223-9c78-4fba-a068-f3efcd65b965" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5780" - ], - "x-ms-correlation-request-id": [ - "ed006b1f-690a-44cb-9353-bab919e3a4a7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221714Z:ed006b1f-690a-44cb-9353-bab919e3a4a7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08ecf465-e5f2-4017-bff4-9ed1e1ed8667" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5779" - ], - "x-ms-correlation-request-id": [ - "cfa7f1ab-cd0e-465b-8849-444b3a064847" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221714Z:cfa7f1ab-cd0e-465b-8849-444b3a064847" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9578842-88c2-4ed1-9062-c9452a4f5cb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5778" - ], - "x-ms-correlation-request-id": [ - "878d584c-fbc6-4ca3-85ea-3cc6a0f5c464" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221714Z:878d584c-fbc6-4ca3-85ea-3cc6a0f5c464" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "15099aa0-1619-4e22-837f-31839974715b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5777" - ], - "x-ms-correlation-request-id": [ - "f027b702-f6b4-4ef1-a2c9-6c67ac7aa257" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221715Z:f027b702-f6b4-4ef1-a2c9-6c67ac7aa257" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "852ef998-8aee-400b-a22f-9ef7854b4f39" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5776" - ], - "x-ms-correlation-request-id": [ - "a9d08681-c4c0-47cd-9b40-931934703f2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221715Z:a9d08681-c4c0-47cd-9b40-931934703f2e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "80aa8789-8fee-4e3e-a29f-763d8ee283c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5775" - ], - "x-ms-correlation-request-id": [ - "32cbcd5a-689f-4fef-b94e-560344dae7a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221715Z:32cbcd5a-689f-4fef-b94e-560344dae7a6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42b69ef6-7aa4-48c5-a6be-d814d542e293" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5774" - ], - "x-ms-correlation-request-id": [ - "d105b3cd-c383-426b-8b70-1a61c7689db5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221715Z:d105b3cd-c383-426b-8b70-1a61c7689db5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d604733e-dc27-4fa4-b580-76e39472bce4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5773" - ], - "x-ms-correlation-request-id": [ - "07164510-b9c2-4daf-a2d8-c36e4c3c1975" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221715Z:07164510-b9c2-4daf-a2d8-c36e4c3c1975" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e158c10-3546-419b-88df-248062cea295" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5772" - ], - "x-ms-correlation-request-id": [ - "d16876ef-43ae-4fdd-a829-64c867c1dca9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221716Z:d16876ef-43ae-4fdd-a829-64c867c1dca9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "726ab18b-21d6-4e09-959f-63fc0ded9162" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5771" - ], - "x-ms-correlation-request-id": [ - "0126ebb9-04fe-4133-9c37-6c98d8db0029" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221716Z:0126ebb9-04fe-4133-9c37-6c98d8db0029" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac39565f-8c97-46bc-9872-2e5242852aff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5770" - ], - "x-ms-correlation-request-id": [ - "88bd5632-12f5-4f16-b26e-1bbb80768179" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221716Z:88bd5632-12f5-4f16-b26e-1bbb80768179" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7636d428-5b28-4869-83af-66da9e8221f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5769" - ], - "x-ms-correlation-request-id": [ - "dd64aef4-e13b-48de-9493-4717d5a3b661" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221716Z:dd64aef4-e13b-48de-9493-4717d5a3b661" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ecd78ac0-7b34-4347-8121-fa6aed35016a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5768" - ], - "x-ms-correlation-request-id": [ - "a662e3eb-a3c3-49ad-8846-ab6ad5e33ea9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221716Z:a662e3eb-a3c3-49ad-8846-ab6ad5e33ea9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca9cc578-84ca-4803-9d42-8a7baa716ab4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5767" - ], - "x-ms-correlation-request-id": [ - "11004602-29b4-417d-8c4e-58e70300318c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221717Z:11004602-29b4-417d-8c4e-58e70300318c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75137af0-60fd-4c90-bd9d-d04f0c8d32a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5766" - ], - "x-ms-correlation-request-id": [ - "5e0a966a-a667-4290-bd81-392faf94c75e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221717Z:5e0a966a-a667-4290-bd81-392faf94c75e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1eccecc-bf8b-4751-b22e-3ac8262b7cde" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5765" - ], - "x-ms-correlation-request-id": [ - "29d5e471-e3ab-425a-94d2-5d09477bd332" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221717Z:29d5e471-e3ab-425a-94d2-5d09477bd332" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f2a997b-7ef2-471c-8dc8-68fe7ad2a83e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5764" - ], - "x-ms-correlation-request-id": [ - "003d95e6-abc7-4ac5-8c71-25d4db2380f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221717Z:003d95e6-abc7-4ac5-8c71-25d4db2380f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99bb7c60-94b3-4236-a9d7-a38b5f3e7dee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5763" - ], - "x-ms-correlation-request-id": [ - "94b546b3-f4bd-4543-a5b9-2d23ad5d5082" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221717Z:94b546b3-f4bd-4543-a5b9-2d23ad5d5082" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bb52fccd-4356-402e-a29b-1309fd374385" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5762" - ], - "x-ms-correlation-request-id": [ - "ba4dea44-29b0-44f7-95a5-b83d2cf84d16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221718Z:ba4dea44-29b0-44f7-95a5-b83d2cf84d16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0acd2aee-f382-4e60-a193-3e956b9680a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5761" - ], - "x-ms-correlation-request-id": [ - "08e3d173-90ad-4f57-bf41-8b8d5b7329cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221718Z:08e3d173-90ad-4f57-bf41-8b8d5b7329cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43e02742-ad09-4b6d-b172-ffbeaf6ab968" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5760" - ], - "x-ms-correlation-request-id": [ - "0fbc8acf-12f7-4002-baae-34e6c264a683" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221718Z:0fbc8acf-12f7-4002-baae-34e6c264a683" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c25030aa-4975-4d58-89a4-c0bf26c2558c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5759" - ], - "x-ms-correlation-request-id": [ - "54a7ddff-de6a-4ad0-b58e-8ca072e4932d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221718Z:54a7ddff-de6a-4ad0-b58e-8ca072e4932d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b83354e1-c047-4b41-9885-22a1a6f4a7cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5758" - ], - "x-ms-correlation-request-id": [ - "f7e5211d-6846-4a91-941f-6e9b923d02d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221718Z:f7e5211d-6846-4a91-941f-6e9b923d02d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4042503-6838-4cfd-a08d-ac3b5bdbc58b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5757" - ], - "x-ms-correlation-request-id": [ - "c73525d0-0f40-45cc-9202-642efdbbf2d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221718Z:c73525d0-0f40-45cc-9202-642efdbbf2d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3907b5c-d3f2-47ec-a61e-782bd8dd56fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5756" - ], - "x-ms-correlation-request-id": [ - "e5684ddf-a7cb-4e1a-880f-0b65b26c230a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221719Z:e5684ddf-a7cb-4e1a-880f-0b65b26c230a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd0f7e76-2fef-43b0-8afb-a171db15b0f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5755" - ], - "x-ms-correlation-request-id": [ - "ebeba665-4013-4c66-8bb1-4d0d866efce2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221719Z:ebeba665-4013-4c66-8bb1-4d0d866efce2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bf8714cf-aec9-4b13-85e5-1560e0bf9e7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5754" - ], - "x-ms-correlation-request-id": [ - "dbec1c3e-f813-4198-a79e-530da1c57c47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221719Z:dbec1c3e-f813-4198-a79e-530da1c57c47" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3fb009c5-5de8-4473-8398-01c854b8189c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5753" - ], - "x-ms-correlation-request-id": [ - "85e2676f-f323-43ba-b207-cbba4aa7a290" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221719Z:85e2676f-f323-43ba-b207-cbba4aa7a290" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8268f8a9-c6a4-41fa-be8b-7f42a11b1617" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5752" - ], - "x-ms-correlation-request-id": [ - "58296a60-e88b-4dc2-a869-ec13ebf26314" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221719Z:58296a60-e88b-4dc2-a869-ec13ebf26314" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed5ecadc-08cb-4378-a73d-ebadf73008c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5751" - ], - "x-ms-correlation-request-id": [ - "9de10dda-e32f-4a64-b508-1f2764661315" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221720Z:9de10dda-e32f-4a64-b508-1f2764661315" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ada7d51b-6294-4522-81ab-f539ab63be11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5750" - ], - "x-ms-correlation-request-id": [ - "dc650856-b8ba-4f2d-9d23-9f3cda306c29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221720Z:dc650856-b8ba-4f2d-9d23-9f3cda306c29" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7845291-2d12-498e-b231-519b3dd6e04e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5749" - ], - "x-ms-correlation-request-id": [ - "c6d99408-c199-489a-a905-94283b06440c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221720Z:c6d99408-c199-489a-a905-94283b06440c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9433af66-44a2-48c1-bada-dbc01932d368" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5748" - ], - "x-ms-correlation-request-id": [ - "6762173e-1428-4c99-809c-1d7e91481e39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221720Z:6762173e-1428-4c99-809c-1d7e91481e39" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47b60c31-67dd-40c8-af7b-2c3b73775260" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5747" - ], - "x-ms-correlation-request-id": [ - "0c83e465-bccd-4ded-a0de-67517650b0f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221720Z:0c83e465-bccd-4ded-a0de-67517650b0f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38474e67-a249-4c86-b953-d76d4cf320f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5746" - ], - "x-ms-correlation-request-id": [ - "a11c7662-b16d-48b4-a258-eee2ea9d41a4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221721Z:a11c7662-b16d-48b4-a258-eee2ea9d41a4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41fb9558-b027-423e-af0a-55f90759bec7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5745" - ], - "x-ms-correlation-request-id": [ - "9bff1786-79d8-40bd-9c74-7cf26e51cf17" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221721Z:9bff1786-79d8-40bd-9c74-7cf26e51cf17" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "426126f3-7839-4b4d-81a9-7af7778b80f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5744" - ], - "x-ms-correlation-request-id": [ - "b1d6fbfc-dfc0-4769-84a1-458ca401de9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221721Z:b1d6fbfc-dfc0-4769-84a1-458ca401de9d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10f2711d-9283-4166-9cb6-1607c65698bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5743" - ], - "x-ms-correlation-request-id": [ - "599d638f-bf39-40d4-ab4f-30bddbeac8d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221721Z:599d638f-bf39-40d4-ab4f-30bddbeac8d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a66c4fae-42ac-4ac1-acd7-3f228941a1ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5742" - ], - "x-ms-correlation-request-id": [ - "bb9cad10-55ee-4c91-a763-456e00f0ceb4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221721Z:bb9cad10-55ee-4c91-a763-456e00f0ceb4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b46bb363-99ac-481e-a832-9a5fc6e40a9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5741" - ], - "x-ms-correlation-request-id": [ - "d27b1963-ef7f-4c58-b88c-2772f36876ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221721Z:d27b1963-ef7f-4c58-b88c-2772f36876ff" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "138c3725-bf98-4c49-9e7d-1f2d27484dac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5740" - ], - "x-ms-correlation-request-id": [ - "e2692299-8c6e-48d0-86d8-57271c4af31a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221722Z:e2692299-8c6e-48d0-86d8-57271c4af31a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8c41587-5afc-46a2-a5ed-06e40d89a2e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5739" - ], - "x-ms-correlation-request-id": [ - "3ecc25a0-5ec1-4e62-bce1-eed97ed4ee90" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221722Z:3ecc25a0-5ec1-4e62-bce1-eed97ed4ee90" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c92456f9-b276-47fb-9aaf-5441dcc90234" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5738" - ], - "x-ms-correlation-request-id": [ - "0df42520-6812-4e93-bf24-3e1c0b5b365a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221722Z:0df42520-6812-4e93-bf24-3e1c0b5b365a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d23db0d-e045-4076-ac3b-7af466dedcb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5737" - ], - "x-ms-correlation-request-id": [ - "29004345-766e-46ae-a9a8-255de6175634" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221722Z:29004345-766e-46ae-a9a8-255de6175634" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa6ff29e-7781-4704-836c-f6d062319f28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5736" - ], - "x-ms-correlation-request-id": [ - "ff9f8f4e-ecf7-4769-bef2-9b53b7f342d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221722Z:ff9f8f4e-ecf7-4769-bef2-9b53b7f342d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d313c76-a72b-4fde-9f67-7a54c94d6048" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5735" - ], - "x-ms-correlation-request-id": [ - "0c9b5503-6ddb-4da7-b010-198b247be270" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221722Z:0c9b5503-6ddb-4da7-b010-198b247be270" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "162ce748-c87a-4b05-a5af-3034df037ac5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5734" - ], - "x-ms-correlation-request-id": [ - "2aedd2f8-dd04-4fa8-ac7d-30bb00de18bd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221723Z:2aedd2f8-dd04-4fa8-ac7d-30bb00de18bd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fbe481b2-6b58-4222-844e-12295b43d42e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5733" - ], - "x-ms-correlation-request-id": [ - "deb2395b-9892-4386-92bd-5bc7f72756ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221723Z:deb2395b-9892-4386-92bd-5bc7f72756ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ca4b84d-0cd3-47bf-8ead-28f3d9f4e8bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5732" - ], - "x-ms-correlation-request-id": [ - "c9c15477-8b0f-4c74-b6f7-3a705559548c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221723Z:c9c15477-8b0f-4c74-b6f7-3a705559548c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ac963dd-c8ea-4062-ba5b-c8074a746c89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5731" - ], - "x-ms-correlation-request-id": [ - "51cd3337-9fe2-4e32-85a5-77f66cd28954" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221723Z:51cd3337-9fe2-4e32-85a5-77f66cd28954" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b2517ef-a2d0-46ce-85c7-dd6218690da1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5730" - ], - "x-ms-correlation-request-id": [ - "13477d6b-3c5f-4cc2-bd85-4cfe5662ec6e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221723Z:13477d6b-3c5f-4cc2-bd85-4cfe5662ec6e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee944630-d639-4444-8b6d-094b915fe539" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5729" - ], - "x-ms-correlation-request-id": [ - "6e34dbda-3158-493a-acd9-22ad06640358" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221723Z:6e34dbda-3158-493a-acd9-22ad06640358" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a41ffd43-489a-4697-8eaa-6f83fa8f4ef2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5728" - ], - "x-ms-correlation-request-id": [ - "2ca71320-acdb-4694-8876-19d2a7ef6033" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221724Z:2ca71320-acdb-4694-8876-19d2a7ef6033" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e42c5169-ec4b-429d-b7ba-f0f832043e0a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5727" - ], - "x-ms-correlation-request-id": [ - "3a648f2d-7f70-43ae-a8b8-e4b4b50e3642" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221724Z:3a648f2d-7f70-43ae-a8b8-e4b4b50e3642" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b425a3e2-2fa5-4236-bbfc-ac03aad9adee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5726" - ], - "x-ms-correlation-request-id": [ - "d86c5789-e65c-4da8-a2cc-909a221ab0ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221724Z:d86c5789-e65c-4da8-a2cc-909a221ab0ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ac621903-7c10-45cc-80a9-a55e2ba72921" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5725" - ], - "x-ms-correlation-request-id": [ - "746410cd-749c-4c4e-ba36-db9115012538" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221724Z:746410cd-749c-4c4e-ba36-db9115012538" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "564bd9e2-97d3-4473-a379-26c3678f8355" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5724" - ], - "x-ms-correlation-request-id": [ - "1f34ab47-63eb-4af6-8db0-94d5a6cac29a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221724Z:1f34ab47-63eb-4af6-8db0-94d5a6cac29a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "647cfee7-886c-43e9-8383-eb5fbfc8a739" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5723" - ], - "x-ms-correlation-request-id": [ - "35bf8332-d63d-4f10-a4ad-2b7fc356a58b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221724Z:35bf8332-d63d-4f10-a4ad-2b7fc356a58b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75519098-f7e0-44c0-9f71-23219fda3cdf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5722" - ], - "x-ms-correlation-request-id": [ - "23321222-55ad-42c4-9aff-7ae1d58aa3ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221725Z:23321222-55ad-42c4-9aff-7ae1d58aa3ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33c9321d-fc43-480a-9bc3-b36b9e5b58d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5721" - ], - "x-ms-correlation-request-id": [ - "e43a40e4-397c-486e-9e7e-163bc87ba714" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221725Z:e43a40e4-397c-486e-9e7e-163bc87ba714" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd0a2cf8-2893-4d5b-adfc-aaf8e10c8763" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5720" - ], - "x-ms-correlation-request-id": [ - "ceb51a64-7e3e-4186-a0d2-28639559b79e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221725Z:ceb51a64-7e3e-4186-a0d2-28639559b79e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37d494d1-866f-41a7-86b4-69713c2bdfdb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5719" - ], - "x-ms-correlation-request-id": [ - "243dd347-9414-463d-bc19-8b0ac7d77e64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221725Z:243dd347-9414-463d-bc19-8b0ac7d77e64" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b98d50e3-3770-4c9c-864e-32cc7fe76ffa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5718" - ], - "x-ms-correlation-request-id": [ - "f442a48e-3372-4cf1-a7fe-263f1f407841" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221725Z:f442a48e-3372-4cf1-a7fe-263f1f407841" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d480f7d-0f9a-4623-ba57-db48999a1e1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5717" - ], - "x-ms-correlation-request-id": [ - "5cfac245-c531-43ae-8e09-5a1e025e4fda" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221725Z:5cfac245-c531-43ae-8e09-5a1e025e4fda" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "888b93d9-32a2-4b63-8a76-d02792c86c9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5716" - ], - "x-ms-correlation-request-id": [ - "3d303197-9db0-4b3a-8642-a6f8be97aa02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221726Z:3d303197-9db0-4b3a-8642-a6f8be97aa02" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b9feff7d-8326-421a-9f1c-afaf465fadde" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5715" - ], - "x-ms-correlation-request-id": [ - "886bc419-d260-400e-9614-5f302cb03160" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221726Z:886bc419-d260-400e-9614-5f302cb03160" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0666ba41-e5ae-4c42-815f-4f76e552769d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5714" - ], - "x-ms-correlation-request-id": [ - "da911599-125d-4a8f-a2c4-cccd14b5c29a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221726Z:da911599-125d-4a8f-a2c4-cccd14b5c29a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d571f383-5b63-4625-8542-4f222a017fd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5713" - ], - "x-ms-correlation-request-id": [ - "68319bd5-206f-4fdd-972e-8198465c8e64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221726Z:68319bd5-206f-4fdd-972e-8198465c8e64" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a58ef5a5-a849-4f03-87e1-323a2a4379e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5712" - ], - "x-ms-correlation-request-id": [ - "b950fe55-7a77-408f-9c46-a939ebc5d3ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221726Z:b950fe55-7a77-408f-9c46-a939ebc5d3ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0366717-7762-4926-8870-04cd63785c3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5711" - ], - "x-ms-correlation-request-id": [ - "1f7fc242-0bb6-40f8-bcc2-0deca8e12c49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221727Z:1f7fc242-0bb6-40f8-bcc2-0deca8e12c49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b9364e79-480c-4505-8506-515b0bec1d87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5710" - ], - "x-ms-correlation-request-id": [ - "488229c0-16d8-46ea-ad0e-abb98e44662f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221727Z:488229c0-16d8-46ea-ad0e-abb98e44662f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7011495c-7cfa-4565-a37b-6cea7d2f2ba1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5709" - ], - "x-ms-correlation-request-id": [ - "6c2dde5f-7f58-4ec0-b089-8bfdbb835090" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221727Z:6c2dde5f-7f58-4ec0-b089-8bfdbb835090" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d0528e7-9059-4f3d-8421-c5b1704b141b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5708" - ], - "x-ms-correlation-request-id": [ - "e86a7b02-43f3-4f74-b317-7657e3b562f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221727Z:e86a7b02-43f3-4f74-b317-7657e3b562f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "04f4df3f-13a8-4471-966e-c231cd38d4c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5707" - ], - "x-ms-correlation-request-id": [ - "514c07d8-7307-4404-9f01-390f010d9801" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221727Z:514c07d8-7307-4404-9f01-390f010d9801" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f51220d2-bdcf-4d27-b5fe-aac11c87974d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5706" - ], - "x-ms-correlation-request-id": [ - "24261c35-fa9b-4fad-9ad8-633147214969" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221727Z:24261c35-fa9b-4fad-9ad8-633147214969" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d4bfeef-c9a6-46a6-ad34-9024a61e013b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5705" - ], - "x-ms-correlation-request-id": [ - "2d18cb9b-c934-46e4-8a87-af19f5d45e6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221728Z:2d18cb9b-c934-46e4-8a87-af19f5d45e6f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f774c652-d691-4234-8ed6-2abe3d0b2e74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5704" - ], - "x-ms-correlation-request-id": [ - "a6edc508-7091-4e21-ae55-b738d0236996" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221728Z:a6edc508-7091-4e21-ae55-b738d0236996" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7a29f9d0-0eca-4637-8246-96c2e82398da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5703" - ], - "x-ms-correlation-request-id": [ - "430544d2-79a9-44e5-bc60-dcbad384fae2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221728Z:430544d2-79a9-44e5-bc60-dcbad384fae2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c1036a2-f6a2-4ff4-81ed-7d942442d9da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5702" - ], - "x-ms-correlation-request-id": [ - "debb774b-223a-49e5-a034-50d9d7415b43" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221728Z:debb774b-223a-49e5-a034-50d9d7415b43" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08f3e266-f51b-4c04-9569-e18c1b82265f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5701" - ], - "x-ms-correlation-request-id": [ - "f8e769bb-f32b-4c04-bc61-c8d72eb4dcb0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221728Z:f8e769bb-f32b-4c04-bc61-c8d72eb4dcb0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d08f1f15-d4fb-4dd5-ad09-bd7a07d4af2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5700" - ], - "x-ms-correlation-request-id": [ - "b1f708d2-c18e-465a-bdd1-4e2906f68d25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221729Z:b1f708d2-c18e-465a-bdd1-4e2906f68d25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "47b1935d-488e-4470-8c1e-8217b7991d65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5699" - ], - "x-ms-correlation-request-id": [ - "cf84a16d-5d32-485a-85ab-468212fd1519" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221729Z:cf84a16d-5d32-485a-85ab-468212fd1519" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6a07eb9-8429-4969-ba06-b64ffaed5505" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5698" - ], - "x-ms-correlation-request-id": [ - "e6a6c4da-074d-404e-a51b-e00010c31ad1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221729Z:e6a6c4da-074d-404e-a51b-e00010c31ad1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9006115c-8360-4c47-83c6-77dde4c14bfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5697" - ], - "x-ms-correlation-request-id": [ - "99bd831f-8acc-4724-adc2-1226b02ee7e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221729Z:99bd831f-8acc-4724-adc2-1226b02ee7e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8996d26-9093-4fca-bdb1-7076a4124605" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5696" - ], - "x-ms-correlation-request-id": [ - "07289be4-3b9a-47e8-a65f-52b85cb47969" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221729Z:07289be4-3b9a-47e8-a65f-52b85cb47969" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "64c527b8-c28d-4145-bd90-73f7f791bfd2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5695" - ], - "x-ms-correlation-request-id": [ - "2107659e-f2eb-4cd9-9c7d-cbfc3ecdd26c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221729Z:2107659e-f2eb-4cd9-9c7d-cbfc3ecdd26c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6682a217-d8f4-4d70-a3a2-6bb208585a1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5694" - ], - "x-ms-correlation-request-id": [ - "8860d31b-7c49-449f-ac5e-cc06debbe4e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221729Z:8860d31b-7c49-449f-ac5e-cc06debbe4e5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0e992a9-b137-4c86-93cf-f514a0509b37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5693" - ], - "x-ms-correlation-request-id": [ - "75dfeaa5-66c7-4e10-b81b-d3643a27595f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221730Z:75dfeaa5-66c7-4e10-b81b-d3643a27595f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6e0098b-5bfd-478d-ac66-8946576d17b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5692" - ], - "x-ms-correlation-request-id": [ - "c5f2bb7b-2fff-499e-9dfd-26fa9f1911ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221730Z:c5f2bb7b-2fff-499e-9dfd-26fa9f1911ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "723dd581-2711-4bee-896b-01790f7b91e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5691" - ], - "x-ms-correlation-request-id": [ - "0cda477f-8db3-47e4-8d16-84391b3571d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221730Z:0cda477f-8db3-47e4-8d16-84391b3571d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43c8b0c8-d487-48e0-ab49-7e067008ec8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5690" - ], - "x-ms-correlation-request-id": [ - "5c9b980a-e687-40b2-b422-6e406b5d45e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221730Z:5c9b980a-e687-40b2-b422-6e406b5d45e4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "460da9a3-2ac5-4f97-a4bc-06f8b8477243" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5689" - ], - "x-ms-correlation-request-id": [ - "bd742770-bba7-496f-9762-b79a5a054531" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221730Z:bd742770-bba7-496f-9762-b79a5a054531" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "983cfc68-ad81-494f-bd9c-f26e1b0b9cac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5688" - ], - "x-ms-correlation-request-id": [ - "60fce146-ba8e-40c1-9722-ba3713e8415b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221730Z:60fce146-ba8e-40c1-9722-ba3713e8415b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "066dbdfd-24df-4ef7-a19e-01fd675d846e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5687" - ], - "x-ms-correlation-request-id": [ - "281a8315-6fc3-470e-bbd7-88250f0d02ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221731Z:281a8315-6fc3-470e-bbd7-88250f0d02ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "894f7bbc-a324-4566-98ff-d00feeb8b53f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5686" - ], - "x-ms-correlation-request-id": [ - "4c06261c-5cbe-4195-bf37-ca7f6e980046" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221731Z:4c06261c-5cbe-4195-bf37-ca7f6e980046" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bbf9034-3f5a-4224-b9d6-61d0fa239677" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5685" - ], - "x-ms-correlation-request-id": [ - "b509398f-928b-4554-b758-25b787c903b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221731Z:b509398f-928b-4554-b758-25b787c903b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da3b9a50-93a0-40e3-8883-932b23fe64e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5684" - ], - "x-ms-correlation-request-id": [ - "9e9fd1a6-e26a-4294-ad5b-d7ac8bd09490" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221731Z:9e9fd1a6-e26a-4294-ad5b-d7ac8bd09490" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f003d3df-96f5-425d-a733-51e6d7a7705a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5683" - ], - "x-ms-correlation-request-id": [ - "9b85a1e2-248c-46e8-af39-8d509cadb9a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221731Z:9b85a1e2-248c-46e8-af39-8d509cadb9a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "58431716-7a1f-4af7-8f7a-97a799846c4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5682" - ], - "x-ms-correlation-request-id": [ - "794dd1f8-9af7-4785-b30f-adb3ac2d454a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221731Z:794dd1f8-9af7-4785-b30f-adb3ac2d454a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "447db56f-6a3b-43e3-868b-f125989bf0ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5681" - ], - "x-ms-correlation-request-id": [ - "21025c81-72f2-439e-8616-0edce23820e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221732Z:21025c81-72f2-439e-8616-0edce23820e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24e5ccdb-a43c-4f7f-aebe-f5e29c580202" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5680" - ], - "x-ms-correlation-request-id": [ - "f51ae1e5-6fe5-4cff-8c86-30c917702f37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221732Z:f51ae1e5-6fe5-4cff-8c86-30c917702f37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99e6e815-66f3-4da0-89e8-f2555ae97d50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5679" - ], - "x-ms-correlation-request-id": [ - "a9722eaf-f5d1-4c46-a1a1-bf639f87def3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221732Z:a9722eaf-f5d1-4c46-a1a1-bf639f87def3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5a3fa0b-4a59-44f5-8f93-40fb5580f4a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5678" - ], - "x-ms-correlation-request-id": [ - "f66d9935-d77e-4f64-b667-80e91bc5edf2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221732Z:f66d9935-d77e-4f64-b667-80e91bc5edf2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98c89304-ec9e-448b-b8ba-e61d4dc5b697" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5677" - ], - "x-ms-correlation-request-id": [ - "9a521e59-a46e-469b-a38f-8cc65a576935" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221732Z:9a521e59-a46e-469b-a38f-8cc65a576935" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1dbc3949-cb2e-4482-aad5-451067f6cfdc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5676" - ], - "x-ms-correlation-request-id": [ - "a241555c-d5de-4555-b615-559e430c7eab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221732Z:a241555c-d5de-4555-b615-559e430c7eab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67a45f1b-dad0-4a0c-9f7b-a2e7396e2a6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5675" - ], - "x-ms-correlation-request-id": [ - "7b400fb2-a46c-4bea-bc47-d968700b12a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221733Z:7b400fb2-a46c-4bea-bc47-d968700b12a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eccbb370-b9b2-413c-a1dc-b9bd64876c1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5674" - ], - "x-ms-correlation-request-id": [ - "2385b345-2250-4c63-a170-1baa0d8f1bf5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221733Z:2385b345-2250-4c63-a170-1baa0d8f1bf5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "32be7fa7-45da-438b-8687-3adaa344bf65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5673" - ], - "x-ms-correlation-request-id": [ - "79d0f3e7-364f-4f13-ae85-bcecb23bd66e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221733Z:79d0f3e7-364f-4f13-ae85-bcecb23bd66e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2cb80236-1c05-45ce-ab95-18a2ba596c28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5672" - ], - "x-ms-correlation-request-id": [ - "a5fd9412-6463-458a-ad80-effb7691f996" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221733Z:a5fd9412-6463-458a-ad80-effb7691f996" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a531e95-e892-42b6-881c-4d84cd06ebfb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5671" - ], - "x-ms-correlation-request-id": [ - "172e5636-a1e4-4bbd-8c86-04861faea174" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221733Z:172e5636-a1e4-4bbd-8c86-04861faea174" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea17c9bf-e871-4055-a919-4c225da9fe0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5670" - ], - "x-ms-correlation-request-id": [ - "0346d243-0321-41c7-aff6-c592a1719dd6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221733Z:0346d243-0321-41c7-aff6-c592a1719dd6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e008fb11-4cf6-4454-9c65-84ddf0edc180" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5669" - ], - "x-ms-correlation-request-id": [ - "0211f71a-209b-490c-9174-eb0c49c0401a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221733Z:0211f71a-209b-490c-9174-eb0c49c0401a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1360a7f2-4339-479c-9688-c326bfddb685" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5668" - ], - "x-ms-correlation-request-id": [ - "e7a1afcf-f5a7-48bd-9863-1a70d19e09d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221734Z:e7a1afcf-f5a7-48bd-9863-1a70d19e09d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13aa28ed-c664-49ac-ae0b-0c5e8c49b549" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5667" - ], - "x-ms-correlation-request-id": [ - "82ce55b1-8a2a-4b54-9bf6-254e14e82e29" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221734Z:82ce55b1-8a2a-4b54-9bf6-254e14e82e29" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eaef5e94-a7cb-484a-90c4-6a110c6d133e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5666" - ], - "x-ms-correlation-request-id": [ - "64aea122-683e-4a0d-86ef-76919b9e2818" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221734Z:64aea122-683e-4a0d-86ef-76919b9e2818" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5a7e49d-1786-4558-aa1b-607c54341d26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5665" - ], - "x-ms-correlation-request-id": [ - "896c983c-4084-4b17-9f8d-c36f447c829c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221734Z:896c983c-4084-4b17-9f8d-c36f447c829c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f3b7ce2-e140-4837-82a4-6cd79e2c60f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5664" - ], - "x-ms-correlation-request-id": [ - "afafc8d9-98b0-4756-b673-476c98a4ca3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221734Z:afafc8d9-98b0-4756-b673-476c98a4ca3d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f355370c-55a8-4ab3-9606-dfce2a8dbd16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5663" - ], - "x-ms-correlation-request-id": [ - "9e11ec03-2cae-4100-a19a-6d82e8df9e1d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221734Z:9e11ec03-2cae-4100-a19a-6d82e8df9e1d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36f2a018-b3f9-435a-8cb6-b218b233ed26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5662" - ], - "x-ms-correlation-request-id": [ - "f9f0c94f-9848-43ca-8887-1548a65a3534" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221735Z:f9f0c94f-9848-43ca-8887-1548a65a3534" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d72b689f-8584-4553-86f1-ae58c0c7d310" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5661" - ], - "x-ms-correlation-request-id": [ - "5b4d4ad1-076a-444c-8bb7-60c79c2c6ed3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221735Z:5b4d4ad1-076a-444c-8bb7-60c79c2c6ed3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48bbe2d0-c158-4920-996e-ba6dfbb66a66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5660" - ], - "x-ms-correlation-request-id": [ - "da958112-ff99-41b0-9cb8-4cb03d4aa681" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221735Z:da958112-ff99-41b0-9cb8-4cb03d4aa681" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "301d8661-2d50-48e6-bb7d-e22fd20092d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5659" - ], - "x-ms-correlation-request-id": [ - "f9facb3d-dbfc-4c85-89dd-3b7223d00f1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221735Z:f9facb3d-dbfc-4c85-89dd-3b7223d00f1e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6192730a-7e8c-48d4-9d44-7ccd649e0532" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5658" - ], - "x-ms-correlation-request-id": [ - "4b33b96c-80dc-465a-903e-4d9243e6f8e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221735Z:4b33b96c-80dc-465a-903e-4d9243e6f8e1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "436c15ac-0cc7-4d06-a3dc-7286a71f160e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5657" - ], - "x-ms-correlation-request-id": [ - "5130fc27-43a6-4712-8d40-cd80ba68544a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221735Z:5130fc27-43a6-4712-8d40-cd80ba68544a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fdbd792e-194e-4210-b38e-20113bbad453" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5656" - ], - "x-ms-correlation-request-id": [ - "17c649b5-e15b-442e-85c1-6c2ea827dbdf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221735Z:17c649b5-e15b-442e-85c1-6c2ea827dbdf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a17c45f7-6e13-474f-8712-8c7bc4c941e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5655" - ], - "x-ms-correlation-request-id": [ - "3eca6cf7-1b70-4910-95f0-917108e2eb25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221736Z:3eca6cf7-1b70-4910-95f0-917108e2eb25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5252ed89-eed0-4bcd-b89b-d45b7302f686" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5654" - ], - "x-ms-correlation-request-id": [ - "ae152f82-a243-484f-8e10-b5d0748bfe25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221736Z:ae152f82-a243-484f-8e10-b5d0748bfe25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fbb2c89b-834f-4dcb-a2fe-e20246ce87b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5653" - ], - "x-ms-correlation-request-id": [ - "e0963ebd-5a77-4b9f-a2f3-db9e5d902042" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221736Z:e0963ebd-5a77-4b9f-a2f3-db9e5d902042" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99123010-beb9-4b7a-a792-f66d12b6046c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5652" - ], - "x-ms-correlation-request-id": [ - "d9aef5cb-797a-4587-a44d-cf7305f663da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221736Z:d9aef5cb-797a-4587-a44d-cf7305f663da" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c977aba2-ae88-410f-898b-30565d2f840d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5651" - ], - "x-ms-correlation-request-id": [ - "f9dedd31-d631-45a3-b833-90755a060a0b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221736Z:f9dedd31-d631-45a3-b833-90755a060a0b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "30a3490a-8232-460b-a28e-63ab972552ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5650" - ], - "x-ms-correlation-request-id": [ - "6becaf50-2af5-491d-8f92-74e15162065f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221736Z:6becaf50-2af5-491d-8f92-74e15162065f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a788cb1f-b73f-4e94-8c82-e48b479fea07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5649" - ], - "x-ms-correlation-request-id": [ - "e7fe885f-d607-4213-9632-991b1cc933d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221737Z:e7fe885f-d607-4213-9632-991b1cc933d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65b0bd89-d2ce-45b3-bbb4-ede427e2d30e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5648" - ], - "x-ms-correlation-request-id": [ - "cbd471be-dae8-4183-8eee-7933d9f59a36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221737Z:cbd471be-dae8-4183-8eee-7933d9f59a36" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f41a09d7-e780-48ae-abe6-53b8bb5bf33a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5647" - ], - "x-ms-correlation-request-id": [ - "19957c32-7bea-4b1e-934d-2c8125a80e28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221737Z:19957c32-7bea-4b1e-934d-2c8125a80e28" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95e83be0-5512-4213-9a25-9a0875171d04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5646" - ], - "x-ms-correlation-request-id": [ - "0e1673af-9b04-4439-9da1-2c4d53a78455" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221737Z:0e1673af-9b04-4439-9da1-2c4d53a78455" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df2426e0-f9de-4359-bf30-09bb1ab6c6c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5645" - ], - "x-ms-correlation-request-id": [ - "219db57c-7102-4270-9485-fa29b22e9c15" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221737Z:219db57c-7102-4270-9485-fa29b22e9c15" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c1bc5f68-4ba1-4736-948a-6d29848600da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5644" - ], - "x-ms-correlation-request-id": [ - "b5335ddb-a56c-45c5-9185-a9521240f623" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221737Z:b5335ddb-a56c-45c5-9185-a9521240f623" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d6763fd-e478-461c-ba1a-b2bce6936799" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5643" - ], - "x-ms-correlation-request-id": [ - "23d5cde8-c5c3-4683-a65b-afcbe677ff49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221737Z:23d5cde8-c5c3-4683-a65b-afcbe677ff49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9bc9e185-5773-48d9-861f-e9959e81d27c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5642" - ], - "x-ms-correlation-request-id": [ - "8d592f73-bb8c-4757-a150-b3a48b37bfce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221738Z:8d592f73-bb8c-4757-a150-b3a48b37bfce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2380b18f-b16e-425f-a1d9-fe4587b95eab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5641" - ], - "x-ms-correlation-request-id": [ - "17c8f0b0-73d2-460b-affb-639e7d9c5ad9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221738Z:17c8f0b0-73d2-460b-affb-639e7d9c5ad9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "873da01f-2166-4bc5-ba05-a37f7fab3af7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5640" - ], - "x-ms-correlation-request-id": [ - "e6b86ede-3fb1-4454-81f1-c6efcc5a8e25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221738Z:e6b86ede-3fb1-4454-81f1-c6efcc5a8e25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65118d05-3012-402f-808c-dd818c6e54aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5639" - ], - "x-ms-correlation-request-id": [ - "fa5ba1e1-b52b-4321-8843-3e40dcc3b3b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221738Z:fa5ba1e1-b52b-4321-8843-3e40dcc3b3b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c071491a-ed5f-44a5-a3d7-e7f226486245" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5638" - ], - "x-ms-correlation-request-id": [ - "91ad0027-94af-482a-b29c-fd3427381d64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221738Z:91ad0027-94af-482a-b29c-fd3427381d64" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d39846f3-d1c5-4369-8688-870cbd19da3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5637" - ], - "x-ms-correlation-request-id": [ - "d8ea4f01-d053-451e-8754-947e9b6ca1e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221738Z:d8ea4f01-d053-451e-8754-947e9b6ca1e4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "608bb16e-2dff-4094-9455-933fa0e41324" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5636" - ], - "x-ms-correlation-request-id": [ - "f2275d86-bb5e-4e92-baa6-b2bc41a5d312" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221739Z:f2275d86-bb5e-4e92-baa6-b2bc41a5d312" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e039a14a-0c44-4b2e-93e4-020b3f1d9c36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5635" - ], - "x-ms-correlation-request-id": [ - "43ab4e3c-3b02-4441-b80b-29d061679a05" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221739Z:43ab4e3c-3b02-4441-b80b-29d061679a05" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eb259c98-a4ac-41c2-b57e-43d0db38014b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5634" - ], - "x-ms-correlation-request-id": [ - "377bd572-e336-42bc-8572-ea75d95cf5e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221739Z:377bd572-e336-42bc-8572-ea75d95cf5e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d182d4b9-3ac5-436b-b066-2aafc6d40a99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5633" - ], - "x-ms-correlation-request-id": [ - "6ead739f-771a-4359-8a7e-07985c6f619c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221739Z:6ead739f-771a-4359-8a7e-07985c6f619c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1bc3a7eb-0653-4c5f-b28d-e0258ac63107" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5632" - ], - "x-ms-correlation-request-id": [ - "d745679d-2241-47d0-aef1-d1f5b1fec2ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221739Z:d745679d-2241-47d0-aef1-d1f5b1fec2ff" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9c6529c0-bce0-4717-9ac4-d3d79de35a65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5631" - ], - "x-ms-correlation-request-id": [ - "d77a0416-e640-46ff-bec6-ca9bda91eb4d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221739Z:d77a0416-e640-46ff-bec6-ca9bda91eb4d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3029233-460d-4f16-b336-f44592f74aac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5630" - ], - "x-ms-correlation-request-id": [ - "dce625cb-d4c9-40a7-8fe4-ea4ad2bd06b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221740Z:dce625cb-d4c9-40a7-8fe4-ea4ad2bd06b3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0ad9c2ab-a686-4fae-b6f8-e6254b507dcf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5629" - ], - "x-ms-correlation-request-id": [ - "30702a00-2d61-4ea4-b8a7-edeb5f74d699" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221740Z:30702a00-2d61-4ea4-b8a7-edeb5f74d699" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b54e1f2-b7da-4785-ab92-970a1bdf125b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5628" - ], - "x-ms-correlation-request-id": [ - "f75fd5ea-1c95-4550-8ab5-a143448e20fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221740Z:f75fd5ea-1c95-4550-8ab5-a143448e20fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8769153c-0f00-4ee9-9081-c4f0628f37e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5627" - ], - "x-ms-correlation-request-id": [ - "c71e4ddd-9e5b-440d-a15f-4545dd4d4240" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221740Z:c71e4ddd-9e5b-440d-a15f-4545dd4d4240" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ced913d8-5657-4958-9cfb-d6f14e3d20a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5626" - ], - "x-ms-correlation-request-id": [ - "9d951796-8c04-4ab4-a6f7-37417b32cdfa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221740Z:9d951796-8c04-4ab4-a6f7-37417b32cdfa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ffe76d7-fdb1-4fa2-b9db-acb371cf1bfb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5625" - ], - "x-ms-correlation-request-id": [ - "496b84e4-525e-4d9e-91e0-5e6b233e0d05" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221740Z:496b84e4-525e-4d9e-91e0-5e6b233e0d05" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ae72bc0-1c5b-4262-8ba6-264798d1878a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5624" - ], - "x-ms-correlation-request-id": [ - "5db0d4b6-0b5f-42bf-b042-d6a4984d8552" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221741Z:5db0d4b6-0b5f-42bf-b042-d6a4984d8552" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "204f84cd-2323-4cda-9a6b-bde8e604f747" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5623" - ], - "x-ms-correlation-request-id": [ - "393ebd14-5c44-4018-b5bd-1a62e53ef284" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221741Z:393ebd14-5c44-4018-b5bd-1a62e53ef284" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "696cd85b-b706-4e27-890a-8f65d365790c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5622" - ], - "x-ms-correlation-request-id": [ - "ce479d0d-6afd-465d-8266-ebc1512cdce4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221741Z:ce479d0d-6afd-465d-8266-ebc1512cdce4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6dfbe141-1c5d-441b-a456-2617edc53131" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5621" - ], - "x-ms-correlation-request-id": [ - "ce2d11b4-55b6-439a-b78f-f5f0c1f2fe51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221741Z:ce2d11b4-55b6-439a-b78f-f5f0c1f2fe51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "052223c3-011b-4eb4-bfc2-4479e4fb1d74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5620" - ], - "x-ms-correlation-request-id": [ - "10d2c9f0-23d6-410b-b145-583426121723" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221741Z:10d2c9f0-23d6-410b-b145-583426121723" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "06d5781d-4616-40ff-bcd4-74fc50aeff35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5619" - ], - "x-ms-correlation-request-id": [ - "751c3eac-e38f-4f00-b4c8-62005befcc43" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221741Z:751c3eac-e38f-4f00-b4c8-62005befcc43" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d4f3ae4-9637-42e2-8c81-b56b734c40b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5618" - ], - "x-ms-correlation-request-id": [ - "28a7eb11-5463-460c-b0f1-79a459273120" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221741Z:28a7eb11-5463-460c-b0f1-79a459273120" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd84bea4-7365-430a-ab4f-bba4c399b568" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5617" - ], - "x-ms-correlation-request-id": [ - "83bb0d4e-1f41-4304-8850-e158a48a85d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221742Z:83bb0d4e-1f41-4304-8850-e158a48a85d6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61b5d014-a33d-44e7-b73b-115fa4720941" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5616" - ], - "x-ms-correlation-request-id": [ - "a575c25d-c7d6-427b-b941-818a87f59bdf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221742Z:a575c25d-c7d6-427b-b941-818a87f59bdf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e2fa6bc-5bb7-4ea3-8ddd-11b7cbfc9d65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5615" - ], - "x-ms-correlation-request-id": [ - "51c9f82b-a90f-482a-9491-686c01f6f804" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221742Z:51c9f82b-a90f-482a-9491-686c01f6f804" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6f07927-1364-4175-91a1-fb17bfd6360d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5614" - ], - "x-ms-correlation-request-id": [ - "ddc37377-9de4-4861-bff0-3021c303506b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221742Z:ddc37377-9de4-4861-bff0-3021c303506b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "134b4c7f-6215-4b42-b8a6-6c3a13f3fe20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5613" - ], - "x-ms-correlation-request-id": [ - "1732eb32-e21d-4c23-ba81-3a80660c1f69" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221742Z:1732eb32-e21d-4c23-ba81-3a80660c1f69" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8cf3fe95-5294-43fb-ab3c-1a9369ef545f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5612" - ], - "x-ms-correlation-request-id": [ - "bf2aed7b-171f-4eaf-8487-abccca03a03b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221742Z:bf2aed7b-171f-4eaf-8487-abccca03a03b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fff8d131-5120-4522-9888-b0193c6227eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5611" - ], - "x-ms-correlation-request-id": [ - "6b5a7ca4-99ef-4a6c-8bcb-4e9a7f953ac2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221743Z:6b5a7ca4-99ef-4a6c-8bcb-4e9a7f953ac2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ba22995-ca33-4b2b-a66d-025a3ec88d0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5610" - ], - "x-ms-correlation-request-id": [ - "7a06e8b4-f5a3-4987-b02c-026038eeba76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221743Z:7a06e8b4-f5a3-4987-b02c-026038eeba76" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ee3ddb6-b0b7-4342-b451-7e98fcb6ec79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5609" - ], - "x-ms-correlation-request-id": [ - "bec93bac-5bda-48ce-858a-b37b9c92e07a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221743Z:bec93bac-5bda-48ce-858a-b37b9c92e07a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f0d28b4-38b7-47ef-96bc-5635ad505e45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5608" - ], - "x-ms-correlation-request-id": [ - "a23a4b56-188b-4c05-930b-5a1ad5bc9b9c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221743Z:a23a4b56-188b-4c05-930b-5a1ad5bc9b9c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "922ac5e5-fd15-43ce-a69f-77422061803e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5607" - ], - "x-ms-correlation-request-id": [ - "b64c12d1-6dba-469a-96d2-ca3549d7dbbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221743Z:b64c12d1-6dba-469a-96d2-ca3549d7dbbf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8883142c-3c9f-45fc-9a03-d99b90769b55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5606" - ], - "x-ms-correlation-request-id": [ - "c48af4d1-693b-46bc-9071-45fd03aba16a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221743Z:c48af4d1-693b-46bc-9071-45fd03aba16a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "af441fb2-ccf2-4667-8086-4577059773ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5605" - ], - "x-ms-correlation-request-id": [ - "b8bb4865-e7ff-4330-90ed-9ed7aa234c7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221744Z:b8bb4865-e7ff-4330-90ed-9ed7aa234c7e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70fc35a7-2c53-4139-8ed9-ff17355709b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5604" - ], - "x-ms-correlation-request-id": [ - "824248be-8b10-4647-bfb3-63325587db04" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221744Z:824248be-8b10-4647-bfb3-63325587db04" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "83446cde-a022-4331-98d8-346c5a9f456f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5603" - ], - "x-ms-correlation-request-id": [ - "68da593e-c5a0-4fdf-84aa-3222a58e9155" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221744Z:68da593e-c5a0-4fdf-84aa-3222a58e9155" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75fb6d80-581a-483e-87a6-99340df0c132" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5602" - ], - "x-ms-correlation-request-id": [ - "efbc5baf-aefc-45c1-a006-ed5a65baebc3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221744Z:efbc5baf-aefc-45c1-a006-ed5a65baebc3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c7f44f33-c966-4502-9de5-dc6d62af78ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5601" - ], - "x-ms-correlation-request-id": [ - "e6f97700-eaa6-4b86-9eef-c7d311af30fc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221745Z:e6f97700-eaa6-4b86-9eef-c7d311af30fc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2366c3c-f972-4f3a-928a-cbc2cc46b5f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5600" - ], - "x-ms-correlation-request-id": [ - "b9632512-4cbf-46c3-b005-86212799f70f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221745Z:b9632512-4cbf-46c3-b005-86212799f70f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "083aa656-4cbc-447c-a9d8-bf4d6e514bf9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5599" - ], - "x-ms-correlation-request-id": [ - "b59de7dc-2785-45d6-b47b-98ed82df23e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221745Z:b59de7dc-2785-45d6-b47b-98ed82df23e4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "68c40e82-657f-4a17-9a56-4ee1de83244e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5598" - ], - "x-ms-correlation-request-id": [ - "be60290a-2687-404f-9877-a25bec6c5861" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221745Z:be60290a-2687-404f-9877-a25bec6c5861" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b894478-fcd4-4b76-8776-e486874d5e33" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5597" - ], - "x-ms-correlation-request-id": [ - "58326505-9483-40ac-8bf6-4fb70998b05a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221745Z:58326505-9483-40ac-8bf6-4fb70998b05a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "66ef8b77-bee0-4ac1-bbaf-48a43e131547" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5596" - ], - "x-ms-correlation-request-id": [ - "171731e8-6cab-4039-9ff2-946785f15211" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221745Z:171731e8-6cab-4039-9ff2-946785f15211" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cee7894b-d90d-424b-af84-1e8ad07da4c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5595" - ], - "x-ms-correlation-request-id": [ - "8d5abdae-8d01-4440-ad07-0fc685ee3038" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221746Z:8d5abdae-8d01-4440-ad07-0fc685ee3038" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d7d856c-64dd-43b4-aba8-de00c3a88aed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5594" - ], - "x-ms-correlation-request-id": [ - "89eff3b8-7a3a-4336-9e8a-28cf08630f97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221746Z:89eff3b8-7a3a-4336-9e8a-28cf08630f97" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c77dc220-b0f1-473d-911a-0d63596e991c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5593" - ], - "x-ms-correlation-request-id": [ - "28930e51-16d7-4199-98b8-70123a42c6a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221746Z:28930e51-16d7-4199-98b8-70123a42c6a1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "89a1d7cb-d37f-4519-aa54-c82f3340c402" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5592" - ], - "x-ms-correlation-request-id": [ - "34d5c110-246c-40f9-9ef4-65f94f0f04e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221746Z:34d5c110-246c-40f9-9ef4-65f94f0f04e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b29c24ac-24cb-4496-9612-e420a43555d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5591" - ], - "x-ms-correlation-request-id": [ - "0edbd840-e696-4b2d-baa8-1c75d40c82d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221746Z:0edbd840-e696-4b2d-baa8-1c75d40c82d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "370d806b-89bf-4c40-945f-df7c6c0bb191" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5590" - ], - "x-ms-correlation-request-id": [ - "79e2dbe4-da08-43d6-9eb9-e1305d89ed06" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221746Z:79e2dbe4-da08-43d6-9eb9-e1305d89ed06" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a67a7944-6fb7-4514-95d0-044d33331bb9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5589" - ], - "x-ms-correlation-request-id": [ - "96b591fd-5a4c-427a-80ca-2c9838d6281c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221747Z:96b591fd-5a4c-427a-80ca-2c9838d6281c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42f0becc-05bb-41df-8376-287b8f003ec9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5588" - ], - "x-ms-correlation-request-id": [ - "f246a423-e53d-4f5b-808a-de27fe7efe9b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221747Z:f246a423-e53d-4f5b-808a-de27fe7efe9b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "572ebf91-ab9f-4910-8f69-00cee58fd58b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5587" - ], - "x-ms-correlation-request-id": [ - "d9f8d1c4-6b68-4e1a-a3d5-0191c8797f41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221747Z:d9f8d1c4-6b68-4e1a-a3d5-0191c8797f41" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f0b78371-eb8b-4504-ad7e-d1666a900675" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5586" - ], - "x-ms-correlation-request-id": [ - "261825aa-c0db-4e94-a145-a1e208c7566c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221747Z:261825aa-c0db-4e94-a145-a1e208c7566c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aea6a0fb-5b84-4f7b-961d-e150087a5d58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5585" - ], - "x-ms-correlation-request-id": [ - "0f9c56e1-0df7-44bf-b6de-c3462faa3355" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221747Z:0f9c56e1-0df7-44bf-b6de-c3462faa3355" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "435af48c-c47a-447e-82b6-e5b55322ddb5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5584" - ], - "x-ms-correlation-request-id": [ - "6fae8d90-298a-4381-abd5-e12d382aafcc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221748Z:6fae8d90-298a-4381-abd5-e12d382aafcc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d75e5df-bb5f-4bdd-807e-2774347dae58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5583" - ], - "x-ms-correlation-request-id": [ - "e784789f-4233-4763-830f-b4b2e44c74a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221748Z:e784789f-4233-4763-830f-b4b2e44c74a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a52379fc-62a1-4f5d-b8d6-68872c5ba8c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5582" - ], - "x-ms-correlation-request-id": [ - "be28bea3-49fc-4194-9fcf-3c24393813fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221748Z:be28bea3-49fc-4194-9fcf-3c24393813fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d9459b15-ff7a-420e-9d57-0c2c659f86bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5581" - ], - "x-ms-correlation-request-id": [ - "6224716e-1f2c-4895-b0d6-17c83e491b25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221748Z:6224716e-1f2c-4895-b0d6-17c83e491b25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6cd922d2-017c-4786-801b-bea1483a61e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5580" - ], - "x-ms-correlation-request-id": [ - "8cce9a7f-91ac-49f3-9f2f-ba6e03efb302" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221748Z:8cce9a7f-91ac-49f3-9f2f-ba6e03efb302" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "617ef154-ade8-492f-b97e-ef903323c0ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5579" - ], - "x-ms-correlation-request-id": [ - "489d6309-865e-4c61-ae13-e75dd0f1b156" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221749Z:489d6309-865e-4c61-ae13-e75dd0f1b156" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ada3be86-2e42-4d8a-984f-57909ac058cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5578" - ], - "x-ms-correlation-request-id": [ - "1ab1b909-039f-4876-8bdf-451cfe69d519" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221749Z:1ab1b909-039f-4876-8bdf-451cfe69d519" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92dfeca5-f776-4e30-9ba7-212eb43cdd61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5577" - ], - "x-ms-correlation-request-id": [ - "ecd6ed05-a51c-457a-bfab-e06b8d8e80e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221749Z:ecd6ed05-a51c-457a-bfab-e06b8d8e80e3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2379565-fed5-4763-8d63-c0ca319dd235" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5576" - ], - "x-ms-correlation-request-id": [ - "9c1aa1fc-987d-4cfb-b9d8-37eff40ef529" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221749Z:9c1aa1fc-987d-4cfb-b9d8-37eff40ef529" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42e606df-c320-493c-a93f-f365d5175e41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5575" - ], - "x-ms-correlation-request-id": [ - "e37ba853-6798-462c-bad5-7cb21aebf738" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221749Z:e37ba853-6798-462c-bad5-7cb21aebf738" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa8c2782-62dd-44b8-9df8-d73209cff97a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5574" - ], - "x-ms-correlation-request-id": [ - "abb1fa80-42a6-44f3-87a0-3cf69597dd89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221749Z:abb1fa80-42a6-44f3-87a0-3cf69597dd89" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "460dc45f-a702-4be2-9b1c-06d5d438273a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5573" - ], - "x-ms-correlation-request-id": [ - "6b6e7292-d491-4d41-8376-a69843dd8329" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221750Z:6b6e7292-d491-4d41-8376-a69843dd8329" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74c40aa6-1df5-4e31-8873-5c7db41292a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5572" - ], - "x-ms-correlation-request-id": [ - "977d3e00-ad1b-428e-8058-653002c87e7c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221750Z:977d3e00-ad1b-428e-8058-653002c87e7c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17278f3a-f4f5-42b8-b7ee-8a82e0e14c27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5571" - ], - "x-ms-correlation-request-id": [ - "f36338ef-109f-449c-8ac8-365a8a0153b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221750Z:f36338ef-109f-449c-8ac8-365a8a0153b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "380f8283-278c-4526-8f71-81678c1b9a0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5570" - ], - "x-ms-correlation-request-id": [ - "9cb9aeb7-8a7d-4064-89cb-ba79e7f588af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221750Z:9cb9aeb7-8a7d-4064-89cb-ba79e7f588af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "eafecf80-b0a3-40b6-b228-5678749430c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5569" - ], - "x-ms-correlation-request-id": [ - "548dd327-eb42-4823-8870-aa57f2a60929" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221750Z:548dd327-eb42-4823-8870-aa57f2a60929" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2317be3d-c94f-45b1-b214-40b6775139d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5568" - ], - "x-ms-correlation-request-id": [ - "77aa81d6-1561-4463-af0b-21117b935da7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221751Z:77aa81d6-1561-4463-af0b-21117b935da7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9ab6e125-df16-46fb-b117-b06d3b41a604" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5567" - ], - "x-ms-correlation-request-id": [ - "0e0730ac-d848-42ad-b243-706445002fc6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221751Z:0e0730ac-d848-42ad-b243-706445002fc6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "240e42b5-fb03-497e-9c89-06bacc795b8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5566" - ], - "x-ms-correlation-request-id": [ - "e4813f6e-6dbe-4c2a-993b-c4477c62132d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221751Z:e4813f6e-6dbe-4c2a-993b-c4477c62132d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4db9572c-08ae-4859-a9b5-a376df150535" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5565" - ], - "x-ms-correlation-request-id": [ - "b61312a8-7054-4778-b650-e4b4e091ef49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221751Z:b61312a8-7054-4778-b650-e4b4e091ef49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4fe402e3-6d6b-42af-a7ac-f781724d63cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5564" - ], - "x-ms-correlation-request-id": [ - "ddf3d28c-f967-4b0c-99b6-4e7a8ac4e214" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221751Z:ddf3d28c-f967-4b0c-99b6-4e7a8ac4e214" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f63ef686-2909-4e66-913d-d4affe840035" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5563" - ], - "x-ms-correlation-request-id": [ - "54db0b4d-e3e6-4138-91de-566e91cfa154" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221752Z:54db0b4d-e3e6-4138-91de-566e91cfa154" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8798348-28c3-4204-a230-67822f17cb06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5562" - ], - "x-ms-correlation-request-id": [ - "f887ab99-eb24-4c43-aede-30174157eee6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221752Z:f887ab99-eb24-4c43-aede-30174157eee6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02dc3b76-a6f3-45cd-8405-924d2e33efc4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5561" - ], - "x-ms-correlation-request-id": [ - "f8a8e262-b1ce-459e-805e-3f7791e4f716" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221752Z:f8a8e262-b1ce-459e-805e-3f7791e4f716" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fdd85bab-6a7e-44f9-938c-ab289f692cb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5560" - ], - "x-ms-correlation-request-id": [ - "ae668e28-72bb-495f-ab52-0293764ed86a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221752Z:ae668e28-72bb-495f-ab52-0293764ed86a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c450dc69-12e4-49b9-8058-5f4bfd1f23b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5559" - ], - "x-ms-correlation-request-id": [ - "34b0c1e2-e537-4d81-b95c-5132a04e52cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221752Z:34b0c1e2-e537-4d81-b95c-5132a04e52cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f484e773-9ff6-4099-b61c-700b269d96ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5558" - ], - "x-ms-correlation-request-id": [ - "bc0ebea3-e788-442d-a559-832712d0e444" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221753Z:bc0ebea3-e788-442d-a559-832712d0e444" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d80eccd-459c-407e-878e-5b53279a3576" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5557" - ], - "x-ms-correlation-request-id": [ - "0a27b539-58fe-43d6-9c13-f2b809fc1a2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221753Z:0a27b539-58fe-43d6-9c13-f2b809fc1a2e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "732eccf2-c26a-4804-b26e-d55446cf4d26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5556" - ], - "x-ms-correlation-request-id": [ - "6bc2f453-0016-4579-b528-e6ea239b1d40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221753Z:6bc2f453-0016-4579-b528-e6ea239b1d40" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "edcc71b9-fb23-47ea-bb41-68f51849a967" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5555" - ], - "x-ms-correlation-request-id": [ - "86fd366c-6339-47c5-9a7a-cb899a8f85ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221753Z:86fd366c-6339-47c5-9a7a-cb899a8f85ba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f266f145-aea2-46d8-858e-ea041bda476b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5554" - ], - "x-ms-correlation-request-id": [ - "18039faf-3a92-4534-aaaf-361ba63f3555" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221753Z:18039faf-3a92-4534-aaaf-361ba63f3555" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f7b49c9-6316-4370-afbe-7ce97b847772" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5553" - ], - "x-ms-correlation-request-id": [ - "7cc8301a-ec57-4d8f-8752-2d98071c8cf3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221753Z:7cc8301a-ec57-4d8f-8752-2d98071c8cf3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6b87589c-d36e-4c4b-9d7a-a99bd053d345" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5552" - ], - "x-ms-correlation-request-id": [ - "c2b7ef6a-0d3c-4ceb-afe5-be9a4ecdb286" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221753Z:c2b7ef6a-0d3c-4ceb-afe5-be9a4ecdb286" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "447a0773-c1d7-4221-a1c9-3b59873349e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5551" - ], - "x-ms-correlation-request-id": [ - "51b1342d-b70b-4159-9a0d-a41dc7ccad2b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221754Z:51b1342d-b70b-4159-9a0d-a41dc7ccad2b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10f2f38d-29af-4ce1-9e34-739dbcec2051" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5550" - ], - "x-ms-correlation-request-id": [ - "4c7bc3be-e8cf-467f-8b7f-be0a65f6d108" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221754Z:4c7bc3be-e8cf-467f-8b7f-be0a65f6d108" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f6ee341-b70f-4db5-830e-a7463ab4269d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5549" - ], - "x-ms-correlation-request-id": [ - "afe30732-63d7-495a-b7e4-0baf8cacd396" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221754Z:afe30732-63d7-495a-b7e4-0baf8cacd396" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5acf4647-1d56-426d-83c2-5fcda8efe87e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5548" - ], - "x-ms-correlation-request-id": [ - "d1ee4fa6-aa96-48f5-8e57-45c600e8ff9e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221754Z:d1ee4fa6-aa96-48f5-8e57-45c600e8ff9e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29475c0a-025f-47e4-8eeb-109032cbfbba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5547" - ], - "x-ms-correlation-request-id": [ - "fbcdd676-03a7-4bbf-9fd9-fd68c478182c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221754Z:fbcdd676-03a7-4bbf-9fd9-fd68c478182c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35e6666c-0d4a-434e-943a-b494a4004a9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5546" - ], - "x-ms-correlation-request-id": [ - "1130151c-c242-4fad-a7ea-f851d5894bd4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221755Z:1130151c-c242-4fad-a7ea-f851d5894bd4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "60b76bd4-3f65-47df-9134-ac2b5b414270" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5545" - ], - "x-ms-correlation-request-id": [ - "4f46bdd2-3cb5-4f19-a24b-849e1cfe9074" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221755Z:4f46bdd2-3cb5-4f19-a24b-849e1cfe9074" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c0520924-6b5f-4888-9f0a-1b2e0eb87bc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5544" - ], - "x-ms-correlation-request-id": [ - "1e84452a-9d10-42b0-a3ad-6665dfb23e08" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221755Z:1e84452a-9d10-42b0-a3ad-6665dfb23e08" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0d531e1a-4898-45fa-acf4-cbb530e7a400" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5543" - ], - "x-ms-correlation-request-id": [ - "edb6c2fe-a4e2-43dc-8ff6-a89e3852fe8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221755Z:edb6c2fe-a4e2-43dc-8ff6-a89e3852fe8c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d406dd1-e5c4-44d9-a975-2f11ab555be9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5542" - ], - "x-ms-correlation-request-id": [ - "dd6ca900-b065-4d25-8616-cd1c3512e59b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221755Z:dd6ca900-b065-4d25-8616-cd1c3512e59b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "be872a2f-a7f6-4b62-a324-be98cbb888f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5541" - ], - "x-ms-correlation-request-id": [ - "0da1b705-08b7-4787-8556-cd65c60a8556" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221755Z:0da1b705-08b7-4787-8556-cd65c60a8556" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49e72d93-e6e8-4d79-9160-3920d5ae6c3e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5540" - ], - "x-ms-correlation-request-id": [ - "4c03f2d8-3162-42fe-8553-f9ae79be6072" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221756Z:4c03f2d8-3162-42fe-8553-f9ae79be6072" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e01cbcca-758f-45a7-8c9d-ef04a6e789bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5539" - ], - "x-ms-correlation-request-id": [ - "dd9866f2-bbc8-4718-8a69-c49b79dffca5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221756Z:dd9866f2-bbc8-4718-8a69-c49b79dffca5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9bdee449-9252-4502-b275-4299b0ece045" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5538" - ], - "x-ms-correlation-request-id": [ - "5ebb4265-44d1-4add-bb61-9401f79e5e25" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221756Z:5ebb4265-44d1-4add-bb61-9401f79e5e25" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b9b2563-3622-4757-91f6-5179496f236e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5537" - ], - "x-ms-correlation-request-id": [ - "9b40ce7b-645e-4ae9-b25c-692caf267cfa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221756Z:9b40ce7b-645e-4ae9-b25c-692caf267cfa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b0707543-dba2-47e2-acbb-67b980c883b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5536" - ], - "x-ms-correlation-request-id": [ - "e4ca0c39-de58-454e-8a91-15207b6cc0a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221756Z:e4ca0c39-de58-454e-8a91-15207b6cc0a2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "950bc074-0294-42b9-aa61-e32161962b30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5535" - ], - "x-ms-correlation-request-id": [ - "b2b423f3-b3a5-4237-a6bc-87044ec35f80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221756Z:b2b423f3-b3a5-4237-a6bc-87044ec35f80" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70823997-bfdf-428f-a713-f391aa0b17d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5534" - ], - "x-ms-correlation-request-id": [ - "b4fcd042-847e-4fb7-b4d2-4b02d07d1a9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221756Z:b4fcd042-847e-4fb7-b4d2-4b02d07d1a9d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c104fce1-e239-4f8b-962d-33fdff86e833" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5533" - ], - "x-ms-correlation-request-id": [ - "c3210be1-e286-4673-b5c3-6fad7f3fe455" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221757Z:c3210be1-e286-4673-b5c3-6fad7f3fe455" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "76780780-1bab-40eb-83b1-afb5a6591b2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5532" - ], - "x-ms-correlation-request-id": [ - "f18a4299-ef27-41a2-8547-48e3113d71ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221757Z:f18a4299-ef27-41a2-8547-48e3113d71ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b2fbf1e-ccd6-4a30-84dc-29c9b0f75992" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5531" - ], - "x-ms-correlation-request-id": [ - "0c239458-fbba-4271-8878-245a3fca1b3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221757Z:0c239458-fbba-4271-8878-245a3fca1b3c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1771658-5a4f-4eed-85fc-6adb19328c32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5530" - ], - "x-ms-correlation-request-id": [ - "1820cc76-837b-4c7c-a4aa-98c1727c17b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221757Z:1820cc76-837b-4c7c-a4aa-98c1727c17b0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70b01303-46cb-4a43-bc73-0bd7270f6476" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5529" - ], - "x-ms-correlation-request-id": [ - "9787161d-e463-4024-a061-89dafefb62f1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221757Z:9787161d-e463-4024-a061-89dafefb62f1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96e5bc4a-ba5e-44c5-83ee-4ca567352ea7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5528" - ], - "x-ms-correlation-request-id": [ - "e19024db-faa1-4bb6-b881-1d7748f41535" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221757Z:e19024db-faa1-4bb6-b881-1d7748f41535" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0dc9d3c8-4194-4e73-ad9e-2ad6206476eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5527" - ], - "x-ms-correlation-request-id": [ - "8d81fb2a-d688-4040-81c8-0cc23fba14f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221757Z:8d81fb2a-d688-4040-81c8-0cc23fba14f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "185a7380-8df1-4e82-8042-4f122d5a7c95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5526" - ], - "x-ms-correlation-request-id": [ - "7013debf-27a0-4f99-b537-d577ec08bb8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221758Z:7013debf-27a0-4f99-b537-d577ec08bb8c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8fac0f7-7a82-4429-8b91-87d04afab6d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5525" - ], - "x-ms-correlation-request-id": [ - "15785c2c-3014-4cb3-9883-1b09580c75cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221758Z:15785c2c-3014-4cb3-9883-1b09580c75cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c3bf537-8c7c-4df1-a305-20eb1bb58fd6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5524" - ], - "x-ms-correlation-request-id": [ - "5c66f3d3-018d-4653-beec-045f4704cba6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221758Z:5c66f3d3-018d-4653-beec-045f4704cba6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e53f2b88-1bbb-4363-8960-db8e233db575" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5523" - ], - "x-ms-correlation-request-id": [ - "dae758de-756d-43e9-b1a1-37cf5d5a7e1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221758Z:dae758de-756d-43e9-b1a1-37cf5d5a7e1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7506c1fd-c55e-4b80-a1e3-04d1274049ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5522" - ], - "x-ms-correlation-request-id": [ - "4ffa58b1-79d5-4e2d-a3fb-643a0e47a624" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221758Z:4ffa58b1-79d5-4e2d-a3fb-643a0e47a624" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97984b32-d971-4915-861a-81e44593f8a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5521" - ], - "x-ms-correlation-request-id": [ - "d29aa2cb-fb90-4aee-a5fa-0700c9835e32" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221759Z:d29aa2cb-fb90-4aee-a5fa-0700c9835e32" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fed27106-b4de-42d2-a335-05b3fbf86c18" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5520" - ], - "x-ms-correlation-request-id": [ - "93d7482f-ca67-4b79-8046-6e19a8fcb862" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221759Z:93d7482f-ca67-4b79-8046-6e19a8fcb862" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f710ddcc-7c49-430d-a101-5e43a9c6fde2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5519" - ], - "x-ms-correlation-request-id": [ - "63b5984c-42d4-4e69-96bf-9b9129676ed4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221759Z:63b5984c-42d4-4e69-96bf-9b9129676ed4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "651f8f1e-53e0-47f7-bdbe-15fe0f7497e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5518" - ], - "x-ms-correlation-request-id": [ - "2650daed-52ea-41cc-9358-81e1573e82ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221759Z:2650daed-52ea-41cc-9358-81e1573e82ca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "19e5366a-3cb2-4c61-9a95-ab19511b315c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5517" - ], - "x-ms-correlation-request-id": [ - "a98f535b-d879-42e5-8a30-61f731e0294c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221759Z:a98f535b-d879-42e5-8a30-61f731e0294c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e435e3a-cece-4f48-8853-fe98d156942a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5516" - ], - "x-ms-correlation-request-id": [ - "877d8d71-3b69-45ba-a5bd-5a05275823c9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221759Z:877d8d71-3b69-45ba-a5bd-5a05275823c9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b9d55e5b-2baf-425c-ad3e-b36ba5ee0605" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5515" - ], - "x-ms-correlation-request-id": [ - "f7b6c51d-141a-4784-9433-bd930a9e4f9e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221759Z:f7b6c51d-141a-4784-9433-bd930a9e4f9e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "62ac588a-bac2-465c-85eb-f64699b8f44e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5514" - ], - "x-ms-correlation-request-id": [ - "54062fa3-2a3e-4746-bcce-eafe837c095d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221800Z:54062fa3-2a3e-4746-bcce-eafe837c095d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c2941bd-46a0-4803-96f6-805f7993f9a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5513" - ], - "x-ms-correlation-request-id": [ - "700c3e0c-f6a9-4b8c-a630-cb3e1555738b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221800Z:700c3e0c-f6a9-4b8c-a630-cb3e1555738b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "048407a7-2df9-4903-a2c8-e2ed738dce13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5512" - ], - "x-ms-correlation-request-id": [ - "468ab997-99cc-42dc-9ada-36a8917506ad" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221800Z:468ab997-99cc-42dc-9ada-36a8917506ad" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0c894a9e-578a-4171-b8da-c679626f1346" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5511" - ], - "x-ms-correlation-request-id": [ - "48d9c3e4-dd49-4489-b3c9-4abffe95572c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221800Z:48d9c3e4-dd49-4489-b3c9-4abffe95572c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:17:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8e5d437-a753-4537-b2c2-dc8828ab4cdb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5510" - ], - "x-ms-correlation-request-id": [ - "e1ebb711-afa9-44f7-8210-b1f04838e4ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221800Z:e1ebb711-afa9-44f7-8210-b1f04838e4ba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "516fd05b-3d5d-4f60-8a8c-74e00fbf1f4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5509" - ], - "x-ms-correlation-request-id": [ - "e71bac40-938d-44c1-821e-c80ab527f73d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221801Z:e71bac40-938d-44c1-821e-c80ab527f73d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e13d394c-da28-4083-81f2-ee2e5a0cb29e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5508" - ], - "x-ms-correlation-request-id": [ - "10e0628f-cd79-4231-b744-b9f0b88f948f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221801Z:10e0628f-cd79-4231-b744-b9f0b88f948f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "698b48ee-bd06-47d7-a7c9-38e1cf7ec92f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5507" - ], - "x-ms-correlation-request-id": [ - "09e42034-4c86-4f7b-87a4-1dc50115d7b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221801Z:09e42034-4c86-4f7b-87a4-1dc50115d7b0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fba5bf85-549a-4fde-af7f-6572a71cc87a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5506" - ], - "x-ms-correlation-request-id": [ - "f6a279a3-6c21-4105-b18c-5d0425f86678" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221801Z:f6a279a3-6c21-4105-b18c-5d0425f86678" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "704a9354-1c1d-4a4a-8c75-a9203fb85891" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5505" - ], - "x-ms-correlation-request-id": [ - "3b96aced-df06-458a-8041-ee7cda94ca11" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221801Z:3b96aced-df06-458a-8041-ee7cda94ca11" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a4d7fd14-e2b3-4f1d-bc67-358d3ee7bbe9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5504" - ], - "x-ms-correlation-request-id": [ - "84dcea99-8393-4b7a-9f1a-45a27f314632" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221802Z:84dcea99-8393-4b7a-9f1a-45a27f314632" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3902e598-231f-4b82-a8e3-b364081ddbbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5503" - ], - "x-ms-correlation-request-id": [ - "afa7ba46-d8d5-4ea7-988b-3b050fb7cdf3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221802Z:afa7ba46-d8d5-4ea7-988b-3b050fb7cdf3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8d74144d-2254-417e-84a1-33a6903c7a79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5502" - ], - "x-ms-correlation-request-id": [ - "e32a1e67-e704-42f4-8375-9af4f484e54e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221802Z:e32a1e67-e704-42f4-8375-9af4f484e54e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81297617-c492-437b-a9b5-6bb7d756dbbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5501" - ], - "x-ms-correlation-request-id": [ - "bbb62f67-7512-4f0e-b06c-ce87dcac0559" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221802Z:bbb62f67-7512-4f0e-b06c-ce87dcac0559" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b92b6b09-1805-4a4e-9e82-434cacecea86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5500" - ], - "x-ms-correlation-request-id": [ - "842bccff-8c7f-4a28-8dc1-e426716de6fe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221802Z:842bccff-8c7f-4a28-8dc1-e426716de6fe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5233af72-0135-4538-8031-987bfad03399" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5499" - ], - "x-ms-correlation-request-id": [ - "88d5eeca-8b8b-4ffb-a9a3-52fb0e189d8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221802Z:88d5eeca-8b8b-4ffb-a9a3-52fb0e189d8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8102c86-daf4-4869-b41f-d14b106c0f90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5498" - ], - "x-ms-correlation-request-id": [ - "939056cb-ec89-436e-b49b-916c34099807" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221803Z:939056cb-ec89-436e-b49b-916c34099807" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d10a50f7-7774-4e4f-bc62-76f03284004e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5497" - ], - "x-ms-correlation-request-id": [ - "8e9b0cfe-81bf-428b-b622-dfa5758dff37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221803Z:8e9b0cfe-81bf-428b-b622-dfa5758dff37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4fa11d7d-871d-457e-912e-747c7541972d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5496" - ], - "x-ms-correlation-request-id": [ - "3064ae4a-26aa-4945-99a7-955927cc01d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221803Z:3064ae4a-26aa-4945-99a7-955927cc01d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc0f1b5e-b629-4a4e-8808-86e115fdc44e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5495" - ], - "x-ms-correlation-request-id": [ - "3398bbad-c798-4850-928d-f4abc4fef6c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221803Z:3398bbad-c798-4850-928d-f4abc4fef6c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cd6ec360-c98e-4436-9995-734f70da4ca3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5494" - ], - "x-ms-correlation-request-id": [ - "e03e148f-33e9-4aea-b14c-9cd6f741e095" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221803Z:e03e148f-33e9-4aea-b14c-9cd6f741e095" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "351e01ae-7833-4932-b2b4-a9088d095508" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5493" - ], - "x-ms-correlation-request-id": [ - "191e3eba-edce-473e-9d71-af4fd5265744" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221804Z:191e3eba-edce-473e-9d71-af4fd5265744" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8a1475a-ebf9-4b43-ab90-fc861a316ccb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5492" - ], - "x-ms-correlation-request-id": [ - "55caec1a-2710-40dc-89b2-701b8046466e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221804Z:55caec1a-2710-40dc-89b2-701b8046466e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa88694f-7f6b-47d9-bc8e-0f36b7ca52fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5491" - ], - "x-ms-correlation-request-id": [ - "48f67159-cd06-405f-abca-0a9d618e2355" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221804Z:48f67159-cd06-405f-abca-0a9d618e2355" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e3f979f-6663-4ec7-a8e2-0e82404d4131" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5490" - ], - "x-ms-correlation-request-id": [ - "6888f1da-605e-407d-bf69-523ceffadefb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221804Z:6888f1da-605e-407d-bf69-523ceffadefb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4af40136-34e1-4d67-939d-5b22e0375235" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5489" - ], - "x-ms-correlation-request-id": [ - "15c45518-f104-4851-a759-66ce3244f963" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221804Z:15c45518-f104-4851-a759-66ce3244f963" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccf3e910-7333-4f9f-8d85-b32fae200842" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5488" - ], - "x-ms-correlation-request-id": [ - "6a69795b-060b-42b8-af87-60494810403c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221804Z:6a69795b-060b-42b8-af87-60494810403c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a9f9bf7-e541-4d23-b26d-db3125cc2cc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5487" - ], - "x-ms-correlation-request-id": [ - "ae780be5-771b-4e62-8c2e-8c4252095f3f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221805Z:ae780be5-771b-4e62-8c2e-8c4252095f3f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48facdbc-7e16-4645-8279-e74d3fa20e0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5486" - ], - "x-ms-correlation-request-id": [ - "b8ec93d6-8c18-4693-93f5-50e1386e1c1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221805Z:b8ec93d6-8c18-4693-93f5-50e1386e1c1b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f35e7298-1020-4442-9a55-cd88efb72c00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5485" - ], - "x-ms-correlation-request-id": [ - "accd5384-47c5-43ad-878e-9c68fa6a20ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221805Z:accd5384-47c5-43ad-878e-9c68fa6a20ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "698e9d24-c29e-4a67-af51-788d4c62becb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5484" - ], - "x-ms-correlation-request-id": [ - "3214b2a9-32af-4a75-b1bd-00fae3d8d2d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221805Z:3214b2a9-32af-4a75-b1bd-00fae3d8d2d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5b6797dc-2361-4f3d-bbec-2ed0a2fe773e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5483" - ], - "x-ms-correlation-request-id": [ - "4448412b-00be-4906-997c-fa36b7cc79d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221805Z:4448412b-00be-4906-997c-fa36b7cc79d7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad2626b8-4b88-4906-a81e-02b19636c5a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5482" - ], - "x-ms-correlation-request-id": [ - "cd0a773c-0c23-4e00-8dfb-cae9d7931767" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221805Z:cd0a773c-0c23-4e00-8dfb-cae9d7931767" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b43fa789-0cae-4264-9c63-1b11936a3e12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5481" - ], - "x-ms-correlation-request-id": [ - "7d5f3d1c-3328-48c6-936b-bccf5ef2f499" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221805Z:7d5f3d1c-3328-48c6-936b-bccf5ef2f499" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31c385a5-6cbd-424a-8e41-0eb032dd483f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5480" - ], - "x-ms-correlation-request-id": [ - "65116a42-d045-40d0-964e-0619945df105" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221806Z:65116a42-d045-40d0-964e-0619945df105" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b491181-b97a-4bce-af7c-e08645b2bc7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5479" - ], - "x-ms-correlation-request-id": [ - "d8042be2-e2de-4946-9ad3-a803347c94cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221806Z:d8042be2-e2de-4946-9ad3-a803347c94cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee69b928-bdf6-4e53-b7ac-8b79a588ed62" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5478" - ], - "x-ms-correlation-request-id": [ - "598a60af-132a-438a-bc01-f7d3170a3c91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221806Z:598a60af-132a-438a-bc01-f7d3170a3c91" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69ba1441-822b-4b5a-a167-4c4d01a098b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5477" - ], - "x-ms-correlation-request-id": [ - "abcec895-e3f9-44ea-b043-e9d3a90f42c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221806Z:abcec895-e3f9-44ea-b043-e9d3a90f42c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c171f75-899e-4c66-a796-0e5abeacfd43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5476" - ], - "x-ms-correlation-request-id": [ - "f483bf35-480d-40da-995d-3fbdb3d852cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221806Z:f483bf35-480d-40da-995d-3fbdb3d852cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ab5a181-0830-4ffc-bec5-a47e489a0b13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5475" - ], - "x-ms-correlation-request-id": [ - "d2d4e6f8-5a75-49ca-a064-4f7dddad8813" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221806Z:d2d4e6f8-5a75-49ca-a064-4f7dddad8813" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e65ff34e-53da-4943-9d52-e42df326e005" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5474" - ], - "x-ms-correlation-request-id": [ - "622b3e50-2110-4f08-a738-79d90e993ebd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221807Z:622b3e50-2110-4f08-a738-79d90e993ebd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ef7490f-ad17-4d50-99c1-eaf5d7d24ddd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5473" - ], - "x-ms-correlation-request-id": [ - "f2800317-77fb-4a5e-aa93-0c481d7b7428" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221807Z:f2800317-77fb-4a5e-aa93-0c481d7b7428" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "351b1d6e-ee3c-4034-8124-521c4b25b376" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5472" - ], - "x-ms-correlation-request-id": [ - "96e9054e-5b44-4d79-8f08-c9b4a5596255" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221807Z:96e9054e-5b44-4d79-8f08-c9b4a5596255" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fe30b6c6-eab1-4309-9b3b-9234666143ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5471" - ], - "x-ms-correlation-request-id": [ - "b2488f40-1b16-457c-aeb9-59f87e2f1d46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221807Z:b2488f40-1b16-457c-aeb9-59f87e2f1d46" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4afe40a7-248e-41ad-ac7c-65bc219268df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5470" - ], - "x-ms-correlation-request-id": [ - "503f4bd8-2097-4020-ac7c-d7c9cb487cd2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221807Z:503f4bd8-2097-4020-ac7c-d7c9cb487cd2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2045fc9c-5a83-4b01-a281-baf1d3926019" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5469" - ], - "x-ms-correlation-request-id": [ - "a6bac2de-3b42-4a58-bc1f-c7f855312adc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221807Z:a6bac2de-3b42-4a58-bc1f-c7f855312adc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4c7b493a-2cb1-4637-9137-e3dab265db22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5468" - ], - "x-ms-correlation-request-id": [ - "bb5781a8-8610-4fb3-a5dc-d65bc435ca99" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221808Z:bb5781a8-8610-4fb3-a5dc-d65bc435ca99" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ea599b79-2db5-469a-afe0-55a87c8967f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5467" - ], - "x-ms-correlation-request-id": [ - "798954ea-1bd8-4b8f-abd7-b6d128fd332c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221808Z:798954ea-1bd8-4b8f-abd7-b6d128fd332c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bbc369f-ee14-47e4-97ef-d52f495e6a0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5466" - ], - "x-ms-correlation-request-id": [ - "d3e4446f-2e88-46af-b66e-2818efc1214e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221808Z:d3e4446f-2e88-46af-b66e-2818efc1214e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "870f9cd8-28d9-47d3-9f3b-04a7635d26a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5465" - ], - "x-ms-correlation-request-id": [ - "2457e7d0-b9fc-4c4e-ac16-b0902781e187" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221808Z:2457e7d0-b9fc-4c4e-ac16-b0902781e187" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed6e8d89-2cbc-4ed4-88f3-2da52f46d586" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5464" - ], - "x-ms-correlation-request-id": [ - "e59b5dff-bf57-4b86-a8b8-d12db21282e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221808Z:e59b5dff-bf57-4b86-a8b8-d12db21282e7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "07072611-480c-4610-8148-c63f2398a267" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5463" - ], - "x-ms-correlation-request-id": [ - "13496c26-3bc6-469c-8c86-ca0e8e64f150" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221808Z:13496c26-3bc6-469c-8c86-ca0e8e64f150" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6194f1a9-8fe5-4296-aa5e-b61cd7288087" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5462" - ], - "x-ms-correlation-request-id": [ - "f725bc23-e647-46fb-9d99-8551be405089" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221809Z:f725bc23-e647-46fb-9d99-8551be405089" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "814b5d6e-4474-4e7d-b2cb-bf3ccb97959e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5461" - ], - "x-ms-correlation-request-id": [ - "096366a8-9ce9-4182-80d2-d49d4356aab2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221809Z:096366a8-9ce9-4182-80d2-d49d4356aab2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc4f370e-bd73-4e87-b0e4-5fff0a888df7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5460" - ], - "x-ms-correlation-request-id": [ - "8b5e149f-e731-4945-8e76-1a942f0c7226" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221809Z:8b5e149f-e731-4945-8e76-1a942f0c7226" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "514bf033-0de3-46f7-af0b-3447b5aeecc0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5459" - ], - "x-ms-correlation-request-id": [ - "d671a794-9df8-49f2-a549-8ce3b485a253" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221809Z:d671a794-9df8-49f2-a549-8ce3b485a253" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3fcfa584-855d-4980-88e9-1be0f4eaefe8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5458" - ], - "x-ms-correlation-request-id": [ - "6eb95760-528f-4ad5-a4a5-c984f71fb51c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221809Z:6eb95760-528f-4ad5-a4a5-c984f71fb51c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "965f4721-9630-4ede-81a2-f59656b23c87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5457" - ], - "x-ms-correlation-request-id": [ - "5a39c89b-eefd-4001-ad41-a595af28d631" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221809Z:5a39c89b-eefd-4001-ad41-a595af28d631" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "38452ca1-0acf-4097-8412-3de27a593ce6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5456" - ], - "x-ms-correlation-request-id": [ - "d731ba5b-84af-4b5b-ac4c-74a0de2b6de9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221810Z:d731ba5b-84af-4b5b-ac4c-74a0de2b6de9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "32ce7421-f77e-4287-ab72-87f74071e33c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5455" - ], - "x-ms-correlation-request-id": [ - "528844aa-cdbf-4658-863e-5ac761d96862" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221810Z:528844aa-cdbf-4658-863e-5ac761d96862" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f2f0b871-ae59-4bd9-9a61-c168869861bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5454" - ], - "x-ms-correlation-request-id": [ - "57067cc9-bf53-4cd3-835d-48d2a1c35be4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221810Z:57067cc9-bf53-4cd3-835d-48d2a1c35be4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a47a7f8-4e67-44d9-8caa-8e34fbaacd96" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5453" - ], - "x-ms-correlation-request-id": [ - "63bd14e9-8c77-4ce3-997c-9c0444ef1c5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221810Z:63bd14e9-8c77-4ce3-997c-9c0444ef1c5e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71aaa659-7848-4193-ab6c-eb7afa29a2cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5452" - ], - "x-ms-correlation-request-id": [ - "fd63a6a1-40ea-4fef-bc43-3acc5c8afabf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221810Z:fd63a6a1-40ea-4fef-bc43-3acc5c8afabf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fdb94ba2-dd9d-412a-954f-2913b70aa02c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5451" - ], - "x-ms-correlation-request-id": [ - "5a99f919-762e-4d89-93d6-c18ae88c3c1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221810Z:5a99f919-762e-4d89-93d6-c18ae88c3c1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b722b764-853e-42bb-a304-f82091ff67bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5450" - ], - "x-ms-correlation-request-id": [ - "938b45cf-ef9d-4c8e-afe3-781bc88ca4b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221811Z:938b45cf-ef9d-4c8e-afe3-781bc88ca4b0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "46970781-6c45-4640-b478-ff44fcbce989" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5449" - ], - "x-ms-correlation-request-id": [ - "a7deeac1-4c86-428a-b7c7-3aff0598cfe2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221811Z:a7deeac1-4c86-428a-b7c7-3aff0598cfe2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4234d300-497b-427d-9c5c-5c3b8f46c5a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5448" - ], - "x-ms-correlation-request-id": [ - "3710ee55-9de0-4714-8b81-4c593a643a70" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221811Z:3710ee55-9de0-4714-8b81-4c593a643a70" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8083dbbb-9f0b-4e37-8caf-f2b13f055c9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5447" - ], - "x-ms-correlation-request-id": [ - "65f9a426-0aad-4fb3-a0a4-089fc549258c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221811Z:65f9a426-0aad-4fb3-a0a4-089fc549258c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37ed43eb-747d-4f72-9bac-4fbab284ea45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5446" - ], - "x-ms-correlation-request-id": [ - "e864edec-604d-415b-9ea8-b0decdb84165" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221811Z:e864edec-604d-415b-9ea8-b0decdb84165" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ed2d651-5536-4d68-9451-f1e821f2aedb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5445" - ], - "x-ms-correlation-request-id": [ - "2a870164-5d04-47b6-8d70-583789ee85e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221811Z:2a870164-5d04-47b6-8d70-583789ee85e2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7cff33a7-f41f-4e86-a52a-e05f1c81b1ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5444" - ], - "x-ms-correlation-request-id": [ - "e35a502a-8732-430a-915a-d59b090003d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221811Z:e35a502a-8732-430a-915a-d59b090003d1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98c20d51-5457-4cdb-94a9-433819eecd93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5443" - ], - "x-ms-correlation-request-id": [ - "1314d140-1155-4e71-a009-4eb9ab3428e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221812Z:1314d140-1155-4e71-a009-4eb9ab3428e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bacfea04-1e31-4b03-be12-b345a6bd10f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5442" - ], - "x-ms-correlation-request-id": [ - "a930b204-2724-43d4-9840-bc6eb465266a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221812Z:a930b204-2724-43d4-9840-bc6eb465266a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e6a9a9b8-70c6-4940-bf6a-3746fd483f7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5441" - ], - "x-ms-correlation-request-id": [ - "a689ba64-d101-4dd3-a826-cce4356fa0a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221812Z:a689ba64-d101-4dd3-a826-cce4356fa0a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b336ad9-55d7-48d8-b0f2-8719d5c8bc9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5440" - ], - "x-ms-correlation-request-id": [ - "45f3308d-bdcc-440a-bdf7-4092e6ae9f27" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221812Z:45f3308d-bdcc-440a-bdf7-4092e6ae9f27" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65c6957e-b758-4bc8-8534-8fe6c187b361" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5439" - ], - "x-ms-correlation-request-id": [ - "713c7dc7-1697-4e38-a4f6-8af89ac3c092" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221812Z:713c7dc7-1697-4e38-a4f6-8af89ac3c092" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7b8f3ba7-a09a-4109-9a01-3a100a4b5851" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5438" - ], - "x-ms-correlation-request-id": [ - "396cff83-72cf-47ae-a264-40ecd4bd33df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221813Z:396cff83-72cf-47ae-a264-40ecd4bd33df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81295089-6448-4706-bcbb-476ecaf3ccc3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5437" - ], - "x-ms-correlation-request-id": [ - "5de32f55-75dc-43ee-bb23-7e55e85b0e4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221813Z:5de32f55-75dc-43ee-bb23-7e55e85b0e4e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1679f6a-60df-4cf3-a884-c00d5c45f8ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5436" - ], - "x-ms-correlation-request-id": [ - "f3bc9cdf-0a6d-496b-8c34-0c98d84194a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221813Z:f3bc9cdf-0a6d-496b-8c34-0c98d84194a0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6407a6be-8c23-498e-bd12-8d264cdf1a5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5435" - ], - "x-ms-correlation-request-id": [ - "553d5006-7523-47da-863a-50ca8434de2f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221813Z:553d5006-7523-47da-863a-50ca8434de2f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7ea172ea-e23f-470f-b7bb-30e5a8a393bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5434" - ], - "x-ms-correlation-request-id": [ - "9aa385af-541f-4bb4-8b38-7f7485681362" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221813Z:9aa385af-541f-4bb4-8b38-7f7485681362" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "42c414a1-f372-4432-ad16-a4d6855c26fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5433" - ], - "x-ms-correlation-request-id": [ - "27d0faa5-77ad-49f6-9928-18aded52d9d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221813Z:27d0faa5-77ad-49f6-9928-18aded52d9d6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6ae2d572-721a-48c9-8340-5aa8228fb8de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5432" - ], - "x-ms-correlation-request-id": [ - "e9ddeed8-a374-4912-9138-bef416b9a874" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221814Z:e9ddeed8-a374-4912-9138-bef416b9a874" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ec9aa69d-a513-4fb7-9f6b-6a751ae4bf65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5431" - ], - "x-ms-correlation-request-id": [ - "e1b7798a-9882-45d4-ab85-88d4ff17de08" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221814Z:e1b7798a-9882-45d4-ab85-88d4ff17de08" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db89e61c-1ef6-4db6-a70b-19db1482e9bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5430" - ], - "x-ms-correlation-request-id": [ - "87e0bd83-f6df-4e9b-815d-1d88090efce5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221814Z:87e0bd83-f6df-4e9b-815d-1d88090efce5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17a46534-28ad-4ca6-8080-08ff0f021262" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5429" - ], - "x-ms-correlation-request-id": [ - "7e057cd2-76cc-463f-97e4-9dc19a8fdcf5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221814Z:7e057cd2-76cc-463f-97e4-9dc19a8fdcf5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f185f380-d2c3-4648-b30e-254d544bb1ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5428" - ], - "x-ms-correlation-request-id": [ - "c9febe5a-a914-4d03-9422-35f55e52d8bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221814Z:c9febe5a-a914-4d03-9422-35f55e52d8bf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "def8ce76-cca8-4f30-8950-87ecffca699b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5427" - ], - "x-ms-correlation-request-id": [ - "e648c1b2-5737-4de1-8484-93ef7da32fc1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221815Z:e648c1b2-5737-4de1-8484-93ef7da32fc1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3bb7b227-45a9-4c52-af79-f130f325a4c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5426" - ], - "x-ms-correlation-request-id": [ - "3d6992ac-4ba5-4085-98f4-c13faf85cdfe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221815Z:3d6992ac-4ba5-4085-98f4-c13faf85cdfe" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3e7df4e6-2086-428e-b2ef-ffa2f4298bcf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5425" - ], - "x-ms-correlation-request-id": [ - "1316d5b4-532c-4e93-91a5-fea2def515b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221815Z:1316d5b4-532c-4e93-91a5-fea2def515b4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "821a84e8-f788-4692-9d56-db15ba38fb66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5424" - ], - "x-ms-correlation-request-id": [ - "beb2c058-b8ea-4542-b909-dee1be6315a8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221815Z:beb2c058-b8ea-4542-b909-dee1be6315a8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8b744ba-5f47-43e5-b839-82472a33358e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5423" - ], - "x-ms-correlation-request-id": [ - "1b453698-df2f-4ee4-9954-a8327f60485a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221815Z:1b453698-df2f-4ee4-9954-a8327f60485a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a417fbbe-45f6-4c7d-bf5e-c426d371e93f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5422" - ], - "x-ms-correlation-request-id": [ - "e27a5cd9-3cf2-485f-8072-8adccbc02953" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221815Z:e27a5cd9-3cf2-485f-8072-8adccbc02953" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8fa5e04-086c-4a77-bfd8-388f495a670e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5421" - ], - "x-ms-correlation-request-id": [ - "9000e31f-08f1-476b-9739-5167f6787630" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221816Z:9000e31f-08f1-476b-9739-5167f6787630" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f039c9e1-a906-48d2-ab71-5a31b61eb7b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5420" - ], - "x-ms-correlation-request-id": [ - "94a1bba7-9bf8-4170-9388-206da6778ded" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221816Z:94a1bba7-9bf8-4170-9388-206da6778ded" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e141691-b7e6-42d1-af7b-af4279c81138" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5419" - ], - "x-ms-correlation-request-id": [ - "5600f08d-9bc3-49dd-8c18-b82ffe38a67b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221816Z:5600f08d-9bc3-49dd-8c18-b82ffe38a67b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6c72921b-b207-44b4-ae74-d6e9c47bf70a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5418" - ], - "x-ms-correlation-request-id": [ - "38474eb6-739a-4b28-9699-c44b6e0268c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221816Z:38474eb6-739a-4b28-9699-c44b6e0268c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8e1a57b4-a52b-48ec-96fb-c326ce39dfcd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5417" - ], - "x-ms-correlation-request-id": [ - "8c32a522-b350-420e-b5d6-aabb014f8679" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221816Z:8c32a522-b350-420e-b5d6-aabb014f8679" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da69808b-07f8-4f94-8a0c-57b46ac667ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5416" - ], - "x-ms-correlation-request-id": [ - "b2789210-83f7-4ec0-a865-da5c68939bf3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221817Z:b2789210-83f7-4ec0-a865-da5c68939bf3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f138315c-ab46-48cb-8d32-5ed7ff37102f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5415" - ], - "x-ms-correlation-request-id": [ - "cec46a55-e04d-4b7a-9213-3271f6b3ad94" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221817Z:cec46a55-e04d-4b7a-9213-3271f6b3ad94" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f2fcfeb-37c1-457f-8022-565e89ce7605" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5414" - ], - "x-ms-correlation-request-id": [ - "de803d3a-1f2e-4ff2-bd1b-95474a340e1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221817Z:de803d3a-1f2e-4ff2-bd1b-95474a340e1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1338fdd0-ae34-4171-b2d6-b806eb4c0855" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5413" - ], - "x-ms-correlation-request-id": [ - "fa341b26-907f-431f-b64e-0e0e285e8a16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221817Z:fa341b26-907f-431f-b64e-0e0e285e8a16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4af186fb-ef2a-422c-8a54-0aeca635b0e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5412" - ], - "x-ms-correlation-request-id": [ - "6a26cb30-98a6-4e56-99ed-3c96824c282b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221817Z:6a26cb30-98a6-4e56-99ed-3c96824c282b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "36f6af4d-b1f1-4b39-9769-3e95d46f2c71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5411" - ], - "x-ms-correlation-request-id": [ - "847fe774-d488-4957-96ef-a1a1a82aabb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221817Z:847fe774-d488-4957-96ef-a1a1a82aabb1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c87d1cbe-6e06-48b8-b7e1-20763aa32fcb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5410" - ], - "x-ms-correlation-request-id": [ - "f2fc4c84-0ea2-47b7-a19f-5b72e7917be8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221818Z:f2fc4c84-0ea2-47b7-a19f-5b72e7917be8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9a48038c-12b0-4bb7-bacd-2de6a43e6824" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5409" - ], - "x-ms-correlation-request-id": [ - "de2092a9-025c-4cb1-9853-95e357c79ab7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221818Z:de2092a9-025c-4cb1-9853-95e357c79ab7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95467bb5-7360-4a45-8326-285cdf5e5ebf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5408" - ], - "x-ms-correlation-request-id": [ - "4bc5ed92-3125-4246-97e0-49ca9db5ee26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221818Z:4bc5ed92-3125-4246-97e0-49ca9db5ee26" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ccf77e78-ea53-4b98-bf70-5c30d4f30ccb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5407" - ], - "x-ms-correlation-request-id": [ - "cf9f10cb-e44a-4698-b92d-23c75d49ce47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221818Z:cf9f10cb-e44a-4698-b92d-23c75d49ce47" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9527a3ac-1bc4-4b4f-92c3-a8c27f8f8044" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5406" - ], - "x-ms-correlation-request-id": [ - "91ed2744-1f16-4f89-8e0e-1d801e9fdc48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221818Z:91ed2744-1f16-4f89-8e0e-1d801e9fdc48" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5062bb31-fe7d-473c-b320-f8ee9dcdc8a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5405" - ], - "x-ms-correlation-request-id": [ - "0a6e71d6-2894-44bd-8795-a5603420915d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221818Z:0a6e71d6-2894-44bd-8795-a5603420915d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63cd6891-d685-40fc-ad59-ee13ff9d241e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5404" - ], - "x-ms-correlation-request-id": [ - "0afbbd8b-0cff-43bd-a841-58316e9e0ee6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221819Z:0afbbd8b-0cff-43bd-a841-58316e9e0ee6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17f53e76-56b8-4063-88c9-99e2de4c1548" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5403" - ], - "x-ms-correlation-request-id": [ - "9d35b454-d11f-4442-98bb-fd84e1fa272f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221819Z:9d35b454-d11f-4442-98bb-fd84e1fa272f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "87351c52-300a-40d6-b7f5-f890f135463d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5402" - ], - "x-ms-correlation-request-id": [ - "042d730f-579c-4916-be06-f7de1d0d66d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221819Z:042d730f-579c-4916-be06-f7de1d0d66d3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "45c630af-af51-4e8e-8182-f344864700f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5401" - ], - "x-ms-correlation-request-id": [ - "b41d63f9-bab9-43cc-a2b8-b0bf252a6446" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221819Z:b41d63f9-bab9-43cc-a2b8-b0bf252a6446" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c2fe3d51-5f66-4aca-805b-479834e4e513" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5400" - ], - "x-ms-correlation-request-id": [ - "ecd7d35b-c678-4535-8d6c-336e1c9b56d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221819Z:ecd7d35b-c678-4535-8d6c-336e1c9b56d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c54141a4-3530-49ae-9fa4-7846ca649fec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5399" - ], - "x-ms-correlation-request-id": [ - "8d60991c-d68d-4f33-ba1c-02d313ee17ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221819Z:8d60991c-d68d-4f33-ba1c-02d313ee17ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bd0203ed-f2ee-4abd-8d18-54eba95c28fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5398" - ], - "x-ms-correlation-request-id": [ - "c6633244-f6e6-4137-abf3-e39aebc10d0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221819Z:c6633244-f6e6-4137-abf3-e39aebc10d0c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "130f748a-5c4e-4d8d-ad39-9bb39c9c658a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5397" - ], - "x-ms-correlation-request-id": [ - "26186513-463a-4b96-ae0c-583f9094a71a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221820Z:26186513-463a-4b96-ae0c-583f9094a71a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11f90312-6395-426d-ae1a-3faa7587ef88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5396" - ], - "x-ms-correlation-request-id": [ - "9f40a850-008d-4f74-9cd5-6253ecef31e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221820Z:9f40a850-008d-4f74-9cd5-6253ecef31e8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed8fe9e9-22b6-4a42-b7a8-25859202281a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5395" - ], - "x-ms-correlation-request-id": [ - "83941151-c9e7-41e9-bc59-b928d6b3453c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221820Z:83941151-c9e7-41e9-bc59-b928d6b3453c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20793cc8-c357-4b43-b5c0-af7750aa6bbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5394" - ], - "x-ms-correlation-request-id": [ - "f24b742a-6656-4413-978c-cac9383ab7b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221820Z:f24b742a-6656-4413-978c-cac9383ab7b5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28e58190-3843-4370-9b64-8213dcfe6d19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5393" - ], - "x-ms-correlation-request-id": [ - "3f2c94cc-90f6-4e33-9f46-ca4013ff4e80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221820Z:3f2c94cc-90f6-4e33-9f46-ca4013ff4e80" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1ab0ba81-d6ed-4980-bc4a-4b7fdc1312f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5392" - ], - "x-ms-correlation-request-id": [ - "83257dfe-d521-4ff8-a962-615536923dd6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221820Z:83257dfe-d521-4ff8-a962-615536923dd6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ba17bd03-8359-4d67-b007-c6ba7e2941ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5391" - ], - "x-ms-correlation-request-id": [ - "d8e9fb3d-3b38-45d9-b2a8-cd2e6d7b2b0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221821Z:d8e9fb3d-3b38-45d9-b2a8-cd2e6d7b2b0c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e1f97bb-b2c8-4ecb-8124-e12afb9facc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5390" - ], - "x-ms-correlation-request-id": [ - "5a449eb3-54f8-4adb-b14e-70251f7ca661" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221821Z:5a449eb3-54f8-4adb-b14e-70251f7ca661" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6db0536e-93e2-45f7-8f09-2f44345ec746" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5389" - ], - "x-ms-correlation-request-id": [ - "f2af6bf5-6ad9-4939-a88d-da3ea6c14200" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221821Z:f2af6bf5-6ad9-4939-a88d-da3ea6c14200" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a437b1b6-5494-40ee-913e-9e5fddf5ca2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5388" - ], - "x-ms-correlation-request-id": [ - "4b5cf70a-2662-4a01-bb63-6db391da7de0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221821Z:4b5cf70a-2662-4a01-bb63-6db391da7de0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d5cab33-dea2-442f-8230-5dbf26e9127c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5387" - ], - "x-ms-correlation-request-id": [ - "7472c2ee-4d1e-4c34-807c-f8cbea9b1cf5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221821Z:7472c2ee-4d1e-4c34-807c-f8cbea9b1cf5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9cfe9a4b-6ab0-4ffb-b5f6-26617260c73a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5386" - ], - "x-ms-correlation-request-id": [ - "f19dda3b-bcc9-42cf-85db-eb4e3a754e60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221822Z:f19dda3b-bcc9-42cf-85db-eb4e3a754e60" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fd8734e-d5c5-47f1-b62d-4171d8a3d14e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5385" - ], - "x-ms-correlation-request-id": [ - "0104a15c-14b9-4edb-b5d9-5e814874c861" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221822Z:0104a15c-14b9-4edb-b5d9-5e814874c861" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "98c79f44-3589-44c3-9f87-e027aefc1412" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5384" - ], - "x-ms-correlation-request-id": [ - "fcb7d485-3c01-472a-b748-79ec2642bec2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221822Z:fcb7d485-3c01-472a-b748-79ec2642bec2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad975fbc-db50-4e43-ac16-c242540bab67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5383" - ], - "x-ms-correlation-request-id": [ - "eade7ec0-5a85-413b-8f67-f27c3918ecbc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221822Z:eade7ec0-5a85-413b-8f67-f27c3918ecbc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f4feedaa-843b-4bfd-a7e2-7608c643d67c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5382" - ], - "x-ms-correlation-request-id": [ - "3a619b20-1adb-4f72-9ccd-9dc14b8db69f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221822Z:3a619b20-1adb-4f72-9ccd-9dc14b8db69f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49813118-ad3f-4bf8-9682-fb0c97df61b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5381" - ], - "x-ms-correlation-request-id": [ - "0a8f7201-d98c-48ad-9bf5-052001dd8c59" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221822Z:0a8f7201-d98c-48ad-9bf5-052001dd8c59" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "16b8e8a2-d191-4820-ac6d-43302b47b71e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5380" - ], - "x-ms-correlation-request-id": [ - "0e0305ca-3ad1-4a92-9c0a-e5aa47e5b214" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221823Z:0e0305ca-3ad1-4a92-9c0a-e5aa47e5b214" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cff8f2e5-b511-4a15-a269-a1ec72f8afa0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5379" - ], - "x-ms-correlation-request-id": [ - "cf9a5816-472f-44fc-8eb0-a38562e18be7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221823Z:cf9a5816-472f-44fc-8eb0-a38562e18be7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5737a6c8-3a77-4a24-818e-bf75bceb4a5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5378" - ], - "x-ms-correlation-request-id": [ - "ecb94fd6-dbb6-452d-83b2-380a21d0b2f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221823Z:ecb94fd6-dbb6-452d-83b2-380a21d0b2f5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6e51c459-ebc2-4d6c-b3fe-0a6372138f60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5377" - ], - "x-ms-correlation-request-id": [ - "dfd5103f-dae2-482c-9e15-577c7a2fb642" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221823Z:dfd5103f-dae2-482c-9e15-577c7a2fb642" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "004232b7-be6c-460f-99d0-2185915a5760" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5376" - ], - "x-ms-correlation-request-id": [ - "bb3bda5e-0800-4e00-af4b-4c6519efd956" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221823Z:bb3bda5e-0800-4e00-af4b-4c6519efd956" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bae5a851-c876-4cf1-a579-dc34b6f36854" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5375" - ], - "x-ms-correlation-request-id": [ - "8e0a14f8-e86c-47e7-8170-76775167fb26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221823Z:8e0a14f8-e86c-47e7-8170-76775167fb26" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5cd30502-fb14-420f-ab90-645ef1cb5d9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5374" - ], - "x-ms-correlation-request-id": [ - "aab4df8d-63ba-4f4d-8c14-42ac802641b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221824Z:aab4df8d-63ba-4f4d-8c14-42ac802641b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1e06eabe-2f60-4be6-a5f3-81b4e44e84e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5373" - ], - "x-ms-correlation-request-id": [ - "0de49538-4943-4064-9b1e-d9a4d8040953" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221824Z:0de49538-4943-4064-9b1e-d9a4d8040953" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81e04494-4a87-4590-814c-0d6955d755c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5372" - ], - "x-ms-correlation-request-id": [ - "c891dca5-347b-4208-8297-94fdb1442c66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221824Z:c891dca5-347b-4208-8297-94fdb1442c66" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f1e0dd1-30e6-4f59-8cb0-53ccf9f3151b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5371" - ], - "x-ms-correlation-request-id": [ - "9390683d-7fc0-445b-b608-48a2653eeac7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221824Z:9390683d-7fc0-445b-b608-48a2653eeac7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "553f8a48-bf53-420d-aac7-824beafedbc4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5370" - ], - "x-ms-correlation-request-id": [ - "97f9433b-9431-422f-b443-2fe5a19943e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221825Z:97f9433b-9431-422f-b443-2fe5a19943e5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e8900fda-64c4-4281-b01a-62d0ba450a1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5369" - ], - "x-ms-correlation-request-id": [ - "a7cf41af-b2d7-48d9-b26a-0774ffca7084" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221825Z:a7cf41af-b2d7-48d9-b26a-0774ffca7084" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d42b3117-bd5b-46f0-b092-7d4b0c492c64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5368" - ], - "x-ms-correlation-request-id": [ - "39651366-14ad-4014-9346-cc2d7a1d3aff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221825Z:39651366-14ad-4014-9346-cc2d7a1d3aff" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "264c5809-0a27-4a5e-b407-5d5b7b9aa898" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5367" - ], - "x-ms-correlation-request-id": [ - "d0421cf7-b9ef-44f2-b4c0-09e9b58813f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221825Z:d0421cf7-b9ef-44f2-b4c0-09e9b58813f6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9bda816-54ae-4b53-90fc-5d3f846f5463" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5366" - ], - "x-ms-correlation-request-id": [ - "799b8444-6ff3-45ff-8253-a2067f8a002f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221826Z:799b8444-6ff3-45ff-8253-a2067f8a002f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d1ce1d9-713f-4aee-bd2f-80fe420a30c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5365" - ], - "x-ms-correlation-request-id": [ - "33a09e79-5fe8-493b-b129-2623d413a6f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221826Z:33a09e79-5fe8-493b-b129-2623d413a6f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2798d72b-d800-489b-a497-9e98ad9989cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5364" - ], - "x-ms-correlation-request-id": [ - "a385bf4b-b361-40c8-8733-60bc65f5a0ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221826Z:a385bf4b-b361-40c8-8733-60bc65f5a0ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88c5f2f1-a84a-431e-89a4-a3ce4ab89af7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5363" - ], - "x-ms-correlation-request-id": [ - "8deffbda-1a05-448a-828b-6eb31fd7d47e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221826Z:8deffbda-1a05-448a-828b-6eb31fd7d47e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9eed946-f8a9-4eeb-ae15-33ac75dbdc94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5362" - ], - "x-ms-correlation-request-id": [ - "999313de-66f3-4312-bb66-241ba8693cc0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221826Z:999313de-66f3-4312-bb66-241ba8693cc0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3e45e731-3d3e-4939-b85a-3dab4d752d76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5361" - ], - "x-ms-correlation-request-id": [ - "a94aafd2-ad4d-4e29-ad34-d8b61806f80e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221826Z:a94aafd2-ad4d-4e29-ad34-d8b61806f80e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c354fc1-f1b0-45a6-93c3-94e99c350e72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5360" - ], - "x-ms-correlation-request-id": [ - "4b9f1720-8ec1-480a-924e-71c19c151c63" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221826Z:4b9f1720-8ec1-480a-924e-71c19c151c63" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0140e962-b755-486a-8bd6-bec1c0700dac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5359" - ], - "x-ms-correlation-request-id": [ - "34aca681-db6a-4389-b0a9-140442e53305" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221827Z:34aca681-db6a-4389-b0a9-140442e53305" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fdba5b7-abc9-4894-8d5f-edf07246fe82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5358" - ], - "x-ms-correlation-request-id": [ - "85bd3b9f-345e-4b0a-8f08-0c7adac78f41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221827Z:85bd3b9f-345e-4b0a-8f08-0c7adac78f41" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb5f5c76-5aa9-471e-a61d-d1b29758ee36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5357" - ], - "x-ms-correlation-request-id": [ - "e2e6c656-08e1-4829-8633-e11cce1d12cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221827Z:e2e6c656-08e1-4829-8633-e11cce1d12cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fb949a6e-76f7-41fd-b587-5e39d29baae6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5356" - ], - "x-ms-correlation-request-id": [ - "0b3cc57e-7308-4c9a-b07f-5f2add15876b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221827Z:0b3cc57e-7308-4c9a-b07f-5f2add15876b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3c2a0c63-72f6-4571-9b8c-25a32af0f999" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5355" - ], - "x-ms-correlation-request-id": [ - "0f3028d1-a846-4874-b98e-72a6eb4e2940" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221827Z:0f3028d1-a846-4874-b98e-72a6eb4e2940" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "068a8660-49a0-4e8b-b452-639363f28317" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5354" - ], - "x-ms-correlation-request-id": [ - "2aa7fb99-c1e4-43c8-9953-fd4db1828963" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221827Z:2aa7fb99-c1e4-43c8-9953-fd4db1828963" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3462a9c0-21a1-446e-8dd7-d34eef17698a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5353" - ], - "x-ms-correlation-request-id": [ - "1dbc60fa-d95a-40af-8933-1061f8d051ba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221827Z:1dbc60fa-d95a-40af-8933-1061f8d051ba" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40b87afe-1e0f-4714-89cb-d84ad89f313a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5352" - ], - "x-ms-correlation-request-id": [ - "b6b4aa0f-7bf0-43dc-9c08-b93c1042bd67" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221828Z:b6b4aa0f-7bf0-43dc-9c08-b93c1042bd67" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d43f12e-5ccd-4bf4-bfdd-458f290537bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5351" - ], - "x-ms-correlation-request-id": [ - "54889949-7a36-4847-b511-6ab65e39b421" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221828Z:54889949-7a36-4847-b511-6ab65e39b421" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24e1df0d-38f0-4157-9d3d-c01366f4133c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5350" - ], - "x-ms-correlation-request-id": [ - "04b077e9-b375-4c37-93ae-262ee01a4887" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221828Z:04b077e9-b375-4c37-93ae-262ee01a4887" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f1d19a1-5502-4462-84bb-f922183b6ca8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5349" - ], - "x-ms-correlation-request-id": [ - "73dc7caa-66ed-455b-a261-979e2fefa8d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221828Z:73dc7caa-66ed-455b-a261-979e2fefa8d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a634bc67-fcb1-4cfb-88df-3d351fb5ca6d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5348" - ], - "x-ms-correlation-request-id": [ - "564c12bc-7c31-4a88-8120-3f5d8cdb1bb0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221828Z:564c12bc-7c31-4a88-8120-3f5d8cdb1bb0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75b632a2-8219-4a05-a43e-082a6aef6f12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5347" - ], - "x-ms-correlation-request-id": [ - "e04c2927-9a31-4cfe-bce7-7e58754ab988" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221828Z:e04c2927-9a31-4cfe-bce7-7e58754ab988" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7bbd2dc5-e69f-49d4-8d41-d21dcd8960c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5346" - ], - "x-ms-correlation-request-id": [ - "45c860f2-d0e4-457c-81e4-d2877c5abe1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221829Z:45c860f2-d0e4-457c-81e4-d2877c5abe1c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0039db97-b816-47fd-a58b-234384bb6aba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5345" - ], - "x-ms-correlation-request-id": [ - "d8b7a3b4-4d42-4b43-b23c-be2907c6595f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221829Z:d8b7a3b4-4d42-4b43-b23c-be2907c6595f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2a257b89-9584-4efe-b522-45048cea6e0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5344" - ], - "x-ms-correlation-request-id": [ - "673f3b92-229f-4d3a-8cd8-4283f504f2c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221829Z:673f3b92-229f-4d3a-8cd8-4283f504f2c3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b53ff349-91ee-49fc-8136-bd8dcb61ad69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5343" - ], - "x-ms-correlation-request-id": [ - "ed37b8f3-d00e-4cb9-abf1-c57e8ae1c32f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221829Z:ed37b8f3-d00e-4cb9-abf1-c57e8ae1c32f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "352cdd4d-e26e-4bd2-ad31-d9eb1aeb2afc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5342" - ], - "x-ms-correlation-request-id": [ - "858c3e1a-4d66-467b-871e-8288872e5f2d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221829Z:858c3e1a-4d66-467b-871e-8288872e5f2d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fbbf5fee-aae4-4ceb-84be-71689e968470" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5341" - ], - "x-ms-correlation-request-id": [ - "6a097863-19af-46d3-b06a-e0184c1b5abd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221829Z:6a097863-19af-46d3-b06a-e0184c1b5abd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4061a4be-1860-4de7-98d6-4d0430b086b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5340" - ], - "x-ms-correlation-request-id": [ - "fd2e89a6-6297-42cd-9dab-81a0f977db0b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221830Z:fd2e89a6-6297-42cd-9dab-81a0f977db0b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "178f37a2-e1a0-4559-b556-3bb9a9e4ca48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5339" - ], - "x-ms-correlation-request-id": [ - "0e375e44-9402-4d47-b820-a17192c6d628" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221830Z:0e375e44-9402-4d47-b820-a17192c6d628" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9b06a424-8c02-4c54-9e20-78fbd06946e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5338" - ], - "x-ms-correlation-request-id": [ - "f3b54ddf-5f1a-4f23-96b2-90e212917c79" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221830Z:f3b54ddf-5f1a-4f23-96b2-90e212917c79" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a1344857-175a-4b8c-87cb-92221671da23" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5337" - ], - "x-ms-correlation-request-id": [ - "d9b331e8-ba68-425d-8950-721511cdd484" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221830Z:d9b331e8-ba68-425d-8950-721511cdd484" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "855d6d5c-a31c-4fbf-ae7c-04af279b021e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5336" - ], - "x-ms-correlation-request-id": [ - "25487495-ee25-47ac-89e5-2e7085470789" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221830Z:25487495-ee25-47ac-89e5-2e7085470789" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d47203c2-a468-48c4-bdb2-aa08bb1d3c8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5335" - ], - "x-ms-correlation-request-id": [ - "822dd263-d25d-4eb2-90b3-66f2213263b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221830Z:822dd263-d25d-4eb2-90b3-66f2213263b3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2407a3b-180c-4a85-b40d-0df42f211e97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5334" - ], - "x-ms-correlation-request-id": [ - "86602ed9-38f2-4070-9147-286c0ae67ce1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221831Z:86602ed9-38f2-4070-9147-286c0ae67ce1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61d162e9-eae5-46a0-8849-0568d9478102" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5333" - ], - "x-ms-correlation-request-id": [ - "b23a5937-cc2e-4ae6-bd90-d49f6c0e1e16" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221831Z:b23a5937-cc2e-4ae6-bd90-d49f6c0e1e16" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3c4c1cff-ee08-443a-b191-9fb2c60916f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5332" - ], - "x-ms-correlation-request-id": [ - "d6062e19-4089-4317-a6ec-4bcbb0be6e48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221831Z:d6062e19-4089-4317-a6ec-4bcbb0be6e48" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8471272-02c5-46d5-871b-e06b6a6ca77b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5331" - ], - "x-ms-correlation-request-id": [ - "501bf9f5-d697-4686-8089-45dd7a836274" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221831Z:501bf9f5-d697-4686-8089-45dd7a836274" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "208f90d5-57ef-4f90-96fa-51d717db8750" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5330" - ], - "x-ms-correlation-request-id": [ - "cd0b3574-4c58-43b5-b65c-d035b16f941b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221831Z:cd0b3574-4c58-43b5-b65c-d035b16f941b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9805fa10-ee82-4711-9eb8-2b22cb89036f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5329" - ], - "x-ms-correlation-request-id": [ - "c18b2424-a73d-4abc-bdf2-652cb70d6990" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221831Z:c18b2424-a73d-4abc-bdf2-652cb70d6990" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dfa040d6-c650-4ca9-8597-63309326d7c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5328" - ], - "x-ms-correlation-request-id": [ - "04c08abc-3783-40b3-bfbc-b27ca914c00b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221831Z:04c08abc-3783-40b3-bfbc-b27ca914c00b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5f93a3df-5c4a-41cd-90f0-4561bfe777ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5327" - ], - "x-ms-correlation-request-id": [ - "1ab2f8b5-7721-4775-a29b-e957b6383e43" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221832Z:1ab2f8b5-7721-4775-a29b-e957b6383e43" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c1617e9-f284-4071-8ae8-17ea0ce580e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5326" - ], - "x-ms-correlation-request-id": [ - "72147152-eb1f-4e76-9f01-4726c1a090b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221832Z:72147152-eb1f-4e76-9f01-4726c1a090b6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8c9e6e1-8188-430f-aa35-21dac205f607" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5325" - ], - "x-ms-correlation-request-id": [ - "655476bf-5429-472b-8adf-deecce387963" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221832Z:655476bf-5429-472b-8adf-deecce387963" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bc17e48d-60bc-400a-b3be-0950b39ddc91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5324" - ], - "x-ms-correlation-request-id": [ - "a0c55d76-f83e-4add-b83b-dfaf21ada881" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221832Z:a0c55d76-f83e-4add-b83b-dfaf21ada881" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "edb6d690-8e0c-48c7-8bdc-81111c2830c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5323" - ], - "x-ms-correlation-request-id": [ - "1485fec3-a64c-4734-b4d5-7b99fe032d05" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221832Z:1485fec3-a64c-4734-b4d5-7b99fe032d05" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "564a0971-fa5f-4d7b-84f1-68fc0784a2c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5322" - ], - "x-ms-correlation-request-id": [ - "7d79329f-4942-4815-9ec9-dd434677c7f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221832Z:7d79329f-4942-4815-9ec9-dd434677c7f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9ef43cd-a562-488e-8456-fe905391c915" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5321" - ], - "x-ms-correlation-request-id": [ - "8644af3e-bbea-4ba0-9cbb-73c4bc075079" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221833Z:8644af3e-bbea-4ba0-9cbb-73c4bc075079" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "24de5b3e-9116-4e14-bf36-455c6a6c2980" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5320" - ], - "x-ms-correlation-request-id": [ - "dc722fc5-38cd-4dbe-987f-99da0ec2e54c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221833Z:dc722fc5-38cd-4dbe-987f-99da0ec2e54c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8161cf7-1497-4921-8249-e453452b2758" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5319" - ], - "x-ms-correlation-request-id": [ - "b1ef20ba-e764-48f9-be8f-b043a3938750" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221833Z:b1ef20ba-e764-48f9-be8f-b043a3938750" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0460f218-eae5-438a-9aae-79efc9e61c63" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5318" - ], - "x-ms-correlation-request-id": [ - "0aaa59fe-737c-4709-b060-dcd04b4b9901" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221833Z:0aaa59fe-737c-4709-b060-dcd04b4b9901" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "193f933a-bf8c-482f-aa82-25c8a413bff7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5317" - ], - "x-ms-correlation-request-id": [ - "9f2ad9a3-852d-4814-a9a0-f404df9d6f3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221833Z:9f2ad9a3-852d-4814-a9a0-f404df9d6f3e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54db0469-138c-487d-9416-b64b1d0c1f42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5316" - ], - "x-ms-correlation-request-id": [ - "21d9ea99-a816-4ec9-a19c-2bf7a4693206" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221834Z:21d9ea99-a816-4ec9-a19c-2bf7a4693206" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "72b66ab8-a8f6-4295-b7ba-c95150308a76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5315" - ], - "x-ms-correlation-request-id": [ - "8ef0fcdb-d3ff-46b4-9b85-6b7a0140918e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221834Z:8ef0fcdb-d3ff-46b4-9b85-6b7a0140918e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31148e1b-b96e-41ed-a74f-568508134eea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5314" - ], - "x-ms-correlation-request-id": [ - "3169c55c-7177-4685-9807-15578b7be0f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221834Z:3169c55c-7177-4685-9807-15578b7be0f4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9802fa8-f06a-45c7-a591-c35e7b3a235f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5313" - ], - "x-ms-correlation-request-id": [ - "0fd2a95c-82d7-4ea3-bc64-9b17b5841781" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221834Z:0fd2a95c-82d7-4ea3-bc64-9b17b5841781" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d1bf4a11-568a-4e4c-843d-f824233a7429" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5312" - ], - "x-ms-correlation-request-id": [ - "2c3b7924-bc07-445d-bc69-b58af6965c8b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221834Z:2c3b7924-bc07-445d-bc69-b58af6965c8b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f895f079-fabc-47cb-a1af-1fc62279b32b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5311" - ], - "x-ms-correlation-request-id": [ - "35e9a0ea-cfc9-467b-b1c2-f59fd54129c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221835Z:35e9a0ea-cfc9-467b-b1c2-f59fd54129c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08e24faa-8ea3-426c-bf3f-b031a183e041" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5310" - ], - "x-ms-correlation-request-id": [ - "bd372d97-5abf-427c-b47a-43e0761bed71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221835Z:bd372d97-5abf-427c-b47a-43e0761bed71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed9dce68-14a2-4815-b88a-c48f0de8a42c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5309" - ], - "x-ms-correlation-request-id": [ - "36100b9e-5077-40ca-a97e-68bd89ef500d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221835Z:36100b9e-5077-40ca-a97e-68bd89ef500d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74ce1fb7-6666-4b10-a36e-d625d3c7a816" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5308" - ], - "x-ms-correlation-request-id": [ - "5a6caa80-df88-43b3-af84-671a71e7ea3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221835Z:5a6caa80-df88-43b3-af84-671a71e7ea3d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "376eefad-2816-4388-921b-2e034d7e7e09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5307" - ], - "x-ms-correlation-request-id": [ - "4da93ffd-38b2-4839-a2d6-c40d9fdcc995" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221835Z:4da93ffd-38b2-4839-a2d6-c40d9fdcc995" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f7e1744b-3333-437e-a7d5-c44a6574f879" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5306" - ], - "x-ms-correlation-request-id": [ - "b180028d-ce63-4c62-be2c-73b2fc4d34b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221835Z:b180028d-ce63-4c62-be2c-73b2fc4d34b1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c2ff7ece-c0a7-45d0-b37e-28c718a8ebb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5305" - ], - "x-ms-correlation-request-id": [ - "40ea10df-19f8-443b-bb57-c8e96e1a98d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221836Z:40ea10df-19f8-443b-bb57-c8e96e1a98d6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "501fa3aa-d501-45bd-a6a9-e126536685df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5304" - ], - "x-ms-correlation-request-id": [ - "d8727bf4-0548-4526-88d1-e1cacd7a7c3f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221836Z:d8727bf4-0548-4526-88d1-e1cacd7a7c3f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02ceb0f9-cfd9-4484-9b27-d19921f4d0b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5303" - ], - "x-ms-correlation-request-id": [ - "bb6b2f63-0236-464e-b529-e126051f9dcc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221836Z:bb6b2f63-0236-464e-b529-e126051f9dcc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0725fdec-b69b-4524-b52a-b104f446c77b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5302" - ], - "x-ms-correlation-request-id": [ - "3ff67c2c-e038-4bf2-ad38-c1f89d091f3b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221836Z:3ff67c2c-e038-4bf2-ad38-c1f89d091f3b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4080c5bb-989f-4932-afbb-cdf2c94239dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5301" - ], - "x-ms-correlation-request-id": [ - "9ecdbf96-a79e-4760-af92-7a9e28863c10" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221837Z:9ecdbf96-a79e-4760-af92-7a9e28863c10" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0843b5a5-efcc-44ad-ad93-00cf2cd91a21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5300" - ], - "x-ms-correlation-request-id": [ - "e0749d39-a69e-48be-9a81-5e0af4ce4c71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221837Z:e0749d39-a69e-48be-9a81-5e0af4ce4c71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d0f1937a-62e1-4960-99d8-cf2ea9708cd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5299" - ], - "x-ms-correlation-request-id": [ - "da801507-5dc5-4c57-8f5d-778bce3acd63" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221837Z:da801507-5dc5-4c57-8f5d-778bce3acd63" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "391a1917-3fa2-4779-84fe-da3bac517356" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5298" - ], - "x-ms-correlation-request-id": [ - "9d9d6133-e781-40d7-a7a1-d48ad1c3f6ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221837Z:9d9d6133-e781-40d7-a7a1-d48ad1c3f6ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "94d07c4d-19eb-41d1-81cf-83878dd97705" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5297" - ], - "x-ms-correlation-request-id": [ - "5f1e91f6-e7e0-4aaa-b088-b0da489f841a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221837Z:5f1e91f6-e7e0-4aaa-b088-b0da489f841a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a7ec532a-d2e8-4254-9e50-db2f215c3634" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5296" - ], - "x-ms-correlation-request-id": [ - "d8745413-7272-439d-8707-edeb24d163fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221837Z:d8745413-7272-439d-8707-edeb24d163fd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4cc87d72-b6a3-4aaa-8d4b-45758c35a34c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5295" - ], - "x-ms-correlation-request-id": [ - "51ff0593-031d-4b0f-999b-167d90ee1694" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221837Z:51ff0593-031d-4b0f-999b-167d90ee1694" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cb5a22f5-ffb6-41fd-8854-cc1eab4ca5b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5294" - ], - "x-ms-correlation-request-id": [ - "bed71d98-2b92-49bd-bd8f-54810e049732" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221838Z:bed71d98-2b92-49bd-bd8f-54810e049732" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7c24795-84c6-4db8-bdbb-79b4300539db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5293" - ], - "x-ms-correlation-request-id": [ - "eb632948-974d-4c1f-9e26-8acb0e9e942b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221838Z:eb632948-974d-4c1f-9e26-8acb0e9e942b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ca484c2-2efa-4ec7-8038-6a163fb2d9c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5292" - ], - "x-ms-correlation-request-id": [ - "02a7d8ae-cd10-45c6-b640-5b17786ab852" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221838Z:02a7d8ae-cd10-45c6-b640-5b17786ab852" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d2ea58d-3844-4512-9aa1-c79f9ecc0bee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5291" - ], - "x-ms-correlation-request-id": [ - "520869d1-54d2-435e-82cd-39a929a710d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221838Z:520869d1-54d2-435e-82cd-39a929a710d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "405dca7b-a4ba-4359-919b-14bb8e3e5286" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5290" - ], - "x-ms-correlation-request-id": [ - "0473fb6e-64aa-4fbf-a5f8-fea675163425" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221838Z:0473fb6e-64aa-4fbf-a5f8-fea675163425" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a1f9bac-c07b-4bc6-b871-933b95b492e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5289" - ], - "x-ms-correlation-request-id": [ - "4e3720ae-6a29-4982-b613-706c884ea6a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221838Z:4e3720ae-6a29-4982-b613-706c884ea6a9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d79b9ea-30cf-4604-8a29-6b8eae0419bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5288" - ], - "x-ms-correlation-request-id": [ - "276357bb-55f3-421f-a0b9-3e39125cee84" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221838Z:276357bb-55f3-421f-a0b9-3e39125cee84" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b9ac4def-7581-4fc6-a4fc-982f3517a172" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5287" - ], - "x-ms-correlation-request-id": [ - "3fc6e20c-e43d-4f51-986f-b6b0708d219f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221839Z:3fc6e20c-e43d-4f51-986f-b6b0708d219f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1dab4f8-9786-409e-bbe3-a24a7af9e610" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5286" - ], - "x-ms-correlation-request-id": [ - "7430e5f0-22d6-4b10-865d-e5e2f85e78ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221839Z:7430e5f0-22d6-4b10-865d-e5e2f85e78ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9222d4b2-8ca5-419f-8593-0f3644755016" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5285" - ], - "x-ms-correlation-request-id": [ - "332e1e0a-53ab-4751-9606-aa18d37285bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221839Z:332e1e0a-53ab-4751-9606-aa18d37285bc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73fa2c90-0763-472d-b571-6af2b8a6f9b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5284" - ], - "x-ms-correlation-request-id": [ - "0446f8d1-349b-4a2c-b040-70bb273e3d91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221839Z:0446f8d1-349b-4a2c-b040-70bb273e3d91" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f5c030e-50f5-480f-8889-c0976a1e38bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5283" - ], - "x-ms-correlation-request-id": [ - "3fa98ab1-6d1a-4733-92ba-68e061908826" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221839Z:3fa98ab1-6d1a-4733-92ba-68e061908826" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bd7d6fe4-894e-4b6c-84ab-f5ff5b6e43d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5282" - ], - "x-ms-correlation-request-id": [ - "cea61a5a-6be4-42ae-b12c-45bb7adacca2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221839Z:cea61a5a-6be4-42ae-b12c-45bb7adacca2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5ed7d55a-dfb4-439d-9bad-79f5f41bf4f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5281" - ], - "x-ms-correlation-request-id": [ - "9de9e031-c9f6-4a33-8fb8-74ef32754b34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221840Z:9de9e031-c9f6-4a33-8fb8-74ef32754b34" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b72a5b1f-5d31-42fc-bf3b-91ba1f865535" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5280" - ], - "x-ms-correlation-request-id": [ - "9d54298b-d1ca-444d-b0d8-3f77d545c2ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221840Z:9d54298b-d1ca-444d-b0d8-3f77d545c2ce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e3a62aac-64c2-4ecc-b46b-4dade82ac34b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5279" - ], - "x-ms-correlation-request-id": [ - "b21ac297-ede1-4a55-a83c-25c0ede280c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221840Z:b21ac297-ede1-4a55-a83c-25c0ede280c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c59a649b-224e-4676-9557-5f77d0d98ccf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5278" - ], - "x-ms-correlation-request-id": [ - "5b0c3ec9-1888-458b-8ded-8c0f1e182b0b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221840Z:5b0c3ec9-1888-458b-8ded-8c0f1e182b0b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "efcf327f-9903-42b6-8b3f-19fdfed088ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5277" - ], - "x-ms-correlation-request-id": [ - "23fc1825-0f62-414b-b5fb-ff8c68dc86b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221840Z:23fc1825-0f62-414b-b5fb-ff8c68dc86b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a9c61f5c-e501-4e5b-a55b-987d3250ed64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5276" - ], - "x-ms-correlation-request-id": [ - "f6c21f66-8799-4066-8225-46fcfb589a97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221840Z:f6c21f66-8799-4066-8225-46fcfb589a97" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3808f8ca-9a0f-4b54-8ee9-6811a58a3a41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5275" - ], - "x-ms-correlation-request-id": [ - "b44943ab-7334-4aaa-80ec-d6a822c46a4a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221841Z:b44943ab-7334-4aaa-80ec-d6a822c46a4a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3e1f5db9-54ff-419b-b815-6ac3c8560f14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5274" - ], - "x-ms-correlation-request-id": [ - "0a7668f8-7c9f-4529-8d08-03a0c2a6c37e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221841Z:0a7668f8-7c9f-4529-8d08-03a0c2a6c37e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "baaab70c-150b-4091-958c-e82d57e4b8be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5273" - ], - "x-ms-correlation-request-id": [ - "d6e85a97-63cb-4019-8c0d-17bd24a8a7cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221841Z:d6e85a97-63cb-4019-8c0d-17bd24a8a7cd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ec9e6845-2aa1-41b5-93bc-b83854cb541b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5272" - ], - "x-ms-correlation-request-id": [ - "dc1f286a-748a-4b80-9902-f2377f9cd4c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221841Z:dc1f286a-748a-4b80-9902-f2377f9cd4c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9f97760f-0225-4e97-8ff4-304439fde039" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5271" - ], - "x-ms-correlation-request-id": [ - "4eb154a0-36e9-4ec5-88e5-fd2af1795c53" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221841Z:4eb154a0-36e9-4ec5-88e5-fd2af1795c53" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20f9de79-a0a1-4807-926e-d57ffccc0f51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5270" - ], - "x-ms-correlation-request-id": [ - "17e8db69-cab0-480f-a9a3-7ffdb1a5f1c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221841Z:17e8db69-cab0-480f-a9a3-7ffdb1a5f1c8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8750f76f-1282-4a98-bd75-82701f72af51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5269" - ], - "x-ms-correlation-request-id": [ - "43e38fd2-dd84-4d38-b7c1-d801615b0b50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221842Z:43e38fd2-dd84-4d38-b7c1-d801615b0b50" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:41 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cdb477de-d981-4a7e-8dec-033102851b70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5268" - ], - "x-ms-correlation-request-id": [ - "26ac0e86-bc19-454a-a22b-a17ddfbc89f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221842Z:26ac0e86-bc19-454a-a22b-a17ddfbc89f3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "53f3aba2-2a56-49ee-b593-63d8b0a05673" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5267" - ], - "x-ms-correlation-request-id": [ - "7577c27e-c5c9-4a7d-a904-656c52c6b736" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221842Z:7577c27e-c5c9-4a7d-a904-656c52c6b736" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f87620f4-402b-47f6-8d85-1559a567af0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5266" - ], - "x-ms-correlation-request-id": [ - "8f789be7-0b52-4514-a9ad-cc731c95c636" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221842Z:8f789be7-0b52-4514-a9ad-cc731c95c636" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4506d045-0f8b-4f8e-8630-03d27d050f35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5265" - ], - "x-ms-correlation-request-id": [ - "e161bae2-9010-4306-97c2-e7db7672976f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221842Z:e161bae2-9010-4306-97c2-e7db7672976f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cbe81c08-7a39-4937-9b03-cacdfead8b57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5264" - ], - "x-ms-correlation-request-id": [ - "70ed8b33-fd95-407f-8404-8502536e11c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221842Z:70ed8b33-fd95-407f-8404-8502536e11c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2f3b6904-ceb2-49bb-b494-8f7c70fc0424" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5263" - ], - "x-ms-correlation-request-id": [ - "02216c86-ce12-4581-a3c3-7ef760942ef6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221843Z:02216c86-ce12-4581-a3c3-7ef760942ef6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f9b840f0-3ba3-4b6a-8413-c17605dd67eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5262" - ], - "x-ms-correlation-request-id": [ - "c554a557-ff73-4577-b906-6e7bdcd8afc6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221843Z:c554a557-ff73-4577-b906-6e7bdcd8afc6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b092a44-9232-4940-8693-900ed887eeef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5261" - ], - "x-ms-correlation-request-id": [ - "21bb0e24-21e5-43f7-930c-b8fcf17825cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221843Z:21bb0e24-21e5-43f7-930c-b8fcf17825cc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48db6ff5-209a-409c-848b-defec4d8990a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5260" - ], - "x-ms-correlation-request-id": [ - "6e640852-703d-4411-a9a2-4f6900dc8711" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221843Z:6e640852-703d-4411-a9a2-4f6900dc8711" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f2b00c0-87cf-43ed-9980-169cb94f7931" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5259" - ], - "x-ms-correlation-request-id": [ - "678fae86-b619-4367-a2fd-f7b57fe1a6db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221843Z:678fae86-b619-4367-a2fd-f7b57fe1a6db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8caef351-7a3d-4c3a-81ba-4b0dc3394cc4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5258" - ], - "x-ms-correlation-request-id": [ - "2223adf3-d6b6-469a-8d0f-e2f3ae9e3b67" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221843Z:2223adf3-d6b6-469a-8d0f-e2f3ae9e3b67" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f49fd0a2-e787-4aa8-901f-5d5f496a3bb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5257" - ], - "x-ms-correlation-request-id": [ - "397bfc52-b511-4dde-9fca-634475e9048f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221844Z:397bfc52-b511-4dde-9fca-634475e9048f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fa06bd99-6ba9-47e9-bba3-f90f4b2a0554" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5256" - ], - "x-ms-correlation-request-id": [ - "585a13c6-76d8-4a17-b8f1-dcfd3730c6af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221844Z:585a13c6-76d8-4a17-b8f1-dcfd3730c6af" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5e22b113-5ca1-4ba3-b69e-cb0463fcf482" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5255" - ], - "x-ms-correlation-request-id": [ - "c0705604-05ec-4805-861e-2c9357b5b6e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221844Z:c0705604-05ec-4805-861e-2c9357b5b6e5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8a808bc0-d21f-4419-8a59-2a667622bfa6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5254" - ], - "x-ms-correlation-request-id": [ - "545cbbcc-b91d-4248-92ef-1a19dea8a855" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221844Z:545cbbcc-b91d-4248-92ef-1a19dea8a855" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3ff007ca-d27d-4199-94f5-286cbac16c73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5253" - ], - "x-ms-correlation-request-id": [ - "6aeb3710-e425-4e90-891a-4e799ff1db11" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221844Z:6aeb3710-e425-4e90-891a-4e799ff1db11" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73ed5a14-7c21-4029-b8fa-43691842a177" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5252" - ], - "x-ms-correlation-request-id": [ - "f96a25cb-c581-42fb-a745-b1f80f1cce5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221845Z:f96a25cb-c581-42fb-a745-b1f80f1cce5e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3af6728-5f9e-47de-85eb-f3cc81325b9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5251" - ], - "x-ms-correlation-request-id": [ - "779cd8dd-4dd9-4f1f-a10b-b0f36eed2ed0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221845Z:779cd8dd-4dd9-4f1f-a10b-b0f36eed2ed0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99759463-d1a8-44b7-afa8-05d37e5032b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5250" - ], - "x-ms-correlation-request-id": [ - "a6cf00df-b950-4500-b854-81bb68c09354" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221845Z:a6cf00df-b950-4500-b854-81bb68c09354" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8db461be-983c-4f32-bf2d-a28069e0bcbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5249" - ], - "x-ms-correlation-request-id": [ - "69d34c37-0eac-411f-bcc4-473c14ee2f51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221845Z:69d34c37-0eac-411f-bcc4-473c14ee2f51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4d9d8aba-f299-450e-b1e0-919905006cba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5248" - ], - "x-ms-correlation-request-id": [ - "30ee90e9-4572-44a5-94c7-43e29f8d8eae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221845Z:30ee90e9-4572-44a5-94c7-43e29f8d8eae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17c50f39-53f9-4038-a3e2-02e2f00680ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5247" - ], - "x-ms-correlation-request-id": [ - "5757787e-6209-4788-bd37-d3dae4190126" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221845Z:5757787e-6209-4788-bd37-d3dae4190126" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1168450c-1826-4d54-b508-c1e4da0f56e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5246" - ], - "x-ms-correlation-request-id": [ - "b97e22a5-cd0a-407c-b17e-83e9f2cb6f8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221845Z:b97e22a5-cd0a-407c-b17e-83e9f2cb6f8c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef98b23e-035e-44be-9a63-caceae15b427" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5245" - ], - "x-ms-correlation-request-id": [ - "88b2d09c-fcc9-4741-9db8-fca22f6a10a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221846Z:88b2d09c-fcc9-4741-9db8-fca22f6a10a0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f1e1da2-be3b-4a4e-a608-daede675d170" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5244" - ], - "x-ms-correlation-request-id": [ - "33b8e950-a964-4b55-b51e-2dd3952aa689" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221846Z:33b8e950-a964-4b55-b51e-2dd3952aa689" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b822d218-f806-4937-af11-461023fc5dc3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5243" - ], - "x-ms-correlation-request-id": [ - "602571d2-8bdd-47d4-a0c4-4fd1af351c73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221846Z:602571d2-8bdd-47d4-a0c4-4fd1af351c73" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8c7b6e8c-77c7-4a61-88ea-d23b7cdd794c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5242" - ], - "x-ms-correlation-request-id": [ - "f1846fb9-ef0d-4237-a27a-31faff3cb743" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221846Z:f1846fb9-ef0d-4237-a27a-31faff3cb743" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6fc979b5-a2ba-48ca-a468-9c5836a80005" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5241" - ], - "x-ms-correlation-request-id": [ - "cafa2ba3-0238-40cb-94b3-192649abcbb4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221846Z:cafa2ba3-0238-40cb-94b3-192649abcbb4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cda18428-7ab2-4516-abe6-25a11e530a74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5240" - ], - "x-ms-correlation-request-id": [ - "52c74cc5-15af-4efb-8cf8-9e61847911d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221846Z:52c74cc5-15af-4efb-8cf8-9e61847911d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d32cc45-be0d-4e5e-b26f-12005c02613a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5239" - ], - "x-ms-correlation-request-id": [ - "b90026c4-c92a-4f62-a246-cbf53ec65c11" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221847Z:b90026c4-c92a-4f62-a246-cbf53ec65c11" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "060cbe59-898f-4209-b0f4-621cfa2d56c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5238" - ], - "x-ms-correlation-request-id": [ - "7d1d72f2-f281-4ad1-b4cf-7fd1c27d8f94" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221847Z:7d1d72f2-f281-4ad1-b4cf-7fd1c27d8f94" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e76038db-14c0-4aa4-9b83-65e4334167c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5237" - ], - "x-ms-correlation-request-id": [ - "73b709b4-5369-4055-ad68-b1f4809c781a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221847Z:73b709b4-5369-4055-ad68-b1f4809c781a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "07c48235-b521-4077-b5f7-47a92e8f1243" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5236" - ], - "x-ms-correlation-request-id": [ - "4c5f1ba3-a87e-4ed6-b92d-01248b14fde1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221847Z:4c5f1ba3-a87e-4ed6-b92d-01248b14fde1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35d66e71-1b56-42cb-9762-c019a680a24f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5235" - ], - "x-ms-correlation-request-id": [ - "7c49d199-f45e-43a5-81e4-71904808eab2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221847Z:7c49d199-f45e-43a5-81e4-71904808eab2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1514505e-3c9e-4210-a5c7-e732e4380bfe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5234" - ], - "x-ms-correlation-request-id": [ - "7ab3c594-4dc5-4671-8d41-0771811f06d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221848Z:7ab3c594-4dc5-4671-8d41-0771811f06d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9fba6c2f-e20f-4018-99bb-7b813842a002" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5233" - ], - "x-ms-correlation-request-id": [ - "133fd884-d743-45ab-96eb-b3aaf735565d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221848Z:133fd884-d743-45ab-96eb-b3aaf735565d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d43a3baa-a652-496d-9f45-9a25c18165ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5232" - ], - "x-ms-correlation-request-id": [ - "b7f5f68e-e11c-4691-a5a8-006e8aa47833" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221848Z:b7f5f68e-e11c-4691-a5a8-006e8aa47833" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b895b6af-abc8-4f9a-9a6a-6cd7a3189ce7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5231" - ], - "x-ms-correlation-request-id": [ - "cfea8aa7-7cb9-401c-a500-bed390e825c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221848Z:cfea8aa7-7cb9-401c-a500-bed390e825c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e610600a-dbc0-45c1-afbf-f64fe57fc356" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5230" - ], - "x-ms-correlation-request-id": [ - "fb11826c-7729-4185-949e-a3f9f9db48b9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221848Z:fb11826c-7729-4185-949e-a3f9f9db48b9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f52e6712-6321-4e0c-bad5-a8cb84a595ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5229" - ], - "x-ms-correlation-request-id": [ - "2ee5226e-5f9b-47a7-b008-a635d3069c4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221849Z:2ee5226e-5f9b-47a7-b008-a635d3069c4b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "488422d3-5318-49ce-ab7e-5b0ca94ba2f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5228" - ], - "x-ms-correlation-request-id": [ - "7ed198e0-d2fa-4556-b710-367830511e24" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221849Z:7ed198e0-d2fa-4556-b710-367830511e24" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "780619a4-2125-473d-8979-f6c402596ac7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5227" - ], - "x-ms-correlation-request-id": [ - "f8457a75-760e-414c-9bf5-fddd36dc40db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221849Z:f8457a75-760e-414c-9bf5-fddd36dc40db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4495e058-1eca-4729-8f18-43f2cb31d918" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5226" - ], - "x-ms-correlation-request-id": [ - "2f09d90b-a102-4210-aefd-4227fccf7fff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221849Z:2f09d90b-a102-4210-aefd-4227fccf7fff" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d37f2c0-feec-4d32-aeca-7ef81de36cd2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5225" - ], - "x-ms-correlation-request-id": [ - "1f0304f4-7892-450d-b7fe-d82c16c2c6f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221849Z:1f0304f4-7892-450d-b7fe-d82c16c2c6f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7c2f3ff-b36e-4f9c-88ab-3dae3f3b61c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5224" - ], - "x-ms-correlation-request-id": [ - "0d12d3fc-2f39-4735-b9ef-1df44210e3e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221849Z:0d12d3fc-2f39-4735-b9ef-1df44210e3e4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1d53a830-24f2-4d61-a9b5-4c1a71232e51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5223" - ], - "x-ms-correlation-request-id": [ - "50795349-aa05-4eae-9e25-28994266bc99" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221850Z:50795349-aa05-4eae-9e25-28994266bc99" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fc7e481a-e6bb-4e75-b9ca-aaf2429a5bcc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5222" - ], - "x-ms-correlation-request-id": [ - "7f00bb6d-eed4-4a09-b428-9ed51a52acf6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221850Z:7f00bb6d-eed4-4a09-b428-9ed51a52acf6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6cce5f14-cf1b-4c27-86b3-a774e9469019" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5221" - ], - "x-ms-correlation-request-id": [ - "0065bc9d-e89d-4b68-8e66-4488dbf3ab92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221850Z:0065bc9d-e89d-4b68-8e66-4488dbf3ab92" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5080d608-360d-46ff-a98d-12171e58c41d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5220" - ], - "x-ms-correlation-request-id": [ - "261ef53b-3734-44f6-a653-59179a69e963" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221850Z:261ef53b-3734-44f6-a653-59179a69e963" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c26cb864-624b-43df-8583-891464f99875" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5219" - ], - "x-ms-correlation-request-id": [ - "69ce76ef-d2d1-4cd8-873d-cb9138b42aec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221850Z:69ce76ef-d2d1-4cd8-873d-cb9138b42aec" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc48437c-0801-47ac-b824-73293bddd0b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5218" - ], - "x-ms-correlation-request-id": [ - "5081c26d-0fec-4dec-9373-d58f80f9c489" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221851Z:5081c26d-0fec-4dec-9373-d58f80f9c489" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f129cc0b-d226-4a41-9cc3-2cc77bf53e3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5217" - ], - "x-ms-correlation-request-id": [ - "6cc79302-6d66-41de-88d7-db2901d4c4fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221851Z:6cc79302-6d66-41de-88d7-db2901d4c4fb" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "37f027b1-76d1-4d99-af44-112025cd4cee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5216" - ], - "x-ms-correlation-request-id": [ - "1dabb291-406c-48a6-99de-20c11deb06dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221851Z:1dabb291-406c-48a6-99de-20c11deb06dc" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59bf175c-3b16-4681-a188-2d21bec52089" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5215" - ], - "x-ms-correlation-request-id": [ - "28c32cd7-11cb-4fcd-bebb-95028eb87439" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221852Z:28c32cd7-11cb-4fcd-bebb-95028eb87439" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dcfd3022-4f69-47a8-8a79-90e36454d336" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5214" - ], - "x-ms-correlation-request-id": [ - "9993a51d-804e-4cc5-a63b-dad7c8077a80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221852Z:9993a51d-804e-4cc5-a63b-dad7c8077a80" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5dbc0ff0-87df-4d3b-9f33-54d33a16c8f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5213" - ], - "x-ms-correlation-request-id": [ - "b1c48188-90b3-4091-9bc1-8bbdfddbe9f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221852Z:b1c48188-90b3-4091-9bc1-8bbdfddbe9f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dfcfac35-cd2a-45a3-b313-8ccfc7e3fe26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5212" - ], - "x-ms-correlation-request-id": [ - "fcf39432-467d-42c8-bf1f-ed3bb61cfdfa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221852Z:fcf39432-467d-42c8-bf1f-ed3bb61cfdfa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "adaef005-b575-4cde-9878-af780ca207f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5211" - ], - "x-ms-correlation-request-id": [ - "28e08573-4c2f-4a1f-b13b-676a652f0ab6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221852Z:28e08573-4c2f-4a1f-b13b-676a652f0ab6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02f47e07-85f7-44e9-8d7b-57d1d4effa59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5210" - ], - "x-ms-correlation-request-id": [ - "83513de7-7b6c-44ca-af17-e599095f6883" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221853Z:83513de7-7b6c-44ca-af17-e599095f6883" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ebca6a7e-ea48-456c-bd55-aa7ae94d5024" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5209" - ], - "x-ms-correlation-request-id": [ - "dfe3a698-7d6e-48f9-8de8-8a5ea815086a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221853Z:dfe3a698-7d6e-48f9-8de8-8a5ea815086a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0e9c1de-3bc3-4790-9ed0-3c01c5456db8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5208" - ], - "x-ms-correlation-request-id": [ - "be876973-5ce3-49c7-92ff-a0e116a27596" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221853Z:be876973-5ce3-49c7-92ff-a0e116a27596" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a21a4fbf-d264-4cf8-8ee2-07a9905304d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5207" - ], - "x-ms-correlation-request-id": [ - "c541066f-6cf0-4dd2-8a61-6328a536ecca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221853Z:c541066f-6cf0-4dd2-8a61-6328a536ecca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da741074-448f-4326-bad8-c2b145cb0502" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5206" - ], - "x-ms-correlation-request-id": [ - "6101aacb-c733-48c1-9a75-edc403a49eb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221853Z:6101aacb-c733-48c1-9a75-edc403a49eb1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de82a70a-c604-4049-9d64-a3ab9547edd7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5205" - ], - "x-ms-correlation-request-id": [ - "322ecadd-8892-42c6-9570-de3079fd86de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221853Z:322ecadd-8892-42c6-9570-de3079fd86de" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c20d11e2-7dc0-46be-9db3-54fd01c3e70f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5204" - ], - "x-ms-correlation-request-id": [ - "89645342-8807-496f-a353-9b548bea4b39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221854Z:89645342-8807-496f-a353-9b548bea4b39" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a46838fa-17dc-4aab-9505-91c79760cddb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5203" - ], - "x-ms-correlation-request-id": [ - "8ebe45e0-73d3-40f9-b7fb-83c9761cd048" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221854Z:8ebe45e0-73d3-40f9-b7fb-83c9761cd048" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "20bf8949-62b1-4afe-8370-19d8ec3df68a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5202" - ], - "x-ms-correlation-request-id": [ - "9d98b159-50e4-4b18-a5ce-7fe7ced5ce5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221854Z:9d98b159-50e4-4b18-a5ce-7fe7ced5ce5d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d814635b-0f54-4fa6-916a-41236cf55828" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5201" - ], - "x-ms-correlation-request-id": [ - "3a42afa0-4f4c-4ded-a85c-c941f41a518b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221854Z:3a42afa0-4f4c-4ded-a85c-c941f41a518b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "39793db3-ccd1-42b9-a07c-d59b30fcc28d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5200" - ], - "x-ms-correlation-request-id": [ - "d1976ae1-61af-47f6-a6b6-a5b91eac8aaf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221854Z:d1976ae1-61af-47f6-a6b6-a5b91eac8aaf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c14f6829-4821-43b3-9b8a-ae5392866146" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5199" - ], - "x-ms-correlation-request-id": [ - "ae1e7e1e-fe6a-4a5c-a1c2-7a8a91a5f488" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221854Z:ae1e7e1e-fe6a-4a5c-a1c2-7a8a91a5f488" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "91047db7-87ba-4d89-9614-70292706a0cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5198" - ], - "x-ms-correlation-request-id": [ - "eb619a19-a765-4c4f-ba67-89c7bf12b14e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221855Z:eb619a19-a765-4c4f-ba67-89c7bf12b14e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aeb5fbfb-4119-42c5-9e22-f9100daa9943" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5197" - ], - "x-ms-correlation-request-id": [ - "6a1eb1dc-5c31-4023-ae98-c7648918888a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221855Z:6a1eb1dc-5c31-4023-ae98-c7648918888a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e4e05f7f-b739-4086-a6c0-5dbbac4335e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5196" - ], - "x-ms-correlation-request-id": [ - "45c4ac78-484b-4b8a-b20b-7a9e5c8ad599" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221855Z:45c4ac78-484b-4b8a-b20b-7a9e5c8ad599" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f3596f6-a7d7-41a5-b6ad-10b76b1a923a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5195" - ], - "x-ms-correlation-request-id": [ - "a4351831-11d0-433f-9aa0-33bc4a5005b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221855Z:a4351831-11d0-433f-9aa0-33bc4a5005b1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a8aa776e-140c-4bae-880d-80e0cb778a35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5194" - ], - "x-ms-correlation-request-id": [ - "feb4af5e-b65e-4c0a-b106-d349b0fc54aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221855Z:feb4af5e-b65e-4c0a-b106-d349b0fc54aa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a30d6d59-6560-4845-b18b-db2dd14155cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5193" - ], - "x-ms-correlation-request-id": [ - "f96c73bb-9d12-4fc9-b8e0-dc5965313441" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221855Z:f96c73bb-9d12-4fc9-b8e0-dc5965313441" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d3ff5c02-3269-4961-88c1-9d67f6f1bf47" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5192" - ], - "x-ms-correlation-request-id": [ - "8b4459e9-044d-4439-9f62-d7a8221b7815" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221856Z:8b4459e9-044d-4439-9f62-d7a8221b7815" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b2cfca93-b475-4707-8ae8-fd6b1237c7e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5191" - ], - "x-ms-correlation-request-id": [ - "2d1df50b-ab5a-4f7d-a5e6-b850eaee4b0f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221856Z:2d1df50b-ab5a-4f7d-a5e6-b850eaee4b0f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2386faf6-206f-455b-ab77-73368a5adbcf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5190" - ], - "x-ms-correlation-request-id": [ - "fceaadab-2485-411a-94ff-8d8c903d9524" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221856Z:fceaadab-2485-411a-94ff-8d8c903d9524" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "95e223cc-359d-4d72-89b8-ea4fa0b58c07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5189" - ], - "x-ms-correlation-request-id": [ - "d356f295-6a25-4261-b47d-b9350f114b3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221856Z:d356f295-6a25-4261-b47d-b9350f114b3c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f365f41-85e7-4695-aada-ae3fcd4f8c90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5188" - ], - "x-ms-correlation-request-id": [ - "1a2a16cf-cce0-4932-b575-c8e9f1dc3831" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221856Z:1a2a16cf-cce0-4932-b575-c8e9f1dc3831" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e320fe17-b3c8-4fde-b0f6-ca41dcb2818f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5187" - ], - "x-ms-correlation-request-id": [ - "d2e9c735-df81-4c14-89d7-1439a7ac5ff4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221856Z:d2e9c735-df81-4c14-89d7-1439a7ac5ff4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "81f3a9ca-6f76-49d7-8093-bdd6e659102a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5186" - ], - "x-ms-correlation-request-id": [ - "464761c1-e8dd-4f9e-9115-30b6d19cf591" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221857Z:464761c1-e8dd-4f9e-9115-30b6d19cf591" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "07335d82-d2f7-4104-a4e5-510c3aac463a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5185" - ], - "x-ms-correlation-request-id": [ - "95a9ad5a-7fbe-45d5-a0f9-2977aeffad76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221857Z:95a9ad5a-7fbe-45d5-a0f9-2977aeffad76" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "188fac6e-7d0a-4e34-a635-d8627825491c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5184" - ], - "x-ms-correlation-request-id": [ - "63f1febb-21d0-4b7f-97c4-b71fc1c75077" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221857Z:63f1febb-21d0-4b7f-97c4-b71fc1c75077" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "050ea0f0-1415-41d5-a687-dc315d13f883" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5183" - ], - "x-ms-correlation-request-id": [ - "4fe3cbe9-0ef7-40c1-b8fd-84c6d2c51a5c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221857Z:4fe3cbe9-0ef7-40c1-b8fd-84c6d2c51a5c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7969263b-e82c-4dca-a80f-5470da9ad957" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5182" - ], - "x-ms-correlation-request-id": [ - "7d43283b-ccb8-42da-bb6a-6ee0e1c9310d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221857Z:7d43283b-ccb8-42da-bb6a-6ee0e1c9310d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4a2d1e73-be4b-4bf2-a07c-aa28d5517980" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5181" - ], - "x-ms-correlation-request-id": [ - "37549246-d478-4a62-a008-dd0abbc2f019" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221857Z:37549246-d478-4a62-a008-dd0abbc2f019" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b27b5636-683a-414b-96a3-ab1dbbacd338" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5180" - ], - "x-ms-correlation-request-id": [ - "986c866a-a34f-4aae-8734-5df62ee978a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221857Z:986c866a-a34f-4aae-8734-5df62ee978a6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a0781271-6d5e-4880-a05a-dd6ca6bc280d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5179" - ], - "x-ms-correlation-request-id": [ - "4c8bd9fb-a2b7-40a4-b9e4-f510317fab5d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221858Z:4c8bd9fb-a2b7-40a4-b9e4-f510317fab5d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "646bb171-1b46-4bda-b637-d58003bab8ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5178" - ], - "x-ms-correlation-request-id": [ - "d716b62c-2680-4f2f-815c-e6795344ab1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221858Z:d716b62c-2680-4f2f-815c-e6795344ab1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74472e08-e93b-4a27-9a2e-9b6b0669eb7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5177" - ], - "x-ms-correlation-request-id": [ - "8a6c3226-fd37-40b9-8057-c21e8da0199a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221858Z:8a6c3226-fd37-40b9-8057-c21e8da0199a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f9122ce-d184-4f02-b3d4-06b503b5021c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5176" - ], - "x-ms-correlation-request-id": [ - "2824922a-b7ed-4ad7-a80d-336e2875b2f5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221858Z:2824922a-b7ed-4ad7-a80d-336e2875b2f5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2c642230-4aa2-43d5-a8d0-bcd9111635f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5175" - ], - "x-ms-correlation-request-id": [ - "b22cb80f-e769-4910-bb2e-1ca5d2cb864e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221858Z:b22cb80f-e769-4910-bb2e-1ca5d2cb864e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1095326c-2976-47cf-884a-018884aa682f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5174" - ], - "x-ms-correlation-request-id": [ - "48029d30-3ecf-43bc-be4b-4b6d795c15aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221858Z:48029d30-3ecf-43bc-be4b-4b6d795c15aa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7848a3e9-780d-49af-91c0-baee7969e489" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5173" - ], - "x-ms-correlation-request-id": [ - "e24b881d-0c59-4e75-9efd-f9feef86d856" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221859Z:e24b881d-0c59-4e75-9efd-f9feef86d856" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "168fb5a1-3d59-4a8e-bccb-2cce5edb16af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5172" - ], - "x-ms-correlation-request-id": [ - "f950d167-cc23-4ad9-90b1-d24b647ea7e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221859Z:f950d167-cc23-4ad9-90b1-d24b647ea7e1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6a9151e9-b84f-4b29-9b0d-becb871f7b66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5171" - ], - "x-ms-correlation-request-id": [ - "ef96c34e-9f8a-4150-a209-ba6fe7fbc9ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221859Z:ef96c34e-9f8a-4150-a209-ba6fe7fbc9ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "21644746-4eff-4d7d-8896-9795dca6228e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5170" - ], - "x-ms-correlation-request-id": [ - "1526168d-f41d-4bab-b06b-3b81687379c5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221859Z:1526168d-f41d-4bab-b06b-3b81687379c5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9abc992c-2c0b-4764-86d6-d4e3af8c61cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5169" - ], - "x-ms-correlation-request-id": [ - "afbecb2d-d608-43a0-8603-2bc7085f4ee4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221859Z:afbecb2d-d608-43a0-8603-2bc7085f4ee4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "938d3620-522c-40f1-81e8-85a54644a0cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5168" - ], - "x-ms-correlation-request-id": [ - "affda673-9ae1-4aa1-ba24-6b3f5fff8519" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221859Z:affda673-9ae1-4aa1-ba24-6b3f5fff8519" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "99b60562-bd7f-4450-8051-d7c2831c6de2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5167" - ], - "x-ms-correlation-request-id": [ - "0fce7c6b-bc95-432b-8784-dc9d7f8525db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221900Z:0fce7c6b-bc95-432b-8784-dc9d7f8525db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9dd6ec05-ae37-4dc4-891e-d5582d9216b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5166" - ], - "x-ms-correlation-request-id": [ - "88804212-e709-4bbb-8397-9ea70c260e39" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221900Z:88804212-e709-4bbb-8397-9ea70c260e39" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a43bfd86-00da-49b8-962c-aa68376f31b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5165" - ], - "x-ms-correlation-request-id": [ - "2ed31c79-3bcf-4ee3-972a-88813371c621" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221900Z:2ed31c79-3bcf-4ee3-972a-88813371c621" - ], - "Date": [ - "Tue, 29 Aug 2017 22:18:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8f8224e5-2b81-4298-a586-92b25b27e0b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5164" - ], - "x-ms-correlation-request-id": [ - "7c7cdaa5-189d-4728-b69e-9e3187bff1d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221900Z:7c7cdaa5-189d-4728-b69e-9e3187bff1d9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b605e7b-7bdc-4f30-b3c5-5228904f4b60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5163" - ], - "x-ms-correlation-request-id": [ - "84c4bcc5-30cb-49ca-987e-17cca5aa1365" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221900Z:84c4bcc5-30cb-49ca-987e-17cca5aa1365" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f169048d-0895-4a16-ab08-ce085b0cf109" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5162" - ], - "x-ms-correlation-request-id": [ - "31acba9c-e06a-4ab6-904a-f4dd4eece97e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221901Z:31acba9c-e06a-4ab6-904a-f4dd4eece97e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28166716-c04a-41c1-9434-eb64651f5579" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5161" - ], - "x-ms-correlation-request-id": [ - "6677408e-e61c-49b8-bc3a-62006a781003" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221901Z:6677408e-e61c-49b8-bc3a-62006a781003" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8bccc3c5-dca3-4d50-936c-e7ca5569f955" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5160" - ], - "x-ms-correlation-request-id": [ - "4a2a4fa2-6476-4a23-abd4-84a095a1e82c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221901Z:4a2a4fa2-6476-4a23-abd4-84a095a1e82c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "59f8f3a7-a442-4af8-b499-32c222958768" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5159" - ], - "x-ms-correlation-request-id": [ - "fae74867-1c86-4214-b819-bdc599833901" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221901Z:fae74867-1c86-4214-b819-bdc599833901" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "db2bec3a-5e59-4bd1-a41c-6434926ef784" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5158" - ], - "x-ms-correlation-request-id": [ - "ddcd0689-c0e5-446f-a229-2cb43437a2c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221901Z:ddcd0689-c0e5-446f-a229-2cb43437a2c2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "40cb6d56-070e-4963-a06a-e25b870a1365" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5157" - ], - "x-ms-correlation-request-id": [ - "7421a27e-99bc-47ad-821f-5e94739ef77e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221901Z:7421a27e-99bc-47ad-821f-5e94739ef77e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f433749-0bcd-4509-9ca0-bb728ebcf539" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5156" - ], - "x-ms-correlation-request-id": [ - "86d5da2a-6349-4077-aa7a-69cc85965f3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221902Z:86d5da2a-6349-4077-aa7a-69cc85965f3c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3129564a-6ee5-4ec4-afca-27bc2fa4e2ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5155" - ], - "x-ms-correlation-request-id": [ - "e173012f-0909-4f25-bce4-4b44f55089a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221902Z:e173012f-0909-4f25-bce4-4b44f55089a9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dc21a80b-0365-42d8-a1e4-ddd180aedd6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5154" - ], - "x-ms-correlation-request-id": [ - "4f979ce0-ca3c-4fad-a14d-7c516b44f71f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221902Z:4f979ce0-ca3c-4fad-a14d-7c516b44f71f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a0ebf40-5d64-4b4e-b7c4-0f89a846623c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5153" - ], - "x-ms-correlation-request-id": [ - "56ddaa3e-cff3-4224-990c-61e81564619e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221902Z:56ddaa3e-cff3-4224-990c-61e81564619e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "08b0ec79-367e-4e6b-9c9b-575e32c63e71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5152" - ], - "x-ms-correlation-request-id": [ - "645b3ce0-7e71-4daf-8548-ae137c9bc9ac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221902Z:645b3ce0-7e71-4daf-8548-ae137c9bc9ac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "feec416e-7334-4851-baee-f1a3cf901c85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5151" - ], - "x-ms-correlation-request-id": [ - "ac2a01b9-9dcd-40fc-b90c-fcd78befe576" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221902Z:ac2a01b9-9dcd-40fc-b90c-fcd78befe576" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a9bcae67-9865-486b-80fd-fd18831b5bf9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5150" - ], - "x-ms-correlation-request-id": [ - "e516896a-c265-4e66-b119-afe58abd7824" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221903Z:e516896a-c265-4e66-b119-afe58abd7824" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "bdf2d02a-191a-4657-9f0c-a29816f98e99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5149" - ], - "x-ms-correlation-request-id": [ - "d57e650c-de21-4c2c-b173-5fb8b8155c5f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221903Z:d57e650c-de21-4c2c-b173-5fb8b8155c5f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b1d267db-66d9-4f69-b053-ae76ffbb2bc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5148" - ], - "x-ms-correlation-request-id": [ - "6fe447b8-54d7-4394-abbb-3419c36e56ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221903Z:6fe447b8-54d7-4394-abbb-3419c36e56ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "92f70c3d-5829-4e1f-84ea-2c7f68857371" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5147" - ], - "x-ms-correlation-request-id": [ - "5ce78da3-ec99-4dd3-8d32-b8948219f24e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221903Z:5ce78da3-ec99-4dd3-8d32-b8948219f24e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6fb5bf06-de49-47f5-92d4-461686281a7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5146" - ], - "x-ms-correlation-request-id": [ - "55c3f752-0a57-4ce1-9e9b-6848431482b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221903Z:55c3f752-0a57-4ce1-9e9b-6848431482b0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "aa9a1ea8-8b08-448e-82de-2e4c66d55714" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5145" - ], - "x-ms-correlation-request-id": [ - "26e3cedd-2f44-4bc2-98a7-69ea3b2e84ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221904Z:26e3cedd-2f44-4bc2-98a7-69ea3b2e84ed" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5bf0fa2a-0f8a-4d46-9068-cee5ef6aecb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5144" - ], - "x-ms-correlation-request-id": [ - "3911aa66-3f43-40dd-947c-6a0818aaed8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221904Z:3911aa66-3f43-40dd-947c-6a0818aaed8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "96705dba-b2ff-43b2-ab2f-143c9d2a53b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5143" - ], - "x-ms-correlation-request-id": [ - "254b00eb-f8c6-4c54-a4b0-366a64cc42d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221904Z:254b00eb-f8c6-4c54-a4b0-366a64cc42d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ff274696-4033-4484-849a-5509a1243ccc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5142" - ], - "x-ms-correlation-request-id": [ - "83afa062-bd2b-4252-a7e6-e57d5aa5cc88" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221904Z:83afa062-bd2b-4252-a7e6-e57d5aa5cc88" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f335ad4-05de-4229-a85c-451431716b87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5141" - ], - "x-ms-correlation-request-id": [ - "fc12c0c9-c51c-4431-9766-d35dbe446712" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221904Z:fc12c0c9-c51c-4431-9766-d35dbe446712" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a121c58c-eb71-44b1-a010-48a01f2cf7f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5140" - ], - "x-ms-correlation-request-id": [ - "48418021-1f62-4578-96eb-1d990f0f3a87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221905Z:48418021-1f62-4578-96eb-1d990f0f3a87" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "48feb94b-738c-4131-8a85-00aff6d54ba2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5139" - ], - "x-ms-correlation-request-id": [ - "aa083e70-188d-4cff-b701-20773aa76ca6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221905Z:aa083e70-188d-4cff-b701-20773aa76ca6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4f651b5f-381d-4ab7-92de-0435f8b33053" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5138" - ], - "x-ms-correlation-request-id": [ - "b1826807-db35-44f2-ad42-024230271f6b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221905Z:b1826807-db35-44f2-ad42-024230271f6b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f72f0121-5e6c-48b4-a29c-ea27029e19ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5137" - ], - "x-ms-correlation-request-id": [ - "81f78f3e-4460-4555-a040-281b0298e679" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221905Z:81f78f3e-4460-4555-a040-281b0298e679" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "148e97cf-5eb0-4b04-aa31-7cca98d2ed88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5136" - ], - "x-ms-correlation-request-id": [ - "118c9e72-a91e-4f18-bc22-f9a16d0c6526" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221905Z:118c9e72-a91e-4f18-bc22-f9a16d0c6526" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1df755af-25ab-40a0-bee8-7c794ee85ea4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5135" - ], - "x-ms-correlation-request-id": [ - "447c648e-4296-475e-b49f-98eabf3aedd2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221905Z:447c648e-4296-475e-b49f-98eabf3aedd2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3391bd9c-0dc6-4c7c-b426-04cc368ec009" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5134" - ], - "x-ms-correlation-request-id": [ - "638212f0-a423-450d-89b9-a937c724a6b8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221906Z:638212f0-a423-450d-89b9-a937c724a6b8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "54edf108-a9a5-47e3-805d-a4ff64b333b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5133" - ], - "x-ms-correlation-request-id": [ - "78164a3d-ed36-4f24-89b6-6f2ef0a75b71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221906Z:78164a3d-ed36-4f24-89b6-6f2ef0a75b71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d7d1c3d6-e3fa-45fa-95b8-598a012b2439" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5132" - ], - "x-ms-correlation-request-id": [ - "5619b62a-404c-48b3-9071-d8883ecaa5b2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221906Z:5619b62a-404c-48b3-9071-d8883ecaa5b2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "49053cf0-6a74-4a9d-941f-5d244af22974" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5131" - ], - "x-ms-correlation-request-id": [ - "bfdf4e83-d35a-4543-8cc1-c79863f8860f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221906Z:bfdf4e83-d35a-4543-8cc1-c79863f8860f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f8310d48-8ff3-42e6-aebe-aba97bd65f08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5130" - ], - "x-ms-correlation-request-id": [ - "841109fb-4c58-4a78-909c-ffe3e924c074" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221906Z:841109fb-4c58-4a78-909c-ffe3e924c074" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02cb744a-24ac-461b-9714-dfd04a0e8fa0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5129" - ], - "x-ms-correlation-request-id": [ - "bdcd2726-d8dd-489a-bd49-d1dbcc3498e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221906Z:bdcd2726-d8dd-489a-bd49-d1dbcc3498e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "815c85bd-7287-4b5d-a79b-f9465e57dac5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5128" - ], - "x-ms-correlation-request-id": [ - "3f6325b9-2a5b-4905-a436-15090ddc16ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221907Z:3f6325b9-2a5b-4905-a436-15090ddc16ae" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df57e039-bbb8-495f-8402-7aa992391ce7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5127" - ], - "x-ms-correlation-request-id": [ - "53da8f97-645d-4da2-b688-4ecdabacf580" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221907Z:53da8f97-645d-4da2-b688-4ecdabacf580" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e7eec142-0381-4ce9-aa46-e2434c227375" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5126" - ], - "x-ms-correlation-request-id": [ - "098dd016-501c-49f8-941b-8fd16b3b4865" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221907Z:098dd016-501c-49f8-941b-8fd16b3b4865" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5af96134-3590-44b8-9022-d0233e999abb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5125" - ], - "x-ms-correlation-request-id": [ - "8c82bd1c-b8e6-4e65-9957-88de5981d24e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221907Z:8c82bd1c-b8e6-4e65-9957-88de5981d24e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2841b02-b177-4ed5-9d30-d44c55a1379e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5124" - ], - "x-ms-correlation-request-id": [ - "7468c81c-406f-486d-913d-be78d62c6a33" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221907Z:7468c81c-406f-486d-913d-be78d62c6a33" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4b212eab-7dd8-44e4-b40d-7189597c9974" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5123" - ], - "x-ms-correlation-request-id": [ - "1cd04fca-d062-49b3-987b-4ee9d6df85da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221907Z:1cd04fca-d062-49b3-987b-4ee9d6df85da" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23cc4f25-b13c-4a96-96bb-4a24defc4ebd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5122" - ], - "x-ms-correlation-request-id": [ - "bee9a3fe-4bd4-4b68-bb54-d3f4681ec538" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221907Z:bee9a3fe-4bd4-4b68-bb54-d3f4681ec538" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d14e75c6-1c55-44ca-891f-3085df68a66b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5121" - ], - "x-ms-correlation-request-id": [ - "09a93fd0-4a23-48a1-9683-51756005b9f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221908Z:09a93fd0-4a23-48a1-9683-51756005b9f8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "abfec27d-2713-4033-baae-de12a3b7d69a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5120" - ], - "x-ms-correlation-request-id": [ - "6c73b6c1-a970-4238-b5df-446059efe37d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221908Z:6c73b6c1-a970-4238-b5df-446059efe37d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5a353a49-45cd-47ff-bf97-7a38e65a15c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5119" - ], - "x-ms-correlation-request-id": [ - "6b3d9a24-4e77-4805-ae3e-eab7290b46d6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221908Z:6b3d9a24-4e77-4805-ae3e-eab7290b46d6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "991591fe-3cad-482e-a9bd-5f74af8deab1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5118" - ], - "x-ms-correlation-request-id": [ - "57117cef-4171-4cba-9790-c508553f4a96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221908Z:57117cef-4171-4cba-9790-c508553f4a96" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "401af717-3e3a-4a8b-bc73-5f7ef708941b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5117" - ], - "x-ms-correlation-request-id": [ - "076075ac-be51-49a7-bb22-b2d903d40448" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221908Z:076075ac-be51-49a7-bb22-b2d903d40448" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd8b3fa0-7e26-4bd3-b203-76a541be551c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5116" - ], - "x-ms-correlation-request-id": [ - "0461d397-7190-42b6-989f-8b0b72d6a6f9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221908Z:0461d397-7190-42b6-989f-8b0b72d6a6f9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a35f8c44-8fdd-4d96-aff3-37cf91f39407" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5115" - ], - "x-ms-correlation-request-id": [ - "d83595f0-a0e0-45bd-9d55-8d10cc23ef58" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221909Z:d83595f0-a0e0-45bd-9d55-8d10cc23ef58" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "65f34d04-8980-47e6-8727-242eb3028ebd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5114" - ], - "x-ms-correlation-request-id": [ - "0341a823-9a74-4e68-9025-370e41af06f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221909Z:0341a823-9a74-4e68-9025-370e41af06f2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c980aba4-a744-45fa-bafa-7aa64a602e2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5113" - ], - "x-ms-correlation-request-id": [ - "be5d85c1-6614-4208-8863-999769c7e751" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221909Z:be5d85c1-6614-4208-8863-999769c7e751" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9dbcf4f2-32f8-47df-b35d-18bea9ede8dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5112" - ], - "x-ms-correlation-request-id": [ - "c4d6d21d-37a2-47d9-b61f-c13a7ce05184" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221909Z:c4d6d21d-37a2-47d9-b61f-c13a7ce05184" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4bd65ad-dfcb-45c9-a3dd-c4a81d315158" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5111" - ], - "x-ms-correlation-request-id": [ - "2c89441f-4012-4836-a181-a57e11b345ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221909Z:2c89441f-4012-4836-a181-a57e11b345ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33fdb6ca-317f-40eb-8b21-2dd7173d4306" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5110" - ], - "x-ms-correlation-request-id": [ - "e0d39537-1358-4d9f-936c-b26a4aef9ea4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221909Z:e0d39537-1358-4d9f-936c-b26a4aef9ea4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "9d56586a-5b39-465c-b11a-b0b3a241427f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5109" - ], - "x-ms-correlation-request-id": [ - "36c76398-6613-47ad-a6f8-80cee9a835ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221910Z:36c76398-6613-47ad-a6f8-80cee9a835ef" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c8c2b691-75c1-445a-85c8-02ffcb605336" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5108" - ], - "x-ms-correlation-request-id": [ - "09019925-d604-49a0-913b-5c8d023bcd2c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221910Z:09019925-d604-49a0-913b-5c8d023bcd2c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4ab90413-0e4f-41ae-b704-8104c871bb79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5107" - ], - "x-ms-correlation-request-id": [ - "2069148a-d465-4179-b4b6-487800d3d531" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221910Z:2069148a-d465-4179-b4b6-487800d3d531" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2ba4ac0-7167-4934-af45-d96f4f08e5c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5106" - ], - "x-ms-correlation-request-id": [ - "61654c16-ea76-495e-ade6-dc1494354e3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221910Z:61654c16-ea76-495e-ade6-dc1494354e3d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dcf0adff-1e70-4ee7-8429-d9f27a090229" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5105" - ], - "x-ms-correlation-request-id": [ - "9d1ca07d-2ce5-4693-8725-96589fb6eb90" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221910Z:9d1ca07d-2ce5-4693-8725-96589fb6eb90" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "de2c1cec-841b-4fb9-8d8c-db001efa79d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5104" - ], - "x-ms-correlation-request-id": [ - "78076960-9a78-45fe-8d53-fce27a046110" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221910Z:78076960-9a78-45fe-8d53-fce27a046110" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "728281d2-5c3b-4d42-a90d-fd499d24a375" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5103" - ], - "x-ms-correlation-request-id": [ - "c1394763-1533-48a5-afba-c587a9086515" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221911Z:c1394763-1533-48a5-afba-c587a9086515" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "69a7a12a-79e9-4bc8-aed9-531f3a25b399" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5102" - ], - "x-ms-correlation-request-id": [ - "2569f781-3e5a-4dfe-b215-7421c0075b1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221911Z:2569f781-3e5a-4dfe-b215-7421c0075b1e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "812c37ac-6a62-4f7f-b12f-7a725dd5fd89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5101" - ], - "x-ms-correlation-request-id": [ - "65bb5591-b8aa-4385-b5e0-2367f8fd3857" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221911Z:65bb5591-b8aa-4385-b5e0-2367f8fd3857" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a41afc20-a9f8-4914-b0a3-d47f3349f1bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5100" - ], - "x-ms-correlation-request-id": [ - "2437b276-4e24-4a27-8f12-b7d850f02dea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221911Z:2437b276-4e24-4a27-8f12-b7d850f02dea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17b8ca55-f474-4c97-a6b6-3ded7e15c54d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5099" - ], - "x-ms-correlation-request-id": [ - "f97d95af-7010-45c4-a0c0-d776c747caac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221911Z:f97d95af-7010-45c4-a0c0-d776c747caac" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fbdebfb4-cd50-4252-860d-6e66038d28cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5098" - ], - "x-ms-correlation-request-id": [ - "bb3ea04b-3da7-4716-b7fe-7108f3370908" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221911Z:bb3ea04b-3da7-4716-b7fe-7108f3370908" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7582c953-9a2a-4565-bc18-9dd922762eb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5097" - ], - "x-ms-correlation-request-id": [ - "a45ccf95-62c5-43f3-825a-49145017c066" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221912Z:a45ccf95-62c5-43f3-825a-49145017c066" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "00c714c5-7fc7-46e2-94bc-8b2291b433cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5096" - ], - "x-ms-correlation-request-id": [ - "21c0cf73-4bc2-45f6-a223-d4b717791687" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221912Z:21c0cf73-4bc2-45f6-a223-d4b717791687" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3a4be398-7101-4b35-b382-b264a3dfa22a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5095" - ], - "x-ms-correlation-request-id": [ - "60be6a99-1201-4258-b96c-309ecad1c38e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221912Z:60be6a99-1201-4258-b96c-309ecad1c38e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e30be60c-1040-4096-9916-0751ea112211" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5094" - ], - "x-ms-correlation-request-id": [ - "9a2c7e7d-e64c-4e7d-8640-7bafc187eb9d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221912Z:9a2c7e7d-e64c-4e7d-8640-7bafc187eb9d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ad24aa6f-b8fb-43ea-a517-9c5648e48e0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5093" - ], - "x-ms-correlation-request-id": [ - "04e4b017-a13f-42d0-9c4e-9aa9d70416e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221912Z:04e4b017-a13f-42d0-9c4e-9aa9d70416e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cec52ed7-6365-4a38-8f82-49bafe921867" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5092" - ], - "x-ms-correlation-request-id": [ - "98407c59-278d-49e0-9366-f86bb6e02a3a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221913Z:98407c59-278d-49e0-9366-f86bb6e02a3a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "43d3e6e1-44c7-4d17-8955-8a9902f8bea1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5091" - ], - "x-ms-correlation-request-id": [ - "2c714c5b-c904-467d-96af-3edb718b2cee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221913Z:2c714c5b-c904-467d-96af-3edb718b2cee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ef5807d6-35ba-4567-b714-8fd61735f303" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5090" - ], - "x-ms-correlation-request-id": [ - "f3af60a0-e966-41d7-936b-aa393e5eac49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221913Z:f3af60a0-e966-41d7-936b-aa393e5eac49" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e14d466-ae75-4ac1-9a4c-586a81d2e4ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5089" - ], - "x-ms-correlation-request-id": [ - "96ececbb-0745-4fa0-9baa-ecfba5c4412d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221913Z:96ececbb-0745-4fa0-9baa-ecfba5c4412d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "11c870d2-07b2-4cf1-a159-b787c6148b5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5088" - ], - "x-ms-correlation-request-id": [ - "718c16ee-a008-43ab-ae54-686675210a22" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221913Z:718c16ee-a008-43ab-ae54-686675210a22" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "accdfa92-d6c0-4157-a26d-2fd1101d074a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5087" - ], - "x-ms-correlation-request-id": [ - "60db5967-47f0-4eb6-b4aa-a2b05e86ba52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221913Z:60db5967-47f0-4eb6-b4aa-a2b05e86ba52" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "445ced85-8e90-4a03-8b40-8470aa4c4ecb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5086" - ], - "x-ms-correlation-request-id": [ - "e7526956-e935-4427-833f-f005600f2a1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221914Z:e7526956-e935-4427-833f-f005600f2a1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "068962b8-81bc-4ee6-81f8-287e0ea60983" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5085" - ], - "x-ms-correlation-request-id": [ - "16ef3661-d316-4490-a2e3-98a543cebe97" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221914Z:16ef3661-d316-4490-a2e3-98a543cebe97" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f3b187e3-973e-4f2b-a94c-603c5b6e8ac7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5084" - ], - "x-ms-correlation-request-id": [ - "f3082731-7f14-4f8d-88b8-93f1ee17da6e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221914Z:f3082731-7f14-4f8d-88b8-93f1ee17da6e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6d1a0d2a-ed0f-49c1-8ce4-2d4ece6f6bcd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5083" - ], - "x-ms-correlation-request-id": [ - "ec33d803-0486-471f-b2eb-c50bacd3bcc9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221914Z:ec33d803-0486-471f-b2eb-c50bacd3bcc9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "866e6605-39e4-4e22-801b-f840fddb1e41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5082" - ], - "x-ms-correlation-request-id": [ - "285687fd-eef6-4ed4-89e5-feee626ee84c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221914Z:285687fd-eef6-4ed4-89e5-feee626ee84c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f421fb28-6c91-4bc3-88e9-4a3ddb8dce76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5081" - ], - "x-ms-correlation-request-id": [ - "2ed5a278-6e1a-4376-86de-39c9a23495e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221914Z:2ed5a278-6e1a-4376-86de-39c9a23495e0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d71dd97c-5f5b-45c8-868b-cc8932722763" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5080" - ], - "x-ms-correlation-request-id": [ - "f11dd645-8023-4ae9-9456-11959844b4c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221915Z:f11dd645-8023-4ae9-9456-11959844b4c1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3c989f61-0e11-4227-bfb4-82d47c2ba17e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5079" - ], - "x-ms-correlation-request-id": [ - "db3d22e8-cd6e-4056-b07c-655f3c78c8f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221915Z:db3d22e8-cd6e-4056-b07c-655f3c78c8f3" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5faa42a-64ce-4895-bb5f-f870acf6aad5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5078" - ], - "x-ms-correlation-request-id": [ - "f3776e63-97a2-4806-aaa0-f6c0c9a68897" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221915Z:f3776e63-97a2-4806-aaa0-f6c0c9a68897" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c234f754-e769-4f31-914a-6ebe840ae21d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5077" - ], - "x-ms-correlation-request-id": [ - "f06f56c0-70c1-48d4-967f-3a9c9f468687" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221915Z:f06f56c0-70c1-48d4-967f-3a9c9f468687" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "377d5a9f-9938-4b16-b0f2-1ecf4a018337" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5076" - ], - "x-ms-correlation-request-id": [ - "bc4b0075-1fbc-4e66-a600-7349f8f39ee4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221915Z:bc4b0075-1fbc-4e66-a600-7349f8f39ee4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d835cca0-e3b9-483c-a4cb-51ee5ce3ed8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5075" - ], - "x-ms-correlation-request-id": [ - "f451b26e-613c-494c-978d-463a8bc53753" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221915Z:f451b26e-613c-494c-978d-463a8bc53753" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "35941470-cfbd-4920-aaa6-edbd3508e25a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5074" - ], - "x-ms-correlation-request-id": [ - "0ecb15d8-9261-453b-ae68-40a07c81ea66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221915Z:0ecb15d8-9261-453b-ae68-40a07c81ea66" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "41db5630-cd73-4a79-bb17-fb567e3b7940" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5073" - ], - "x-ms-correlation-request-id": [ - "52190be1-3860-4234-bf7c-ef07c727a2a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221916Z:52190be1-3860-4234-bf7c-ef07c727a2a9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7405ebca-086e-473b-b015-5d49832249f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5072" - ], - "x-ms-correlation-request-id": [ - "01116f39-615d-415a-99b3-598c61666cfd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221916Z:01116f39-615d-415a-99b3-598c61666cfd" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e208a37a-4a70-4ed8-99bf-b7b62cb12af3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5071" - ], - "x-ms-correlation-request-id": [ - "46b17dcd-a36a-4beb-ba49-a8212f44ce71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221916Z:46b17dcd-a36a-4beb-ba49-a8212f44ce71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e944a3b1-1e65-49b0-b1a2-2282c3c2ea34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5070" - ], - "x-ms-correlation-request-id": [ - "14439d66-0060-439f-af19-cd9248354e1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221916Z:14439d66-0060-439f-af19-cd9248354e1a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63f072e5-bd52-44c8-bce2-334f7ea1d52f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5069" - ], - "x-ms-correlation-request-id": [ - "cbd99da7-83f5-4678-80e5-a5761da06c71" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221916Z:cbd99da7-83f5-4678-80e5-a5761da06c71" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "97a33c3e-a877-40de-abb2-2062c99f2bb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5068" - ], - "x-ms-correlation-request-id": [ - "8fa6b0de-b8b2-41d6-9801-3568626e02e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221917Z:8fa6b0de-b8b2-41d6-9801-3568626e02e6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a98a5aaf-1029-44e9-a32b-024656387eae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5067" - ], - "x-ms-correlation-request-id": [ - "f250c62b-97e6-42b5-a235-1e55275e8568" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221917Z:f250c62b-97e6-42b5-a235-1e55275e8568" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "03cc8341-8784-415d-8bdd-abfa28e43211" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5066" - ], - "x-ms-correlation-request-id": [ - "5ff69eb8-63c9-40c3-9057-6f228351a4c6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221917Z:5ff69eb8-63c9-40c3-9057-6f228351a4c6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f6ee703c-8551-4aba-a0f0-01add596ae86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5065" - ], - "x-ms-correlation-request-id": [ - "4fe9fae3-63ee-4471-ba72-a4b8ccab676c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221917Z:4fe9fae3-63ee-4471-ba72-a4b8ccab676c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e978892d-b70a-4940-a957-24e18f2cf223" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5064" - ], - "x-ms-correlation-request-id": [ - "06cffcb4-af46-43f5-aace-c7d77c281e4e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221917Z:06cffcb4-af46-43f5-aace-c7d77c281e4e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2ccc1b45-0187-4cb9-a5ca-e69948b911a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5063" - ], - "x-ms-correlation-request-id": [ - "98161697-3f8b-43ea-8d24-095488d7dc7f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221918Z:98161697-3f8b-43ea-8d24-095488d7dc7f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13f9c771-8035-4846-90ec-6499ebdeb6be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5062" - ], - "x-ms-correlation-request-id": [ - "7db82e03-919e-482d-9167-cd96fed88b64" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221918Z:7db82e03-919e-482d-9167-cd96fed88b64" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c25fab43-0cc7-4ba7-9d57-8d80e8be4bf4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5061" - ], - "x-ms-correlation-request-id": [ - "155c2027-42d4-4c6e-ac4f-aac5322c3774" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221918Z:155c2027-42d4-4c6e-ac4f-aac5322c3774" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "448b0372-4dc9-4a3e-bd37-36cc8d4ce61e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5060" - ], - "x-ms-correlation-request-id": [ - "4776fd04-92e8-4238-a590-316a83b3676e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221918Z:4776fd04-92e8-4238-a590-316a83b3676e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cdac9c63-b694-4b10-847d-986e51f4e0f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5059" - ], - "x-ms-correlation-request-id": [ - "4ac0a605-fb57-4062-b051-4ca86b2734ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221918Z:4ac0a605-fb57-4062-b051-4ca86b2734ce" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5fc315bb-b7e9-4fdf-94a5-b3cf081015e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5058" - ], - "x-ms-correlation-request-id": [ - "9caaa325-4d52-4445-b958-be83634dc509" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221918Z:9caaa325-4d52-4445-b958-be83634dc509" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "71298f50-1054-4e20-9e75-616dd6ffbc65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5057" - ], - "x-ms-correlation-request-id": [ - "d77c8cc1-6e57-480e-b2a7-7c17e2e5a6ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221919Z:d77c8cc1-6e57-480e-b2a7-7c17e2e5a6ee" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "90630d5e-c9e9-44dd-aa60-e0d9bbf3b560" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5056" - ], - "x-ms-correlation-request-id": [ - "246eb0af-f193-4a1e-9f82-077e4201a639" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221919Z:246eb0af-f193-4a1e-9f82-077e4201a639" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "745412d4-0a2d-49e0-9b93-7e579677e91a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5055" - ], - "x-ms-correlation-request-id": [ - "453bed56-2415-4340-85b3-6c27554903ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221919Z:453bed56-2415-4340-85b3-6c27554903ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ca875eb8-a669-4180-9425-7d3e99ec0c3d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5054" - ], - "x-ms-correlation-request-id": [ - "97f3fcab-5035-4e2f-a7c9-33930b72ef4c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221919Z:97f3fcab-5035-4e2f-a7c9-33930b72ef4c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "61cc58b0-775b-4393-8b68-4a7b071faad1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5053" - ], - "x-ms-correlation-request-id": [ - "337503b8-db96-452b-a241-6b61326dda6d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221919Z:337503b8-db96-452b-a241-6b61326dda6d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88812221-c32a-42cd-a905-804bc535d7a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5052" - ], - "x-ms-correlation-request-id": [ - "3e16ff39-f95f-4ece-8741-f43b0d753805" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221919Z:3e16ff39-f95f-4ece-8741-f43b0d753805" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a82800a3-2c46-443d-be67-d8926d20f369" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5051" - ], - "x-ms-correlation-request-id": [ - "62bdab13-1b20-47dd-80d0-0feae5bb3970" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221920Z:62bdab13-1b20-47dd-80d0-0feae5bb3970" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8ec7cbe3-4f87-4099-a796-4691b5f0e1f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5050" - ], - "x-ms-correlation-request-id": [ - "625d8044-d269-48f9-9eb3-63ed2aebc59c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221920Z:625d8044-d269-48f9-9eb3-63ed2aebc59c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a05fbccf-611b-4867-86f4-ad2e0a7294ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5049" - ], - "x-ms-correlation-request-id": [ - "9359b4ee-b2a0-4491-9bd8-c1d4545c97b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221920Z:9359b4ee-b2a0-4491-9bd8-c1d4545c97b7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17ede503-017e-4c50-ab6d-6a86b6a15af4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5048" - ], - "x-ms-correlation-request-id": [ - "db2c1a3b-70ca-4e21-9461-3541623f412e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221920Z:db2c1a3b-70ca-4e21-9461-3541623f412e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "448199ae-a910-4d46-821d-9e5e6829a8d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5047" - ], - "x-ms-correlation-request-id": [ - "e80b1542-dc1b-44ed-bda4-3c7febce1de9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221920Z:e80b1542-dc1b-44ed-bda4-3c7febce1de9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f56c2708-4e13-46d8-b5f1-fd6f7675a571" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5046" - ], - "x-ms-correlation-request-id": [ - "d4227e4f-1541-461c-a5a7-6517c2077363" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221921Z:d4227e4f-1541-461c-a5a7-6517c2077363" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7d9e3ca4-29c4-417b-b388-962bef8ac892" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5045" - ], - "x-ms-correlation-request-id": [ - "668f8ed0-a243-4c42-be04-b3cec9c67951" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221921Z:668f8ed0-a243-4c42-be04-b3cec9c67951" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a98d87ec-be5e-43c6-9870-26abf21473b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5044" - ], - "x-ms-correlation-request-id": [ - "441938c4-db2e-4a1f-aef7-9f11e0a4349a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221921Z:441938c4-db2e-4a1f-aef7-9f11e0a4349a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1085d5fe-2516-46e7-802d-6d4caf1b6220" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5043" - ], - "x-ms-correlation-request-id": [ - "d9a87383-e973-449e-ac80-6b42223d12e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221921Z:d9a87383-e973-449e-ac80-6b42223d12e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3e7931c-a6f2-4837-9978-62bbf53341df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5042" - ], - "x-ms-correlation-request-id": [ - "6a5bd749-a4bb-4854-8744-9d583493d6da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221921Z:6a5bd749-a4bb-4854-8744-9d583493d6da" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b68dd32f-45f3-4ebb-95d2-de52cf35f54b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5041" - ], - "x-ms-correlation-request-id": [ - "9c9177e6-f446-4279-a784-1c50e34b71e9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221921Z:9c9177e6-f446-4279-a784-1c50e34b71e9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "df0a25d9-9552-455f-9e79-307d7fd64f28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5040" - ], - "x-ms-correlation-request-id": [ - "49e58e0e-f4c5-45f7-9bcc-a6ac14177a89" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221922Z:49e58e0e-f4c5-45f7-9bcc-a6ac14177a89" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5c6907ed-f74a-44ea-9b2c-5e3c5624a326" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5039" - ], - "x-ms-correlation-request-id": [ - "5b569048-3cbe-488f-99b1-5681827ec27b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221922Z:5b569048-3cbe-488f-99b1-5681827ec27b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "33325ef3-288c-410f-b6e9-a87605868f36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5038" - ], - "x-ms-correlation-request-id": [ - "65f4a828-4adb-4e0b-b9a4-212553b81065" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221922Z:65f4a828-4adb-4e0b-b9a4-212553b81065" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "dd5e0542-5d6d-41f3-82ba-a32337204269" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5037" - ], - "x-ms-correlation-request-id": [ - "080470de-602a-4e1b-b83b-f778f1b2470c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221922Z:080470de-602a-4e1b-b83b-f778f1b2470c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7c85ab70-1234-4a58-a717-bbce64a30544" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5036" - ], - "x-ms-correlation-request-id": [ - "0daf44c0-861d-42c0-8179-7d5df2c1a9cf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221922Z:0daf44c0-861d-42c0-8179-7d5df2c1a9cf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e5c7fffd-1128-4a81-b59f-3d2ebb69cb7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5035" - ], - "x-ms-correlation-request-id": [ - "38161c61-960c-4e0e-a1c7-dcd1de911ffa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221922Z:38161c61-960c-4e0e-a1c7-dcd1de911ffa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d8623e0e-7847-4478-81d8-6b0fd47cb29a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5034" - ], - "x-ms-correlation-request-id": [ - "ccba46cb-09ed-4e4c-9ea4-daf1bc9a46d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221922Z:ccba46cb-09ed-4e4c-9ea4-daf1bc9a46d8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1f4b8fb0-8fac-402e-857e-dcc7760a63c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5033" - ], - "x-ms-correlation-request-id": [ - "207d75da-b27c-42e5-ac30-a23e6e8a59ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221923Z:207d75da-b27c-42e5-ac30-a23e6e8a59ab" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1628d8c-be5d-4b7a-8764-edc2b1b16f6d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5032" - ], - "x-ms-correlation-request-id": [ - "661d4cce-308c-4602-86cf-1dad333b6b8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221923Z:661d4cce-308c-4602-86cf-1dad333b6b8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31416aed-4865-4594-a016-2595597bbf0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5031" - ], - "x-ms-correlation-request-id": [ - "9907f4d5-37b4-4c3a-9de0-760bc6692291" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221923Z:9907f4d5-37b4-4c3a-9de0-760bc6692291" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d4c992e0-357b-4aa6-b1be-f2e362fb7f34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5030" - ], - "x-ms-correlation-request-id": [ - "f440f979-0cca-4cbf-9350-2462b54815c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221923Z:f440f979-0cca-4cbf-9350-2462b54815c0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "782cd96d-775f-4e16-af14-42c31f9a5604" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5029" - ], - "x-ms-correlation-request-id": [ - "da6b39ed-4cbc-43f3-9811-3a79f7e5e645" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221923Z:da6b39ed-4cbc-43f3-9811-3a79f7e5e645" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c115c3fb-38aa-46df-9efd-ac2fac52f96d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5028" - ], - "x-ms-correlation-request-id": [ - "11aa7471-5890-4340-a5a0-9e126d0a110b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221923Z:11aa7471-5890-4340-a5a0-9e126d0a110b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d6a22e4a-27bb-4fc2-aa7f-75f846dd1afd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5027" - ], - "x-ms-correlation-request-id": [ - "934c724f-d3d5-494c-960f-41515facbc8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221923Z:934c724f-d3d5-494c-960f-41515facbc8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d5644370-1267-4358-9d4b-7fa1f8a4d0ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5026" - ], - "x-ms-correlation-request-id": [ - "b98c030c-a8e5-4cf3-b713-ad3ad4f93bf9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221924Z:b98c030c-a8e5-4cf3-b713-ad3ad4f93bf9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "25a6aec7-ab9f-4edb-b6a1-6d446a028caf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5025" - ], - "x-ms-correlation-request-id": [ - "aa51275e-9bee-41d3-b644-d8b07655595e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221924Z:aa51275e-9bee-41d3-b644-d8b07655595e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7f52c9e6-9687-4e81-b514-c88a8e57e40f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5024" - ], - "x-ms-correlation-request-id": [ - "5fbf0a46-618a-4fc9-b71c-e5cbaffb778a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221924Z:5fbf0a46-618a-4fc9-b71c-e5cbaffb778a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f2f743c-7add-4f5c-9607-af81e0756681" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5023" - ], - "x-ms-correlation-request-id": [ - "bc40b24a-f229-441f-a161-4ef891e07a3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221924Z:bc40b24a-f229-441f-a161-4ef891e07a3c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b8ca5144-7d5c-4490-ab87-71f6d8df08e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5022" - ], - "x-ms-correlation-request-id": [ - "8252fb5b-a447-4f2f-8b34-335b1c89da76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221924Z:8252fb5b-a447-4f2f-8b34-335b1c89da76" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5005a3cf-dcaf-4396-a1c5-f0250b0d400e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5021" - ], - "x-ms-correlation-request-id": [ - "208b4115-5383-4665-8b18-999512a94784" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221924Z:208b4115-5383-4665-8b18-999512a94784" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1b000eaa-8d65-45ac-b09e-b3261fe68708" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5020" - ], - "x-ms-correlation-request-id": [ - "ad10731d-d508-47fb-96e6-cb58ca8d3b51" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221925Z:ad10731d-d508-47fb-96e6-cb58ca8d3b51" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "029950d1-fb62-435c-828b-983d187d38c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5019" - ], - "x-ms-correlation-request-id": [ - "4ab01a97-0b33-4d48-b627-f6a9015eb134" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221925Z:4ab01a97-0b33-4d48-b627-f6a9015eb134" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0871dd92-2f96-4d10-8389-23e60cb20cc0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5018" - ], - "x-ms-correlation-request-id": [ - "7b2f56f9-7e6f-4035-bcc3-b1d4e90f8275" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221925Z:7b2f56f9-7e6f-4035-bcc3-b1d4e90f8275" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3f8ac714-ec65-4e4d-b54e-da407377f068" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5017" - ], - "x-ms-correlation-request-id": [ - "06809f44-1149-4552-9904-1c99758ea8f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221925Z:06809f44-1149-4552-9904-1c99758ea8f7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "21d6c690-e3c6-42c3-bae1-9c27ff45f2a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5016" - ], - "x-ms-correlation-request-id": [ - "5f4f707d-eeaa-4d02-809a-3736e37ae198" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221925Z:5f4f707d-eeaa-4d02-809a-3736e37ae198" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0a9633f4-0d38-4b87-b212-da7e3b2bc21e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5015" - ], - "x-ms-correlation-request-id": [ - "7f7e2480-6061-469e-a243-5b8a8d72d56e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221925Z:7f7e2480-6061-469e-a243-5b8a8d72d56e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0e76bccf-b480-49ae-8913-a434844af6a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5014" - ], - "x-ms-correlation-request-id": [ - "b0610e22-9e0e-4f9b-ad5c-3d6c924e7f14" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221926Z:b0610e22-9e0e-4f9b-ad5c-3d6c924e7f14" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0de887b7-4eab-4ccf-ba94-9e0c4a7b1b79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5013" - ], - "x-ms-correlation-request-id": [ - "54cf2cee-4b31-4ef5-9203-a647bdb89fb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221926Z:54cf2cee-4b31-4ef5-9203-a647bdb89fb9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0f97f11c-0211-4b22-9c87-3d56b20d3799" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5012" - ], - "x-ms-correlation-request-id": [ - "96540217-fa9a-4cbb-b7b4-a73f7ad25da4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221926Z:96540217-fa9a-4cbb-b7b4-a73f7ad25da4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "93f30f16-a5dd-4170-a248-3dde1c74531c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5011" - ], - "x-ms-correlation-request-id": [ - "6e1da40f-c601-49c1-af7d-6e4482058745" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221926Z:6e1da40f-c601-49c1-af7d-6e4482058745" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6fd5f04c-519a-4b72-8277-ac0a558f4289" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5010" - ], - "x-ms-correlation-request-id": [ - "6276d49b-0a04-48f1-97f6-0d83b110bcca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221926Z:6276d49b-0a04-48f1-97f6-0d83b110bcca" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "17a3e78d-ce2b-43a5-9cef-d3f6f8aebe97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5009" - ], - "x-ms-correlation-request-id": [ - "e8b92331-7496-47c3-a092-acd629d731db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221926Z:e8b92331-7496-47c3-a092-acd629d731db" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b3be07f6-cbc8-4698-a9ad-8080e25e05da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5008" - ], - "x-ms-correlation-request-id": [ - "b33a21e1-048c-408f-8626-980fce589845" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221927Z:b33a21e1-048c-408f-8626-980fce589845" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70bccd36-9dfa-4c3b-bbe4-54eef7f86ab2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5007" - ], - "x-ms-correlation-request-id": [ - "f29be102-a687-494d-8261-a3a5827946ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221927Z:f29be102-a687-494d-8261-a3a5827946ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "cda89313-c44a-447c-9777-fedf6f5b1809" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5006" - ], - "x-ms-correlation-request-id": [ - "d1b64dc5-a2f8-4537-9819-e893a3bacaaa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221927Z:d1b64dc5-a2f8-4537-9819-e893a3bacaaa" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "448e3983-2673-4758-a6b7-6877506b934f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5005" - ], - "x-ms-correlation-request-id": [ - "cc5a2b54-a438-4adf-91de-44d044da2dbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221927Z:cc5a2b54-a438-4adf-91de-44d044da2dbf" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a5eec7c7-41b1-4062-b9f2-1e599a19a892" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5004" - ], - "x-ms-correlation-request-id": [ - "af9d00ed-6dbe-4e11-88b9-2bbfffe5a2b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221927Z:af9d00ed-6dbe-4e11-88b9-2bbfffe5a2b7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4e736085-e7ff-4c27-865b-5d22bc01452b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5003" - ], - "x-ms-correlation-request-id": [ - "d314f527-d34b-4f9c-8f5b-e1c0fd9dc073" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221927Z:d314f527-d34b-4f9c-8f5b-e1c0fd9dc073" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "996b1882-5cbd-4c6f-bc19-aef626e12027" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5002" - ], - "x-ms-correlation-request-id": [ - "19f0958b-29db-4b07-be0b-c3024eb55857" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221928Z:19f0958b-29db-4b07-be0b-c3024eb55857" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2276c52f-fe3f-4a01-b162-4406af83ede0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5001" - ], - "x-ms-correlation-request-id": [ - "d7341f01-ac30-4a98-b1c2-5dcc57bd319b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221928Z:d7341f01-ac30-4a98-b1c2-5dcc57bd319b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c9566cc7-89de-41b1-9be5-f87695835be1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "5000" - ], - "x-ms-correlation-request-id": [ - "9a7f35d0-85ce-40de-9e65-69b0c9d92b3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221928Z:9a7f35d0-85ce-40de-9e65-69b0c9d92b3c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "31232768-9425-40ed-9759-d8da19ac1424" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4999" - ], - "x-ms-correlation-request-id": [ - "2f59820a-3485-430e-bdb2-77490acfafe2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221928Z:2f59820a-3485-430e-bdb2-77490acfafe2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ed7ad94a-5c1b-4135-add2-b12ee8a933b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4998" - ], - "x-ms-correlation-request-id": [ - "eb8909fc-d6da-4851-a8d6-41ce0078bfb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221928Z:eb8909fc-d6da-4851-a8d6-41ce0078bfb9" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f26d9cec-378b-44ff-8eed-18d133d61a33" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4997" - ], - "x-ms-correlation-request-id": [ - "db7c62c8-fc6f-4cc2-a597-d934afaf1d37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221928Z:db7c62c8-fc6f-4cc2-a597-d934afaf1d37" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "138e45a0-ccc4-47b9-85e6-9e75e5ab29eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4996" - ], - "x-ms-correlation-request-id": [ - "1ac82034-35cf-47d0-a026-3e95ef561838" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221928Z:1ac82034-35cf-47d0-a026-3e95ef561838" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "23317f5e-2e3a-448d-8819-12b4197e1523" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4995" - ], - "x-ms-correlation-request-id": [ - "1c320495-502c-4eb4-a2a7-fb40035318e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221929Z:1c320495-502c-4eb4-a2a7-fb40035318e4" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "75acefc1-2ff1-45cc-a4c5-783f4a7baea8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4994" - ], - "x-ms-correlation-request-id": [ - "9dbe577d-1c75-4100-be5f-18a9a818db8d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221929Z:9dbe577d-1c75-4100-be5f-18a9a818db8d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da58490e-1cb1-4ad9-bb56-38d4875eba28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4993" - ], - "x-ms-correlation-request-id": [ - "e901cdbc-eab1-4518-a032-67697443be2d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221929Z:e901cdbc-eab1-4518-a032-67697443be2d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e2b2d031-04b2-4b0e-bb35-3c98ab179b55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4992" - ], - "x-ms-correlation-request-id": [ - "56247536-6c96-4b0a-9dd3-2c4f7036bc8a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221929Z:56247536-6c96-4b0a-9dd3-2c4f7036bc8a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "02902c5a-4eb3-49b9-8613-b80da47d2909" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4991" - ], - "x-ms-correlation-request-id": [ - "f7e41087-f65e-444e-8a13-3322ec58df66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221929Z:f7e41087-f65e-444e-8a13-3322ec58df66" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3b5bd3a0-88d3-461e-b052-d04bc79b2091" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4990" - ], - "x-ms-correlation-request-id": [ - "4c2fbdb3-547d-47cc-b020-1b2e853caed8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221929Z:4c2fbdb3-547d-47cc-b020-1b2e853caed8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d284ee9b-2663-4235-8a6c-cbf8abfd7fd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4989" - ], - "x-ms-correlation-request-id": [ - "ee902a53-2db8-4f32-b46a-c9d2dcbaf428" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221929Z:ee902a53-2db8-4f32-b46a-c9d2dcbaf428" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1c08c12b-6d3b-49ab-ad31-56a5b87153b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4988" - ], - "x-ms-correlation-request-id": [ - "f938d17b-6ebc-420d-b6d0-597d94036e48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221930Z:f938d17b-6ebc-420d-b6d0-597d94036e48" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7ac2422-1f49-41c4-ae9c-c2a9e8e9363d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4987" - ], - "x-ms-correlation-request-id": [ - "7eab39aa-c6ce-4fd4-8966-8202be7516d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221930Z:7eab39aa-c6ce-4fd4-8966-8202be7516d5" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "86503125-ee95-4f4f-bd67-dc423ae80369" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4986" - ], - "x-ms-correlation-request-id": [ - "7121aaf7-f143-46f1-9d97-1ee530037802" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221930Z:7121aaf7-f143-46f1-9d97-1ee530037802" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1de0b523-775e-4a48-862b-cd67d98fa0f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4985" - ], - "x-ms-correlation-request-id": [ - "8edbebfa-cde2-4a4e-9ace-cf1d1022e97e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221930Z:8edbebfa-cde2-4a4e-9ace-cf1d1022e97e" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "7e1625d0-b2a2-432d-9839-b354a67d4b9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4984" - ], - "x-ms-correlation-request-id": [ - "5d178dc1-c67f-4091-89ab-bf516fa2cdb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221930Z:5d178dc1-c67f-4091-89ab-bf516fa2cdb1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "195960b8-a3a8-4d04-adf8-4ec3858f91b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4983" - ], - "x-ms-correlation-request-id": [ - "bb3df5fd-88f1-4fbc-b7b6-925c1092673f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221930Z:bb3df5fd-88f1-4fbc-b7b6-925c1092673f" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8af5309a-6ddf-4a69-9af8-a0d03fc7e118" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4982" - ], - "x-ms-correlation-request-id": [ - "ca0b6ae3-cca6-42df-b5e5-7431cfb0aed1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221931Z:ca0b6ae3-cca6-42df-b5e5-7431cfb0aed1" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3482e8cf-dd10-4a0d-987a-ddad324b16af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4981" - ], - "x-ms-correlation-request-id": [ - "32b8c499-9a88-40e7-9a7d-3cb762a35739" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221931Z:32b8c499-9a88-40e7-9a7d-3cb762a35739" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e31ec476-9108-47cd-979a-6d315eaad2a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4980" - ], - "x-ms-correlation-request-id": [ - "2f4cc26c-eec1-45b1-a894-eeb94924e5df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221931Z:2f4cc26c-eec1-45b1-a894-eeb94924e5df" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8b21d288-2465-44e1-a05a-ef6fa03389d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4979" - ], - "x-ms-correlation-request-id": [ - "aa6d88ff-ab84-4df0-96e0-b177d2715867" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221931Z:aa6d88ff-ab84-4df0-96e0-b177d2715867" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "44cad64d-f130-4a99-aac0-5b1104fd991b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4978" - ], - "x-ms-correlation-request-id": [ - "155090be-97c4-4d23-b386-e6470a9331ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221931Z:155090be-97c4-4d23-b386-e6470a9331ea" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:30 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "70c309c6-a3b0-4b3b-b654-3eeb15068081" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4977" - ], - "x-ms-correlation-request-id": [ - "69387713-3927-480c-9be7-dac4549d9ead" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221931Z:69387713-3927-480c-9be7-dac4549d9ead" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "28dfb60a-79d6-4607-a39b-9daf7c24bfdc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4976" - ], - "x-ms-correlation-request-id": [ - "136f6fc3-c02c-4cde-8d00-289ea6f2042b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221932Z:136f6fc3-c02c-4cde-8d00-289ea6f2042b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "29b39712-dbe0-41e0-82d3-1ec52f3759c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4975" - ], - "x-ms-correlation-request-id": [ - "6028ff45-fd09-4b86-a379-64a30d4a0c50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221932Z:6028ff45-fd09-4b86-a379-64a30d4a0c50" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "6f168ddb-2723-4cf8-8f29-57659bcf5dd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4974" - ], - "x-ms-correlation-request-id": [ - "dcd19dca-2d6b-4c1f-b0a2-69273f4fc31a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221932Z:dcd19dca-2d6b-4c1f-b0a2-69273f4fc31a" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "da3ffd3b-cd36-407c-bdd1-448ca5fbeda7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4973" - ], - "x-ms-correlation-request-id": [ - "18a7407e-3f7b-41f6-b175-5b9065a5c88d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221932Z:18a7407e-3f7b-41f6-b175-5b9065a5c88d" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "052ee452-d32a-4163-a0ca-249faf85b829" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4972" - ], - "x-ms-correlation-request-id": [ - "c4eed657-23cd-45a2-a19c-0ed27de69fc2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221932Z:c4eed657-23cd-45a2-a19c-0ed27de69fc2" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "74f2b3d5-4d9b-4321-98ed-4cf0ae78e5bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4971" - ], - "x-ms-correlation-request-id": [ - "214f25ab-ce80-4cde-aeac-ea82de82fdb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221932Z:214f25ab-ce80-4cde-aeac-ea82de82fdb8" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "881f3a98-239e-4fcb-bf37-f80750ac812c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4970" - ], - "x-ms-correlation-request-id": [ - "b39bcc5c-b290-4348-939e-03a90033776b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221933Z:b39bcc5c-b290-4348-939e-03a90033776b" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f938c393-3b28-4aa1-89c7-e59dc1235da5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4969" - ], - "x-ms-correlation-request-id": [ - "10ea5b0a-6689-451f-9fea-a205e942f3b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221933Z:10ea5b0a-6689-451f-9fea-a205e942f3b7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "0083f37a-3a08-4717-9cf1-d335ecd9811f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4968" - ], - "x-ms-correlation-request-id": [ - "cfb1964e-e41e-479b-ae62-3166e4e62ea0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221933Z:cfb1964e-e41e-479b-ae62-3166e4e62ea0" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "097eff1a-db5e-45ee-8ba4-92b1b89c8d46" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4967" - ], - "x-ms-correlation-request-id": [ - "77a8804c-4624-40b3-933f-fc3fed933817" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221933Z:77a8804c-4624-40b3-933f-fc3fed933817" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88b45ff2-3c74-431d-a2d6-586e6b0acfaf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4966" - ], - "x-ms-correlation-request-id": [ - "7b75591b-a7b4-4418-a27a-227bf98722c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221933Z:7b75591b-a7b4-4418-a27a-227bf98722c7" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "88aeb0f1-a415-4313-9547-774cefc6ce55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4965" - ], - "x-ms-correlation-request-id": [ - "59378f17-d903-4aa4-91b3-8f8b8fa09d9c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221933Z:59378f17-d903-4aa4-91b3-8f8b8fa09d9c" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "fd8f02df-a834-45b7-a5a8-6be7700d25f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4964" - ], - "x-ms-correlation-request-id": [ - "d48b91cb-ad25-44d1-96e6-8e150fb17655" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221934Z:d48b91cb-ad25-44d1-96e6-8e150fb17655" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "abe35e27-f072-4137-8736-fa45cca05385" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4963" - ], - "x-ms-correlation-request-id": [ - "d774bbb4-f27f-4464-899c-e9e7fa77cb06" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221934Z:d774bbb4-f27f-4464-899c-e9e7fa77cb06" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "a33ef16c-cafb-4614-a991-82720e63e7e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4962" - ], - "x-ms-correlation-request-id": [ - "6deb7298-1036-4d71-b2b0-8f5ccf92bce6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221934Z:6deb7298-1036-4d71-b2b0-8f5ccf92bce6" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -582818,7 +18157,10 @@ "10" ], "x-ms-request-id": [ - "6087edcc-ec26-4e60-8d99-3e5bf1a02210" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582826,42 +18168,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4961" + "14723" ], "x-ms-correlation-request-id": [ - "4261c6db-66f5-44d8-85ad-ccaa6a7a2e26" + "93ffbda4-c2d6-47a0-93af-fc2b3e02380a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221934Z:4261c6db-66f5-44d8-85ad-ccaa6a7a2e26" + "WESTUS2:20180510T003550Z:93ffbda4-c2d6-47a0-93af-fc2b3e02380a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:33 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -582876,7 +18224,10 @@ "10" ], "x-ms-request-id": [ - "8438fea4-8235-42e7-90b0-58dfa1f9e543" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582884,42 +18235,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4960" + "14722" ], "x-ms-correlation-request-id": [ - "4dd74099-09a4-4d06-a3ae-95c67bc59da7" + "51ef8a8f-a87c-4df3-a091-9734dc14f8b5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221934Z:4dd74099-09a4-4d06-a3ae-95c67bc59da7" + "WESTUS2:20180510T003550Z:51ef8a8f-a87c-4df3-a091-9734dc14f8b5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:33 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -582934,7 +18291,10 @@ "10" ], "x-ms-request-id": [ - "fcc831f7-17fa-42eb-9b1f-e03038620dce" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582942,42 +18302,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4959" + "14721" ], "x-ms-correlation-request-id": [ - "1b1acbf4-2554-447d-9203-cb73417e368f" + "78422446-439b-496c-8844-c524c3a4b750" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221934Z:1b1acbf4-2554-447d-9203-cb73417e368f" + "WESTUS2:20180510T003550Z:78422446-439b-496c-8844-c524c3a4b750" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:34 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -582992,7 +18358,10 @@ "10" ], "x-ms-request-id": [ - "86580fa1-8305-466d-bee4-bd96ef6dacfd" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583000,42 +18369,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4958" + "14720" ], "x-ms-correlation-request-id": [ - "48ec45bc-1e3e-4723-ac31-b740c313ca80" + "f59a9209-affa-41e3-a4b6-d72b3ab8fcc5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221935Z:48ec45bc-1e3e-4723-ac31-b740c313ca80" + "WESTUS2:20180510T003550Z:f59a9209-affa-41e3-a4b6-d72b3ab8fcc5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:34 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583050,7 +18425,10 @@ "10" ], "x-ms-request-id": [ - "349e789a-d5b7-45d7-953b-406b99032d2a" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583058,42 +18436,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4957" + "14719" ], "x-ms-correlation-request-id": [ - "a745aa6b-8fa5-4816-b3ba-291d6007f97f" + "44c596bf-058f-4194-9e09-a4fd2e93f6a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221935Z:a745aa6b-8fa5-4816-b3ba-291d6007f97f" + "WESTUS2:20180510T003550Z:44c596bf-058f-4194-9e09-a4fd2e93f6a4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:34 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583108,7 +18492,10 @@ "10" ], "x-ms-request-id": [ - "9d0a98da-69ec-43d8-970d-b35f1f7cf6e8" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583116,42 +18503,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4956" + "14718" ], "x-ms-correlation-request-id": [ - "910ad612-c95d-4a8c-b001-5624cc52c0cd" + "3fdae132-a200-43f8-93e4-27369245d172" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221935Z:910ad612-c95d-4a8c-b001-5624cc52c0cd" + "WESTUS2:20180510T003550Z:3fdae132-a200-43f8-93e4-27369245d172" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:34 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583166,7 +18559,10 @@ "10" ], "x-ms-request-id": [ - "5a591cea-cc52-41f6-8744-fb8ba5c9a4a2" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583174,42 +18570,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4955" + "14717" ], "x-ms-correlation-request-id": [ - "8be74fab-e40d-4643-bdcd-a53ad703b68f" + "0350c304-3ecc-49c1-8466-e309eb64f701" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221935Z:8be74fab-e40d-4643-bdcd-a53ad703b68f" + "WESTUS2:20180510T003550Z:0350c304-3ecc-49c1-8466-e309eb64f701" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:34 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583224,7 +18626,10 @@ "10" ], "x-ms-request-id": [ - "73325cab-33c5-4e86-b9e5-3b35d399820b" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583232,42 +18637,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4954" + "14716" ], "x-ms-correlation-request-id": [ - "e9910180-90a0-4343-a5f5-c0d4aabeba52" + "a99455c8-4b9f-40e3-a21d-0323c5282874" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221935Z:e9910180-90a0-4343-a5f5-c0d4aabeba52" + "WESTUS2:20180510T003550Z:a99455c8-4b9f-40e3-a21d-0323c5282874" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:34 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583282,7 +18693,10 @@ "10" ], "x-ms-request-id": [ - "15705ff2-8790-431b-ad37-0b3b8a962f38" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583290,42 +18704,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4953" + "14715" ], "x-ms-correlation-request-id": [ - "2d5ad7c5-7232-49fb-86b1-b5ccd3c5436d" + "8091a255-2d81-4ec5-80ed-12c8858434f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221935Z:2d5ad7c5-7232-49fb-86b1-b5ccd3c5436d" + "WESTUS2:20180510T003550Z:8091a255-2d81-4ec5-80ed-12c8858434f7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:35 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583340,7 +18760,10 @@ "10" ], "x-ms-request-id": [ - "68cb2505-0bdc-41b2-9544-363e35f4c5a3" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583348,42 +18771,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4952" + "14714" ], "x-ms-correlation-request-id": [ - "60e652d6-9b18-4e5c-a8c5-3e8b3bac8407" + "0fdf671c-cc62-481c-a49c-1bcab319e9b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221935Z:60e652d6-9b18-4e5c-a8c5-3e8b3bac8407" + "WESTUS2:20180510T003550Z:0fdf671c-cc62-481c-a49c-1bcab319e9b3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:35 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583398,7 +18827,10 @@ "10" ], "x-ms-request-id": [ - "923b31a6-d4e6-4ec8-a709-9dd81c82eaf1" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583406,42 +18838,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4951" + "14713" ], "x-ms-correlation-request-id": [ - "6d55dfab-4d56-45d3-a482-d196e7746aa4" + "988e09b8-a51e-47c7-a006-54626173b843" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221936Z:6d55dfab-4d56-45d3-a482-d196e7746aa4" + "WESTUS2:20180510T003550Z:988e09b8-a51e-47c7-a006-54626173b843" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:35 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583456,7 +18894,10 @@ "10" ], "x-ms-request-id": [ - "a5ece9fc-09c7-480f-b448-1f9cdee90c6f" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583464,42 +18905,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4950" + "14712" ], "x-ms-correlation-request-id": [ - "c132e022-83a5-4ac1-9ca3-4dbcbe6a223e" + "1305f88e-ab1a-4b96-be20-58e26c807470" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221936Z:c132e022-83a5-4ac1-9ca3-4dbcbe6a223e" + "WESTUS2:20180510T003550Z:1305f88e-ab1a-4b96-be20-58e26c807470" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:35 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583514,7 +18961,10 @@ "10" ], "x-ms-request-id": [ - "7f3c9d90-2f71-49e4-98b9-719b4e3f7758" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583522,42 +18972,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4949" + "14711" ], "x-ms-correlation-request-id": [ - "727aeff7-b661-4b53-8608-a0a91c25d664" + "7001a2c7-96bd-4472-9798-87a664e501bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221936Z:727aeff7-b661-4b53-8608-a0a91c25d664" + "WESTUS2:20180510T003550Z:7001a2c7-96bd-4472-9798-87a664e501bc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:35 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583572,7 +19028,10 @@ "10" ], "x-ms-request-id": [ - "e6a3ef9e-6259-4aaf-a0c4-b54f525f62ae" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583580,42 +19039,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4948" + "14710" ], "x-ms-correlation-request-id": [ - "b33639e8-ab18-43d6-ab6c-c2506a432535" + "31a27cb7-833e-4543-ab7f-d26277e2227d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221936Z:b33639e8-ab18-43d6-ab6c-c2506a432535" + "WESTUS2:20180510T003550Z:31a27cb7-833e-4543-ab7f-d26277e2227d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:35 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583630,7 +19095,10 @@ "10" ], "x-ms-request-id": [ - "c291f257-28c0-45c8-a59a-93ee47779704" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583638,42 +19106,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4947" + "14709" ], "x-ms-correlation-request-id": [ - "74cdf5e7-4acd-4ae7-9ba8-7b2f0d607443" + "32cf263f-e3af-4bae-9d1e-b90d02e4cbb7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221936Z:74cdf5e7-4acd-4ae7-9ba8-7b2f0d607443" + "WESTUS2:20180510T003550Z:32cf263f-e3af-4bae-9d1e-b90d02e4cbb7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:36 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583688,7 +19162,10 @@ "10" ], "x-ms-request-id": [ - "85437bd0-0d21-412b-bea4-f10809731eb7" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583696,42 +19173,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4946" + "14708" ], "x-ms-correlation-request-id": [ - "1441817c-fa1d-4211-98f0-930b80da4001" + "4b203b8a-1fab-41f4-9712-a66f5d9f459b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221936Z:1441817c-fa1d-4211-98f0-930b80da4001" + "WESTUS2:20180510T003550Z:4b203b8a-1fab-41f4-9712-a66f5d9f459b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:36 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583746,7 +19229,10 @@ "10" ], "x-ms-request-id": [ - "e73c3377-e833-48d7-b7bb-c5d9bfc7112d" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583754,42 +19240,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4945" + "14707" ], "x-ms-correlation-request-id": [ - "e1dc59fa-edcb-4587-911c-91195eb5a80e" + "4fb60485-20a3-4eee-9e10-53ab54742849" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221937Z:e1dc59fa-edcb-4587-911c-91195eb5a80e" + "WESTUS2:20180510T003550Z:4fb60485-20a3-4eee-9e10-53ab54742849" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:36 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583804,7 +19296,10 @@ "10" ], "x-ms-request-id": [ - "4dee06f4-a618-47d7-aee1-b4574639b1f5" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583812,42 +19307,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4944" + "14706" ], "x-ms-correlation-request-id": [ - "466b15e3-8240-4854-b060-838205ab85ad" + "97058a2c-5e71-4368-9dcc-152b13c2ab10" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221937Z:466b15e3-8240-4854-b060-838205ab85ad" + "WESTUS2:20180510T003550Z:97058a2c-5e71-4368-9dcc-152b13c2ab10" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:36 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583862,7 +19363,10 @@ "10" ], "x-ms-request-id": [ - "7f0ee177-4aa9-456d-b49c-05b890764a70" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583870,42 +19374,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4943" + "14705" ], "x-ms-correlation-request-id": [ - "6e1eafbc-d6d4-4e8c-8480-ecec3e8983ba" + "c27ac03d-6378-45b6-980d-a300ad839fd9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221937Z:6e1eafbc-d6d4-4e8c-8480-ecec3e8983ba" + "WESTUS2:20180510T003550Z:c27ac03d-6378-45b6-980d-a300ad839fd9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:36 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583920,7 +19430,10 @@ "10" ], "x-ms-request-id": [ - "fe0ac107-c703-4a5a-9067-f5336a767a28" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583928,42 +19441,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4942" + "14704" ], "x-ms-correlation-request-id": [ - "17beb5c5-cd6d-4107-bb20-80def298d242" + "87933099-75e8-4aa6-9f54-daf16e8123e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221937Z:17beb5c5-cd6d-4107-bb20-80def298d242" + "WESTUS2:20180510T003550Z:87933099-75e8-4aa6-9f54-daf16e8123e9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:36 GMT" + "Thu, 10 May 2018 00:35:49 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583978,7 +19497,10 @@ "10" ], "x-ms-request-id": [ - "84c51c1f-27e7-4c9a-8ca7-4b64554613e8" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583986,42 +19508,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4941" + "14703" ], "x-ms-correlation-request-id": [ - "847d9fe6-46ae-4de5-bf62-a77f787e612d" + "90b36d13-3109-4a9e-886a-19c645305aeb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221937Z:847d9fe6-46ae-4de5-bf62-a77f787e612d" + "WESTUS2:20180510T003550Z:90b36d13-3109-4a9e-886a-19c645305aeb" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:36 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584036,7 +19564,10 @@ "10" ], "x-ms-request-id": [ - "8891de00-ca90-4966-b448-1d22795d3026" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584044,42 +19575,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4940" + "14702" ], "x-ms-correlation-request-id": [ - "ba9cce7e-6158-48cb-83e4-50ae72fa2867" + "41af1f33-fc03-48b5-b516-b5272cd5d4fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221937Z:ba9cce7e-6158-48cb-83e4-50ae72fa2867" + "WESTUS2:20180510T003551Z:41af1f33-fc03-48b5-b516-b5272cd5d4fa" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:37 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584094,7 +19631,10 @@ "10" ], "x-ms-request-id": [ - "42a9793b-ad86-4693-8b53-9112070a25d9" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584102,42 +19642,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4939" + "14701" ], "x-ms-correlation-request-id": [ - "1427c8ec-cbd4-4ca5-bb06-9f31cc4dedf8" + "ce89e003-4b3e-4c4a-b1dc-fce8e010f79e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221938Z:1427c8ec-cbd4-4ca5-bb06-9f31cc4dedf8" + "WESTUS2:20180510T003551Z:ce89e003-4b3e-4c4a-b1dc-fce8e010f79e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:37 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584152,7 +19698,10 @@ "10" ], "x-ms-request-id": [ - "8ec97bda-57cf-4c97-b55d-cf32173d6a47" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584160,42 +19709,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4938" + "14700" ], "x-ms-correlation-request-id": [ - "c17dff8a-62c1-4feb-921c-8554f53d843a" + "f7ad77b7-df1a-4197-b58d-900d3a751afb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221938Z:c17dff8a-62c1-4feb-921c-8554f53d843a" + "WESTUS2:20180510T003551Z:f7ad77b7-df1a-4197-b58d-900d3a751afb" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:37 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584210,7 +19765,10 @@ "10" ], "x-ms-request-id": [ - "c9cf2b8c-e6b3-496a-9ef2-26e529bfe281" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584218,42 +19776,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4937" + "14699" ], "x-ms-correlation-request-id": [ - "73c02a9e-ff93-4533-a7c0-db46c0da058f" + "c01ea244-9602-434a-8c59-c036f66a44e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221938Z:73c02a9e-ff93-4533-a7c0-db46c0da058f" + "WESTUS2:20180510T003551Z:c01ea244-9602-434a-8c59-c036f66a44e1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:37 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584268,7 +19832,10 @@ "10" ], "x-ms-request-id": [ - "e0bddf22-71af-48eb-8b7a-facafb5f0624" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584276,42 +19843,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4936" + "14698" ], "x-ms-correlation-request-id": [ - "4f7a05e7-2a70-476d-bd66-f293426fa6db" + "f28f61bf-37a1-4b23-89f9-d9c2ba93e68e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221938Z:4f7a05e7-2a70-476d-bd66-f293426fa6db" + "WESTUS2:20180510T003551Z:f28f61bf-37a1-4b23-89f9-d9c2ba93e68e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:37 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584326,7 +19899,10 @@ "10" ], "x-ms-request-id": [ - "d713b50c-d42c-4f36-a955-617386127c03" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584334,42 +19910,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4935" + "14697" ], "x-ms-correlation-request-id": [ - "0168d0d8-1a18-4518-a886-971edad9afdd" + "510ca09e-a625-425a-883c-099d3b7c8c63" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221938Z:0168d0d8-1a18-4518-a886-971edad9afdd" + "WESTUS2:20180510T003551Z:510ca09e-a625-425a-883c-099d3b7c8c63" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:37 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584384,7 +19966,10 @@ "10" ], "x-ms-request-id": [ - "7b63dde4-90ae-491e-8243-2d0f99a79d72" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584392,42 +19977,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4934" + "14696" ], "x-ms-correlation-request-id": [ - "18d0b664-3e66-40c3-aeb6-7243c009fed7" + "ad42f103-0f70-4253-93c5-6149d2d5aa66" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221938Z:18d0b664-3e66-40c3-aeb6-7243c009fed7" + "WESTUS2:20180510T003551Z:ad42f103-0f70-4253-93c5-6149d2d5aa66" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:38 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584442,7 +20033,10 @@ "10" ], "x-ms-request-id": [ - "b8f32d2f-ce65-4489-8faa-acc3459c9919" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584450,42 +20044,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4933" + "14695" ], "x-ms-correlation-request-id": [ - "459a0eaf-e384-4934-8431-a4edb39b1c40" + "5f00e1c1-e532-4ca4-b475-3e3d5d38fc18" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221939Z:459a0eaf-e384-4934-8431-a4edb39b1c40" + "WESTUS2:20180510T003551Z:5f00e1c1-e532-4ca4-b475-3e3d5d38fc18" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:38 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584500,7 +20100,10 @@ "10" ], "x-ms-request-id": [ - "43c6f1db-6782-4bc5-b4ab-4edf1dae35a4" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584508,42 +20111,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4932" + "14694" ], "x-ms-correlation-request-id": [ - "de14be81-0fd9-4228-b872-d62456609a5d" + "1c0f3b17-3f2c-4327-b727-50b4a41898d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221939Z:de14be81-0fd9-4228-b872-d62456609a5d" + "WESTUS2:20180510T003551Z:1c0f3b17-3f2c-4327-b727-50b4a41898d5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:38 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584558,7 +20167,10 @@ "10" ], "x-ms-request-id": [ - "7b803f18-4bde-4c19-a9db-9c690ee93167" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584566,42 +20178,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4931" + "14693" ], "x-ms-correlation-request-id": [ - "344f410c-2a27-4843-997c-7f9acac760a2" + "0fdfcdf9-3b74-4e88-80a4-5668f36c91e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221939Z:344f410c-2a27-4843-997c-7f9acac760a2" + "WESTUS2:20180510T003551Z:0fdfcdf9-3b74-4e88-80a4-5668f36c91e3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:38 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584616,7 +20234,10 @@ "10" ], "x-ms-request-id": [ - "5ecd9c2d-1ca0-410f-ac66-3b428460ec4d" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584624,42 +20245,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4930" + "14692" ], "x-ms-correlation-request-id": [ - "4e200264-8396-4b73-a37f-538ae0539ddb" + "5d20e366-2071-4293-86e7-d20c87e32cf3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221939Z:4e200264-8396-4b73-a37f-538ae0539ddb" + "WESTUS2:20180510T003551Z:5d20e366-2071-4293-86e7-d20c87e32cf3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:38 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584674,7 +20301,10 @@ "10" ], "x-ms-request-id": [ - "17606143-c0dd-40c8-97db-3800c3f201b9" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584682,42 +20312,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4929" + "14691" ], "x-ms-correlation-request-id": [ - "9280c908-b4e7-4c21-83f9-a8de144c8317" + "526d5822-ca5d-44c2-9a33-cfa057d524dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221939Z:9280c908-b4e7-4c21-83f9-a8de144c8317" + "WESTUS2:20180510T003551Z:526d5822-ca5d-44c2-9a33-cfa057d524dc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:38 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584732,7 +20368,10 @@ "10" ], "x-ms-request-id": [ - "fe67eebb-44b7-4bcc-9fd9-57afabf25fd2" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584740,42 +20379,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4928" + "14690" ], "x-ms-correlation-request-id": [ - "79350b54-ebae-436b-ad47-0307179fe064" + "825b032f-ac33-4c94-933a-5cb360feb86e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221939Z:79350b54-ebae-436b-ad47-0307179fe064" + "WESTUS2:20180510T003551Z:825b032f-ac33-4c94-933a-5cb360feb86e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:38 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584790,7 +20435,10 @@ "10" ], "x-ms-request-id": [ - "9aada064-19d0-4146-9636-1ee4566922a1" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584798,42 +20446,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4927" + "14689" ], "x-ms-correlation-request-id": [ - "67d75062-a36f-44ba-a99d-f1deb92d8c07" + "c98be76e-be13-4f14-a401-9bc062c7f089" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221939Z:67d75062-a36f-44ba-a99d-f1deb92d8c07" + "WESTUS2:20180510T003551Z:c98be76e-be13-4f14-a401-9bc062c7f089" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:39 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584848,7 +20502,10 @@ "10" ], "x-ms-request-id": [ - "b17126c8-322b-4a4b-a270-6e1b570f106c" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584856,42 +20513,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4926" + "14688" ], "x-ms-correlation-request-id": [ - "be35341f-0646-4525-a92d-381f0b6962a5" + "aab84814-ede7-4cf3-b7eb-40c4ffd19093" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221940Z:be35341f-0646-4525-a92d-381f0b6962a5" + "WESTUS2:20180510T003551Z:aab84814-ede7-4cf3-b7eb-40c4ffd19093" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:39 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584906,7 +20569,10 @@ "10" ], "x-ms-request-id": [ - "326a0168-c49c-420a-ad0d-425b80e95916" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584914,42 +20580,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4925" + "14687" ], "x-ms-correlation-request-id": [ - "983c220e-7486-413c-9dcc-204834d6c60f" + "da4562db-e1f8-4571-a57c-5ade28152d4d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221940Z:983c220e-7486-413c-9dcc-204834d6c60f" + "WESTUS2:20180510T003551Z:da4562db-e1f8-4571-a57c-5ade28152d4d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:39 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -584964,7 +20636,10 @@ "10" ], "x-ms-request-id": [ - "7e2ce0c3-01c7-416d-acef-2ee155f24159" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584972,42 +20647,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4924" + "14686" ], "x-ms-correlation-request-id": [ - "f6ccab5d-7053-4855-a492-516b95397f74" + "1cfdfe09-9354-4d0a-9ccc-5fe57a0f820d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221940Z:f6ccab5d-7053-4855-a492-516b95397f74" + "WESTUS2:20180510T003551Z:1cfdfe09-9354-4d0a-9ccc-5fe57a0f820d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:39 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585022,7 +20703,10 @@ "10" ], "x-ms-request-id": [ - "b229f386-94e7-44de-ab7a-18251516a787" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585030,42 +20714,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4923" + "14685" ], "x-ms-correlation-request-id": [ - "24bbc75f-4d2c-4787-b8ed-741a9ac87b35" + "574e4cc6-f615-4d3b-9e75-c25d625d7479" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221940Z:24bbc75f-4d2c-4787-b8ed-741a9ac87b35" + "WESTUS2:20180510T003551Z:574e4cc6-f615-4d3b-9e75-c25d625d7479" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:39 GMT" + "Thu, 10 May 2018 00:35:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585080,7 +20770,10 @@ "10" ], "x-ms-request-id": [ - "d2a51cbb-497b-4ffd-abe7-207dfc8de6f9" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585088,42 +20781,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4922" + "14684" ], "x-ms-correlation-request-id": [ - "5208d566-c996-40ac-a65b-16ab99e1d9f4" + "364617ab-8d03-43c4-8630-47464fc1d7c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221940Z:5208d566-c996-40ac-a65b-16ab99e1d9f4" + "WESTUS2:20180510T003551Z:364617ab-8d03-43c4-8630-47464fc1d7c8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:40 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585138,7 +20837,10 @@ "10" ], "x-ms-request-id": [ - "88d4fba4-c0f8-4960-8490-f8ceea8aadd8" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585146,42 +20848,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4921" + "14683" ], "x-ms-correlation-request-id": [ - "c58fc8bc-6e53-45b1-abbe-0049ef4447f2" + "cedf4dab-f950-4e00-93b6-5a823471a0d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221941Z:c58fc8bc-6e53-45b1-abbe-0049ef4447f2" + "WESTUS2:20180510T003552Z:cedf4dab-f950-4e00-93b6-5a823471a0d4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:40 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585196,7 +20904,10 @@ "10" ], "x-ms-request-id": [ - "953897a7-bf74-4c8a-a5ea-d2b8157882ab" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585204,42 +20915,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4920" + "14682" ], "x-ms-correlation-request-id": [ - "6225e22b-3109-4c6c-a16d-7fc15d7b2d53" + "8d7aec99-fd23-4434-9ddc-26f39c9d802d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221941Z:6225e22b-3109-4c6c-a16d-7fc15d7b2d53" + "WESTUS2:20180510T003552Z:8d7aec99-fd23-4434-9ddc-26f39c9d802d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:40 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585254,7 +20971,10 @@ "10" ], "x-ms-request-id": [ - "67ffe3e9-a67a-47bb-be3b-4ee0db1c781c" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585262,42 +20982,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4919" + "14681" ], "x-ms-correlation-request-id": [ - "cd2fd500-a418-41cb-8cfd-7c0af650a249" + "85efa4dd-d454-43fa-b845-ff29487d72cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221941Z:cd2fd500-a418-41cb-8cfd-7c0af650a249" + "WESTUS2:20180510T003552Z:85efa4dd-d454-43fa-b845-ff29487d72cf" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:40 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585312,7 +21038,10 @@ "10" ], "x-ms-request-id": [ - "98857a86-68c9-4e44-8f17-bad2f2419f88" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585320,42 +21049,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4918" + "14680" ], "x-ms-correlation-request-id": [ - "c71370a1-7526-46b6-a4b4-23521af5f8fc" + "e17d78a7-7a45-45fe-a3a9-05bef0a28061" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221941Z:c71370a1-7526-46b6-a4b4-23521af5f8fc" + "WESTUS2:20180510T003552Z:e17d78a7-7a45-45fe-a3a9-05bef0a28061" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:40 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585370,7 +21105,10 @@ "10" ], "x-ms-request-id": [ - "12929ab4-ead6-4f47-9481-b315d8b99d38" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585378,42 +21116,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4917" + "14679" ], "x-ms-correlation-request-id": [ - "910787be-f4b2-48ba-8e21-a34023f03e2c" + "7b42eed7-c2d3-4d20-a4c8-1f9156928f12" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221941Z:910787be-f4b2-48ba-8e21-a34023f03e2c" + "WESTUS2:20180510T003552Z:7b42eed7-c2d3-4d20-a4c8-1f9156928f12" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:40 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585428,7 +21172,10 @@ "10" ], "x-ms-request-id": [ - "5abc4864-9c6b-4c3f-8344-166048b73bf6" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585436,42 +21183,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4916" + "14678" ], "x-ms-correlation-request-id": [ - "388b3217-706c-44ca-a41d-3642d3841f08" + "6520ba20-0f3e-4c23-b0c1-1a81db6d143f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221941Z:388b3217-706c-44ca-a41d-3642d3841f08" + "WESTUS2:20180510T003552Z:6520ba20-0f3e-4c23-b0c1-1a81db6d143f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:41 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585486,7 +21239,10 @@ "10" ], "x-ms-request-id": [ - "b6763814-e54e-4253-b071-3332ccaacf62" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585494,42 +21250,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4915" + "14677" ], "x-ms-correlation-request-id": [ - "6fddf007-9934-4f71-8e7c-3471528186ec" + "1301c757-f72b-4275-946d-92543a31655f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221941Z:6fddf007-9934-4f71-8e7c-3471528186ec" + "WESTUS2:20180510T003552Z:1301c757-f72b-4275-946d-92543a31655f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:41 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585544,7 +21306,10 @@ "10" ], "x-ms-request-id": [ - "4fe6f886-1343-4357-9156-a3b491f80e7b" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585552,42 +21317,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4914" + "14676" ], "x-ms-correlation-request-id": [ - "45ddf222-7cb0-4826-9306-eb0822fdbfcf" + "e4a75fe5-0190-4826-a59b-224710bffee7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221942Z:45ddf222-7cb0-4826-9306-eb0822fdbfcf" + "WESTUS2:20180510T003552Z:e4a75fe5-0190-4826-a59b-224710bffee7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:41 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585602,7 +21373,10 @@ "10" ], "x-ms-request-id": [ - "0cb8153a-5260-4f5e-8fb6-b5414fd007a0" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585610,42 +21384,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4913" + "14675" ], "x-ms-correlation-request-id": [ - "500d3f9f-83dc-412d-8f60-6f823adbfcdb" + "39b15aea-2e50-40da-a935-9be95bfd04d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221942Z:500d3f9f-83dc-412d-8f60-6f823adbfcdb" + "WESTUS2:20180510T003552Z:39b15aea-2e50-40da-a935-9be95bfd04d5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:41 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585660,7 +21440,10 @@ "10" ], "x-ms-request-id": [ - "14d5a227-c918-44d2-b317-40d908df6783" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585668,42 +21451,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4912" + "14674" ], "x-ms-correlation-request-id": [ - "515ac154-9415-4a33-b850-7e0a910e7af0" + "570cd5a0-b1c3-4785-9795-3d6b02d34f07" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221942Z:515ac154-9415-4a33-b850-7e0a910e7af0" + "WESTUS2:20180510T003552Z:570cd5a0-b1c3-4785-9795-3d6b02d34f07" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:41 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585718,7 +21507,10 @@ "10" ], "x-ms-request-id": [ - "705bed3b-6be6-4005-b325-24d61e5f2c95" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585726,42 +21518,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4911" + "14673" ], "x-ms-correlation-request-id": [ - "3230248b-98ab-4686-8bb6-358fa463c4ef" + "d0de7a5e-a81e-474a-971f-a50fc46d3cc2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221942Z:3230248b-98ab-4686-8bb6-358fa463c4ef" + "WESTUS2:20180510T003552Z:d0de7a5e-a81e-474a-971f-a50fc46d3cc2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:41 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585776,7 +21574,10 @@ "10" ], "x-ms-request-id": [ - "f1704670-25af-4562-9eb5-922c5cf85263" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585784,42 +21585,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4910" + "14672" ], "x-ms-correlation-request-id": [ - "4aa2d846-15ac-4a0f-ba86-026021ac4acf" + "c9e8c7d5-435a-4384-a9d0-6dec5bd93ee4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221942Z:4aa2d846-15ac-4a0f-ba86-026021ac4acf" + "WESTUS2:20180510T003552Z:c9e8c7d5-435a-4384-a9d0-6dec5bd93ee4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:42 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585834,7 +21641,10 @@ "10" ], "x-ms-request-id": [ - "de1a7ccb-609a-4984-a098-99cef367d412" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585842,42 +21652,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4909" + "14671" ], "x-ms-correlation-request-id": [ - "e7442d05-1550-4a26-8721-908b98fcdb95" + "8be17520-9c24-42be-a2a6-4d4c6d77df5f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221942Z:e7442d05-1550-4a26-8721-908b98fcdb95" + "WESTUS2:20180510T003552Z:8be17520-9c24-42be-a2a6-4d4c6d77df5f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:42 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585892,7 +21708,10 @@ "10" ], "x-ms-request-id": [ - "5062ab7a-f464-40ea-9b54-87886d62516b" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585900,42 +21719,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4908" + "14670" ], "x-ms-correlation-request-id": [ - "a6046c24-a0a4-42f5-bc9d-14daf0cb73fe" + "9b7c98c9-f7f9-48f5-907c-f2746610e771" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221943Z:a6046c24-a0a4-42f5-bc9d-14daf0cb73fe" + "WESTUS2:20180510T003552Z:9b7c98c9-f7f9-48f5-907c-f2746610e771" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:42 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585950,7 +21775,10 @@ "10" ], "x-ms-request-id": [ - "6ada1f27-8c48-4d60-ad59-f60093341769" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585958,42 +21786,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4907" + "14669" ], "x-ms-correlation-request-id": [ - "398ff46c-bacf-445e-a310-28c95b0575db" + "acde8a1f-e2ef-40e9-9ba0-3adbcdad485a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221943Z:398ff46c-bacf-445e-a310-28c95b0575db" + "WESTUS2:20180510T003552Z:acde8a1f-e2ef-40e9-9ba0-3adbcdad485a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:42 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586008,7 +21842,10 @@ "10" ], "x-ms-request-id": [ - "98eaf87b-2cca-4978-ac84-02f6d6642a2d" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586016,42 +21853,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4906" + "14668" ], "x-ms-correlation-request-id": [ - "5cd29026-6e6e-47fa-8a0a-575ed497ce87" + "5fab3ca5-a525-4987-a71d-9ec2b9146ccd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221943Z:5cd29026-6e6e-47fa-8a0a-575ed497ce87" + "WESTUS2:20180510T003552Z:5fab3ca5-a525-4987-a71d-9ec2b9146ccd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:42 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586066,7 +21909,10 @@ "10" ], "x-ms-request-id": [ - "20a7a799-9981-498e-b0f5-4975dd09b102" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586074,42 +21920,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4905" + "14667" ], "x-ms-correlation-request-id": [ - "1e7ecb5d-7593-421f-8949-c8fc8b52041d" + "298b6460-457b-4e70-83f1-8bf00241dd73" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221943Z:1e7ecb5d-7593-421f-8949-c8fc8b52041d" + "WESTUS2:20180510T003552Z:298b6460-457b-4e70-83f1-8bf00241dd73" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:42 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586124,7 +21976,10 @@ "10" ], "x-ms-request-id": [ - "8e2dec5a-2e68-48c1-8189-23294dfcfad4" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586132,42 +21987,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4904" + "14666" ], "x-ms-correlation-request-id": [ - "b185cdfd-01e6-4dde-b240-40b1780441b7" + "ad132007-4017-4e48-95db-a24342245040" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221943Z:b185cdfd-01e6-4dde-b240-40b1780441b7" + "WESTUS2:20180510T003552Z:ad132007-4017-4e48-95db-a24342245040" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:43 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586182,7 +22043,10 @@ "10" ], "x-ms-request-id": [ - "24e2a8da-c279-4cc3-9438-78100a611950" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586190,42 +22054,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4903" + "14665" ], "x-ms-correlation-request-id": [ - "9f33faed-393a-4cf5-a563-40365ba0993f" + "02d376cb-5be3-4871-ae65-12f0bc170695" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221944Z:9f33faed-393a-4cf5-a563-40365ba0993f" + "WESTUS2:20180510T003552Z:02d376cb-5be3-4871-ae65-12f0bc170695" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:43 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586240,7 +22110,10 @@ "10" ], "x-ms-request-id": [ - "123af7c3-593b-42d2-9745-02547c892481" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586248,42 +22121,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4902" + "14664" ], "x-ms-correlation-request-id": [ - "a7222fd2-b417-4956-a28e-93bd25288220" + "1a33109e-9675-4594-8a37-a93dba9b6150" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221944Z:a7222fd2-b417-4956-a28e-93bd25288220" + "WESTUS2:20180510T003552Z:1a33109e-9675-4594-8a37-a93dba9b6150" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:43 GMT" + "Thu, 10 May 2018 00:35:51 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586298,7 +22177,10 @@ "10" ], "x-ms-request-id": [ - "4af0a21d-6f6f-41ce-a4ed-185ee1dbcab9" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586306,42 +22188,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4901" + "14663" ], "x-ms-correlation-request-id": [ - "8cb34004-59ac-4232-ad35-ba61bacb673f" + "6a19969a-5add-4077-9abb-01be0d9f7eec" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221944Z:8cb34004-59ac-4232-ad35-ba61bacb673f" + "WESTUS2:20180510T003553Z:6a19969a-5add-4077-9abb-01be0d9f7eec" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:43 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586356,7 +22244,10 @@ "10" ], "x-ms-request-id": [ - "2b0261c2-a452-4417-8410-f63c60cc8964" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586364,42 +22255,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4900" + "14662" ], "x-ms-correlation-request-id": [ - "f991c2e2-c568-40b7-9091-ca0365ef9661" + "a27a6d84-e235-42ad-b7b4-07977dadd561" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221944Z:f991c2e2-c568-40b7-9091-ca0365ef9661" + "WESTUS2:20180510T003553Z:a27a6d84-e235-42ad-b7b4-07977dadd561" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:43 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586414,7 +22311,10 @@ "10" ], "x-ms-request-id": [ - "5ef07e0e-3626-4316-a9cd-821dba33991a" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586422,42 +22322,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4899" + "14661" ], "x-ms-correlation-request-id": [ - "a9ccd094-2ffe-4736-bd00-4b5e32c88cae" + "f3d6f246-4573-4216-a7ac-69846140c1ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221944Z:a9ccd094-2ffe-4736-bd00-4b5e32c88cae" + "WESTUS2:20180510T003553Z:f3d6f246-4573-4216-a7ac-69846140c1ee" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:43 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586472,7 +22378,10 @@ "10" ], "x-ms-request-id": [ - "a6667e65-94ae-499b-8102-b57ba1fbba47" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586480,42 +22389,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4898" + "14660" ], "x-ms-correlation-request-id": [ - "23b96dc3-7318-42f6-bb5d-e9d048fa22c0" + "156bf461-2f04-4a4e-93b4-236065d43fcf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221944Z:23b96dc3-7318-42f6-bb5d-e9d048fa22c0" + "WESTUS2:20180510T003553Z:156bf461-2f04-4a4e-93b4-236065d43fcf" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:43 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586530,7 +22445,10 @@ "10" ], "x-ms-request-id": [ - "e68a567e-72f5-460a-8c12-304b33eec0e4" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586538,42 +22456,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4897" + "14659" ], "x-ms-correlation-request-id": [ - "87846633-d167-4521-8485-e0f5f83ad5a1" + "cdf3d46d-de80-4bc4-9043-d5790277b3f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221944Z:87846633-d167-4521-8485-e0f5f83ad5a1" + "WESTUS2:20180510T003553Z:cdf3d46d-de80-4bc4-9043-d5790277b3f9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:44 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586588,7 +22512,10 @@ "10" ], "x-ms-request-id": [ - "3d308bc1-b8c9-4c15-9875-e101dfab1e4b" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586596,42 +22523,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4896" + "14658" ], "x-ms-correlation-request-id": [ - "ca3ecc3d-3453-47b1-b14c-1d623b44818b" + "79d4b1a7-0bad-4f49-a9bc-4bb1e7ce0e67" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221945Z:ca3ecc3d-3453-47b1-b14c-1d623b44818b" + "WESTUS2:20180510T003553Z:79d4b1a7-0bad-4f49-a9bc-4bb1e7ce0e67" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:44 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586646,7 +22579,10 @@ "10" ], "x-ms-request-id": [ - "b50a3e6c-0fbd-4d68-9f78-e19dc378dde8" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586654,42 +22590,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4895" + "14657" ], "x-ms-correlation-request-id": [ - "42db785c-8c03-40b9-a70b-f39faa86fd91" + "b25c26f7-71eb-4bdd-9260-f85f84d7bfc9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221945Z:42db785c-8c03-40b9-a70b-f39faa86fd91" + "WESTUS2:20180510T003553Z:b25c26f7-71eb-4bdd-9260-f85f84d7bfc9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:44 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586704,7 +22646,10 @@ "10" ], "x-ms-request-id": [ - "ef07be81-2d65-4e9e-97ac-6a2f276bfaed" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586712,42 +22657,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4894" + "14656" ], "x-ms-correlation-request-id": [ - "d10c7253-0996-42ac-906f-492b0d35a4c8" + "f6788c55-ccc1-442a-b8b5-78004378a6e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221945Z:d10c7253-0996-42ac-906f-492b0d35a4c8" + "WESTUS2:20180510T003553Z:f6788c55-ccc1-442a-b8b5-78004378a6e8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:44 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586762,7 +22713,10 @@ "10" ], "x-ms-request-id": [ - "f194947f-ddc7-4326-aa03-a4debb87bc99" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586770,42 +22724,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4893" + "14655" ], "x-ms-correlation-request-id": [ - "f3238575-5b95-4b10-b667-852e7664ab9d" + "15d22b1b-746d-4395-b4e5-c99d53163243" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221945Z:f3238575-5b95-4b10-b667-852e7664ab9d" + "WESTUS2:20180510T003553Z:15d22b1b-746d-4395-b4e5-c99d53163243" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:44 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586820,7 +22780,10 @@ "10" ], "x-ms-request-id": [ - "39f24dc3-b923-490e-95d2-50dcb8025d30" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586828,42 +22791,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4892" + "14654" ], "x-ms-correlation-request-id": [ - "a20f8c2a-ff83-4d49-bc57-57a70bcb3fff" + "c848e5ea-c8e4-4f07-8206-f0e614174427" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221945Z:a20f8c2a-ff83-4d49-bc57-57a70bcb3fff" + "WESTUS2:20180510T003553Z:c848e5ea-c8e4-4f07-8206-f0e614174427" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:44 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586878,7 +22847,10 @@ "10" ], "x-ms-request-id": [ - "a682c3cf-0104-467c-ba77-8b5bb3ddbaa1" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586886,42 +22858,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4891" + "14653" ], "x-ms-correlation-request-id": [ - "a02d26ef-972e-4dc7-a85d-7777e50eb09c" + "4e59a25c-51ee-4ec1-9098-f18695423250" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221945Z:a02d26ef-972e-4dc7-a85d-7777e50eb09c" + "WESTUS2:20180510T003553Z:4e59a25c-51ee-4ec1-9098-f18695423250" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:45 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586936,7 +22914,10 @@ "10" ], "x-ms-request-id": [ - "3ee4e0d0-2094-4853-b9d3-c7431bbeb60e" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586944,42 +22925,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4890" + "14652" ], "x-ms-correlation-request-id": [ - "5b8c217a-2889-4a86-b7eb-64dc7b7c117c" + "df322b69-b812-4987-81b6-7584e3c215f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221946Z:5b8c217a-2889-4a86-b7eb-64dc7b7c117c" + "WESTUS2:20180510T003553Z:df322b69-b812-4987-81b6-7584e3c215f0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:45 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586994,7 +22981,10 @@ "10" ], "x-ms-request-id": [ - "3ae8af9c-6ef7-4cc8-a14b-0bad49886770" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587002,42 +22992,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4889" + "14651" ], "x-ms-correlation-request-id": [ - "436efba4-90c4-44e8-910e-f972ab631773" + "1b19c6ef-4b35-46e7-aa3e-0f08bdcaa9b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221946Z:436efba4-90c4-44e8-910e-f972ab631773" + "WESTUS2:20180510T003553Z:1b19c6ef-4b35-46e7-aa3e-0f08bdcaa9b0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:45 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -587052,7 +23048,10 @@ "10" ], "x-ms-request-id": [ - "1934c2f5-4ce2-4d74-81f0-998811eee41e" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587060,42 +23059,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4888" + "14650" ], "x-ms-correlation-request-id": [ - "71b71854-577a-4882-962d-92874aff5815" + "b0d6bdb2-208b-446c-a323-c24627f207b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221946Z:71b71854-577a-4882-962d-92874aff5815" + "WESTUS2:20180510T003553Z:b0d6bdb2-208b-446c-a323-c24627f207b4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:45 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -587110,7 +23115,10 @@ "10" ], "x-ms-request-id": [ - "faca6f07-ce90-4c79-8793-8c13233fe12f" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587118,42 +23126,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4887" + "14649" ], "x-ms-correlation-request-id": [ - "c1ddebff-d97c-4455-8f27-15432a30669c" + "16249e13-ee2c-4573-9060-20e898aad360" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221946Z:c1ddebff-d97c-4455-8f27-15432a30669c" + "WESTUS2:20180510T003553Z:16249e13-ee2c-4573-9060-20e898aad360" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:45 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -587168,7 +23182,10 @@ "10" ], "x-ms-request-id": [ - "1648c503-ba3c-4786-8327-796722bca45f" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587176,42 +23193,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4886" + "14648" ], "x-ms-correlation-request-id": [ - "ab653992-f210-4c97-9744-6fa022ae2433" + "c6cc96fd-5a30-4c11-8280-a584b3883017" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221946Z:ab653992-f210-4c97-9744-6fa022ae2433" + "WESTUS2:20180510T003553Z:c6cc96fd-5a30-4c11-8280-a584b3883017" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:46 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -587226,7 +23249,10 @@ "10" ], "x-ms-request-id": [ - "339efefe-13b8-41a8-bbf4-cb43ee01ddf9" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587234,42 +23260,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4885" + "14647" ], "x-ms-correlation-request-id": [ - "33c5c473-b322-42b6-ad0b-02cc59fdfbb0" + "23cf0bb4-56a6-4a5c-a8fd-1c21876ec477" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221947Z:33c5c473-b322-42b6-ad0b-02cc59fdfbb0" + "WESTUS2:20180510T003553Z:23cf0bb4-56a6-4a5c-a8fd-1c21876ec477" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:46 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -587284,7 +23316,10 @@ "10" ], "x-ms-request-id": [ - "8ffd6a68-4281-432d-97e8-08a7b54c579e" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587292,42 +23327,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4884" + "14646" ], "x-ms-correlation-request-id": [ - "157e8acf-72c0-4621-a64c-ec72254bdf47" + "fc272b82-7586-4758-a39b-867fd66f1d9d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221947Z:157e8acf-72c0-4621-a64c-ec72254bdf47" + "WESTUS2:20180510T003553Z:fc272b82-7586-4758-a39b-867fd66f1d9d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:46 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -587342,7 +23383,10 @@ "10" ], "x-ms-request-id": [ - "4b658f45-1da1-4149-a38a-5ba50798aa9f" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587350,42 +23394,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4883" + "14645" ], "x-ms-correlation-request-id": [ - "9b6cde31-d9ed-4436-b1d2-65b999856997" + "1cfab799-4bda-49e4-8528-2ed67449241b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221947Z:9b6cde31-d9ed-4436-b1d2-65b999856997" + "WESTUS2:20180510T003553Z:1cfab799-4bda-49e4-8528-2ed67449241b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:46 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -587400,7 +23450,10 @@ "10" ], "x-ms-request-id": [ - "7da079ad-825c-4641-af4c-9880118c09d1" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587408,42 +23461,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4882" + "14644" ], "x-ms-correlation-request-id": [ - "67905b4c-ce25-41de-8def-b2317bab6526" + "287ea68b-cde9-4c45-aa7b-74d1c2582aeb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221947Z:67905b4c-ce25-41de-8def-b2317bab6526" + "WESTUS2:20180510T003553Z:287ea68b-cde9-4c45-aa7b-74d1c2582aeb" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:46 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "30" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -587458,7 +23517,10 @@ "10" ], "x-ms-request-id": [ - "81e290e2-05c2-46a8-8210-4a900a30614b" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587466,42 +23528,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4881" + "14643" ], "x-ms-correlation-request-id": [ - "308ee935-8e6b-4543-b48e-9d5017675df7" + "422dbc2c-0973-4822-9b3a-3bb05b6f8d02" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221947Z:308ee935-8e6b-4543-b48e-9d5017675df7" + "WESTUS2:20180510T003553Z:422dbc2c-0973-4822-9b3a-3bb05b6f8d02" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:47 GMT" + "Thu, 10 May 2018 00:35:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/d9341925-2f16-47af-be0f-3aec5e367d9b?api-version=2017-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzNDE5MjUtMmYxNi00N2FmLWJlMGYtM2FlYzVlMzY3ZDliP2FwaS12ZXJzaW9uPTIwMTctMDgtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "29" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -587512,8 +23580,14 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "59a1b57e-d9d1-44e5-92c0-76670079029a" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587521,46 +23595,42 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4880" + "14642" ], "x-ms-correlation-request-id": [ - "0df8e503-a949-4227-ae5d-2b073217094b" + "6e81bbfd-2de7-442c-a0d5-fa0c487d004f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221947Z:0df8e503-a949-4227-ae5d-2b073217094b" + "WESTUS2:20180510T003554Z:6e81bbfd-2de7-442c-a0d5-fa0c487d004f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:47 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourceGroups/onesdk3166/providers/Microsoft.Network/virtualnetworkgateways/onesdk9635/generatevpnprofile?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXMvb25lc2RrOTYzNS9nZW5lcmF0ZXZwbnByb2ZpbGU/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==", - "RequestMethod": "POST", - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "RequestBody": "{\r\n \"processorArchitecture\": \"Amd64\",\r\n \"authenticationMethod\": \"EAPTLS\",\r\n \"radiusServerAuthCertificate\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"clientRootCertificates\": []\r\n}", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1284" - ], - "x-ms-client-request-id": [ - "9c06d198-6ca8-4f15-aeec-33c2e89d29bc" - ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -587581,7 +23651,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587590,38 +23663,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14641" ], "x-ms-correlation-request-id": [ - "55e24309-2237-4a14-9f5a-f278ee763991" + "251c999f-a692-4780-859c-c1f4202a71ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221951Z:55e24309-2237-4a14-9f5a-f278ee763991" + "WESTUS2:20180510T003554Z:251c999f-a692-4780-859c-c1f4202a71ec" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:51 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -587642,10 +23718,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587654,38 +23730,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4876" + "14640" ], "x-ms-correlation-request-id": [ - "43ef934e-3aeb-4bf8-8519-9daa4c34f18e" + "3b14a147-f147-451a-a635-573be3a49a2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221952Z:43ef934e-3aeb-4bf8-8519-9daa4c34f18e" + "WESTUS2:20180510T003554Z:3b14a147-f147-451a-a635-573be3a49a2f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:51 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -587706,10 +23785,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587718,38 +23797,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4875" + "14639" ], "x-ms-correlation-request-id": [ - "0b2aedf5-aef8-4e15-936d-5016ff3f4e1e" + "999611b3-5562-4669-89d3-3846ef8c3425" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221952Z:0b2aedf5-aef8-4e15-936d-5016ff3f4e1e" + "WESTUS2:20180510T003554Z:999611b3-5562-4669-89d3-3846ef8c3425" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:51 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -587770,10 +23852,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587782,38 +23864,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4874" + "14638" ], "x-ms-correlation-request-id": [ - "dda2ea47-c776-419c-8312-2d4ee655506d" + "1978fb67-5808-4291-a377-5ba56e6ac49e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221952Z:dda2ea47-c776-419c-8312-2d4ee655506d" + "WESTUS2:20180510T003554Z:1978fb67-5808-4291-a377-5ba56e6ac49e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:51 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -587834,10 +23919,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587846,38 +23931,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4873" + "14637" ], "x-ms-correlation-request-id": [ - "360a8afb-0be9-4eaa-8349-70834e9060e4" + "86bcb0a5-9b3c-4bba-9896-b606af21328b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221952Z:360a8afb-0be9-4eaa-8349-70834e9060e4" + "WESTUS2:20180510T003554Z:86bcb0a5-9b3c-4bba-9896-b606af21328b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:51 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -587898,10 +23986,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587910,38 +23998,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4872" + "14636" ], "x-ms-correlation-request-id": [ - "f21fcb7c-cd54-4860-9a93-0482794b223c" + "0b972804-42f9-43be-9c14-ec389a109730" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221952Z:f21fcb7c-cd54-4860-9a93-0482794b223c" + "WESTUS2:20180510T003554Z:0b972804-42f9-43be-9c14-ec389a109730" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:52 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -587962,10 +24053,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587974,38 +24065,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4871" + "14635" ], "x-ms-correlation-request-id": [ - "a651cfca-b237-4c32-b587-e772ba681fdc" + "5d1fc2a0-9ad7-4b2b-a177-fb14ad7a57b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221953Z:a651cfca-b237-4c32-b587-e772ba681fdc" + "WESTUS2:20180510T003554Z:5d1fc2a0-9ad7-4b2b-a177-fb14ad7a57b4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:52 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -588026,10 +24120,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588038,38 +24132,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4870" + "14634" ], "x-ms-correlation-request-id": [ - "47c47f8d-7000-4475-801d-1f2c30ad42bd" + "eacf6726-7510-4d72-97ef-4d79dfc483fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221953Z:47c47f8d-7000-4475-801d-1f2c30ad42bd" + "WESTUS2:20180510T003554Z:eacf6726-7510-4d72-97ef-4d79dfc483fd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:52 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -588090,10 +24187,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588102,38 +24199,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4869" + "14633" ], "x-ms-correlation-request-id": [ - "de309b96-4707-4c92-b03d-5aa09dab104f" + "1da4e734-7ee6-4364-997c-26b0eefda9ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221953Z:de309b96-4707-4c92-b03d-5aa09dab104f" + "WESTUS2:20180510T003554Z:1da4e734-7ee6-4364-997c-26b0eefda9ed" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:52 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -588154,10 +24254,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588166,38 +24266,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4868" + "14632" ], "x-ms-correlation-request-id": [ - "40e2c5be-bca1-443b-af04-394940e253df" + "f732e34d-a5d6-4d43-af4f-92c4944b179f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221953Z:40e2c5be-bca1-443b-af04-394940e253df" + "WESTUS2:20180510T003554Z:f732e34d-a5d6-4d43-af4f-92c4944b179f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:52 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -588218,10 +24321,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588230,38 +24333,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4867" + "14631" ], "x-ms-correlation-request-id": [ - "924b2bd2-64b7-4d49-800e-2a28d1c73416" + "7b895116-9168-4950-9344-d3963008442e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221953Z:924b2bd2-64b7-4d49-800e-2a28d1c73416" + "WESTUS2:20180510T003554Z:7b895116-9168-4950-9344-d3963008442e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:52 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -588282,10 +24388,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588294,102 +24400,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4866" + "14630" ], "x-ms-correlation-request-id": [ - "cedc3caf-7d98-4d64-a915-a58825c5b23c" + "d9c205f3-2c4b-43ab-899f-e15460c925f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221953Z:cedc3caf-7d98-4d64-a915-a58825c5b23c" + "WESTUS2:20180510T003554Z:d9c205f3-2c4b-43ab-899f-e15460c925f0" ], - "Date": [ - "Tue, 29 Aug 2017 22:19:53 GMT" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "null", - "ResponseHeaders": { - "Content-Length": [ - "4" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4865" - ], - "x-ms-correlation-request-id": [ - "0add2929-8e13-4951-9d6e-037e76fdeb53" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221954Z:0add2929-8e13-4951-9d6e-037e76fdeb53" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:53 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -588410,10 +24455,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588422,102 +24467,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4864" + "14629" ], "x-ms-correlation-request-id": [ - "1ac92f72-a679-42df-b6c2-f24902f1197d" + "5d04ae3b-cdee-4213-bf95-06eb8f92289e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221954Z:1ac92f72-a679-42df-b6c2-f24902f1197d" + "WESTUS2:20180510T003554Z:5d04ae3b-cdee-4213-bf95-06eb8f92289e" ], - "Date": [ - "Tue, 29 Aug 2017 22:19:53 GMT" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "null", - "ResponseHeaders": { - "Content-Length": [ - "4" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4863" - ], - "x-ms-correlation-request-id": [ - "da75573c-d77f-4541-ad98-3cf23da2a469" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221954Z:da75573c-d77f-4541-ad98-3cf23da2a469" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:53 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -588538,10 +24522,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588550,102 +24534,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4862" + "14628" ], "x-ms-correlation-request-id": [ - "55f985cc-ced1-4fc2-8ce1-b380b973af83" + "bfd0aa6a-6166-4b4b-ae08-09d100ceed0e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221954Z:55f985cc-ced1-4fc2-8ce1-b380b973af83" - ], - "Date": [ - "Tue, 29 Aug 2017 22:19:53 GMT" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" - ] - }, - "ResponseBody": "null", - "ResponseHeaders": { - "Content-Length": [ - "4" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "WESTUS2:20180510T003554Z:bfd0aa6a-6166-4b4b-ae08-09d100ceed0e" ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "4861" - ], - "x-ms-correlation-request-id": [ - "9496ddc2-a5ef-4ab2-92b1-0d8cc00c94bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T221954Z:9496ddc2-a5ef-4ab2-92b1-0d8cc00c94bf" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:53 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -588666,10 +24589,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588678,38 +24601,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4860" + "14627" ], "x-ms-correlation-request-id": [ - "d6827326-a71b-4f6a-931f-448311273e7d" + "350eddd8-2009-4aa5-814d-99e871fb0ffd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221954Z:d6827326-a71b-4f6a-931f-448311273e7d" + "WESTUS2:20180510T003554Z:350eddd8-2009-4aa5-814d-99e871fb0ffd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:53 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -588730,10 +24656,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588742,38 +24668,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4859" + "14626" ], "x-ms-correlation-request-id": [ - "e6d10bfc-1ed6-45f3-844f-06b7c44469ba" + "36c29985-a029-4c11-abac-f6aea09c447e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221954Z:e6d10bfc-1ed6-45f3-844f-06b7c44469ba" + "WESTUS2:20180510T003554Z:36c29985-a029-4c11-abac-f6aea09c447e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:54 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -588794,10 +24723,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588806,38 +24735,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4858" + "14625" ], "x-ms-correlation-request-id": [ - "f96887c9-f0d7-4d4b-a8c5-af07f47b77f4" + "48dbccfe-95bf-4ebe-b55b-c103227962c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221955Z:f96887c9-f0d7-4d4b-a8c5-af07f47b77f4" + "WESTUS2:20180510T003554Z:48dbccfe-95bf-4ebe-b55b-c103227962c2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:54 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -588858,10 +24790,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588870,38 +24802,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4857" + "14624" ], "x-ms-correlation-request-id": [ - "aa66415f-019c-4bac-bd94-e2a1bfbc0d9a" + "bde8f814-6bdf-4c6d-b4f5-e0f64727d74b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221955Z:aa66415f-019c-4bac-bd94-e2a1bfbc0d9a" + "WESTUS2:20180510T003554Z:bde8f814-6bdf-4c6d-b4f5-e0f64727d74b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:54 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -588922,10 +24857,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588934,38 +24869,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4856" + "14623" ], "x-ms-correlation-request-id": [ - "151a1b33-a8e9-4b58-b16d-f619bf7c0959" + "c4dfde75-8a45-455d-bac5-20366bd9dd8b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221955Z:151a1b33-a8e9-4b58-b16d-f619bf7c0959" + "WESTUS2:20180510T003554Z:c4dfde75-8a45-455d-bac5-20366bd9dd8b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:54 GMT" + "Thu, 10 May 2018 00:35:54 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -588986,10 +24924,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588998,38 +24936,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4855" + "14622" ], "x-ms-correlation-request-id": [ - "225930d6-566e-49b0-aeb4-882034ed4428" + "536bae08-1c96-4981-b24e-311eee6077b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221955Z:225930d6-566e-49b0-aeb4-882034ed4428" + "WESTUS2:20180510T003555Z:536bae08-1c96-4981-b24e-311eee6077b8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:54 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -589050,10 +24991,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589062,38 +25003,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4854" + "14621" ], "x-ms-correlation-request-id": [ - "c69e7fa8-7387-4750-bd87-50a979908a52" + "aa9744bc-d1ef-4e80-b1fd-7b7da6aecf11" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221955Z:c69e7fa8-7387-4750-bd87-50a979908a52" + "WESTUS2:20180510T003555Z:aa9744bc-d1ef-4e80-b1fd-7b7da6aecf11" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:54 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -589114,10 +25058,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589126,38 +25070,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4853" + "14620" ], "x-ms-correlation-request-id": [ - "31e8c442-4f18-4c27-a64d-fa7c45868d63" + "d159a37d-68b7-45f0-bdf6-e766f21a8fdd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221955Z:31e8c442-4f18-4c27-a64d-fa7c45868d63" + "WESTUS2:20180510T003555Z:d159a37d-68b7-45f0-bdf6-e766f21a8fdd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:54 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -589178,10 +25125,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589190,38 +25137,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4852" + "14619" ], "x-ms-correlation-request-id": [ - "c12d4d0e-aa50-4c62-a160-72f4c7959c1a" + "d55acea4-f667-4750-bb22-a2a6bf49a333" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221956Z:c12d4d0e-aa50-4c62-a160-72f4c7959c1a" + "WESTUS2:20180510T003555Z:d55acea4-f667-4750-bb22-a2a6bf49a333" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:55 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -589242,10 +25192,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589254,38 +25204,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4851" + "14618" ], "x-ms-correlation-request-id": [ - "b0de0901-5d40-4d1d-bc7d-e258e93b8891" + "16fc937e-803b-4ee6-aa44-b9dc24238f3f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221956Z:b0de0901-5d40-4d1d-bc7d-e258e93b8891" + "WESTUS2:20180510T003555Z:16fc937e-803b-4ee6-aa44-b9dc24238f3f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:55 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -589306,10 +25259,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589318,38 +25271,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4850" + "14617" ], "x-ms-correlation-request-id": [ - "53f9c47a-f74c-4820-9efd-22f576f59260" + "a6b23499-16b2-4e92-993d-64c1f39c2741" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221956Z:53f9c47a-f74c-4820-9efd-22f576f59260" + "WESTUS2:20180510T003555Z:a6b23499-16b2-4e92-993d-64c1f39c2741" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:55 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -589370,10 +25326,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589382,38 +25338,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4849" + "14616" ], "x-ms-correlation-request-id": [ - "64a9f5d5-0f2c-4a01-b587-8c58e669e91f" + "36bb5fe5-4099-4f72-accc-ca302149af76" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221956Z:64a9f5d5-0f2c-4a01-b587-8c58e669e91f" + "WESTUS2:20180510T003555Z:36bb5fe5-4099-4f72-accc-ca302149af76" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:55 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -589434,10 +25393,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589446,38 +25405,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4848" + "14615" ], "x-ms-correlation-request-id": [ - "bfde13c2-1af3-4622-b2e0-f8c6a053fe45" + "808ef9f9-7f9f-4869-905e-4f2a4b89ff08" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221956Z:bfde13c2-1af3-4622-b2e0-f8c6a053fe45" + "WESTUS2:20180510T003555Z:808ef9f9-7f9f-4869-905e-4f2a4b89ff08" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:55 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -589498,10 +25460,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589510,38 +25472,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4847" + "14614" ], "x-ms-correlation-request-id": [ - "c19167a9-288a-4202-8bd3-15204309dc43" + "0b16bc1a-7e0d-42b3-90f8-0cb737711ace" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221956Z:c19167a9-288a-4202-8bd3-15204309dc43" + "WESTUS2:20180510T003555Z:0b16bc1a-7e0d-42b3-90f8-0cb737711ace" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:56 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -589562,10 +25527,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589574,38 +25539,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4846" + "14613" ], "x-ms-correlation-request-id": [ - "5b466da4-ed3c-495d-ab79-daf6816876d1" + "e3cf8c9a-9ad1-4f0f-abf5-617381d5fa59" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221957Z:5b466da4-ed3c-495d-ab79-daf6816876d1" + "WESTUS2:20180510T003555Z:e3cf8c9a-9ad1-4f0f-abf5-617381d5fa59" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:56 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -589626,10 +25594,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589638,38 +25606,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4845" + "14612" ], "x-ms-correlation-request-id": [ - "05c7e576-acd4-4baf-a12a-63693da5e591" + "e85e76bf-805f-4326-82d5-9526ecc6378d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221957Z:05c7e576-acd4-4baf-a12a-63693da5e591" + "WESTUS2:20180510T003555Z:e85e76bf-805f-4326-82d5-9526ecc6378d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:56 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -589690,10 +25661,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589702,38 +25673,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4844" + "14611" ], "x-ms-correlation-request-id": [ - "b0e1b364-e0de-4021-89a2-fd5710c30e3c" + "ac261398-ad42-4a20-b434-96ed005a0177" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221957Z:b0e1b364-e0de-4021-89a2-fd5710c30e3c" + "WESTUS2:20180510T003555Z:ac261398-ad42-4a20-b434-96ed005a0177" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:56 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -589754,10 +25728,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589766,38 +25740,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4843" + "14610" ], "x-ms-correlation-request-id": [ - "603ff6a0-ac95-4a8d-bb26-87c3ca1e7a69" + "1f25d245-b540-48c2-8658-484fcb863620" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221957Z:603ff6a0-ac95-4a8d-bb26-87c3ca1e7a69" + "WESTUS2:20180510T003555Z:1f25d245-b540-48c2-8658-484fcb863620" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:56 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -589818,10 +25795,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589830,38 +25807,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4842" + "14609" ], "x-ms-correlation-request-id": [ - "47170f6c-dafd-4291-ae56-1547151a146c" + "641188e9-1d12-4264-984c-46c059e99cbf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221957Z:47170f6c-dafd-4291-ae56-1547151a146c" + "WESTUS2:20180510T003555Z:641188e9-1d12-4264-984c-46c059e99cbf" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:57 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -589882,10 +25862,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589894,38 +25874,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4841" + "14608" ], "x-ms-correlation-request-id": [ - "605a154c-aa19-4cd3-99be-6341db0ce16f" + "733aa9c3-cf2f-47e7-932c-d38d21d42a30" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221958Z:605a154c-aa19-4cd3-99be-6341db0ce16f" + "WESTUS2:20180510T003555Z:733aa9c3-cf2f-47e7-932c-d38d21d42a30" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:57 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -589946,10 +25929,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589958,38 +25941,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4840" + "14607" ], "x-ms-correlation-request-id": [ - "1d90ee10-6f10-4ced-949d-1c248d9de38b" + "21400b9c-8e3f-44d0-b11b-679bc92f24d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221958Z:1d90ee10-6f10-4ced-949d-1c248d9de38b" + "WESTUS2:20180510T003555Z:21400b9c-8e3f-44d0-b11b-679bc92f24d4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:57 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590010,10 +25996,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590022,38 +26008,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4839" + "14606" ], "x-ms-correlation-request-id": [ - "ccceec3e-eceb-480f-b7e8-eefaf2f54eb3" + "1e5ec42a-bbcf-48e9-afe2-44bdf0e0df09" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221958Z:ccceec3e-eceb-480f-b7e8-eefaf2f54eb3" + "WESTUS2:20180510T003555Z:1e5ec42a-bbcf-48e9-afe2-44bdf0e0df09" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:57 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590074,10 +26063,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590086,38 +26075,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4838" + "14605" ], "x-ms-correlation-request-id": [ - "126fe589-dc35-45ec-be19-d844e05becc3" + "73583225-9d0d-459c-ae4e-af6e344fc82c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221958Z:126fe589-dc35-45ec-be19-d844e05becc3" + "WESTUS2:20180510T003555Z:73583225-9d0d-459c-ae4e-af6e344fc82c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:57 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590138,10 +26130,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590150,38 +26142,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4837" + "14604" ], "x-ms-correlation-request-id": [ - "705b7ac0-50dd-4c06-ab7e-de7f9676e086" + "91932274-65a8-4118-8b37-00ebbb2589d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221958Z:705b7ac0-50dd-4c06-ab7e-de7f9676e086" + "WESTUS2:20180510T003555Z:91932274-65a8-4118-8b37-00ebbb2589d6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:57 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590202,10 +26197,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590214,38 +26209,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4836" + "14603" ], "x-ms-correlation-request-id": [ - "49fa272e-b16d-4ade-b5a1-76560ea6df1e" + "50a78295-52ab-4797-a1d3-527046525ed0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221958Z:49fa272e-b16d-4ade-b5a1-76560ea6df1e" + "WESTUS2:20180510T003555Z:50a78295-52ab-4797-a1d3-527046525ed0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:58 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590266,10 +26264,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590278,38 +26276,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4835" + "14602" ], "x-ms-correlation-request-id": [ - "6533abb0-155a-4d67-8fc0-42f85d6c0bce" + "06713355-9553-44ac-9397-6bb6deb29a7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221959Z:6533abb0-155a-4d67-8fc0-42f85d6c0bce" + "WESTUS2:20180510T003556Z:06713355-9553-44ac-9397-6bb6deb29a7c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:58 GMT" + "Thu, 10 May 2018 00:35:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590330,10 +26331,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590342,38 +26343,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4834" + "14601" ], "x-ms-correlation-request-id": [ - "98260ea0-9fce-482b-9598-0746dddf819b" + "53555776-3392-452a-bca8-08a5d711f4fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221959Z:98260ea0-9fce-482b-9598-0746dddf819b" + "WESTUS2:20180510T003556Z:53555776-3392-452a-bca8-08a5d711f4fd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:58 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590394,10 +26398,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590406,38 +26410,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4833" + "14600" ], "x-ms-correlation-request-id": [ - "6b55f587-f2ec-4843-9b27-b235602fb09d" + "dd48f000-4dd1-43b2-94c2-baabd7303105" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221959Z:6b55f587-f2ec-4843-9b27-b235602fb09d" + "WESTUS2:20180510T003556Z:dd48f000-4dd1-43b2-94c2-baabd7303105" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:58 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590458,10 +26465,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590470,38 +26477,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4832" + "14599" ], "x-ms-correlation-request-id": [ - "231526bd-db5f-4223-a8e1-9115f109d0a1" + "ade0acd5-51b1-415f-857d-4a08af2e2780" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221959Z:231526bd-db5f-4223-a8e1-9115f109d0a1" + "WESTUS2:20180510T003556Z:ade0acd5-51b1-415f-857d-4a08af2e2780" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:58 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590522,10 +26532,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590534,38 +26544,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4831" + "14598" ], "x-ms-correlation-request-id": [ - "70949479-642b-4d9f-93f6-81cb389d9319" + "506c4ce8-e9cb-41eb-982a-809a4419a63b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T221959Z:70949479-642b-4d9f-93f6-81cb389d9319" + "WESTUS2:20180510T003556Z:506c4ce8-e9cb-41eb-982a-809a4419a63b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:58 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590586,10 +26599,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590598,38 +26611,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4830" + "14597" ], "x-ms-correlation-request-id": [ - "249b6076-1df5-452e-99f1-9c01bebe748f" + "7cf8d044-96ac-4246-87a8-fc5597c692f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222000Z:249b6076-1df5-452e-99f1-9c01bebe748f" + "WESTUS2:20180510T003556Z:7cf8d044-96ac-4246-87a8-fc5597c692f6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:59 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590650,10 +26666,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590662,38 +26678,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4829" + "14596" ], "x-ms-correlation-request-id": [ - "dfc5a794-886b-4ee9-82d5-1dbae634419b" + "15720b35-45ed-4f44-82b2-144d3a1026b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222000Z:dfc5a794-886b-4ee9-82d5-1dbae634419b" + "WESTUS2:20180510T003556Z:15720b35-45ed-4f44-82b2-144d3a1026b4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:59 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590714,10 +26733,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590726,38 +26745,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4828" + "14595" ], "x-ms-correlation-request-id": [ - "2aa4b9ba-4ecc-4357-aa3c-cb8e167c645a" + "f8b27267-4865-4d4a-a9a0-1fccfa2c3801" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222000Z:2aa4b9ba-4ecc-4357-aa3c-cb8e167c645a" + "WESTUS2:20180510T003556Z:f8b27267-4865-4d4a-a9a0-1fccfa2c3801" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:59 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590778,10 +26800,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590790,38 +26812,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4827" + "14594" ], "x-ms-correlation-request-id": [ - "94894528-96e5-4605-a7ce-4d204284f3cd" + "ec6d5caa-02de-48d6-bbc9-7af943c336c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222000Z:94894528-96e5-4605-a7ce-4d204284f3cd" + "WESTUS2:20180510T003556Z:ec6d5caa-02de-48d6-bbc9-7af943c336c1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:59 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590842,10 +26867,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590854,38 +26879,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4826" + "14593" ], "x-ms-correlation-request-id": [ - "10edecf0-dec3-4aee-9b43-c2fbee161cdb" + "11ae788c-cb32-4aa3-a09d-9c37790ccacb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222000Z:10edecf0-dec3-4aee-9b43-c2fbee161cdb" + "WESTUS2:20180510T003556Z:11ae788c-cb32-4aa3-a09d-9c37790ccacb" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:59 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590906,10 +26934,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590918,38 +26946,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4825" + "14592" ], "x-ms-correlation-request-id": [ - "5cd2c733-ddfc-422d-a98f-80a7644480ba" + "9df99e0a-06e9-4ed4-92b6-d7290b809263" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222000Z:5cd2c733-ddfc-422d-a98f-80a7644480ba" + "WESTUS2:20180510T003556Z:9df99e0a-06e9-4ed4-92b6-d7290b809263" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:59 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -590970,10 +27001,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590982,38 +27013,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4824" + "14591" ], "x-ms-correlation-request-id": [ - "dbd3cac7-406c-4c37-9798-7bd32100fc83" + "2f60c460-5ecb-49a5-86f0-d8b17651c078" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222000Z:dbd3cac7-406c-4c37-9798-7bd32100fc83" + "WESTUS2:20180510T003556Z:2f60c460-5ecb-49a5-86f0-d8b17651c078" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:19:59 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591034,10 +27068,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591046,38 +27080,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4823" + "14590" ], "x-ms-correlation-request-id": [ - "908b446f-34d1-40d8-97a1-0af8cc121a04" + "592a3886-634f-4f19-a3a5-07994ba716f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222001Z:908b446f-34d1-40d8-97a1-0af8cc121a04" + "WESTUS2:20180510T003556Z:592a3886-634f-4f19-a3a5-07994ba716f0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:00 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591098,10 +27135,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591110,38 +27147,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4822" + "14589" ], "x-ms-correlation-request-id": [ - "3d9fe920-84cb-4965-85ed-58eb8c7ff242" + "0dc36b0f-1b31-43e7-8283-ffdedc91b435" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222001Z:3d9fe920-84cb-4965-85ed-58eb8c7ff242" + "WESTUS2:20180510T003556Z:0dc36b0f-1b31-43e7-8283-ffdedc91b435" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:00 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591162,10 +27202,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591174,38 +27214,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4821" + "14588" ], "x-ms-correlation-request-id": [ - "1ca1c12f-cbcc-4e68-8d34-74576ba14a23" + "ebc8423c-aefb-414f-99bb-61fdfb96ed48" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222001Z:1ca1c12f-cbcc-4e68-8d34-74576ba14a23" + "WESTUS2:20180510T003556Z:ebc8423c-aefb-414f-99bb-61fdfb96ed48" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:00 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591226,10 +27269,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591238,38 +27281,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4820" + "14587" ], "x-ms-correlation-request-id": [ - "189dbe39-cddc-4338-b4a2-db9e53d37b37" + "ce30aff0-8733-4cc9-a11e-bd337ff1a614" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222001Z:189dbe39-cddc-4338-b4a2-db9e53d37b37" + "WESTUS2:20180510T003556Z:ce30aff0-8733-4cc9-a11e-bd337ff1a614" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:00 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591290,10 +27336,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591302,38 +27348,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4819" + "14586" ], "x-ms-correlation-request-id": [ - "075864a8-4568-43ed-9438-564140842331" + "f6cacf75-4d18-4e86-99ef-e00de45128de" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222001Z:075864a8-4568-43ed-9438-564140842331" + "WESTUS2:20180510T003556Z:f6cacf75-4d18-4e86-99ef-e00de45128de" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:00 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591354,10 +27403,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591366,38 +27415,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4818" + "14585" ], "x-ms-correlation-request-id": [ - "1f5f2444-fca6-46bb-949a-0746f581e795" + "b24b5ccc-741b-4d85-9a3a-dc1b5f158055" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222001Z:1f5f2444-fca6-46bb-949a-0746f581e795" + "WESTUS2:20180510T003556Z:b24b5ccc-741b-4d85-9a3a-dc1b5f158055" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:00 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591418,10 +27470,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591430,38 +27482,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4817" + "14584" ], "x-ms-correlation-request-id": [ - "9cf8fa46-e8c8-4843-918a-47f6bd0c6160" + "44107500-9e62-4683-aa17-b80bcebcca5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222002Z:9cf8fa46-e8c8-4843-918a-47f6bd0c6160" + "WESTUS2:20180510T003556Z:44107500-9e62-4683-aa17-b80bcebcca5e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:01 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591482,10 +27537,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591494,38 +27549,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4816" + "14583" ], "x-ms-correlation-request-id": [ - "bec14c9e-2fdf-42a2-af5d-ce8498bd16f3" + "333376fc-5f7e-4ba2-831f-e15051720e24" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222002Z:bec14c9e-2fdf-42a2-af5d-ce8498bd16f3" + "WESTUS2:20180510T003556Z:333376fc-5f7e-4ba2-831f-e15051720e24" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:01 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591546,10 +27604,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591558,38 +27616,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4815" + "14582" ], "x-ms-correlation-request-id": [ - "f8b869b1-d787-49ff-a85f-5554ae72917d" + "d8b977ff-5a45-405a-9afa-35f371805500" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222002Z:f8b869b1-d787-49ff-a85f-5554ae72917d" + "WESTUS2:20180510T003556Z:d8b977ff-5a45-405a-9afa-35f371805500" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:01 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591610,10 +27671,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591622,38 +27683,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4814" + "14581" ], "x-ms-correlation-request-id": [ - "17df5b4b-98ed-43bb-805b-0e5925d384dd" + "9bd25f4a-2e40-4cc0-964e-14f59c759c25" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222002Z:17df5b4b-98ed-43bb-805b-0e5925d384dd" + "WESTUS2:20180510T003556Z:9bd25f4a-2e40-4cc0-964e-14f59c759c25" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:01 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591674,10 +27738,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591686,38 +27750,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4813" + "14580" ], "x-ms-correlation-request-id": [ - "43ee7bb2-01d6-41dc-b880-c735d8dd3b32" + "c4031cd3-c910-4561-8fb6-fa228560ff4c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222002Z:43ee7bb2-01d6-41dc-b880-c735d8dd3b32" + "WESTUS2:20180510T003557Z:c4031cd3-c910-4561-8fb6-fa228560ff4c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:01 GMT" + "Thu, 10 May 2018 00:35:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591738,10 +27805,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591750,38 +27817,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4812" + "14579" ], "x-ms-correlation-request-id": [ - "888d217d-79f0-4f66-9459-05709798258f" + "38485814-3287-4b47-8c9f-998b8931dbc9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222003Z:888d217d-79f0-4f66-9459-05709798258f" + "WESTUS2:20180510T003557Z:38485814-3287-4b47-8c9f-998b8931dbc9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:02 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591802,10 +27872,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591814,38 +27884,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4811" + "14578" ], "x-ms-correlation-request-id": [ - "4090c185-022e-4c63-9f4b-1d9170da390e" + "235475af-941b-4298-a602-7ae7928f315c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222003Z:4090c185-022e-4c63-9f4b-1d9170da390e" + "WESTUS2:20180510T003557Z:235475af-941b-4298-a602-7ae7928f315c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:02 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591866,10 +27939,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591878,38 +27951,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4810" + "14577" ], "x-ms-correlation-request-id": [ - "8243a27b-a6ef-4290-bb11-1f621f050920" + "bb692e73-85f8-4080-996f-473160ea98c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222003Z:8243a27b-a6ef-4290-bb11-1f621f050920" + "WESTUS2:20180510T003557Z:bb692e73-85f8-4080-996f-473160ea98c1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:02 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591930,10 +28006,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591942,38 +28018,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4809" + "14576" ], "x-ms-correlation-request-id": [ - "c6866555-9fb9-4cfc-a5ba-5e6203d1de95" + "fa98ec6d-049f-49fb-8a2b-806a356a6056" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222003Z:c6866555-9fb9-4cfc-a5ba-5e6203d1de95" + "WESTUS2:20180510T003557Z:fa98ec6d-049f-49fb-8a2b-806a356a6056" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:02 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -591994,10 +28073,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592006,38 +28085,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4808" + "14575" ], "x-ms-correlation-request-id": [ - "5835ef7a-7fe2-4ea2-b2f0-deec7fa89ec2" + "58650fb5-0c68-46b6-8a41-8a07ead34bda" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222003Z:5835ef7a-7fe2-4ea2-b2f0-deec7fa89ec2" + "WESTUS2:20180510T003557Z:58650fb5-0c68-46b6-8a41-8a07ead34bda" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:02 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -592058,10 +28140,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592070,38 +28152,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4807" + "14574" ], "x-ms-correlation-request-id": [ - "ec1570e7-471b-4542-b8a7-ac9a4315ff17" + "68f3622e-7a91-4c3f-9bfe-63e76bcfb780" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222003Z:ec1570e7-471b-4542-b8a7-ac9a4315ff17" + "WESTUS2:20180510T003557Z:68f3622e-7a91-4c3f-9bfe-63e76bcfb780" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:02 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -592122,10 +28207,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592134,38 +28219,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4806" + "14573" ], "x-ms-correlation-request-id": [ - "d0959474-d049-4912-80c7-22773b131a68" + "4c0c4103-3549-490e-aad6-dab71f0c7816" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222003Z:d0959474-d049-4912-80c7-22773b131a68" + "WESTUS2:20180510T003557Z:4c0c4103-3549-490e-aad6-dab71f0c7816" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:03 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -592186,10 +28274,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592198,38 +28286,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4805" + "14572" ], "x-ms-correlation-request-id": [ - "7a94d903-4bfa-40e7-8706-1756a9335be9" + "db633ce7-81cf-488d-9a3c-0835936742a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222004Z:7a94d903-4bfa-40e7-8706-1756a9335be9" + "WESTUS2:20180510T003557Z:db633ce7-81cf-488d-9a3c-0835936742a9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:03 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -592250,10 +28341,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592262,38 +28353,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4804" + "14571" ], "x-ms-correlation-request-id": [ - "809e6e28-69a3-4be1-9f75-01ee2d5c14dc" + "54caabe3-08b7-42de-90a5-11499a4c44e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222004Z:809e6e28-69a3-4be1-9f75-01ee2d5c14dc" + "WESTUS2:20180510T003557Z:54caabe3-08b7-42de-90a5-11499a4c44e2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:03 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -592314,10 +28408,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592326,38 +28420,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4803" + "14570" ], "x-ms-correlation-request-id": [ - "6275ea4f-896c-4897-a8b7-7e04d3cd272a" + "902278b8-44ce-47f6-9960-5e0b41073f1c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222004Z:6275ea4f-896c-4897-a8b7-7e04d3cd272a" + "WESTUS2:20180510T003557Z:902278b8-44ce-47f6-9960-5e0b41073f1c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:03 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -592378,10 +28475,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592390,38 +28487,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4802" + "14569" ], "x-ms-correlation-request-id": [ - "bcd60dc7-8743-4c62-9823-772a46b99c69" + "abd45ca2-2cdb-4191-90d1-6af93c0f8ff5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222004Z:bcd60dc7-8743-4c62-9823-772a46b99c69" + "WESTUS2:20180510T003557Z:abd45ca2-2cdb-4191-90d1-6af93c0f8ff5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:03 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -592442,10 +28542,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592454,38 +28554,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4801" + "14568" ], "x-ms-correlation-request-id": [ - "62d84fbf-79e7-43e1-a7d1-882814687b93" + "4fd4c59d-c7f7-4ded-a6e8-3b133a119be1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222004Z:62d84fbf-79e7-43e1-a7d1-882814687b93" + "WESTUS2:20180510T003557Z:4fd4c59d-c7f7-4ded-a6e8-3b133a119be1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:03 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -592506,10 +28609,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592518,38 +28621,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4800" + "14567" ], "x-ms-correlation-request-id": [ - "360ab0f8-8453-49f0-b46a-10419ef738ed" + "a0e8749d-b6cf-44e0-a7ca-16902f605584" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222004Z:360ab0f8-8453-49f0-b46a-10419ef738ed" + "WESTUS2:20180510T003557Z:a0e8749d-b6cf-44e0-a7ca-16902f605584" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:03 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -592570,10 +28676,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592582,38 +28688,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4799" + "14566" ], "x-ms-correlation-request-id": [ - "d30ab920-3635-447a-aebf-e37150eaac3e" + "1d32178f-a7e0-4b0c-8f9e-d2ef548e4718" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222004Z:d30ab920-3635-447a-aebf-e37150eaac3e" + "WESTUS2:20180510T003557Z:1d32178f-a7e0-4b0c-8f9e-d2ef548e4718" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:04 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -592634,10 +28743,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592646,38 +28755,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4798" + "14565" ], "x-ms-correlation-request-id": [ - "7ad8ec15-b3cb-417c-bc0b-d215d670a658" + "d524ac2c-697f-4199-b7db-2bec8a8fac04" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222005Z:7ad8ec15-b3cb-417c-bc0b-d215d670a658" + "WESTUS2:20180510T003557Z:d524ac2c-697f-4199-b7db-2bec8a8fac04" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:04 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -592698,10 +28810,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592710,38 +28822,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4797" + "14564" ], "x-ms-correlation-request-id": [ - "5c9375cb-8a3e-45cb-bebb-7943e97df97d" + "a1e4908a-a56e-4f54-9b16-cf86bbfc79d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222005Z:5c9375cb-8a3e-45cb-bebb-7943e97df97d" + "WESTUS2:20180510T003557Z:a1e4908a-a56e-4f54-9b16-cf86bbfc79d5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:04 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -592762,10 +28877,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592774,38 +28889,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4796" + "14563" ], "x-ms-correlation-request-id": [ - "22651283-3230-4ccb-a02a-74471d99b06d" + "6c015d62-2abe-4e99-abb6-2ae7c559b321" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222005Z:22651283-3230-4ccb-a02a-74471d99b06d" + "WESTUS2:20180510T003557Z:6c015d62-2abe-4e99-abb6-2ae7c559b321" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:04 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -592826,10 +28944,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592838,38 +28956,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4795" + "14562" ], "x-ms-correlation-request-id": [ - "68ee4527-2995-4685-bce2-b1ac077bead7" + "dfca8a43-b9f8-48e5-8c27-1bc61472b490" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222005Z:68ee4527-2995-4685-bce2-b1ac077bead7" + "WESTUS2:20180510T003557Z:dfca8a43-b9f8-48e5-8c27-1bc61472b490" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:04 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -592890,10 +29011,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592902,38 +29023,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4794" + "14561" ], "x-ms-correlation-request-id": [ - "42ad969a-90b5-4ba2-b13b-e81387eee2f0" + "9987b9ee-19dd-4e3d-b37b-c783a097532f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222005Z:42ad969a-90b5-4ba2-b13b-e81387eee2f0" + "WESTUS2:20180510T003557Z:9987b9ee-19dd-4e3d-b37b-c783a097532f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:04 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -592954,10 +29078,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592966,38 +29090,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4793" + "14560" ], "x-ms-correlation-request-id": [ - "d9458474-058b-482d-97cb-8f02de63e2ed" + "c8e13d25-b874-474a-8793-448d877bc1c9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222006Z:d9458474-058b-482d-97cb-8f02de63e2ed" + "WESTUS2:20180510T003557Z:c8e13d25-b874-474a-8793-448d877bc1c9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:05 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593018,10 +29145,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593030,38 +29157,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4792" + "14559" ], "x-ms-correlation-request-id": [ - "212f18a6-9971-437f-98f6-0723a5f1349d" + "b1ddea9b-d7ed-4fee-8836-c301c9bbaaf4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222006Z:212f18a6-9971-437f-98f6-0723a5f1349d" + "WESTUS2:20180510T003558Z:b1ddea9b-d7ed-4fee-8836-c301c9bbaaf4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:05 GMT" + "Thu, 10 May 2018 00:35:57 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593082,10 +29212,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593094,38 +29224,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4791" + "14558" ], "x-ms-correlation-request-id": [ - "760d3339-26b1-4907-a5f2-a5d379de9009" + "e89783fd-32cf-4e6e-86cf-64cbc9345a1b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222006Z:760d3339-26b1-4907-a5f2-a5d379de9009" + "WESTUS2:20180510T003558Z:e89783fd-32cf-4e6e-86cf-64cbc9345a1b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:05 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593146,10 +29279,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593158,38 +29291,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4790" + "14557" ], "x-ms-correlation-request-id": [ - "e999eba4-3b4a-411c-84aa-8f99a8b0b492" + "af1e4943-4f6f-4a52-b6e8-00fc0f570128" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222006Z:e999eba4-3b4a-411c-84aa-8f99a8b0b492" + "WESTUS2:20180510T003558Z:af1e4943-4f6f-4a52-b6e8-00fc0f570128" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:05 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593210,10 +29346,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593222,38 +29358,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4789" + "14556" ], "x-ms-correlation-request-id": [ - "6c023fd7-219d-4d47-bdec-8e193ce79989" + "d1881af5-de25-4f5a-a6da-b752eb7faa77" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222006Z:6c023fd7-219d-4d47-bdec-8e193ce79989" + "WESTUS2:20180510T003558Z:d1881af5-de25-4f5a-a6da-b752eb7faa77" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:05 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593274,10 +29413,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593286,38 +29425,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4788" + "14555" ], "x-ms-correlation-request-id": [ - "88daac81-d15d-4093-a8a6-4259669ae58c" + "2bc51264-150b-47af-8323-fea1cdf5f127" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222006Z:88daac81-d15d-4093-a8a6-4259669ae58c" + "WESTUS2:20180510T003558Z:2bc51264-150b-47af-8323-fea1cdf5f127" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:05 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593338,10 +29480,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593350,38 +29492,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4787" + "14554" ], "x-ms-correlation-request-id": [ - "f38a43e8-2550-4625-9e0e-963c3f8e28e7" + "4e5090cb-bb04-435e-ac73-c85957c75ac2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222007Z:f38a43e8-2550-4625-9e0e-963c3f8e28e7" + "WESTUS2:20180510T003558Z:4e5090cb-bb04-435e-ac73-c85957c75ac2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:06 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593402,10 +29547,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593414,38 +29559,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4786" + "14553" ], "x-ms-correlation-request-id": [ - "0769bdd6-5a3d-4f82-af07-194ab3fb5a69" + "66516410-9106-48f7-9ec0-245782892e9a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222007Z:0769bdd6-5a3d-4f82-af07-194ab3fb5a69" + "WESTUS2:20180510T003558Z:66516410-9106-48f7-9ec0-245782892e9a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:06 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593466,10 +29614,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593478,38 +29626,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4785" + "14552" ], "x-ms-correlation-request-id": [ - "a020be7b-bd47-4695-9627-bc5758a5b1c6" + "a9d003fa-8750-4cbd-a364-1a281161c81d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222007Z:a020be7b-bd47-4695-9627-bc5758a5b1c6" + "WESTUS2:20180510T003558Z:a9d003fa-8750-4cbd-a364-1a281161c81d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:06 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593530,10 +29681,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593542,38 +29693,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4784" + "14551" ], "x-ms-correlation-request-id": [ - "7135f6b6-36b4-43a3-845c-2bbf0f78b43d" + "0d8a09d0-205e-458d-9107-b539a4172cec" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222007Z:7135f6b6-36b4-43a3-845c-2bbf0f78b43d" + "WESTUS2:20180510T003558Z:0d8a09d0-205e-458d-9107-b539a4172cec" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:06 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593594,10 +29748,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593606,38 +29760,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4783" + "14550" ], "x-ms-correlation-request-id": [ - "3b3235e2-62c4-4dc8-aeac-eadd124a845a" + "1c3b6442-7ef2-4cd4-a911-dd30ed891f10" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222007Z:3b3235e2-62c4-4dc8-aeac-eadd124a845a" + "WESTUS2:20180510T003558Z:1c3b6442-7ef2-4cd4-a911-dd30ed891f10" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:06 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593658,10 +29815,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593670,38 +29827,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4782" + "14549" ], "x-ms-correlation-request-id": [ - "64203948-f7e8-43d2-9d5d-ee14c8133763" + "3ea5f702-f9c9-4c40-805a-a207ec2a8812" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222007Z:64203948-f7e8-43d2-9d5d-ee14c8133763" + "WESTUS2:20180510T003558Z:3ea5f702-f9c9-4c40-805a-a207ec2a8812" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:06 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593722,10 +29882,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593734,38 +29894,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4781" + "14548" ], "x-ms-correlation-request-id": [ - "f14ff651-cb0d-45ab-b6e7-521dc3a4f8dc" + "c19dde43-1dac-4375-b663-c9d1441f232d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222008Z:f14ff651-cb0d-45ab-b6e7-521dc3a4f8dc" + "WESTUS2:20180510T003558Z:c19dde43-1dac-4375-b663-c9d1441f232d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:07 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593786,10 +29949,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593798,38 +29961,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4780" + "14547" ], "x-ms-correlation-request-id": [ - "a0fc1a4c-0ad7-4611-a86b-4086689d160b" + "d891b788-f371-4e77-adf2-00aa693d89a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222008Z:a0fc1a4c-0ad7-4611-a86b-4086689d160b" + "WESTUS2:20180510T003558Z:d891b788-f371-4e77-adf2-00aa693d89a5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:07 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593850,10 +30016,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593862,38 +30028,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4779" + "14546" ], "x-ms-correlation-request-id": [ - "7e694911-27e0-45c0-8ab1-95cb22d3ddc3" + "674d7bef-9a1e-4eda-9a41-63704aef8963" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222008Z:7e694911-27e0-45c0-8ab1-95cb22d3ddc3" + "WESTUS2:20180510T003558Z:674d7bef-9a1e-4eda-9a41-63704aef8963" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:07 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593914,10 +30083,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593926,38 +30095,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4778" + "14545" ], "x-ms-correlation-request-id": [ - "b4a72b84-3f47-4a96-b320-b4a6bb538006" + "d51ae821-3099-478c-871c-d03fdc3adebe" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222008Z:b4a72b84-3f47-4a96-b320-b4a6bb538006" + "WESTUS2:20180510T003558Z:d51ae821-3099-478c-871c-d03fdc3adebe" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:07 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -593978,10 +30150,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593990,38 +30162,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4777" + "14544" ], "x-ms-correlation-request-id": [ - "32ef1354-ce6e-4cc3-863d-7d4fa584f3b1" + "c2a098f9-47b4-41dd-a228-22d8041b7958" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222008Z:32ef1354-ce6e-4cc3-863d-7d4fa584f3b1" + "WESTUS2:20180510T003558Z:c2a098f9-47b4-41dd-a228-22d8041b7958" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:07 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -594042,10 +30217,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594054,38 +30229,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4776" + "14543" ], "x-ms-correlation-request-id": [ - "89242698-1833-4096-ba4c-c52494227d2a" + "94492d6e-a560-4ab7-b0d8-45efdc50c486" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222008Z:89242698-1833-4096-ba4c-c52494227d2a" + "WESTUS2:20180510T003558Z:94492d6e-a560-4ab7-b0d8-45efdc50c486" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:07 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -594106,10 +30284,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594118,38 +30296,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4775" + "14542" ], "x-ms-correlation-request-id": [ - "b0fbc07a-c85a-4fba-adfe-99fa70187147" + "ea9eaeea-a894-4786-bad7-429e11ce1a01" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222008Z:b0fbc07a-c85a-4fba-adfe-99fa70187147" + "WESTUS2:20180510T003558Z:ea9eaeea-a894-4786-bad7-429e11ce1a01" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:07 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -594170,10 +30351,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594182,38 +30363,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4774" + "14541" ], "x-ms-correlation-request-id": [ - "ecc520be-8390-45cc-969c-034d63b82aa7" + "39c20713-bb33-4ec6-83c1-7c4b6d0871a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222009Z:ecc520be-8390-45cc-969c-034d63b82aa7" + "WESTUS2:20180510T003558Z:39c20713-bb33-4ec6-83c1-7c4b6d0871a2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:09 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -594234,10 +30418,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594246,38 +30430,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4773" + "14540" ], "x-ms-correlation-request-id": [ - "533883b4-eaa6-492c-a299-09315afc83d7" + "50c92382-7bcc-46bf-b226-b45ab916e050" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222009Z:533883b4-eaa6-492c-a299-09315afc83d7" + "WESTUS2:20180510T003558Z:50c92382-7bcc-46bf-b226-b45ab916e050" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:09 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -594298,10 +30485,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594310,38 +30497,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4772" + "14539" ], "x-ms-correlation-request-id": [ - "a9a978cb-c990-442d-86f4-ab29dc1fbe97" + "2ff72c6a-89d6-420b-a528-779da8636ffe" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222009Z:a9a978cb-c990-442d-86f4-ab29dc1fbe97" + "WESTUS2:20180510T003559Z:2ff72c6a-89d6-420b-a528-779da8636ffe" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:09 GMT" + "Thu, 10 May 2018 00:35:58 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -594362,10 +30552,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594374,38 +30564,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4771" + "14538" ], "x-ms-correlation-request-id": [ - "3319851a-f63a-4525-ae8e-e36cdd01a217" + "60a08cf8-fac2-4b59-a7c2-e10c5d428aed" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222009Z:3319851a-f63a-4525-ae8e-e36cdd01a217" + "WESTUS2:20180510T003559Z:60a08cf8-fac2-4b59-a7c2-e10c5d428aed" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:09 GMT" + "Thu, 10 May 2018 00:35:59 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -594426,10 +30619,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594438,38 +30631,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4770" + "14537" ], "x-ms-correlation-request-id": [ - "45844dfa-d92c-420b-88e3-e568d8417f13" + "6477bcdf-590a-4175-a97d-ea7519b4c308" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222009Z:45844dfa-d92c-420b-88e3-e568d8417f13" + "WESTUS2:20180510T003559Z:6477bcdf-590a-4175-a97d-ea7519b4c308" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:09 GMT" + "Thu, 10 May 2018 00:35:59 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -594490,10 +30686,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594502,38 +30698,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4769" + "14536" ], "x-ms-correlation-request-id": [ - "c2a262d0-e712-44fe-b91f-05fec0a891e5" + "b3680418-8744-4536-bb24-34866db623ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222009Z:c2a262d0-e712-44fe-b91f-05fec0a891e5" + "WESTUS2:20180510T003559Z:b3680418-8744-4536-bb24-34866db623ea" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:09 GMT" + "Thu, 10 May 2018 00:35:59 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -594554,10 +30753,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594566,38 +30765,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4768" + "14535" ], "x-ms-correlation-request-id": [ - "10439d06-bcba-40c3-b095-85c17d5652ef" + "94878ed3-30d9-428d-9f15-00c837b36623" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222010Z:10439d06-bcba-40c3-b095-85c17d5652ef" + "WESTUS2:20180510T003559Z:94878ed3-30d9-428d-9f15-00c837b36623" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:10 GMT" + "Thu, 10 May 2018 00:35:59 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -594618,10 +30820,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594630,38 +30832,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4767" + "14534" ], "x-ms-correlation-request-id": [ - "f327c1be-0941-495a-94d3-3d74ad1fd75c" + "143b7294-3414-4bba-8607-ebbaafdea38b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222010Z:f327c1be-0941-495a-94d3-3d74ad1fd75c" + "WESTUS2:20180510T003559Z:143b7294-3414-4bba-8607-ebbaafdea38b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:10 GMT" + "Thu, 10 May 2018 00:35:59 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -594682,10 +30887,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594694,38 +30899,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4766" + "14533" ], "x-ms-correlation-request-id": [ - "b51bc265-0bba-457f-8793-d0ad5c895989" + "5999c7d0-05d6-42c9-b445-34292589555f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222010Z:b51bc265-0bba-457f-8793-d0ad5c895989" + "WESTUS2:20180510T003559Z:5999c7d0-05d6-42c9-b445-34292589555f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:10 GMT" + "Thu, 10 May 2018 00:35:59 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -594746,10 +30954,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594758,38 +30966,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4765" + "14532" ], "x-ms-correlation-request-id": [ - "ded2e586-5302-4f72-8ab8-854fb278bdb2" + "c53a8450-b085-4960-b60b-7edab38b564b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222010Z:ded2e586-5302-4f72-8ab8-854fb278bdb2" + "WESTUS2:20180510T003559Z:c53a8450-b085-4960-b60b-7edab38b564b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:10 GMT" + "Thu, 10 May 2018 00:35:59 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -594810,10 +31021,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594822,38 +31033,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4764" + "14531" ], "x-ms-correlation-request-id": [ - "d16bf7c3-f87a-41a6-83b2-77366cda5aad" + "723e40ca-5505-4617-be28-cafbd5ab9c1e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222010Z:d16bf7c3-f87a-41a6-83b2-77366cda5aad" + "WESTUS2:20180510T003559Z:723e40ca-5505-4617-be28-cafbd5ab9c1e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:10 GMT" + "Thu, 10 May 2018 00:35:59 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -594874,10 +31088,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594886,38 +31100,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4763" + "14530" ], "x-ms-correlation-request-id": [ - "31f386a6-c677-4e28-9f45-1222fc9c0fbd" + "70e1e525-ed66-4bb3-907e-dc0fb5d14ee5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222011Z:31f386a6-c677-4e28-9f45-1222fc9c0fbd" + "WESTUS2:20180510T003559Z:70e1e525-ed66-4bb3-907e-dc0fb5d14ee5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:11 GMT" + "Thu, 10 May 2018 00:35:59 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -594938,10 +31155,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594950,38 +31167,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4762" + "14529" ], "x-ms-correlation-request-id": [ - "cc84c455-339c-41f6-a9e8-150fe4ee5ea9" + "d046237a-6289-49b2-89a4-5b2ec6afd9ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222011Z:cc84c455-339c-41f6-a9e8-150fe4ee5ea9" + "WESTUS2:20180510T003559Z:d046237a-6289-49b2-89a4-5b2ec6afd9ad" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:11 GMT" + "Thu, 10 May 2018 00:35:59 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595002,10 +31222,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595014,38 +31234,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4761" + "14528" ], "x-ms-correlation-request-id": [ - "d6929327-0370-4261-bdad-c3aefb44de81" + "cb389d85-e013-4700-b294-932641d2cc26" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222011Z:d6929327-0370-4261-bdad-c3aefb44de81" + "WESTUS2:20180510T003559Z:cb389d85-e013-4700-b294-932641d2cc26" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:11 GMT" + "Thu, 10 May 2018 00:35:59 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595066,10 +31289,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595078,38 +31301,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4760" + "14527" ], "x-ms-correlation-request-id": [ - "eb8a7572-6908-48f2-95e0-5d84c17c2b7c" + "82ca2585-0988-452f-bb58-2b133a555ac2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222011Z:eb8a7572-6908-48f2-95e0-5d84c17c2b7c" + "WESTUS2:20180510T003559Z:82ca2585-0988-452f-bb58-2b133a555ac2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:11 GMT" + "Thu, 10 May 2018 00:35:59 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595130,10 +31356,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595142,38 +31368,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4759" + "14526" ], "x-ms-correlation-request-id": [ - "1bf57fe6-bbf0-49ad-8ab8-689cd6be41bc" + "915d56d5-4238-4dde-95da-207ff1c707af" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222011Z:1bf57fe6-bbf0-49ad-8ab8-689cd6be41bc" + "WESTUS2:20180510T003559Z:915d56d5-4238-4dde-95da-207ff1c707af" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:11 GMT" + "Thu, 10 May 2018 00:35:59 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595194,10 +31423,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595206,38 +31435,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4758" + "14525" ], "x-ms-correlation-request-id": [ - "578bb74f-116c-4f9a-af23-bd35bb7188a6" + "b0ff6b98-9840-4c01-881b-3982977f6446" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222011Z:578bb74f-116c-4f9a-af23-bd35bb7188a6" + "WESTUS2:20180510T003559Z:b0ff6b98-9840-4c01-881b-3982977f6446" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:11 GMT" + "Thu, 10 May 2018 00:35:59 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595258,10 +31490,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595270,38 +31502,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4757" + "14524" ], "x-ms-correlation-request-id": [ - "cd6baf19-3032-424b-8ecb-c190ff89ec61" + "0d8739db-4ee8-4205-a90a-a6de46f7acb0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222012Z:cd6baf19-3032-424b-8ecb-c190ff89ec61" + "WESTUS2:20180510T003600Z:0d8739db-4ee8-4205-a90a-a6de46f7acb0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:12 GMT" + "Thu, 10 May 2018 00:36:00 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595322,10 +31557,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595334,38 +31569,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4756" + "14523" ], "x-ms-correlation-request-id": [ - "8f3c1051-b6e7-4b0d-9edb-9c7778e5898e" + "97084959-b41d-4fe3-9fc9-8979c7a138c9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222012Z:8f3c1051-b6e7-4b0d-9edb-9c7778e5898e" + "WESTUS2:20180510T003600Z:97084959-b41d-4fe3-9fc9-8979c7a138c9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:12 GMT" + "Thu, 10 May 2018 00:36:00 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595386,10 +31624,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595398,38 +31636,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4755" + "14522" ], "x-ms-correlation-request-id": [ - "65ca8cd7-be14-43cf-9d3b-821b67880a76" + "17025d3a-9567-43fe-b64f-63f918d0a35d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222012Z:65ca8cd7-be14-43cf-9d3b-821b67880a76" + "WESTUS2:20180510T003600Z:17025d3a-9567-43fe-b64f-63f918d0a35d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:12 GMT" + "Thu, 10 May 2018 00:36:00 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595450,10 +31691,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595462,38 +31703,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4754" + "14521" ], "x-ms-correlation-request-id": [ - "fffc0ae7-cf4c-454a-8ae3-c1046c0129fc" + "2df81930-2a72-4fea-abbb-86a27fa703f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222012Z:fffc0ae7-cf4c-454a-8ae3-c1046c0129fc" + "WESTUS2:20180510T003600Z:2df81930-2a72-4fea-abbb-86a27fa703f1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:12 GMT" + "Thu, 10 May 2018 00:36:00 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595514,10 +31758,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595526,38 +31770,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4753" + "14520" ], "x-ms-correlation-request-id": [ - "6b1bc149-faff-43ad-ad82-c76dae54e7cb" + "62ba88e3-ca1c-4fd2-8582-4a5e184dc567" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222012Z:6b1bc149-faff-43ad-ad82-c76dae54e7cb" + "WESTUS2:20180510T003600Z:62ba88e3-ca1c-4fd2-8582-4a5e184dc567" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:12 GMT" + "Thu, 10 May 2018 00:36:00 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595578,10 +31825,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595590,38 +31837,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4752" + "14519" ], "x-ms-correlation-request-id": [ - "9920f291-11f0-42fa-861b-3285be20c749" + "c51f10b2-a4e5-43cb-ad5c-7687c1e51c6c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222012Z:9920f291-11f0-42fa-861b-3285be20c749" + "WESTUS2:20180510T003600Z:c51f10b2-a4e5-43cb-ad5c-7687c1e51c6c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:12 GMT" + "Thu, 10 May 2018 00:36:00 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595642,10 +31892,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595654,38 +31904,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4751" + "14518" ], "x-ms-correlation-request-id": [ - "4fcf5ca4-4230-4143-b241-e6982e43c203" + "7cf6f0d5-8a12-4691-9004-16541b054bac" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222013Z:4fcf5ca4-4230-4143-b241-e6982e43c203" + "WESTUS2:20180510T003600Z:7cf6f0d5-8a12-4691-9004-16541b054bac" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:12 GMT" + "Thu, 10 May 2018 00:36:00 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595706,10 +31959,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595718,38 +31971,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4750" + "14517" ], "x-ms-correlation-request-id": [ - "5eb1472d-58a9-4347-a21e-8b853d6a0c09" + "9de0c39d-4d0f-477d-9576-94e38f976564" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222013Z:5eb1472d-58a9-4347-a21e-8b853d6a0c09" + "WESTUS2:20180510T003600Z:9de0c39d-4d0f-477d-9576-94e38f976564" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:13 GMT" + "Thu, 10 May 2018 00:36:00 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595770,10 +32026,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595782,38 +32038,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4749" + "14516" ], "x-ms-correlation-request-id": [ - "e8b23d1c-9ac3-480c-940b-c24804e93488" + "bcdb69d4-9bab-4f29-92f4-19ff47542bf0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222013Z:e8b23d1c-9ac3-480c-940b-c24804e93488" + "WESTUS2:20180510T003600Z:bcdb69d4-9bab-4f29-92f4-19ff47542bf0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:13 GMT" + "Thu, 10 May 2018 00:36:00 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595834,10 +32093,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595846,38 +32105,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4748" + "14515" ], "x-ms-correlation-request-id": [ - "7116146a-4409-4d19-b57e-51e8dcf565e9" + "60761ae4-3735-4be0-8973-a727af921660" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222013Z:7116146a-4409-4d19-b57e-51e8dcf565e9" + "WESTUS2:20180510T003600Z:60761ae4-3735-4be0-8973-a727af921660" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:13 GMT" + "Thu, 10 May 2018 00:36:00 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595898,10 +32160,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595910,38 +32172,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4747" + "14514" ], "x-ms-correlation-request-id": [ - "ebdd3616-448c-4a6d-85e9-3d0b2977c6ea" + "567f11a6-1bc2-454a-b58b-199795bad210" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222013Z:ebdd3616-448c-4a6d-85e9-3d0b2977c6ea" + "WESTUS2:20180510T003600Z:567f11a6-1bc2-454a-b58b-199795bad210" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:13 GMT" + "Thu, 10 May 2018 00:36:00 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -595962,10 +32227,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595974,38 +32239,41 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4746" + "14513" ], "x-ms-correlation-request-id": [ - "02846af7-1c53-4f09-866a-7d6480a49a89" + "03240bb4-a189-4410-b5e3-c79798522adf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222013Z:02846af7-1c53-4f09-866a-7d6480a49a89" + "WESTUS2:20180510T003600Z:03240bb4-a189-4410-b5e3-c79798522adf" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:13 GMT" + "Thu, 10 May 2018 00:36:00 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -596026,10 +32294,10 @@ "10" ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operations/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -596038,44 +32306,47 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4745" + "14512" ], "x-ms-correlation-request-id": [ - "8d372140-b6ce-49d1-92c5-cdd6d581ac96" + "cb4c82aa-4227-4f35-8064-31c8859cdc56" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222014Z:8d372140-b6ce-49d1-92c5-cdd6d581ac96" + "WESTUS2:20180510T003600Z:cb4c82aa-4227-4f35-8064-31c8859cdc56" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:13 GMT" + "Thu, 10 May 2018 00:36:00 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk0YjA0MjEtZmYyMS00MGNmLWJiMDctYzk5MDdiZDg1OWQ4P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Network.NetworkManagementClient/14.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "\"https://mdsbrketwprodsn1prod.blob.core.windows.net/cmakexe/f6b2bc72-1d9e-42a3-bab3-528e4dd4dd86/vpnclientconfiguration.zip?sv=2015-04-05&sr=b&sig=J42fAVcPWJTGRL9oBB3uLHrNUFeTYKg3O%2BpbYGrO67E%3D&st=2017-08-29T22%3A15%3A03Z&se=2017-08-29T23%3A15%3A03Z&sp=r&fileExtension=.zip\"", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "276" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -596086,8 +32357,14 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "694b0421-ff21-40cf-bb07-c9907bd859d8" + "20079ade-24eb-4c22-a881-078ad040b525" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -596096,41 +32373,50 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/providers/Microsoft.Network/locations/westus/operationResults/694b0421-ff21-40cf-bb07-c9907bd859d8?api-version=2017-06-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "4744" + "14511" ], "x-ms-correlation-request-id": [ - "3e2df52b-c5e2-4105-82c5-2f31329e9446" + "3754aacb-a9c0-4c3f-9069-425bf6e1da3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T222014Z:3e2df52b-c5e2-4105-82c5-2f31329e9446" + "WESTUS2:20180510T003600Z:3754aacb-a9c0-4c3f-9069-425bf6e1da3b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:20:14 GMT" + "Thu, 10 May 2018 00:36:00 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/resourcegroups/onesdk3166?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL3Jlc291cmNlZ3JvdXBzL29uZXNkazMxNjY/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "0" + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -596139,19 +32425,13 @@ "no-cache" ], "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "10" ], "x-ms-request-id": [ - "05617e41-b5bd-4cb0-8c34-306563363951" + "20079ade-24eb-4c22-a881-078ad040b525" ], - "x-ms-correlation-request-id": [ - "05617e41-b5bd-4cb0-8c34-306563363951" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T225955Z:05617e41-b5bd-4cb0-8c34-306563363951" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -596159,86 +32439,51 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 29 Aug 2017 22:59:54 GMT" - ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "357a8c77-b448-49f0-8cb3-4e3ee9b6785b" + "14510" ], "x-ms-correlation-request-id": [ - "357a8c77-b448-49f0-8cb3-4e3ee9b6785b" + "c19e85bd-4c2a-43af-adbf-39005ef3909b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T225955Z:357a8c77-b448-49f0-8cb3-4e3ee9b6785b" + "WESTUS2:20180510T003600Z:c19e85bd-4c2a-43af-adbf-39005ef3909b" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 29 Aug 2017 22:59:55 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "Thu, 10 May 2018 00:36:00 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjAwNzlhZGUtMjRlYi00YzIyLWE4ODEtMDc4YWQwNDBiNTI1P2FwaS12ZXJzaW9uPTIwMTctMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "\"https://by0nfvetwgwmprod.blob.core.windows.net/cmakexe/4b3a92e8-2713-4c8f-8ba1-5b4944b52a95/vpnclientconfiguration.zip?sv=2015-04-05&sr=b&sig=6TPGEIBFkVgWgWaoaDt5sNsw7CdLjfIIT3%2B%2FXbQhuqk%3D&st=2018-05-10T00%3A31%3A00Z&se=2018-05-10T01%3A31%3A00Z&sp=r&fileExtension=.zip\"", "ResponseHeaders": { "Content-Length": [ - "0" + "274" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -596246,20 +32491,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], "x-ms-request-id": [ - "b886aa53-d9fb-4257-b9e5-deabd9323f2e" - ], - "x-ms-correlation-request-id": [ - "b886aa53-d9fb-4257-b9e5-deabd9323f2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T230010Z:b886aa53-d9fb-4257-b9e5-deabd9323f2e" + "20079ade-24eb-4c22-a881-078ad040b525" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -596267,24 +32500,37 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 29 Aug 2017 23:00:10 GMT" - ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/20079ade-24eb-4c22-a881-078ad040b525?api-version=2017-06-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14509" + ], + "x-ms-correlation-request-id": [ + "935232d5-ea87-4835-bf9b-bb3fa91517d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T003600Z:935232d5-ea87-4835-bf9b-bb3fa91517d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 00:36:00 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps7893?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzNzg5Mz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -596303,36 +32549,39 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "49151432-a292-4d10-94ef-557054fe8532" + "d3c32eba-54f8-49a0-bdca-5223270132ae" ], "x-ms-correlation-request-id": [ - "49151432-a292-4d10-94ef-557054fe8532" + "d3c32eba-54f8-49a0-bdca-5223270132ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230026Z:49151432-a292-4d10-94ef-557054fe8532" + "WESTUS2:20180510T003601Z:d3c32eba-54f8-49a0-bdca-5223270132ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:00:26 GMT" + "Thu, 10 May 2018 00:36:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -596358,35 +32607,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14998" ], "x-ms-request-id": [ - "a9062b3d-8b6e-4026-b7d6-a914f626a1be" + "6d7d19b3-0a00-4147-8839-cd833adfc2f9" ], "x-ms-correlation-request-id": [ - "a9062b3d-8b6e-4026-b7d6-a914f626a1be" + "6d7d19b3-0a00-4147-8839-cd833adfc2f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230041Z:a9062b3d-8b6e-4026-b7d6-a914f626a1be" + "WESTUS2:20180510T003601Z:6d7d19b3-0a00-4147-8839-cd833adfc2f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:00:41 GMT" + "Thu, 10 May 2018 00:36:01 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -596412,35 +32664,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14997" ], "x-ms-request-id": [ - "cccc475d-172c-41e0-ac5f-4433bfafdf37" + "ce33d4ff-f6cb-4252-8020-a4dc118dbc16" ], "x-ms-correlation-request-id": [ - "cccc475d-172c-41e0-ac5f-4433bfafdf37" + "ce33d4ff-f6cb-4252-8020-a4dc118dbc16" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230056Z:cccc475d-172c-41e0-ac5f-4433bfafdf37" + "WESTUS2:20180510T003616Z:ce33d4ff-f6cb-4252-8020-a4dc118dbc16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:00:55 GMT" + "Thu, 10 May 2018 00:36:16 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -596466,89 +32721,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14996" ], "x-ms-request-id": [ - "26e5fb46-7d7e-4be3-9ee2-987a3169a9f4" + "e6d548ff-99ff-4e27-b21a-b251c4b20b7d" ], "x-ms-correlation-request-id": [ - "26e5fb46-7d7e-4be3-9ee2-987a3169a9f4" + "e6d548ff-99ff-4e27-b21a-b251c4b20b7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230111Z:26e5fb46-7d7e-4be3-9ee2-987a3169a9f4" + "WESTUS2:20180510T003632Z:e6d548ff-99ff-4e27-b21a-b251c4b20b7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Aug 2017 23:01:10 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-request-id": [ - "3c81c1d1-fd64-42e0-b4ff-abf84e319f13" - ], - "x-ms-correlation-request-id": [ - "3c81c1d1-fd64-42e0-b4ff-abf84e319f13" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T230126Z:3c81c1d1-fd64-42e0-b4ff-abf84e319f13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:01:25 GMT" + "Thu, 10 May 2018 00:36:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -596574,89 +32778,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14995" ], "x-ms-request-id": [ - "792bd0a1-3699-4658-a125-7ff24a9ba2d2" + "148d0ac4-6449-4c15-ab29-2966cfe3a277" ], "x-ms-correlation-request-id": [ - "792bd0a1-3699-4658-a125-7ff24a9ba2d2" + "148d0ac4-6449-4c15-ab29-2966cfe3a277" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230142Z:792bd0a1-3699-4658-a125-7ff24a9ba2d2" + "WESTUS2:20180510T003647Z:148d0ac4-6449-4c15-ab29-2966cfe3a277" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Aug 2017 23:01:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-request-id": [ - "160a7ea7-8063-46e5-9a40-dbeb440efacd" - ], - "x-ms-correlation-request-id": [ - "160a7ea7-8063-46e5-9a40-dbeb440efacd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T230157Z:160a7ea7-8063-46e5-9a40-dbeb440efacd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:01:56 GMT" + "Thu, 10 May 2018 00:36:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -596682,89 +32835,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14994" ], "x-ms-request-id": [ - "fe1e0bd3-cb7b-4c37-be33-ea4f68c34a3c" + "4a47c924-fb93-4362-b3bf-b52f22f8117e" ], "x-ms-correlation-request-id": [ - "fe1e0bd3-cb7b-4c37-be33-ea4f68c34a3c" + "4a47c924-fb93-4362-b3bf-b52f22f8117e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230212Z:fe1e0bd3-cb7b-4c37-be33-ea4f68c34a3c" + "WESTUS2:20180510T003702Z:4a47c924-fb93-4362-b3bf-b52f22f8117e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Aug 2017 23:02:11 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-request-id": [ - "73242268-638d-4584-8d33-22468764331a" - ], - "x-ms-correlation-request-id": [ - "73242268-638d-4584-8d33-22468764331a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T230227Z:73242268-638d-4584-8d33-22468764331a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:02:26 GMT" + "Thu, 10 May 2018 00:37:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -596790,89 +32892,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14993" ], "x-ms-request-id": [ - "ee964d48-a965-4541-a05d-a025eb7788b3" + "d6e5d19e-2313-4911-847a-f2ba71e63845" ], "x-ms-correlation-request-id": [ - "ee964d48-a965-4541-a05d-a025eb7788b3" + "d6e5d19e-2313-4911-847a-f2ba71e63845" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230242Z:ee964d48-a965-4541-a05d-a025eb7788b3" + "WESTUS2:20180510T003717Z:d6e5d19e-2313-4911-847a-f2ba71e63845" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Aug 2017 23:02:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-request-id": [ - "257e11f7-fc9a-40e6-a1a2-4518a01cc551" - ], - "x-ms-correlation-request-id": [ - "257e11f7-fc9a-40e6-a1a2-4518a01cc551" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T230257Z:257e11f7-fc9a-40e6-a1a2-4518a01cc551" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:02:57 GMT" + "Thu, 10 May 2018 00:37:16 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -596898,89 +32949,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14992" ], "x-ms-request-id": [ - "366491e8-420f-4605-a964-7bf831410b96" + "dd0bcdd7-9fa1-476b-91b9-28c1415f288f" ], "x-ms-correlation-request-id": [ - "366491e8-420f-4605-a964-7bf831410b96" + "dd0bcdd7-9fa1-476b-91b9-28c1415f288f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230313Z:366491e8-420f-4605-a964-7bf831410b96" + "WESTUS2:20180510T003732Z:dd0bcdd7-9fa1-476b-91b9-28c1415f288f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Aug 2017 23:03:12 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-request-id": [ - "19659f3f-802e-4896-9c93-4c3045b80a48" - ], - "x-ms-correlation-request-id": [ - "19659f3f-802e-4896-9c93-4c3045b80a48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T230328Z:19659f3f-802e-4896-9c93-4c3045b80a48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:03:27 GMT" + "Thu, 10 May 2018 00:37:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -597006,35 +33006,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14991" ], "x-ms-request-id": [ - "d44bc441-c497-47e2-bf82-7819ef70b501" + "8a707aa4-2793-455e-8c0a-f52530b5372f" ], "x-ms-correlation-request-id": [ - "d44bc441-c497-47e2-bf82-7819ef70b501" + "8a707aa4-2793-455e-8c0a-f52530b5372f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230344Z:d44bc441-c497-47e2-bf82-7819ef70b501" + "WESTUS2:20180510T003747Z:8a707aa4-2793-455e-8c0a-f52530b5372f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:03:43 GMT" + "Thu, 10 May 2018 00:37:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -597060,35 +33063,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14990" ], "x-ms-request-id": [ - "6064c685-96b9-40bd-a71e-5f206cd7f5b4" + "17b12c7b-1e0f-4e11-acc9-f30d9a40ca32" ], "x-ms-correlation-request-id": [ - "6064c685-96b9-40bd-a71e-5f206cd7f5b4" + "17b12c7b-1e0f-4e11-acc9-f30d9a40ca32" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230359Z:6064c685-96b9-40bd-a71e-5f206cd7f5b4" + "WESTUS2:20180510T003802Z:17b12c7b-1e0f-4e11-acc9-f30d9a40ca32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:03:59 GMT" + "Thu, 10 May 2018 00:38:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -597114,35 +33120,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14989" ], "x-ms-request-id": [ - "910c16b9-457b-4132-ba0b-36500fefc726" + "9e1295c0-81ea-484f-b57a-f78bc5dbc48c" ], "x-ms-correlation-request-id": [ - "910c16b9-457b-4132-ba0b-36500fefc726" + "9e1295c0-81ea-484f-b57a-f78bc5dbc48c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230414Z:910c16b9-457b-4132-ba0b-36500fefc726" + "WESTUS2:20180510T003817Z:9e1295c0-81ea-484f-b57a-f78bc5dbc48c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:04:13 GMT" + "Thu, 10 May 2018 00:38:16 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -597168,35 +33177,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14988" ], "x-ms-request-id": [ - "e973972a-b382-49ac-a994-9f2f7ff8fe38" + "91d43736-346d-4baa-ab8e-bb4f8eaa806a" ], "x-ms-correlation-request-id": [ - "e973972a-b382-49ac-a994-9f2f7ff8fe38" + "91d43736-346d-4baa-ab8e-bb4f8eaa806a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230429Z:e973972a-b382-49ac-a994-9f2f7ff8fe38" + "WESTUS2:20180510T003832Z:91d43736-346d-4baa-ab8e-bb4f8eaa806a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:04:28 GMT" + "Thu, 10 May 2018 00:38:32 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -597222,35 +33234,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14987" ], "x-ms-request-id": [ - "da8659e0-5a56-4135-a30f-b47e5b87159a" + "bdeecda3-5a47-4884-ac2d-321163ed1768" ], "x-ms-correlation-request-id": [ - "da8659e0-5a56-4135-a30f-b47e5b87159a" + "bdeecda3-5a47-4884-ac2d-321163ed1768" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230444Z:da8659e0-5a56-4135-a30f-b47e5b87159a" + "WESTUS2:20180510T003847Z:bdeecda3-5a47-4884-ac2d-321163ed1768" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:04:43 GMT" + "Thu, 10 May 2018 00:38:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -597276,35 +33291,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14986" ], "x-ms-request-id": [ - "148e7697-d9db-425e-9ebb-974f8e8e973a" + "e82fbaf9-3c1d-45e1-a8fd-74ae19f4b3bf" ], "x-ms-correlation-request-id": [ - "148e7697-d9db-425e-9ebb-974f8e8e973a" + "e82fbaf9-3c1d-45e1-a8fd-74ae19f4b3bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230459Z:148e7697-d9db-425e-9ebb-974f8e8e973a" + "WESTUS2:20180510T003902Z:e82fbaf9-3c1d-45e1-a8fd-74ae19f4b3bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:04:59 GMT" + "Thu, 10 May 2018 00:39:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -597330,89 +33348,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14985" ], "x-ms-request-id": [ - "a2b85252-6fd6-43ae-9d0d-852f9b9cde2a" + "b0598503-ef90-46cf-9270-251d5a555fa2" ], "x-ms-correlation-request-id": [ - "a2b85252-6fd6-43ae-9d0d-852f9b9cde2a" + "b0598503-ef90-46cf-9270-251d5a555fa2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230515Z:a2b85252-6fd6-43ae-9d0d-852f9b9cde2a" + "WESTUS2:20180510T003917Z:b0598503-ef90-46cf-9270-251d5a555fa2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Aug 2017 23:05:14 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" - ], - "x-ms-request-id": [ - "d2d98d32-e861-4035-a160-c4ecdada87d1" - ], - "x-ms-correlation-request-id": [ - "d2d98d32-e861-4035-a160-c4ecdada87d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T230530Z:d2d98d32-e861-4035-a160-c4ecdada87d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:05:29 GMT" + "Thu, 10 May 2018 00:39:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -597438,89 +33405,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14984" ], "x-ms-request-id": [ - "47a0203b-dc7f-4672-95ac-c1364d8a4c06" + "961ff164-8b42-4e3a-899a-676b23ee9b22" ], "x-ms-correlation-request-id": [ - "47a0203b-dc7f-4672-95ac-c1364d8a4c06" + "961ff164-8b42-4e3a-899a-676b23ee9b22" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230545Z:47a0203b-dc7f-4672-95ac-c1364d8a4c06" + "WESTUS2:20180510T003933Z:961ff164-8b42-4e3a-899a-676b23ee9b22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Aug 2017 23:05:44 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" - ], - "x-ms-request-id": [ - "2e956c67-4fe2-4595-8943-d7c47bf39075" - ], - "x-ms-correlation-request-id": [ - "2e956c67-4fe2-4595-8943-d7c47bf39075" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T230600Z:2e956c67-4fe2-4595-8943-d7c47bf39075" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:05:59 GMT" + "Thu, 10 May 2018 00:39:32 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -597546,89 +33462,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14983" ], "x-ms-request-id": [ - "2fd7aa9c-da50-453c-8636-5deb1f10976f" + "9b50b7b3-7ab9-409b-b989-c1fad3035351" ], "x-ms-correlation-request-id": [ - "2fd7aa9c-da50-453c-8636-5deb1f10976f" + "9b50b7b3-7ab9-409b-b989-c1fad3035351" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230615Z:2fd7aa9c-da50-453c-8636-5deb1f10976f" + "WESTUS2:20180510T003948Z:9b50b7b3-7ab9-409b-b989-c1fad3035351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Aug 2017 23:06:15 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], - "x-ms-request-id": [ - "1f3e2d68-0beb-41a3-bfd3-6f0a7c5dc1ee" - ], - "x-ms-correlation-request-id": [ - "1f3e2d68-0beb-41a3-bfd3-6f0a7c5dc1ee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T230631Z:1f3e2d68-0beb-41a3-bfd3-6f0a7c5dc1ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:06:30 GMT" + "Thu, 10 May 2018 00:39:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -597654,89 +33519,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14982" ], "x-ms-request-id": [ - "40a3d6b1-9243-4bde-9471-b05fdc96f759" + "6332b50f-7b6e-4456-96e2-a382dc8bef0a" ], "x-ms-correlation-request-id": [ - "40a3d6b1-9243-4bde-9471-b05fdc96f759" + "6332b50f-7b6e-4456-96e2-a382dc8bef0a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230646Z:40a3d6b1-9243-4bde-9471-b05fdc96f759" + "WESTUS2:20180510T004003Z:6332b50f-7b6e-4456-96e2-a382dc8bef0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Aug 2017 23:06:45 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-request-id": [ - "539f18e7-3c99-420f-a781-4e5420de2acf" - ], - "x-ms-correlation-request-id": [ - "539f18e7-3c99-420f-a781-4e5420de2acf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170829T230701Z:539f18e7-3c99-420f-a781-4e5420de2acf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:07:00 GMT" + "Thu, 10 May 2018 00:40:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -597762,35 +33576,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14981" ], "x-ms-request-id": [ - "a3813e4d-0de4-43fa-bc05-fb0646b30a86" + "d0861f81-843f-44fc-873c-da8fdb15dd28" ], "x-ms-correlation-request-id": [ - "a3813e4d-0de4-43fa-bc05-fb0646b30a86" + "d0861f81-843f-44fc-873c-da8fdb15dd28" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230716Z:a3813e4d-0de4-43fa-bc05-fb0646b30a86" + "WESTUS2:20180510T004018Z:d0861f81-843f-44fc-873c-da8fdb15dd28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:07:15 GMT" + "Thu, 10 May 2018 00:40:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -597816,35 +33633,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14980" ], "x-ms-request-id": [ - "8f1f8381-9886-43f1-a502-521752a2b068" + "0c528e30-80f3-40fb-b509-2c5b39196061" ], "x-ms-correlation-request-id": [ - "8f1f8381-9886-43f1-a502-521752a2b068" + "0c528e30-80f3-40fb-b509-2c5b39196061" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230731Z:8f1f8381-9886-43f1-a502-521752a2b068" + "WESTUS2:20180510T004033Z:0c528e30-80f3-40fb-b509-2c5b39196061" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:07:31 GMT" + "Thu, 10 May 2018 00:40:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -597870,35 +33690,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14979" ], "x-ms-request-id": [ - "3714bceb-f88e-4d5e-92cc-11b361fba11f" + "3dddda09-1185-4421-a99b-6e6d5131de7d" ], "x-ms-correlation-request-id": [ - "3714bceb-f88e-4d5e-92cc-11b361fba11f" + "3dddda09-1185-4421-a99b-6e6d5131de7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230746Z:3714bceb-f88e-4d5e-92cc-11b361fba11f" + "WESTUS2:20180510T004048Z:3dddda09-1185-4421-a99b-6e6d5131de7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:07:46 GMT" + "Thu, 10 May 2018 00:40:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -597924,35 +33747,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14978" ], "x-ms-request-id": [ - "da81f1e4-2d1e-4264-b7fc-06e1bd627175" + "203b0b7e-8acd-462a-86e6-205e5b239c0b" ], "x-ms-correlation-request-id": [ - "da81f1e4-2d1e-4264-b7fc-06e1bd627175" + "203b0b7e-8acd-462a-86e6-205e5b239c0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230802Z:da81f1e4-2d1e-4264-b7fc-06e1bd627175" + "WESTUS2:20180510T004103Z:203b0b7e-8acd-462a-86e6-205e5b239c0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:08:01 GMT" + "Thu, 10 May 2018 00:41:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -597978,35 +33804,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14977" ], "x-ms-request-id": [ - "c68d5052-4e5f-437d-8274-eb9c54621965" + "f279ff14-6186-48df-87fb-56083e701346" ], "x-ms-correlation-request-id": [ - "c68d5052-4e5f-437d-8274-eb9c54621965" + "f279ff14-6186-48df-87fb-56083e701346" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230817Z:c68d5052-4e5f-437d-8274-eb9c54621965" + "WESTUS2:20180510T004118Z:f279ff14-6186-48df-87fb-56083e701346" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:08:16 GMT" + "Thu, 10 May 2018 00:41:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598032,35 +33861,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14976" ], "x-ms-request-id": [ - "f13a39d6-462b-4f3f-9c25-26708bcd4e0e" + "fa7ebef0-d397-4da5-84f2-d274be4001c3" ], "x-ms-correlation-request-id": [ - "f13a39d6-462b-4f3f-9c25-26708bcd4e0e" + "fa7ebef0-d397-4da5-84f2-d274be4001c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230832Z:f13a39d6-462b-4f3f-9c25-26708bcd4e0e" + "WESTUS2:20180510T004133Z:fa7ebef0-d397-4da5-84f2-d274be4001c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:08:31 GMT" + "Thu, 10 May 2018 00:41:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598086,35 +33918,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14975" ], "x-ms-request-id": [ - "6ad8ec9a-7d25-4823-9535-6c892a24875f" + "2fcc3458-c07d-4956-854f-5fc3ddfaed4f" ], "x-ms-correlation-request-id": [ - "6ad8ec9a-7d25-4823-9535-6c892a24875f" + "2fcc3458-c07d-4956-854f-5fc3ddfaed4f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230847Z:6ad8ec9a-7d25-4823-9535-6c892a24875f" + "WESTUS2:20180510T004148Z:2fcc3458-c07d-4956-854f-5fc3ddfaed4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:08:46 GMT" + "Thu, 10 May 2018 00:41:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598140,35 +33975,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14974" ], "x-ms-request-id": [ - "398a7c76-71d4-492d-bd43-b4b676735085" + "e0aa4829-dc51-4d9c-ac43-1c136eca3ec9" ], "x-ms-correlation-request-id": [ - "398a7c76-71d4-492d-bd43-b4b676735085" + "e0aa4829-dc51-4d9c-ac43-1c136eca3ec9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230902Z:398a7c76-71d4-492d-bd43-b4b676735085" + "WESTUS2:20180510T004203Z:e0aa4829-dc51-4d9c-ac43-1c136eca3ec9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:09:02 GMT" + "Thu, 10 May 2018 00:42:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598194,35 +34032,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14973" ], "x-ms-request-id": [ - "c439e97f-80c1-4959-94a7-17e1b71b05d3" + "23bb0128-1fa0-4875-b125-5c3ca466c74d" ], "x-ms-correlation-request-id": [ - "c439e97f-80c1-4959-94a7-17e1b71b05d3" + "23bb0128-1fa0-4875-b125-5c3ca466c74d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230917Z:c439e97f-80c1-4959-94a7-17e1b71b05d3" + "WESTUS2:20180510T004219Z:23bb0128-1fa0-4875-b125-5c3ca466c74d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:09:17 GMT" + "Thu, 10 May 2018 00:42:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598248,35 +34089,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14972" ], "x-ms-request-id": [ - "db4dbe3b-9c50-473e-a723-1365742b4bb7" + "816ad564-9165-49e7-8123-abbd238ecf22" ], "x-ms-correlation-request-id": [ - "db4dbe3b-9c50-473e-a723-1365742b4bb7" + "816ad564-9165-49e7-8123-abbd238ecf22" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230932Z:db4dbe3b-9c50-473e-a723-1365742b4bb7" + "WESTUS2:20180510T004234Z:816ad564-9165-49e7-8123-abbd238ecf22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:09:32 GMT" + "Thu, 10 May 2018 00:42:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598302,35 +34146,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14971" ], "x-ms-request-id": [ - "49b99096-5458-43ba-ae3a-040408077ec1" + "7a9f118f-b174-49c2-a874-c61f887b5098" ], "x-ms-correlation-request-id": [ - "49b99096-5458-43ba-ae3a-040408077ec1" + "7a9f118f-b174-49c2-a874-c61f887b5098" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T230948Z:49b99096-5458-43ba-ae3a-040408077ec1" + "WESTUS2:20180510T004249Z:7a9f118f-b174-49c2-a874-c61f887b5098" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:09:47 GMT" + "Thu, 10 May 2018 00:42:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598356,35 +34203,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14970" ], "x-ms-request-id": [ - "8598b39a-fe3e-4f43-8e6d-13defb79cfad" + "89763933-1719-4aea-a475-42dce6076b1f" ], "x-ms-correlation-request-id": [ - "8598b39a-fe3e-4f43-8e6d-13defb79cfad" + "89763933-1719-4aea-a475-42dce6076b1f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T231003Z:8598b39a-fe3e-4f43-8e6d-13defb79cfad" + "WESTUS2:20180510T004304Z:89763933-1719-4aea-a475-42dce6076b1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:10:02 GMT" + "Thu, 10 May 2018 00:43:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598410,35 +34260,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14969" ], "x-ms-request-id": [ - "566c81bd-4417-48e8-80d8-5b525e65c635" + "b100c38b-eb39-4a92-a301-ec7a8cc22116" ], "x-ms-correlation-request-id": [ - "566c81bd-4417-48e8-80d8-5b525e65c635" + "b100c38b-eb39-4a92-a301-ec7a8cc22116" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T231018Z:566c81bd-4417-48e8-80d8-5b525e65c635" + "WESTUS2:20180510T004319Z:b100c38b-eb39-4a92-a301-ec7a8cc22116" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:10:17 GMT" + "Thu, 10 May 2018 00:43:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598464,35 +34317,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14968" ], "x-ms-request-id": [ - "94bb4d74-152a-4f81-99c5-e7be0719cc65" + "d5e2e827-ba31-492a-8a0e-324ae722ac85" ], "x-ms-correlation-request-id": [ - "94bb4d74-152a-4f81-99c5-e7be0719cc65" + "d5e2e827-ba31-492a-8a0e-324ae722ac85" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T231033Z:94bb4d74-152a-4f81-99c5-e7be0719cc65" + "WESTUS2:20180510T004334Z:d5e2e827-ba31-492a-8a0e-324ae722ac85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:10:33 GMT" + "Thu, 10 May 2018 00:43:34 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598518,35 +34374,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14967" ], "x-ms-request-id": [ - "f0e475ad-6128-4d94-bb75-4b06bbf5d931" + "e02331dc-1ce0-4f42-a30c-d039cebd4251" ], "x-ms-correlation-request-id": [ - "f0e475ad-6128-4d94-bb75-4b06bbf5d931" + "e02331dc-1ce0-4f42-a30c-d039cebd4251" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T231048Z:f0e475ad-6128-4d94-bb75-4b06bbf5d931" + "WESTUS2:20180510T004349Z:e02331dc-1ce0-4f42-a30c-d039cebd4251" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:10:48 GMT" + "Thu, 10 May 2018 00:43:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598572,35 +34431,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14966" ], "x-ms-request-id": [ - "10a36ba5-0b7b-46ad-82a5-6e172ca6c36a" + "e3a3cb9f-7cdc-4466-8667-b222ff9f8059" ], "x-ms-correlation-request-id": [ - "10a36ba5-0b7b-46ad-82a5-6e172ca6c36a" + "e3a3cb9f-7cdc-4466-8667-b222ff9f8059" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T231103Z:10a36ba5-0b7b-46ad-82a5-6e172ca6c36a" + "WESTUS2:20180510T004404Z:e3a3cb9f-7cdc-4466-8667-b222ff9f8059" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:11:03 GMT" + "Thu, 10 May 2018 00:44:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598626,35 +34488,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14965" ], "x-ms-request-id": [ - "74bd8e18-5384-4ce3-a203-02c5b6dfba89" + "47e48174-b2a2-482b-b90a-d821d3e4071f" ], "x-ms-correlation-request-id": [ - "74bd8e18-5384-4ce3-a203-02c5b6dfba89" + "47e48174-b2a2-482b-b90a-d821d3e4071f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T231119Z:74bd8e18-5384-4ce3-a203-02c5b6dfba89" + "WESTUS2:20180510T004419Z:47e48174-b2a2-482b-b90a-d821d3e4071f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:11:18 GMT" + "Thu, 10 May 2018 00:44:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598680,35 +34545,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14964" ], "x-ms-request-id": [ - "2183400f-dfc4-4427-a6a7-77c91f396dd4" + "9f71013d-f774-4643-8622-7fe428357923" ], "x-ms-correlation-request-id": [ - "2183400f-dfc4-4427-a6a7-77c91f396dd4" + "9f71013d-f774-4643-8622-7fe428357923" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T231134Z:2183400f-dfc4-4427-a6a7-77c91f396dd4" + "WESTUS2:20180510T004434Z:9f71013d-f774-4643-8622-7fe428357923" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:11:34 GMT" + "Thu, 10 May 2018 00:44:34 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598734,35 +34602,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14963" ], "x-ms-request-id": [ - "ecc46872-f3a6-4367-ad36-4090b1e65d4c" + "a7a44483-e705-4d10-80ab-ef33fc13fe1d" ], "x-ms-correlation-request-id": [ - "ecc46872-f3a6-4367-ad36-4090b1e65d4c" + "a7a44483-e705-4d10-80ab-ef33fc13fe1d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T231149Z:ecc46872-f3a6-4367-ad36-4090b1e65d4c" + "WESTUS2:20180510T004450Z:a7a44483-e705-4d10-80ab-ef33fc13fe1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:11:49 GMT" + "Thu, 10 May 2018 00:44:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598788,35 +34659,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14962" ], "x-ms-request-id": [ - "31df3370-efdf-4f0a-af3b-19a8574f6911" + "168cc5e0-338c-4e1f-8e3e-be8e02b45616" ], "x-ms-correlation-request-id": [ - "31df3370-efdf-4f0a-af3b-19a8574f6911" + "168cc5e0-338c-4e1f-8e3e-be8e02b45616" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T231204Z:31df3370-efdf-4f0a-af3b-19a8574f6911" + "WESTUS2:20180510T004505Z:168cc5e0-338c-4e1f-8e3e-be8e02b45616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:12:04 GMT" + "Thu, 10 May 2018 00:45:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598842,35 +34716,38 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14961" ], "x-ms-request-id": [ - "d75e1bb6-cb18-4259-bf7e-f56d844be11d" + "596cf531-a4ea-4122-8d58-3cb3fb44af33" ], "x-ms-correlation-request-id": [ - "d75e1bb6-cb18-4259-bf7e-f56d844be11d" + "596cf531-a4ea-4122-8d58-3cb3fb44af33" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T231219Z:d75e1bb6-cb18-4259-bf7e-f56d844be11d" + "WESTUS2:20180510T004520Z:596cf531-a4ea-4122-8d58-3cb3fb44af33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:12:19 GMT" + "Thu, 10 May 2018 00:45:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4435e144-7be6-42c3-97ec-59faad19b65a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszMTY2LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzNWUxNDQtN2JlNi00MmMzLTk3ZWMtNTlmYWFkMTliNjVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pNVFkyTFZOUFZWUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598893,25 +34770,28 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14960" ], "x-ms-request-id": [ - "bb815576-3b3a-48cd-9439-9d2e0ab87563" + "3d0eb6ed-258a-4c1f-89c4-6e6d3f4864af" ], "x-ms-correlation-request-id": [ - "bb815576-3b3a-48cd-9439-9d2e0ab87563" + "3d0eb6ed-258a-4c1f-89c4-6e6d3f4864af" ], "x-ms-routing-request-id": [ - "WESTUS2:20170829T231235Z:bb815576-3b3a-48cd-9439-9d2e0ab87563" + "WESTUS2:20180510T004535Z:3d0eb6ed-258a-4c1f-89c4-6e6d3f4864af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Aug 2017 23:12:34 GMT" + "Thu, 10 May 2018 00:45:35 GMT" ] }, "StatusCode": 200 @@ -598919,15 +34799,15 @@ ], "Names": { "Test-VirtualNetworkGatewayGenerateVpnProfile": [ - "onesdk3166", - "onesdk9635", - "onesdk3695", - "onesdk6627", - "onesdk4164", - "onesdk3674" + "ps7893", + "ps5999", + "ps1257", + "ps5935", + "ps315", + "ps3306" ] }, "Variables": { - "SubscriptionId": "4435e144-7be6-42c3-97ec-59faad19b65a" + "SubscriptionId": "b1f1deed-af60-4bab-9223-65d340462e24" } } \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/VirtualNetworkGatewayRouteApiTest.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/VirtualNetworkGatewayRouteApiTest.json index 5a797f6f50bf..de093f84aa6b 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/VirtualNetworkGatewayRouteApiTest.json +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/VirtualNetworkGatewayRouteApiTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualWanVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "21036" + "24460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,49 +25,52 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14999" ], "x-ms-request-id": [ - "0d2c86e4-5cc7-4b91-b9af-0fe5246627b5" + "8319339c-bafa-402b-9435-44409bce2985" ], "x-ms-correlation-request-id": [ - "0d2c86e4-5cc7-4b91-b9af-0fe5246627b5" + "8319339c-bafa-402b-9435-44409bce2985" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212451Z:0d2c86e4-5cc7-4b91-b9af-0fe5246627b5" + "WESTUS2:20180510T062925Z:8319339c-bafa-402b-9435-44409bce2985" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 21:24:50 GMT" + "Thu, 10 May 2018 06:29:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourcegroups/ps3193?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlZ3JvdXBzL3BzMzE5Mz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps6642?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzNjY0Mj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"centralus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193\",\r\n \"name\": \"ps3193\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642\",\r\n \"name\": \"ps6642\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "168" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,46 +85,49 @@ "1199" ], "x-ms-request-id": [ - "d0436e14-bba1-499e-a9dd-a41ab3155b18" + "06dc384c-0eba-4eca-946c-4b15f942f84b" ], "x-ms-correlation-request-id": [ - "d0436e14-bba1-499e-a9dd-a41ab3155b18" + "06dc384c-0eba-4eca-946c-4b15f942f84b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212452Z:d0436e14-bba1-499e-a9dd-a41ab3155b18" + "WESTUS2:20180510T062926Z:06dc384c-0eba-4eca-946c-4b15f942f84b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 21:24:51 GMT" + "Thu, 10 May 2018 06:29:26 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzk4ND9hcGktdmVyc2lvbj0yMDE3LTExLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTkzNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db0d13b9-d185-4cb0-9dfc-797d81fc5456" + "da5c3f87-c116-4366-aeee-91db58c97e82" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps7984' under resource group 'ps3193' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps9935' under resource group 'ps6642' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -139,43 +145,46 @@ "gateway" ], "x-ms-request-id": [ - "104fdc97-6b19-4b1f-8e5b-1fb3521baf73" + "ea5ff3c4-b3d7-4cc8-8606-63ac8d4eecfe" ], "x-ms-correlation-request-id": [ - "104fdc97-6b19-4b1f-8e5b-1fb3521baf73" + "ea5ff3c4-b3d7-4cc8-8606-63ac8d4eecfe" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212453Z:104fdc97-6b19-4b1f-8e5b-1fb3521baf73" + "WESTUS2:20180510T062927Z:ea5ff3c4-b3d7-4cc8-8606-63ac8d4eecfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 21:24:53 GMT" + "Thu, 10 May 2018 06:29:26 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzk4ND9hcGktdmVyc2lvbj0yMDE3LTExLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTkzNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7984\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984\",\r\n \"etag\": \"W/\\\"4db4fb39-29bf-4b5d-9dae-8675f9d3cb8d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6335deae-163c-4824-a73c-d549a20d0b52\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"4db4fb39-29bf-4b5d-9dae-8675f9d3cb8d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9935\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935\",\r\n \"etag\": \"W/\\\"900c093c-f563-4711-b3e3-35713d9110d2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"223f4fc6-71db-4702-8815-67958de39ff1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"900c093c-f563-4711-b3e3-35713d9110d2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1078" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -187,7 +196,7 @@ "no-cache" ], "x-ms-request-id": [ - "dbcd1c5d-31ee-45e3-b2d0-093270b41af1" + "95ff1ca6-698b-4f6f-929d-6d68cef30439" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,50 +205,53 @@ "no-cache" ], "ETag": [ - "W/\"4db4fb39-29bf-4b5d-9dae-8675f9d3cb8d\"" + "W/\"900c093c-f563-4711-b3e3-35713d9110d2\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14996" ], "x-ms-correlation-request-id": [ - "9b8128c9-2d5f-4902-a390-748447711edc" + "e29279a6-bfe3-4365-bc51-5f1960bda171" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212506Z:9b8128c9-2d5f-4902-a390-748447711edc" + "WESTUS2:20180510T062949Z:e29279a6-bfe3-4365-bc51-5f1960bda171" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:25:05 GMT" + "Thu, 10 May 2018 06:29:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzk4ND9hcGktdmVyc2lvbj0yMDE3LTExLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTkzNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed90f271-74b7-407e-818b-15e13d9262cb" + "2115e1e1-5508-416b-adda-0a17d2372703" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7984\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984\",\r\n \"etag\": \"W/\\\"4db4fb39-29bf-4b5d-9dae-8675f9d3cb8d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6335deae-163c-4824-a73c-d549a20d0b52\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"4db4fb39-29bf-4b5d-9dae-8675f9d3cb8d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9935\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935\",\r\n \"etag\": \"W/\\\"900c093c-f563-4711-b3e3-35713d9110d2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"223f4fc6-71db-4702-8815-67958de39ff1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"900c093c-f563-4711-b3e3-35713d9110d2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1078" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -251,7 +263,7 @@ "no-cache" ], "x-ms-request-id": [ - "560fda19-c4aa-4802-bd7a-317c15f83d6c" + "e7418a17-4d8f-408e-9587-fa2149337a88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -260,50 +272,53 @@ "no-cache" ], "ETag": [ - "W/\"4db4fb39-29bf-4b5d-9dae-8675f9d3cb8d\"" + "W/\"900c093c-f563-4711-b3e3-35713d9110d2\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14995" ], "x-ms-correlation-request-id": [ - "8dacf403-a73f-4795-bdbf-b16de2e128e1" + "2213685d-4ec5-4fd6-8dd0-b7fc35d9f2fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212506Z:8dacf403-a73f-4795-bdbf-b16de2e128e1" + "WESTUS2:20180510T062949Z:2213685d-4ec5-4fd6-8dd0-b7fc35d9f2fb" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:25:06 GMT" + "Thu, 10 May 2018 06:29:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzk4ND9hcGktdmVyc2lvbj0yMDE3LTExLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTkzNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f99f0a84-13a3-44fb-982b-558dc244f000" + "36953233-e8df-4be5-bf78-c47b70a4a799" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7984\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984\",\r\n \"etag\": \"W/\\\"4db4fb39-29bf-4b5d-9dae-8675f9d3cb8d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6335deae-163c-4824-a73c-d549a20d0b52\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"4db4fb39-29bf-4b5d-9dae-8675f9d3cb8d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9935\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935\",\r\n \"etag\": \"W/\\\"900c093c-f563-4711-b3e3-35713d9110d2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"223f4fc6-71db-4702-8815-67958de39ff1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"900c093c-f563-4711-b3e3-35713d9110d2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1078" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,7 +330,7 @@ "no-cache" ], "x-ms-request-id": [ - "17ea216a-6893-4f47-8973-68d3f06152a6" + "5ced74a1-dc9e-40e3-b44e-5777c13f0fa5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,56 +339,59 @@ "no-cache" ], "ETag": [ - "W/\"4db4fb39-29bf-4b5d-9dae-8675f9d3cb8d\"" + "W/\"900c093c-f563-4711-b3e3-35713d9110d2\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14994" ], "x-ms-correlation-request-id": [ - "47fecd79-4f6e-4987-95d0-01f88b58e5f1" + "77dee89e-f191-4287-b784-5e82b21edf68" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212506Z:47fecd79-4f6e-4987-95d0-01f88b58e5f1" + "WESTUS2:20180510T062950Z:77dee89e-f191-4287-b784-5e82b21edf68" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:25:06 GMT" + "Thu, 10 May 2018 06:29:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzk4ND9hcGktdmVyc2lvbj0yMDE3LTExLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTkzNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"location\": \"centralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "484" + "482" ], "x-ms-client-request-id": [ - "36006d9f-7521-4374-9f24-81887aede000" + "ea34253a-029a-4a8b-a685-5aa13c154e75" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7984\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984\",\r\n \"etag\": \"W/\\\"aac5eea0-8d56-44bd-9afc-e48f7290b0f1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6335deae-163c-4824-a73c-d549a20d0b52\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"aac5eea0-8d56-44bd-9afc-e48f7290b0f1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9935\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935\",\r\n \"etag\": \"W/\\\"9e0bdc88-c05e-46f1-9793-2c4f5b237311\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"223f4fc6-71db-4702-8815-67958de39ff1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"9e0bdc88-c05e-46f1-9793-2c4f5b237311\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1076" + "1103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -388,10 +406,10 @@ "3" ], "x-ms-request-id": [ - "25a32209-6263-41d6-9694-5a4bf8465417" + "46328089-728f-4063-971c-8c7cfcaf119d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/25a32209-6263-41d6-9694-5a4bf8465417?api-version=2017-11-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/46328089-728f-4063-971c-8c7cfcaf119d?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -407,28 +425,92 @@ "1199" ], "x-ms-correlation-request-id": [ - "01718eb2-7e4a-4350-82d6-ae3e08791158" + "3ac31ee8-bca8-4db8-a50c-fe441801f3c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212455Z:01718eb2-7e4a-4350-82d6-ae3e08791158" + "WESTUS2:20180510T062929Z:3ac31ee8-bca8-4db8-a50c-fe441801f3c0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:24:55 GMT" + "Thu, 10 May 2018 06:29:28 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/25a32209-6263-41d6-9694-5a4bf8465417?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMjVhMzIyMDktNjI2My00MWQ2LTk2OTQtNWE0YmY4NDY1NDE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/46328089-728f-4063-971c-8c7cfcaf119d?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDYzMjgwODktNzI4Zi00MDYzLTk3MWMtOGM3Y2ZjYWYxMTlkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1ee703e8-8c68-4c62-9bf2-a079a84da3c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "b61e8bce-2a5d-46d8-b542-1e3599975aa2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T062939Z:b61e8bce-2a5d-46d8-b542-1e3599975aa2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 06:29:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/46328089-728f-4063-971c-8c7cfcaf119d?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDYzMjgwODktNzI4Zi00MDYzLTk3MWMtOGM3Y2ZjYWYxMTlkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -446,7 +528,7 @@ "no-cache" ], "x-ms-request-id": [ - "470cb8f1-ca40-47c0-9aac-bf5f010b7b96" + "65fe4534-72ce-4015-a11a-8a97203bd8da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -459,40 +541,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14997" ], "x-ms-correlation-request-id": [ - "2384d744-3036-489d-94dd-32cf4912a8f4" + "9a72231b-278b-413a-879a-a2abe10939c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212506Z:2384d744-3036-489d-94dd-32cf4912a8f4" + "WESTUS2:20180510T062949Z:9a72231b-278b-413a-879a-a2abe10939c1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:25:05 GMT" + "Thu, 10 May 2018 06:29:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps4925?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0OTI1P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps4531?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0NTMxP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86f8657a-e865-43b9-baf3-8424b28ba66b" + "2ac6f8cf-d2d0-4606-9b12-59b75f59cffc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps4925' under resource group 'ps3193' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps4531' under resource group 'ps6642' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "152" @@ -510,43 +595,46 @@ "gateway" ], "x-ms-request-id": [ - "5a3f969a-941e-409f-b657-5c9eddfb4dc4" + "961039b3-9859-42f4-b228-af0a8be2e99a" ], "x-ms-correlation-request-id": [ - "5a3f969a-941e-409f-b657-5c9eddfb4dc4" + "961039b3-9859-42f4-b228-af0a8be2e99a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212507Z:5a3f969a-941e-409f-b657-5c9eddfb4dc4" + "WESTUS2:20180510T062950Z:961039b3-9859-42f4-b228-af0a8be2e99a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 21:25:06 GMT" + "Thu, 10 May 2018 06:29:50 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps4925?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0OTI1P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps4531?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0NTMxP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4925\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps4925\",\r\n \"etag\": \"W/\\\"162a5bce-d37f-4fd9-aaf0-1b3f5e8828d3\\\"\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3bc1c4c3-9f8c-4c95-850b-27f6e9a020df\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps8621\",\r\n \"fqdn\": \"ps8621.centralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4531\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps4531\",\r\n \"etag\": \"W/\\\"d7d5cca8-c73a-4d05-87ad-4a9703e35c8d\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e32f112d-3e62-4604-9688-bde874098253\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1623\",\r\n \"fqdn\": \"ps1623.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "714" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -558,7 +646,7 @@ "no-cache" ], "x-ms-request-id": [ - "8d11e2a1-04eb-43e5-8b9d-333a43dcd713" + "04d59e83-93ad-48ff-bbe6-622aba9530ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,50 +655,53 @@ "no-cache" ], "ETag": [ - "W/\"162a5bce-d37f-4fd9-aaf0-1b3f5e8828d3\"" + "W/\"d7d5cca8-c73a-4d05-87ad-4a9703e35c8d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14991" ], "x-ms-correlation-request-id": [ - "1a27ca2d-8b7b-4757-9a28-432b50bd6668" + "c8f61ea4-3aa0-447f-8fb5-1c7c34df6abe" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212518Z:1a27ca2d-8b7b-4757-9a28-432b50bd6668" + "WESTUS2:20180510T063001Z:c8f61ea4-3aa0-447f-8fb5-1c7c34df6abe" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:25:17 GMT" + "Thu, 10 May 2018 06:30:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps4925?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0OTI1P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps4531?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0NTMxP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9245c7dc-32e0-48a8-8962-273710152804" + "72a1ca13-2305-4bb0-a3a8-502cb2f46f28" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4925\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps4925\",\r\n \"etag\": \"W/\\\"162a5bce-d37f-4fd9-aaf0-1b3f5e8828d3\\\"\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3bc1c4c3-9f8c-4c95-850b-27f6e9a020df\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps8621\",\r\n \"fqdn\": \"ps8621.centralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4531\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps4531\",\r\n \"etag\": \"W/\\\"d7d5cca8-c73a-4d05-87ad-4a9703e35c8d\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e32f112d-3e62-4604-9688-bde874098253\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1623\",\r\n \"fqdn\": \"ps1623.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "714" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -622,7 +713,7 @@ "no-cache" ], "x-ms-request-id": [ - "5d8f96d4-598d-426d-a87b-5b51d4c4cd39" + "e9df3711-633d-41d4-86f9-bfff0530f6f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -631,56 +722,59 @@ "no-cache" ], "ETag": [ - "W/\"162a5bce-d37f-4fd9-aaf0-1b3f5e8828d3\"" + "W/\"d7d5cca8-c73a-4d05-87ad-4a9703e35c8d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14990" ], "x-ms-correlation-request-id": [ - "c53c01be-f632-4647-8ab4-e22310734328" + "da5b7e2d-ea45-4b94-9d82-8e321c5d8427" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212518Z:c53c01be-f632-4647-8ab4-e22310734328" + "WESTUS2:20180510T063001Z:da5b7e2d-ea45-4b94-9d82-8e321c5d8427" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:25:18 GMT" + "Thu, 10 May 2018 06:30:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps4925?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0OTI1P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps4531?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0NTMxP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps8621\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"centralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1623\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "199" + "197" ], "x-ms-client-request-id": [ - "2f6cec43-4350-4f36-8efe-4c4e9159fce8" + "e7cb9110-8904-484b-bd91-cd32b23789a7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4925\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps4925\",\r\n \"etag\": \"W/\\\"99655a65-6206-4ec6-b5a1-fb2d6dabd722\\\"\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3bc1c4c3-9f8c-4c95-850b-27f6e9a020df\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps8621\",\r\n \"fqdn\": \"ps8621.centralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4531\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps4531\",\r\n \"etag\": \"W/\\\"93661563-4d1e-48db-a524-874175386ceb\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e32f112d-3e62-4604-9688-bde874098253\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps1623\",\r\n \"fqdn\": \"ps1623.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "713" + "732" ], "Content-Type": [ "application/json; charset=utf-8" @@ -695,10 +789,10 @@ "3" ], "x-ms-request-id": [ - "26ff6f38-82bf-431b-a215-f9c55bb3cf0b" + "e1a3f5a7-688e-4e79-b8e3-b74231a9f057" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/26ff6f38-82bf-431b-a215-f9c55bb3cf0b?api-version=2017-11-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/e1a3f5a7-688e-4e79-b8e3-b74231a9f057?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,28 +808,31 @@ "1198" ], "x-ms-correlation-request-id": [ - "3a33a3c8-0ed5-43f2-b280-4ae13a53a688" + "3be90d29-8c28-4d75-9bca-bd70a774d36f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212508Z:3a33a3c8-0ed5-43f2-b280-4ae13a53a688" + "WESTUS2:20180510T062951Z:3be90d29-8c28-4d75-9bca-bd70a774d36f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:25:07 GMT" + "Thu, 10 May 2018 06:29:51 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/26ff6f38-82bf-431b-a215-f9c55bb3cf0b?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMjZmZjZmMzgtODJiZi00MzFiLWEyMTUtZjljNTViYjNjZjBiP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/e1a3f5a7-688e-4e79-b8e3-b74231a9f057?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTFhM2Y1YTctNjg4ZS00ZTc5LWI4ZTMtYjc0MjMxYTlmMDU3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -753,7 +850,7 @@ "no-cache" ], "x-ms-request-id": [ - "3a640102-ebb3-4865-8116-56e373079558" + "1a7e013b-dd34-4e73-ad9c-c5b17baf6b31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -766,43 +863,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14992" ], "x-ms-correlation-request-id": [ - "284e672f-3ca5-407b-844b-78eeb3781128" + "7985cb4b-e4b9-4216-bb15-20abae9370eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212518Z:284e672f-3ca5-407b-844b-78eeb3781128" + "WESTUS2:20180510T063001Z:7985cb4b-e4b9-4216-bb15-20abae9370eb" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:25:17 GMT" + "Thu, 10 May 2018 06:30:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczI3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczM5OD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db20dced-63b6-4f20-9959-0608de4ae757" + "7b9fd7d4-2d88-401f-ba1c-9a97a1f8940d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/ps2712' under resource group 'ps3193' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/ps398' under resource group 'ps6642' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "157" + "156" ], "Content-Type": [ "application/json; charset=utf-8" @@ -817,43 +917,46 @@ "gateway" ], "x-ms-request-id": [ - "b0f9fa45-88ae-4ef2-bfa1-25f78d23e569" + "6db235f9-4f7a-408e-ba63-890fe02f556c" ], "x-ms-correlation-request-id": [ - "b0f9fa45-88ae-4ef2-bfa1-25f78d23e569" + "6db235f9-4f7a-408e-ba63-890fe02f556c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212518Z:b0f9fa45-88ae-4ef2-bfa1-25f78d23e569" + "WESTUS2:20180510T063001Z:6db235f9-4f7a-408e-ba63-890fe02f556c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 21:25:18 GMT" + "Thu, 10 May 2018 06:30:01 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczI3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczM5OD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps2712\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712\",\r\n \"etag\": \"W/\\\"ae243616-bad3-4a34-ad6f-95e9ac95f5b6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"926f8753-9b3a-4613-abbc-ae8c682a517d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps5413\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712/ipConfigurations/ps5413\",\r\n \"etag\": \"W/\\\"ae243616-bad3-4a34-ad6f-95e9ac95f5b6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps4925\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps398\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398\",\r\n \"etag\": \"W/\\\"44a2d369-9b91-40b3-8fdb-7dee27b3a147\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"849a4f49-e759-4169-bbdf-a317d3adc0a4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps8159\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398/ipConfigurations/ps8159\",\r\n \"etag\": \"W/\\\"44a2d369-9b91-40b3-8fdb-7dee27b3a147\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps4531\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1602" + "1596" ], "Content-Type": [ "application/json; charset=utf-8" @@ -865,7 +968,7 @@ "no-cache" ], "x-ms-request-id": [ - "f87b2a65-d7b5-4c83-b612-aaea845f35cd" + "c0a1dca8-b671-4050-a93a-5b7d0586f924" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -878,43 +981,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14832" + "14837" ], "x-ms-correlation-request-id": [ - "06243977-f3d8-43b6-a983-c559f0ce9540" + "899fd84e-dcde-453f-9fad-6327b444e837" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215124Z:06243977-f3d8-43b6-a983-c559f0ce9540" + "WESTUS2:20180510T065523Z:899fd84e-dcde-453f-9fad-6327b444e837" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:24 GMT" + "Thu, 10 May 2018 06:55:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczI3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczM5OD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef9f46ef-3754-42c4-9031-b3b11ceda76b" + "64ffa822-1aab-4be8-91a5-1fafd4d8320e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps2712\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712\",\r\n \"etag\": \"W/\\\"ae243616-bad3-4a34-ad6f-95e9ac95f5b6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"926f8753-9b3a-4613-abbc-ae8c682a517d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps5413\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712/ipConfigurations/ps5413\",\r\n \"etag\": \"W/\\\"ae243616-bad3-4a34-ad6f-95e9ac95f5b6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps4925\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps398\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398\",\r\n \"etag\": \"W/\\\"44a2d369-9b91-40b3-8fdb-7dee27b3a147\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"849a4f49-e759-4169-bbdf-a317d3adc0a4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps8159\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398/ipConfigurations/ps8159\",\r\n \"etag\": \"W/\\\"44a2d369-9b91-40b3-8fdb-7dee27b3a147\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps4531\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1602" + "1596" ], "Content-Type": [ "application/json; charset=utf-8" @@ -926,7 +1032,7 @@ "no-cache" ], "x-ms-request-id": [ - "c9aa2d19-26a9-4362-9f82-bc2d8f0f4f25" + "81e361f1-cac7-429f-ac6d-73378a3bad86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -939,43 +1045,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14831" + "14836" ], "x-ms-correlation-request-id": [ - "9df3513d-e139-476d-b1f8-476bb041d9a9" + "1df51675-aa42-48d1-b331-c8b816367c75" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215124Z:9df3513d-e139-476d-b1f8-476bb041d9a9" + "WESTUS2:20180510T065523Z:1df51675-aa42-48d1-b331-c8b816367c75" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:24 GMT" + "Thu, 10 May 2018 06:55:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczI3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczM5OD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "658dbc85-539a-42f4-8879-13490e584cbe" + "38a94ae4-d41f-4a6c-b06e-4e12e0f224af" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps2712\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712\",\r\n \"etag\": \"W/\\\"ae243616-bad3-4a34-ad6f-95e9ac95f5b6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"926f8753-9b3a-4613-abbc-ae8c682a517d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps5413\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712/ipConfigurations/ps5413\",\r\n \"etag\": \"W/\\\"ae243616-bad3-4a34-ad6f-95e9ac95f5b6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps4925\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps398\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398\",\r\n \"etag\": \"W/\\\"44a2d369-9b91-40b3-8fdb-7dee27b3a147\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"849a4f49-e759-4169-bbdf-a317d3adc0a4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps8159\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398/ipConfigurations/ps8159\",\r\n \"etag\": \"W/\\\"44a2d369-9b91-40b3-8fdb-7dee27b3a147\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps4531\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1602" + "1596" ], "Content-Type": [ "application/json; charset=utf-8" @@ -987,7 +1096,7 @@ "no-cache" ], "x-ms-request-id": [ - "4f792197-0171-44a6-a8ae-d19d6adcf096" + "de0a1115-31be-4697-8404-a44401cc95bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1000,49 +1109,52 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14835" ], "x-ms-correlation-request-id": [ - "2ddf44ee-6a2e-4a8f-893f-d77d421c14e5" + "4f943f0c-5127-4fa4-8ca1-97add8ff2d48" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215124Z:2ddf44ee-6a2e-4a8f-893f-d77d421c14e5" + "WESTUS2:20180510T065523Z:4f943f0c-5127-4fa4-8ca1-97add8ff2d48" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:24 GMT" + "Thu, 10 May 2018 06:55:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczI3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczM5OD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps4925\"\r\n }\r\n },\r\n \"name\": \"ps5413\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfiguration/ps5413\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"centralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps4531\"\r\n }\r\n },\r\n \"name\": \"ps8159\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfiguration/ps8159\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1059" + "1057" ], "x-ms-client-request-id": [ - "dc5f8442-3e55-4bf7-899f-2ae055528b48" + "995bbee2-433b-4c21-8b69-1fb550280684" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps2712\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712\",\r\n \"etag\": \"W/\\\"c8f2dc77-321d-4383-be9b-14a407c818c7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"926f8753-9b3a-4613-abbc-ae8c682a517d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps5413\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712/ipConfigurations/ps5413\",\r\n \"etag\": \"W/\\\"c8f2dc77-321d-4383-be9b-14a407c818c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps4925\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps398\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398\",\r\n \"etag\": \"W/\\\"efb19d17-f8fe-43dd-bdce-0f613a86419f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"849a4f49-e759-4169-bbdf-a317d3adc0a4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps8159\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398/ipConfigurations/ps8159\",\r\n \"etag\": \"W/\\\"efb19d17-f8fe-43dd-bdce-0f613a86419f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps4531\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1682" + "1713" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1057,10 +1169,10 @@ "10" ], "x-ms-request-id": [ - "900b1e45-4cc3-4655-b35c-39668714701c" + "f961cd70-d4d9-48b5-8991-cf89817171f2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1076,28 +1188,31 @@ "1197" ], "x-ms-correlation-request-id": [ - "b3ffab63-b9ee-4e5f-b080-419ef8b84a48" + "80460973-ad18-4ca7-9ea1-e479e356262c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212519Z:b3ffab63-b9ee-4e5f-b080-419ef8b84a48" + "WESTUS2:20180510T063002Z:80460973-ad18-4ca7-9ea1-e479e356262c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:25:19 GMT" + "Thu, 10 May 2018 06:30:01 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1118,7 +1233,7 @@ "10" ], "x-ms-request-id": [ - "e16f33ac-e56d-4a78-9112-1a45467d3076" + "78afa2b7-c50a-41ea-98f3-05e57935def5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1131,31 +1246,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14988" ], "x-ms-correlation-request-id": [ - "b5063ed9-afb6-4714-a51e-cdc2be3d3a52" + "fce52979-a2c7-4e55-b4e9-be47c7054409" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212529Z:b5063ed9-afb6-4714-a51e-cdc2be3d3a52" + "WESTUS2:20180510T063012Z:fce52979-a2c7-4e55-b4e9-be47c7054409" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:25:29 GMT" + "Thu, 10 May 2018 06:30:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1176,7 +1294,7 @@ "10" ], "x-ms-request-id": [ - "158ff369-d0ba-4d11-b9ae-22d99cba3970" + "f453642b-1049-402b-9357-764aea42244e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1189,31 +1307,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14987" ], "x-ms-correlation-request-id": [ - "c598eda9-ce08-4efe-a66d-7bc78332125e" + "0e53e322-e20f-4405-81b9-b7371608713c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212540Z:c598eda9-ce08-4efe-a66d-7bc78332125e" + "WESTUS2:20180510T063022Z:0e53e322-e20f-4405-81b9-b7371608713c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:25:39 GMT" + "Thu, 10 May 2018 06:30:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1234,7 +1355,7 @@ "10" ], "x-ms-request-id": [ - "1ca483ee-2522-4b79-a554-4b342b585c8d" + "78f28d62-f2b7-4846-95cc-5de4f458417e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1247,31 +1368,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14986" ], "x-ms-correlation-request-id": [ - "273dfa8e-9f76-45c0-bf2b-9751f0be0d1a" + "2412e5b1-0eb3-4893-9ffc-5aa1bdb1a518" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212550Z:273dfa8e-9f76-45c0-bf2b-9751f0be0d1a" + "WESTUS2:20180510T063032Z:2412e5b1-0eb3-4893-9ffc-5aa1bdb1a518" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:25:49 GMT" + "Thu, 10 May 2018 06:30:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1292,7 +1416,7 @@ "10" ], "x-ms-request-id": [ - "7660bd5e-7b06-4c62-bef5-b92634796654" + "c85bcbee-0ae0-4714-bb50-9720c942e047" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1305,31 +1429,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14985" ], "x-ms-correlation-request-id": [ - "59371cc1-a99e-4ad8-b5d4-a2defb4ef090" + "841e61a0-4b73-47e9-bc37-7286b6bc011a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212600Z:59371cc1-a99e-4ad8-b5d4-a2defb4ef090" + "WESTUS2:20180510T063042Z:841e61a0-4b73-47e9-bc37-7286b6bc011a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:26:00 GMT" + "Thu, 10 May 2018 06:30:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1350,7 +1477,7 @@ "10" ], "x-ms-request-id": [ - "4330d0c8-515b-4a37-8e1a-b88847f9b5e5" + "63c797c5-36a8-4bb5-ae78-149d50753038" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1363,31 +1490,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14984" ], "x-ms-correlation-request-id": [ - "d88b3a20-26af-4a58-acb1-9cb178d1acd6" + "db0473c8-72db-4d95-9b43-f8a058fb509b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212610Z:d88b3a20-26af-4a58-acb1-9cb178d1acd6" + "WESTUS2:20180510T063052Z:db0473c8-72db-4d95-9b43-f8a058fb509b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:26:10 GMT" + "Thu, 10 May 2018 06:30:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1408,11 +1538,14 @@ "10" ], "x-ms-request-id": [ - "69e32511-669b-4385-8c72-68bf55c6564d" + "776627e7-3e88-4a64-bff4-8cd4f85fa3ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], "Cache-Control": [ "no-cache" ], @@ -1420,32 +1553,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" - ], "x-ms-correlation-request-id": [ - "324a2463-5f44-4a1b-a641-33d3ac4b2d64" + "876fe5db-347c-49ff-b2df-a5e568c5fc2e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212621Z:324a2463-5f44-4a1b-a641-33d3ac4b2d64" + "WESTUS2:20180510T063102Z:876fe5db-347c-49ff-b2df-a5e568c5fc2e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:26:20 GMT" + "Thu, 10 May 2018 06:31:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1466,7 +1599,7 @@ "10" ], "x-ms-request-id": [ - "3a5148f4-aa27-47d6-a6e9-e93ff0c45a5f" + "74f558b8-b88f-400d-9046-7ddb16810972" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1479,31 +1612,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14982" ], "x-ms-correlation-request-id": [ - "c36b574b-c246-460a-9b40-5b480c1aa19c" + "b00d4968-bda9-430f-8eae-b743b90bd89b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212631Z:c36b574b-c246-460a-9b40-5b480c1aa19c" + "WESTUS2:20180510T063112Z:b00d4968-bda9-430f-8eae-b743b90bd89b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:26:30 GMT" + "Thu, 10 May 2018 06:31:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1524,7 +1660,7 @@ "10" ], "x-ms-request-id": [ - "e13851eb-f675-4117-80f5-803016a5433b" + "b77df0ed-c020-4c40-85ee-7df4c5fa8998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1537,31 +1673,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14981" ], "x-ms-correlation-request-id": [ - "2a2a0848-c9cb-4bc9-b888-5d0b8609e0d0" + "292b3fee-0c23-46ac-a835-3e7dd104afde" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212641Z:2a2a0848-c9cb-4bc9-b888-5d0b8609e0d0" + "WESTUS2:20180510T063122Z:292b3fee-0c23-46ac-a835-3e7dd104afde" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:26:40 GMT" + "Thu, 10 May 2018 06:31:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1582,7 +1721,7 @@ "10" ], "x-ms-request-id": [ - "d3a49e77-5a41-4f3a-afd1-e1f82e93f0a0" + "f2bb7094-cf7a-4155-b50c-360aae327076" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1595,31 +1734,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14980" ], "x-ms-correlation-request-id": [ - "f7e9f43d-10cb-401a-954f-edcd6dedbfc9" + "7d6ee588-7d8c-4d62-aed4-ddb4daad2c0e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212651Z:f7e9f43d-10cb-401a-954f-edcd6dedbfc9" + "WESTUS2:20180510T063132Z:7d6ee588-7d8c-4d62-aed4-ddb4daad2c0e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:26:50 GMT" + "Thu, 10 May 2018 06:31:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1640,7 +1782,7 @@ "10" ], "x-ms-request-id": [ - "b6fa3e9d-cdba-4e13-b8a3-45ccd500e9f4" + "eae33275-6774-48fb-80f2-78d1c5563e40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1653,31 +1795,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14979" ], "x-ms-correlation-request-id": [ - "31e473c4-c820-47d4-b6d0-8879c22593b5" + "ef8ff6f2-edd3-4bec-8a59-5c31139da0ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212702Z:31e473c4-c820-47d4-b6d0-8879c22593b5" + "WESTUS2:20180510T063142Z:ef8ff6f2-edd3-4bec-8a59-5c31139da0ba" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:27:01 GMT" + "Thu, 10 May 2018 06:31:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1698,7 +1843,7 @@ "10" ], "x-ms-request-id": [ - "7b08877f-4356-4336-aca3-ff0ec90dafc0" + "279a1f6f-e15c-46fb-b437-66507ea5e6b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1711,31 +1856,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14978" ], "x-ms-correlation-request-id": [ - "7c9afca1-9185-4627-8de2-5addc888163f" + "61929d2a-21a4-4756-93f2-8a0022edad09" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212712Z:7c9afca1-9185-4627-8de2-5addc888163f" + "WESTUS2:20180510T063152Z:61929d2a-21a4-4756-93f2-8a0022edad09" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:27:11 GMT" + "Thu, 10 May 2018 06:31:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1756,7 +1904,7 @@ "10" ], "x-ms-request-id": [ - "49063e56-2b20-4192-9c9d-96b56eb5a850" + "5b77ecde-13a6-4def-9eee-387fb62c00f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1769,31 +1917,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14977" ], "x-ms-correlation-request-id": [ - "12b8b540-ffe0-4909-9518-74771410e61a" + "6da9b7a0-b702-459d-878a-90fc4df258fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212722Z:12b8b540-ffe0-4909-9518-74771410e61a" + "WESTUS2:20180510T063203Z:6da9b7a0-b702-459d-878a-90fc4df258fb" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:27:21 GMT" + "Thu, 10 May 2018 06:32:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1814,7 +1965,7 @@ "10" ], "x-ms-request-id": [ - "b8d24733-786d-4064-9715-e0e7b3c25b2a" + "73205a75-5302-4b84-a9ee-0cd99d95f7e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1827,31 +1978,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14976" ], "x-ms-correlation-request-id": [ - "4c0098b8-7e58-4c64-9271-2820041e72dd" + "8e6f2c6b-d6a3-45bf-a8a4-c28bf5cb580c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212732Z:4c0098b8-7e58-4c64-9271-2820041e72dd" + "WESTUS2:20180510T063213Z:8e6f2c6b-d6a3-45bf-a8a4-c28bf5cb580c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:27:31 GMT" + "Thu, 10 May 2018 06:32:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1872,7 +2026,7 @@ "10" ], "x-ms-request-id": [ - "247911f3-e27d-4e37-95ed-0cbfc72eca5b" + "026843b6-5d70-448e-913f-8a5b22a5c06b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1885,31 +2039,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14975" ], "x-ms-correlation-request-id": [ - "2458c90e-7bf1-4069-8cbf-2f3965b54542" + "d5942395-ad2c-4ec4-a2c9-ff0e952777b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212743Z:2458c90e-7bf1-4069-8cbf-2f3965b54542" + "WESTUS2:20180510T063223Z:d5942395-ad2c-4ec4-a2c9-ff0e952777b4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:27:43 GMT" + "Thu, 10 May 2018 06:32:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1930,11 +2087,14 @@ "10" ], "x-ms-request-id": [ - "7cc7ca47-8ce7-4c39-9d66-dd21aac69ab4" + "cee47988-1e1f-4742-9d13-f8f91e6b027c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], "Cache-Control": [ "no-cache" ], @@ -1942,32 +2102,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" - ], "x-ms-correlation-request-id": [ - "0e0c15ff-95ee-4340-b52f-d1e2db0e770b" + "ce59448c-f537-4d2f-95f6-336d883e0144" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212753Z:0e0c15ff-95ee-4340-b52f-d1e2db0e770b" + "WESTUS2:20180510T063233Z:ce59448c-f537-4d2f-95f6-336d883e0144" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:27:53 GMT" + "Thu, 10 May 2018 06:32:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1988,7 +2148,7 @@ "10" ], "x-ms-request-id": [ - "6e0b5897-a77e-44ec-a3df-eeb8da0c7380" + "65837785-da55-4dba-a8bb-2905f601094b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2001,31 +2161,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14973" ], "x-ms-correlation-request-id": [ - "a3d2e44a-42cf-4218-b21b-7551d35b6ce0" + "04f00246-9687-43ef-b243-cc1de1b6110b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212803Z:a3d2e44a-42cf-4218-b21b-7551d35b6ce0" + "WESTUS2:20180510T063243Z:04f00246-9687-43ef-b243-cc1de1b6110b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:28:02 GMT" + "Thu, 10 May 2018 06:32:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2046,7 +2209,7 @@ "10" ], "x-ms-request-id": [ - "22961fad-54a9-42b6-9de1-151a07ee69d4" + "874942b1-fdfc-4e22-a541-7f702f363eb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2059,31 +2222,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14972" ], "x-ms-correlation-request-id": [ - "bf64d928-b6e3-476e-b898-55b941fe1bf7" + "fc08434c-7585-4462-b780-a8df9b17e993" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212813Z:bf64d928-b6e3-476e-b898-55b941fe1bf7" + "WESTUS2:20180510T063253Z:fc08434c-7585-4462-b780-a8df9b17e993" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:28:13 GMT" + "Thu, 10 May 2018 06:32:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2104,7 +2270,7 @@ "10" ], "x-ms-request-id": [ - "fdcabc0b-bbe2-4dfe-93c4-803f1b71dd4e" + "ce557afa-3483-471c-9adb-8d7ee94fff44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2117,31 +2283,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14971" ], "x-ms-correlation-request-id": [ - "1f8f9cf7-3f67-430f-ba74-4c513ac60a73" + "e0e34756-c23c-4f5b-bad2-271c644312a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212823Z:1f8f9cf7-3f67-430f-ba74-4c513ac60a73" + "WESTUS2:20180510T063303Z:e0e34756-c23c-4f5b-bad2-271c644312a7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:28:23 GMT" + "Thu, 10 May 2018 06:33:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2162,7 +2331,7 @@ "10" ], "x-ms-request-id": [ - "abf24322-ae98-4900-b5a2-ac1742366cdc" + "2541d84a-2f47-4a45-ab55-4a4c4a9e61cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2175,31 +2344,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14970" ], "x-ms-correlation-request-id": [ - "595493b2-905b-474f-a90e-3d1b4ab53462" + "c1c20eac-02b6-4992-82be-82ce8a529638" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212834Z:595493b2-905b-474f-a90e-3d1b4ab53462" + "WESTUS2:20180510T063313Z:c1c20eac-02b6-4992-82be-82ce8a529638" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:28:33 GMT" + "Thu, 10 May 2018 06:33:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2220,7 +2392,7 @@ "10" ], "x-ms-request-id": [ - "f8394a78-e10f-47bb-ad96-d15568a132d8" + "d9ddef09-000f-4aab-8d0f-65cc4a2ca082" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2233,31 +2405,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14969" ], "x-ms-correlation-request-id": [ - "8268ae59-4ddc-499f-9126-d2e3ad27a2ff" + "db8b18ea-3929-40ad-b8cf-8f1f853d2d8b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212844Z:8268ae59-4ddc-499f-9126-d2e3ad27a2ff" + "WESTUS2:20180510T063323Z:db8b18ea-3929-40ad-b8cf-8f1f853d2d8b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:28:44 GMT" + "Thu, 10 May 2018 06:33:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2278,7 +2453,7 @@ "10" ], "x-ms-request-id": [ - "46e8f4ec-3bce-4c6c-a9e6-245448f12a2d" + "3b17e73f-42fd-4bb4-aae1-d0075df3469a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2291,31 +2466,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14968" ], "x-ms-correlation-request-id": [ - "e7c95bbe-4fdc-46f9-bf49-c610885d6a6e" + "fac88b98-6450-46bc-9118-2a67610e9b75" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212854Z:e7c95bbe-4fdc-46f9-bf49-c610885d6a6e" + "WESTUS2:20180510T063333Z:fac88b98-6450-46bc-9118-2a67610e9b75" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:28:54 GMT" + "Thu, 10 May 2018 06:33:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2336,7 +2514,7 @@ "10" ], "x-ms-request-id": [ - "810cf170-2ee1-45b6-a552-051143869113" + "b079ab51-b188-4957-ab27-639d7835fb3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2349,31 +2527,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14967" ], "x-ms-correlation-request-id": [ - "ed30fea9-14da-47af-913f-55ee2f8fb06f" + "492537ee-14b8-4ac2-b007-b391077e68d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212904Z:ed30fea9-14da-47af-913f-55ee2f8fb06f" + "WESTUS2:20180510T063343Z:492537ee-14b8-4ac2-b007-b391077e68d5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:29:04 GMT" + "Thu, 10 May 2018 06:33:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2394,7 +2575,7 @@ "10" ], "x-ms-request-id": [ - "bd4a9c63-e521-49f9-88d4-21b1f465d4f2" + "bccf233f-8bb2-46a5-97e4-7b1f7b104fdd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2407,31 +2588,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14966" ], "x-ms-correlation-request-id": [ - "9dee6a45-d8e9-4bde-adde-553cc08595a1" + "db6aec89-c549-47b9-8620-b98dcc59071a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212915Z:9dee6a45-d8e9-4bde-adde-553cc08595a1" + "WESTUS2:20180510T063353Z:db6aec89-c549-47b9-8620-b98dcc59071a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:29:14 GMT" + "Thu, 10 May 2018 06:33:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2452,11 +2636,14 @@ "10" ], "x-ms-request-id": [ - "2210b824-dc9b-4203-8ee9-7b7670889d8f" + "a00558dd-3759-45db-903f-479b58875c4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], "Cache-Control": [ "no-cache" ], @@ -2464,32 +2651,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" - ], "x-ms-correlation-request-id": [ - "e2c452dd-74fe-49b4-b602-506663fc1b71" + "eb1e18fa-204c-40b3-bde5-6b6a5e369894" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212925Z:e2c452dd-74fe-49b4-b602-506663fc1b71" + "WESTUS2:20180510T063403Z:eb1e18fa-204c-40b3-bde5-6b6a5e369894" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:29:24 GMT" + "Thu, 10 May 2018 06:34:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2510,7 +2697,7 @@ "10" ], "x-ms-request-id": [ - "97852ed0-e9af-4b5a-8357-8628f35070ef" + "4c85d802-5027-4190-8d8e-34b94e92693d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2523,31 +2710,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14964" ], "x-ms-correlation-request-id": [ - "b5f7296c-d930-4966-a193-3d9e9f9303c0" + "189e5c60-f2b4-47c3-876d-797ee9c05a9a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212935Z:b5f7296c-d930-4966-a193-3d9e9f9303c0" + "WESTUS2:20180510T063414Z:189e5c60-f2b4-47c3-876d-797ee9c05a9a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:29:34 GMT" + "Thu, 10 May 2018 06:34:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2568,7 +2758,7 @@ "10" ], "x-ms-request-id": [ - "12e1d406-9c3a-4d52-9617-d22ecd397b73" + "9af287f4-05aa-4a7c-a9ca-85c9e37208fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2581,31 +2771,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14963" ], "x-ms-correlation-request-id": [ - "55a56eaf-7e4b-42f8-908b-e9152c73b665" + "1c3cb958-5256-4ce7-863a-156693d2ffcd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212945Z:55a56eaf-7e4b-42f8-908b-e9152c73b665" + "WESTUS2:20180510T063424Z:1c3cb958-5256-4ce7-863a-156693d2ffcd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:29:44 GMT" + "Thu, 10 May 2018 06:34:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2626,7 +2819,7 @@ "10" ], "x-ms-request-id": [ - "6ab8235e-6faf-4719-bdb7-df4056b3283b" + "5e0207d0-cc8f-48e6-a21a-e86dbc14ab6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2639,31 +2832,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14962" ], "x-ms-correlation-request-id": [ - "28f4190f-5547-419b-ae84-a6c2f203349c" + "208f3e24-9906-4351-b4fe-2b5e8dbe3437" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T212955Z:28f4190f-5547-419b-ae84-a6c2f203349c" + "WESTUS2:20180510T063434Z:208f3e24-9906-4351-b4fe-2b5e8dbe3437" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:29:55 GMT" + "Thu, 10 May 2018 06:34:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2684,7 +2880,7 @@ "10" ], "x-ms-request-id": [ - "6b384e2e-f6b8-40e6-8d74-414170311c0f" + "61fef5f2-df84-4869-ac59-0635121cd6a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2697,31 +2893,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14961" ], "x-ms-correlation-request-id": [ - "3de6bd17-0398-4a91-87c3-0502327a4336" + "91da4699-bed7-4b95-aff3-c23f975a9336" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213006Z:3de6bd17-0398-4a91-87c3-0502327a4336" + "WESTUS2:20180510T063444Z:91da4699-bed7-4b95-aff3-c23f975a9336" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:30:05 GMT" + "Thu, 10 May 2018 06:34:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2742,7 +2941,7 @@ "10" ], "x-ms-request-id": [ - "44e8851a-5471-4d6c-bbfc-605d1cbc83d0" + "b9f92a89-50af-41b3-8f98-56474bd61867" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2755,31 +2954,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14960" ], "x-ms-correlation-request-id": [ - "3f7fc644-1985-46de-97c0-00008739d7d8" + "add772c7-5d08-46e3-baa6-9fdb0f98ab86" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213016Z:3f7fc644-1985-46de-97c0-00008739d7d8" + "WESTUS2:20180510T063454Z:add772c7-5d08-46e3-baa6-9fdb0f98ab86" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:30:16 GMT" + "Thu, 10 May 2018 06:34:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2800,7 +3002,7 @@ "10" ], "x-ms-request-id": [ - "7772c93b-8bce-4cb0-9c00-da0f8035da14" + "68eefbc5-d440-4f07-b1c6-bae4f07ec617" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2813,31 +3015,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14959" ], "x-ms-correlation-request-id": [ - "9182f1d6-fc0b-4209-9ccc-01b965375db2" + "196a2600-325c-4e17-b01a-c7bd0f0f29a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213026Z:9182f1d6-fc0b-4209-9ccc-01b965375db2" + "WESTUS2:20180510T063504Z:196a2600-325c-4e17-b01a-c7bd0f0f29a8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:30:26 GMT" + "Thu, 10 May 2018 06:35:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2858,7 +3063,7 @@ "10" ], "x-ms-request-id": [ - "f05f20fa-95b3-4ff4-bfd5-576104eb001f" + "3f5e8f00-ad7f-42d4-9a52-1c80308e071a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2871,31 +3076,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14958" ], "x-ms-correlation-request-id": [ - "62a79020-3c9c-49b6-ada2-9afc3d8e478c" + "7c3427d9-b45e-4d6f-b04a-75e31cafb84e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213036Z:62a79020-3c9c-49b6-ada2-9afc3d8e478c" + "WESTUS2:20180510T063514Z:7c3427d9-b45e-4d6f-b04a-75e31cafb84e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:30:36 GMT" + "Thu, 10 May 2018 06:35:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2916,7 +3124,7 @@ "10" ], "x-ms-request-id": [ - "cd46f718-1175-440b-a67d-afc9286bec14" + "21625289-6ce9-4335-a8bd-de826e73a942" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2929,31 +3137,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14957" ], "x-ms-correlation-request-id": [ - "08a95709-b0fd-438c-abfe-08aa545556a5" + "cfb592dc-91ad-4700-99d1-e2c0ed12a13c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213047Z:08a95709-b0fd-438c-abfe-08aa545556a5" + "WESTUS2:20180510T063524Z:cfb592dc-91ad-4700-99d1-e2c0ed12a13c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:30:47 GMT" + "Thu, 10 May 2018 06:35:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2974,11 +3185,14 @@ "10" ], "x-ms-request-id": [ - "1eb6ad4d-026b-487d-879d-700844d9f399" + "fdb7506b-9964-48b8-8fa3-925a30138e11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], "Cache-Control": [ "no-cache" ], @@ -2986,32 +3200,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" - ], "x-ms-correlation-request-id": [ - "68110efd-6b26-438c-858d-2123771aeb3d" + "bddac2fd-4cff-4f32-bde9-a7b23dc10b5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213057Z:68110efd-6b26-438c-858d-2123771aeb3d" + "WESTUS2:20180510T063534Z:bddac2fd-4cff-4f32-bde9-a7b23dc10b5e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:30:57 GMT" + "Thu, 10 May 2018 06:35:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3032,7 +3246,7 @@ "10" ], "x-ms-request-id": [ - "5279e440-005c-4074-baf4-d15dae510894" + "10b8aa8e-73b6-4866-a0f4-781d4440376b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3045,31 +3259,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14955" ], "x-ms-correlation-request-id": [ - "f2e66f8a-452e-4483-80f1-9525ef2e9d37" + "9b8cdd25-0aad-4abc-9038-e4cdde2d06ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213107Z:f2e66f8a-452e-4483-80f1-9525ef2e9d37" + "WESTUS2:20180510T063544Z:9b8cdd25-0aad-4abc-9038-e4cdde2d06ee" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:31:07 GMT" + "Thu, 10 May 2018 06:35:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3090,7 +3307,7 @@ "10" ], "x-ms-request-id": [ - "95f41c6f-0c90-413e-a099-e3a9b158cc18" + "49bc0490-96a3-41e6-a920-74bcaed89d22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3103,31 +3320,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14954" ], "x-ms-correlation-request-id": [ - "189fea3a-53da-42b9-ad95-dd3cbcd12697" + "45e40bc9-2d1f-43e9-8ff5-3433e2fcb718" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213117Z:189fea3a-53da-42b9-ad95-dd3cbcd12697" + "WESTUS2:20180510T063554Z:45e40bc9-2d1f-43e9-8ff5-3433e2fcb718" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:31:17 GMT" + "Thu, 10 May 2018 06:35:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3148,7 +3368,7 @@ "10" ], "x-ms-request-id": [ - "e22d728d-4f0f-42dd-b847-8e495c283946" + "87a071b7-b22c-4308-b077-78cfc5e8fc33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3161,31 +3381,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14953" ], "x-ms-correlation-request-id": [ - "d97b2e2b-f816-4656-9933-d6c0d775232a" + "6034807f-6637-45dc-bf5b-bff0b85a4d77" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213128Z:d97b2e2b-f816-4656-9933-d6c0d775232a" + "WESTUS2:20180510T063604Z:6034807f-6637-45dc-bf5b-bff0b85a4d77" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:31:27 GMT" + "Thu, 10 May 2018 06:36:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3206,7 +3429,7 @@ "10" ], "x-ms-request-id": [ - "78d34b30-e6c2-4955-ba68-04af642da4d8" + "ff16fc77-c58a-4d26-bc83-dcd1f5563bc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3219,31 +3442,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14952" ], "x-ms-correlation-request-id": [ - "458e8bf5-6ae4-4eba-b2aa-41d522a89762" + "f21c0cb7-30b3-4c72-a1aa-88eb95dad486" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213138Z:458e8bf5-6ae4-4eba-b2aa-41d522a89762" + "WESTUS2:20180510T063614Z:f21c0cb7-30b3-4c72-a1aa-88eb95dad486" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:31:37 GMT" + "Thu, 10 May 2018 06:36:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3264,7 +3490,7 @@ "10" ], "x-ms-request-id": [ - "890d2810-36bc-485a-bf30-1551ab70ad92" + "57958ac8-9a5e-4d27-a672-11243fdf67b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3277,31 +3503,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14951" ], "x-ms-correlation-request-id": [ - "b0b08d2e-8e48-480e-9e36-a71cdb36ea6a" + "f6a47e3a-ffa2-454b-ba8a-340ce7c50796" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213148Z:b0b08d2e-8e48-480e-9e36-a71cdb36ea6a" + "WESTUS2:20180510T063624Z:f6a47e3a-ffa2-454b-ba8a-340ce7c50796" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:31:48 GMT" + "Thu, 10 May 2018 06:36:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3322,7 +3551,7 @@ "10" ], "x-ms-request-id": [ - "05b8810e-4471-47be-a7df-90d50abae0e9" + "73f751cf-2574-4217-8e19-7f9011de4119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3335,31 +3564,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14950" ], "x-ms-correlation-request-id": [ - "0a131005-f525-45ae-b059-3dbd623d1ff2" + "4a03afd5-d379-4dfe-83f5-4e1f7a615b41" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213158Z:0a131005-f525-45ae-b059-3dbd623d1ff2" + "WESTUS2:20180510T063634Z:4a03afd5-d379-4dfe-83f5-4e1f7a615b41" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:31:58 GMT" + "Thu, 10 May 2018 06:36:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3380,7 +3612,7 @@ "10" ], "x-ms-request-id": [ - "e61673e4-1712-4be6-8677-4ca67f4fb846" + "22ac9561-dc93-4434-a188-c56e4ff46e2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3393,31 +3625,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14949" ], "x-ms-correlation-request-id": [ - "15130e5d-56e9-4476-96ee-333c3bd60167" + "12f044cf-e80b-47ac-9b49-ebf4639a2858" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213208Z:15130e5d-56e9-4476-96ee-333c3bd60167" + "WESTUS2:20180510T063645Z:12f044cf-e80b-47ac-9b49-ebf4639a2858" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:32:08 GMT" + "Thu, 10 May 2018 06:36:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3438,7 +3673,7 @@ "10" ], "x-ms-request-id": [ - "cfd7b1fa-369f-4ed2-b4f2-60443048457d" + "adf0baa7-52ce-4727-a0cf-a2e5ecab1752" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3451,31 +3686,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14948" ], "x-ms-correlation-request-id": [ - "9e329d4c-4c30-4045-b7d3-8ba6bca7e0ab" + "19611e72-4d68-4eeb-850a-9f1cf60f6bf5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213219Z:9e329d4c-4c30-4045-b7d3-8ba6bca7e0ab" + "WESTUS2:20180510T063655Z:19611e72-4d68-4eeb-850a-9f1cf60f6bf5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:32:18 GMT" + "Thu, 10 May 2018 06:36:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3496,11 +3734,14 @@ "10" ], "x-ms-request-id": [ - "7ab7567d-e102-43af-8238-e1fc0e8fb2a1" + "b5d78883-135f-47bb-a3fa-9aeb5379f235" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], "Cache-Control": [ "no-cache" ], @@ -3508,32 +3749,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" - ], "x-ms-correlation-request-id": [ - "b4d430b0-0e29-4b45-8957-f99e1111d4c7" + "02599a7a-cbd5-4c6a-a4e0-330bc41d0a81" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213229Z:b4d430b0-0e29-4b45-8957-f99e1111d4c7" + "WESTUS2:20180510T063705Z:02599a7a-cbd5-4c6a-a4e0-330bc41d0a81" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:32:28 GMT" + "Thu, 10 May 2018 06:37:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3554,7 +3795,7 @@ "10" ], "x-ms-request-id": [ - "34c5067c-122b-4d19-a33f-7a5ffa2df4a2" + "38522cb6-a417-4e8e-aac7-a8820a98bb8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3567,31 +3808,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14946" ], "x-ms-correlation-request-id": [ - "ccb601f2-cd3a-4e48-a032-3e489660fe27" + "ae580bb5-bd21-4d09-b66f-860cf243c142" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213239Z:ccb601f2-cd3a-4e48-a032-3e489660fe27" + "WESTUS2:20180510T063715Z:ae580bb5-bd21-4d09-b66f-860cf243c142" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:32:39 GMT" + "Thu, 10 May 2018 06:37:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3612,7 +3856,7 @@ "10" ], "x-ms-request-id": [ - "34977295-7a12-491a-881e-19a2cf48670e" + "fbaf3730-92e8-4b2f-851c-15982e43d565" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3625,31 +3869,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14945" ], "x-ms-correlation-request-id": [ - "113633f1-1f3a-440b-a79d-17ef102228ff" + "6be0b2cf-ffe5-4039-b5b5-5a685d84affe" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213249Z:113633f1-1f3a-440b-a79d-17ef102228ff" + "WESTUS2:20180510T063725Z:6be0b2cf-ffe5-4039-b5b5-5a685d84affe" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:32:49 GMT" + "Thu, 10 May 2018 06:37:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3670,7 +3917,7 @@ "10" ], "x-ms-request-id": [ - "3faebb24-297e-45aa-a457-bf840b652c19" + "3e8787f9-c8db-44f3-93b5-e31a54bcefb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3683,31 +3930,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14944" ], "x-ms-correlation-request-id": [ - "2d01ed3f-ee5c-4499-a351-013a368bd896" + "f3f463d2-f9c3-4739-9d22-9ab1d547c51a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213259Z:2d01ed3f-ee5c-4499-a351-013a368bd896" + "WESTUS2:20180510T063735Z:f3f463d2-f9c3-4739-9d22-9ab1d547c51a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:32:59 GMT" + "Thu, 10 May 2018 06:37:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3728,7 +3978,7 @@ "10" ], "x-ms-request-id": [ - "325c6c08-5e93-4766-8b84-ba768879520a" + "798683ed-a154-4737-9497-731c07dc7938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3741,31 +3991,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14943" ], "x-ms-correlation-request-id": [ - "5a42fb05-d608-440a-95e8-a7ea53003573" + "c67167c1-dcf6-41ce-8f18-cbcfe2c20d69" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213310Z:5a42fb05-d608-440a-95e8-a7ea53003573" + "WESTUS2:20180510T063745Z:c67167c1-dcf6-41ce-8f18-cbcfe2c20d69" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:33:09 GMT" + "Thu, 10 May 2018 06:37:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3786,7 +4039,7 @@ "10" ], "x-ms-request-id": [ - "f1729314-0a35-46b0-b106-bd3a34106b24" + "e5b9f34b-c6e4-48ff-b4e0-e599a3299748" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3799,31 +4052,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14942" ], "x-ms-correlation-request-id": [ - "84084172-3bc4-4693-8095-202db567dd1f" + "58ae6855-28b6-442d-971c-12b1daad626c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213320Z:84084172-3bc4-4693-8095-202db567dd1f" + "WESTUS2:20180510T063755Z:58ae6855-28b6-442d-971c-12b1daad626c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:33:19 GMT" + "Thu, 10 May 2018 06:37:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3844,7 +4100,7 @@ "10" ], "x-ms-request-id": [ - "e3c9fe59-67b8-4ef8-8406-f1da05a7a734" + "20eb726e-7672-4ad5-bccd-eff7183a0202" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3857,31 +4113,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14941" ], "x-ms-correlation-request-id": [ - "1c741b74-0b47-4f1f-bc7e-8e7adbab33d2" + "d0574cb4-c719-4825-8940-8c457b19a42f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213330Z:1c741b74-0b47-4f1f-bc7e-8e7adbab33d2" + "WESTUS2:20180510T063805Z:d0574cb4-c719-4825-8940-8c457b19a42f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:33:29 GMT" + "Thu, 10 May 2018 06:38:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3902,7 +4161,7 @@ "10" ], "x-ms-request-id": [ - "e4b4b952-e0de-4b0a-9c08-acf43bf0699a" + "fb2fd9ba-5a3d-4e20-a79c-c8f54101755f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3915,31 +4174,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14940" ], "x-ms-correlation-request-id": [ - "c19dce1b-f0f2-4245-ad9e-b0d90fe84fdd" + "2377bafe-ba31-46e4-bd6b-0d7d592da030" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213340Z:c19dce1b-f0f2-4245-ad9e-b0d90fe84fdd" + "WESTUS2:20180510T063815Z:2377bafe-ba31-46e4-bd6b-0d7d592da030" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:33:40 GMT" + "Thu, 10 May 2018 06:38:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3960,7 +4222,7 @@ "10" ], "x-ms-request-id": [ - "6fc2750d-990e-4134-b136-0ace85527960" + "428ff6a1-c5dc-42d8-bcad-4a8a89b51856" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3973,31 +4235,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14939" ], "x-ms-correlation-request-id": [ - "51fc18ab-cb08-42a3-8570-5e2e733109e6" + "28b2c7cb-b2f3-499c-9cb1-886143c2f257" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213350Z:51fc18ab-cb08-42a3-8570-5e2e733109e6" + "WESTUS2:20180510T063825Z:28b2c7cb-b2f3-499c-9cb1-886143c2f257" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:33:50 GMT" + "Thu, 10 May 2018 06:38:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4018,11 +4283,14 @@ "10" ], "x-ms-request-id": [ - "ff3a1087-b24e-4ec8-ac72-042108f1585d" + "ed34f566-2382-4f9b-bfd7-a2efdacb713a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], "Cache-Control": [ "no-cache" ], @@ -4030,32 +4298,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" - ], "x-ms-correlation-request-id": [ - "d9e8adeb-9212-4c29-a28b-1bddb2bb2721" + "e098aed6-31c7-492b-a7ae-1307d926c251" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213400Z:d9e8adeb-9212-4c29-a28b-1bddb2bb2721" + "WESTUS2:20180510T063835Z:e098aed6-31c7-492b-a7ae-1307d926c251" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:34:00 GMT" + "Thu, 10 May 2018 06:38:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4076,7 +4344,7 @@ "10" ], "x-ms-request-id": [ - "bee45351-a5a3-4ad8-8a1c-e7d3eb390a04" + "4be3f26c-8c0f-435b-8e81-3efbfa9329f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4089,31 +4357,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14937" ], "x-ms-correlation-request-id": [ - "14631252-22f1-4ee9-8f83-7afd54b2eb7f" + "56327f06-d969-4548-8226-6124b4279e90" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213411Z:14631252-22f1-4ee9-8f83-7afd54b2eb7f" + "WESTUS2:20180510T063845Z:56327f06-d969-4548-8226-6124b4279e90" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:34:10 GMT" + "Thu, 10 May 2018 06:38:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4134,7 +4405,7 @@ "10" ], "x-ms-request-id": [ - "82a743fc-b493-4d03-8f3b-9770e46bbb32" + "91e90700-577d-4536-81a9-933aa48b16f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4147,31 +4418,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14936" ], "x-ms-correlation-request-id": [ - "4907f9c1-fffe-44ca-ad5a-e5f1c11f4aaf" + "5f434925-01df-4605-a7d8-9476ff6103d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213421Z:4907f9c1-fffe-44ca-ad5a-e5f1c11f4aaf" + "WESTUS2:20180510T063855Z:5f434925-01df-4605-a7d8-9476ff6103d5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:34:20 GMT" + "Thu, 10 May 2018 06:38:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4192,7 +4466,7 @@ "10" ], "x-ms-request-id": [ - "c855bc6c-4432-4d3c-8b59-11c86eb013e1" + "1ae01283-8104-4a16-9294-463438192998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4205,31 +4479,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14935" ], "x-ms-correlation-request-id": [ - "60f63a96-17a2-40eb-951e-7af11821ed81" + "ca044bfa-0a22-4fed-b727-29a10728ee03" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213431Z:60f63a96-17a2-40eb-951e-7af11821ed81" + "WESTUS2:20180510T063906Z:ca044bfa-0a22-4fed-b727-29a10728ee03" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:34:31 GMT" + "Thu, 10 May 2018 06:39:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4250,7 +4527,7 @@ "10" ], "x-ms-request-id": [ - "0c9cd31c-f8aa-42f5-b9d8-490bc3f32b9f" + "459741b5-b86b-4f53-bd18-c5b500b116f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4263,31 +4540,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14934" ], "x-ms-correlation-request-id": [ - "52362f1e-2068-4c99-9e39-ce8633f127cc" + "70565c04-36f8-4c59-a9d0-33a69ee804ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213441Z:52362f1e-2068-4c99-9e39-ce8633f127cc" + "WESTUS2:20180510T063916Z:70565c04-36f8-4c59-a9d0-33a69ee804ab" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:34:41 GMT" + "Thu, 10 May 2018 06:39:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4308,7 +4588,7 @@ "10" ], "x-ms-request-id": [ - "c5ad18f2-81e7-40ab-ad96-66847561b6b7" + "2fe714c3-7793-4985-8c8d-fe4918c3ff73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4321,31 +4601,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14933" ], "x-ms-correlation-request-id": [ - "e19778f4-6c28-42d6-aaad-db6f6f3345d4" + "72361bbb-38de-4df3-8058-b22ee986ee48" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213452Z:e19778f4-6c28-42d6-aaad-db6f6f3345d4" + "WESTUS2:20180510T063926Z:72361bbb-38de-4df3-8058-b22ee986ee48" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:34:51 GMT" + "Thu, 10 May 2018 06:39:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4366,7 +4649,7 @@ "10" ], "x-ms-request-id": [ - "51bc84e8-f85b-4172-ad32-5730df75ec10" + "86ca2aad-2040-4cc8-be77-8089ecba8626" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4379,31 +4662,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14932" ], "x-ms-correlation-request-id": [ - "6dad4bf9-626f-4e88-99c6-25e23f245879" + "96a2c8dd-3cb9-4ac3-99ab-2b01ae44d86d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213502Z:6dad4bf9-626f-4e88-99c6-25e23f245879" + "WESTUS2:20180510T063936Z:96a2c8dd-3cb9-4ac3-99ab-2b01ae44d86d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:35:01 GMT" + "Thu, 10 May 2018 06:39:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4424,7 +4710,7 @@ "10" ], "x-ms-request-id": [ - "cc66fdd5-9cf5-43fe-9fb7-74fc4149c179" + "564f1f0a-fe3a-4ae1-847f-3496c3940836" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4437,31 +4723,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14931" ], "x-ms-correlation-request-id": [ - "b849e1bf-009d-4ce7-9b37-771cbe98e4c7" + "84ea152f-9cec-47d7-9e36-5bb137a039c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213512Z:b849e1bf-009d-4ce7-9b37-771cbe98e4c7" + "WESTUS2:20180510T063946Z:84ea152f-9cec-47d7-9e36-5bb137a039c8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:35:11 GMT" + "Thu, 10 May 2018 06:39:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4482,7 +4771,7 @@ "10" ], "x-ms-request-id": [ - "15bb5d72-9f90-49b3-b126-3fd5cbc91873" + "5e614325-7338-4e2e-8683-b9caaf9f529a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4495,31 +4784,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14930" ], "x-ms-correlation-request-id": [ - "e6924d41-ec4e-4915-b64f-b81f83b44f61" + "2e2c7427-d11a-4c08-a7ae-6593b156acc2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213522Z:e6924d41-ec4e-4915-b64f-b81f83b44f61" + "WESTUS2:20180510T063956Z:2e2c7427-d11a-4c08-a7ae-6593b156acc2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:35:21 GMT" + "Thu, 10 May 2018 06:39:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4540,11 +4832,14 @@ "10" ], "x-ms-request-id": [ - "84bfaa97-8e69-460c-ae42-16c1ecd3c923" + "75244818-3e4e-4dda-9ecc-043180250aab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], "Cache-Control": [ "no-cache" ], @@ -4552,32 +4847,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" - ], "x-ms-correlation-request-id": [ - "5484584e-83d1-4081-abd9-f24c84ed9b17" + "adcd3f1a-0671-41fa-ae65-78d1db9725f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213532Z:5484584e-83d1-4081-abd9-f24c84ed9b17" + "WESTUS2:20180510T064006Z:adcd3f1a-0671-41fa-ae65-78d1db9725f6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:35:32 GMT" + "Thu, 10 May 2018 06:40:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4598,7 +4893,7 @@ "10" ], "x-ms-request-id": [ - "a3039407-487d-4ec6-83a9-fe108e94f47d" + "52f37b45-5f07-40a1-b442-2d95d44d5b20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4611,31 +4906,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14928" ], "x-ms-correlation-request-id": [ - "5d99b429-f11b-44e0-a066-25e556b7bf5e" + "1e12b6ac-5abd-49e0-83d0-2dcdeabdaa58" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213543Z:5d99b429-f11b-44e0-a066-25e556b7bf5e" + "WESTUS2:20180510T064016Z:1e12b6ac-5abd-49e0-83d0-2dcdeabdaa58" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:35:42 GMT" + "Thu, 10 May 2018 06:40:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4656,7 +4954,7 @@ "10" ], "x-ms-request-id": [ - "8384d6dd-45b7-4d00-b3a5-69bfbef3f727" + "d63baf37-e0f4-46d4-8c50-34fc2e8e80d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4669,31 +4967,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14927" ], "x-ms-correlation-request-id": [ - "740d3ff0-0261-4eb8-90a6-432c1a885a4a" + "f7bd0cf6-4472-469f-8382-85d31faa9cc4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213553Z:740d3ff0-0261-4eb8-90a6-432c1a885a4a" + "WESTUS2:20180510T064026Z:f7bd0cf6-4472-469f-8382-85d31faa9cc4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:35:52 GMT" + "Thu, 10 May 2018 06:40:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4714,7 +5015,7 @@ "10" ], "x-ms-request-id": [ - "e8e36c17-4095-4033-85bb-d91fe4514f45" + "22d98f16-7afb-4f3d-b349-910bb8c077d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4727,31 +5028,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14926" ], "x-ms-correlation-request-id": [ - "1052a594-4b0c-42b4-b788-81036399da6e" + "1ca08f86-fa9e-40b1-a890-d5c740ee6a78" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213603Z:1052a594-4b0c-42b4-b788-81036399da6e" + "WESTUS2:20180510T064036Z:1ca08f86-fa9e-40b1-a890-d5c740ee6a78" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:36:02 GMT" + "Thu, 10 May 2018 06:40:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4772,7 +5076,7 @@ "10" ], "x-ms-request-id": [ - "81168ee3-18ab-4d71-8cff-8d0dd12268d6" + "4203e38e-e47e-46d4-aee4-1f9faa3cae6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4785,31 +5089,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14925" ], "x-ms-correlation-request-id": [ - "6c73da5f-f75c-4255-853f-b5d422c545b8" + "bba52957-afce-4794-b4e2-cecd1dbe1e08" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213613Z:6c73da5f-f75c-4255-853f-b5d422c545b8" + "WESTUS2:20180510T064046Z:bba52957-afce-4794-b4e2-cecd1dbe1e08" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:36:12 GMT" + "Thu, 10 May 2018 06:40:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4830,7 +5137,7 @@ "10" ], "x-ms-request-id": [ - "b04f2d5d-3c6b-4b39-8b4f-f85e76de4e49" + "e1f10e84-ae7e-4265-8a35-26bc9777e322" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4843,31 +5150,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14924" ], "x-ms-correlation-request-id": [ - "806354e4-345f-421f-a607-390f5f5ea5d2" + "72c79ad3-29de-40e7-ae96-50cf61d4775e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213624Z:806354e4-345f-421f-a607-390f5f5ea5d2" + "WESTUS2:20180510T064056Z:72c79ad3-29de-40e7-ae96-50cf61d4775e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:36:23 GMT" + "Thu, 10 May 2018 06:40:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4888,7 +5198,7 @@ "10" ], "x-ms-request-id": [ - "ce3117cf-372a-40b8-9b72-a7c9ee38021c" + "21a3e586-9348-413a-b961-c523405ab022" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4901,31 +5211,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14923" ], "x-ms-correlation-request-id": [ - "15249a47-27be-40f4-a411-381a434c8286" + "f01a9c19-3c71-4fe8-a59f-29193d51fefc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213634Z:15249a47-27be-40f4-a411-381a434c8286" + "WESTUS2:20180510T064106Z:f01a9c19-3c71-4fe8-a59f-29193d51fefc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:36:33 GMT" + "Thu, 10 May 2018 06:41:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4946,7 +5259,7 @@ "10" ], "x-ms-request-id": [ - "b52e9d37-d39b-4d21-a6e4-4ed1e1fdb557" + "cd95384a-9375-4423-9e33-17925868820a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4959,31 +5272,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14922" ], "x-ms-correlation-request-id": [ - "cc6378ef-b8ce-4173-aebc-b1048d8e2336" + "7584cda9-3039-4097-8992-d881ef2c1514" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213644Z:cc6378ef-b8ce-4173-aebc-b1048d8e2336" + "WESTUS2:20180510T064116Z:7584cda9-3039-4097-8992-d881ef2c1514" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:36:43 GMT" + "Thu, 10 May 2018 06:41:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5004,7 +5320,7 @@ "10" ], "x-ms-request-id": [ - "210b3cc9-0a45-4cb0-977d-742860c6aabd" + "6d7d966a-2f00-46a2-b492-a9ffdd72ad11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5017,31 +5333,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14921" ], "x-ms-correlation-request-id": [ - "94877ad9-94dd-4e01-8708-ade33f3a7805" + "39a75f0a-35b3-4aed-b53d-5bcb1307dead" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213654Z:94877ad9-94dd-4e01-8708-ade33f3a7805" + "WESTUS2:20180510T064127Z:39a75f0a-35b3-4aed-b53d-5bcb1307dead" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:36:53 GMT" + "Thu, 10 May 2018 06:41:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5062,11 +5381,14 @@ "10" ], "x-ms-request-id": [ - "28451845-895c-46d1-a223-40559ccc98c0" + "985352e9-c16e-44e5-b705-9a60dc0e205b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], "Cache-Control": [ "no-cache" ], @@ -5074,32 +5396,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" - ], "x-ms-correlation-request-id": [ - "76855299-72a0-4069-90c0-f1c3945074ee" + "3a30b745-e60a-4c46-a1f4-c08322b445a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213705Z:76855299-72a0-4069-90c0-f1c3945074ee" + "WESTUS2:20180510T064137Z:3a30b745-e60a-4c46-a1f4-c08322b445a4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:37:04 GMT" + "Thu, 10 May 2018 06:41:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5120,7 +5442,7 @@ "10" ], "x-ms-request-id": [ - "4408d249-b824-43db-af4c-92c04ec027ed" + "c645ad9f-9ebb-4a87-9848-6d2a417b8dd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5133,31 +5455,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14919" ], "x-ms-correlation-request-id": [ - "aa297873-0ff5-4308-9257-c5758f737afa" + "c571928f-e1c9-4454-abe0-f65d7fd0f2c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213715Z:aa297873-0ff5-4308-9257-c5758f737afa" + "WESTUS2:20180510T064147Z:c571928f-e1c9-4454-abe0-f65d7fd0f2c8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:37:15 GMT" + "Thu, 10 May 2018 06:41:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5178,7 +5503,7 @@ "10" ], "x-ms-request-id": [ - "89eb91fa-6442-465d-9155-f169dcf0f00f" + "e021e431-772d-4ee6-a5b0-9da2797d8d8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5191,31 +5516,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14918" ], "x-ms-correlation-request-id": [ - "a76774ea-e978-458a-ad31-1b3150933de3" + "f92b03be-c72e-43ac-914e-c5d45db3d74c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213725Z:a76774ea-e978-458a-ad31-1b3150933de3" + "WESTUS2:20180510T064157Z:f92b03be-c72e-43ac-914e-c5d45db3d74c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:37:25 GMT" + "Thu, 10 May 2018 06:41:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5236,7 +5564,7 @@ "10" ], "x-ms-request-id": [ - "4a40d427-3089-4b01-a2c2-8382c14549c9" + "398d94ea-a3c9-4767-9a46-f792dda6d026" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5249,31 +5577,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14917" ], "x-ms-correlation-request-id": [ - "0e125a61-0082-4021-b82c-500043a88ecb" + "53dcfece-0775-42c8-9095-bbbb417d7bca" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213736Z:0e125a61-0082-4021-b82c-500043a88ecb" + "WESTUS2:20180510T064207Z:53dcfece-0775-42c8-9095-bbbb417d7bca" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:37:35 GMT" + "Thu, 10 May 2018 06:42:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5294,7 +5625,7 @@ "10" ], "x-ms-request-id": [ - "b2e72011-839d-4ab1-ba3e-ac7bc61694ea" + "287fc2d7-7d20-4f89-a6f6-dece06cfd449" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5307,31 +5638,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14916" ], "x-ms-correlation-request-id": [ - "1121dedc-6f8b-43ac-b9a7-482efffbad80" + "ec820130-e1e8-47ca-8e31-725a9f57b81b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213746Z:1121dedc-6f8b-43ac-b9a7-482efffbad80" + "WESTUS2:20180510T064217Z:ec820130-e1e8-47ca-8e31-725a9f57b81b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:37:45 GMT" + "Thu, 10 May 2018 06:42:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5352,7 +5686,7 @@ "10" ], "x-ms-request-id": [ - "16678f6f-82da-463e-b9bc-2ab46ca2eae2" + "cf9370ea-27d9-42c9-9142-765ba006c0cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5365,31 +5699,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14915" ], "x-ms-correlation-request-id": [ - "7f4372ec-95a7-4023-9f5a-8283d9e8918c" + "e1cb7960-8be1-4ce9-8a0f-20b0e1b2aec8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213756Z:7f4372ec-95a7-4023-9f5a-8283d9e8918c" + "WESTUS2:20180510T064227Z:e1cb7960-8be1-4ce9-8a0f-20b0e1b2aec8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:37:55 GMT" + "Thu, 10 May 2018 06:42:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5410,7 +5747,7 @@ "10" ], "x-ms-request-id": [ - "9eda8699-cad9-4833-beb5-0e4c477bea1c" + "1867373f-bac6-4087-9cbd-65448a0ab896" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5423,31 +5760,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14914" ], "x-ms-correlation-request-id": [ - "3bc0394f-9354-4736-b23c-937802b09d8e" + "5265a40b-e87e-46ff-80f5-ab1b3e4b2f40" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213806Z:3bc0394f-9354-4736-b23c-937802b09d8e" + "WESTUS2:20180510T064237Z:5265a40b-e87e-46ff-80f5-ab1b3e4b2f40" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:38:05 GMT" + "Thu, 10 May 2018 06:42:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5468,7 +5808,7 @@ "10" ], "x-ms-request-id": [ - "c2d604e6-8a89-427c-b9cf-d15ff0701009" + "750667e9-0d80-4c74-b90d-0fca8e024cca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5481,31 +5821,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14913" ], "x-ms-correlation-request-id": [ - "c064e548-fc38-43a2-868f-1af7ef7ed6b7" + "0bd7762f-ed84-4c8e-a8c2-5d9fec8121f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213817Z:c064e548-fc38-43a2-868f-1af7ef7ed6b7" + "WESTUS2:20180510T064247Z:0bd7762f-ed84-4c8e-a8c2-5d9fec8121f4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:38:17 GMT" + "Thu, 10 May 2018 06:42:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5526,7 +5869,7 @@ "10" ], "x-ms-request-id": [ - "1d321d4a-62f1-4623-855b-2c6a9bc2b530" + "d431a0fa-2276-4902-972f-e087e60a594d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5539,31 +5882,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14912" ], "x-ms-correlation-request-id": [ - "eddd5e5c-e341-4bd4-99d6-aaec7d4863cd" + "e444292e-bf42-4ac5-a898-6b62bbebf952" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213827Z:eddd5e5c-e341-4bd4-99d6-aaec7d4863cd" + "WESTUS2:20180510T064257Z:e444292e-bf42-4ac5-a898-6b62bbebf952" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:38:27 GMT" + "Thu, 10 May 2018 06:42:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5584,11 +5930,14 @@ "10" ], "x-ms-request-id": [ - "eda8447a-6864-485f-8f63-b7f22f440610" + "c53c55b6-af3f-48c1-a67e-74c492a195c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], "Cache-Control": [ "no-cache" ], @@ -5596,32 +5945,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" - ], "x-ms-correlation-request-id": [ - "c90c6720-0cda-4160-9037-df8f13190893" + "dce61ca8-de76-4467-a7bb-7bfb71aa3b24" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213837Z:c90c6720-0cda-4160-9037-df8f13190893" + "WESTUS2:20180510T064307Z:dce61ca8-de76-4467-a7bb-7bfb71aa3b24" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:38:37 GMT" + "Thu, 10 May 2018 06:43:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5642,7 +5991,7 @@ "10" ], "x-ms-request-id": [ - "745bf365-c3af-4912-acad-68674c6d6f29" + "fb4dd765-d389-44dc-bf33-069e6e693bf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5655,31 +6004,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "14910" ], "x-ms-correlation-request-id": [ - "bba69082-6eca-410e-9355-760c5f6c315a" + "7f4f7c31-450f-47c5-88c1-178267ee66b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213847Z:bba69082-6eca-410e-9355-760c5f6c315a" + "WESTUS2:20180510T064317Z:7f4f7c31-450f-47c5-88c1-178267ee66b3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:38:47 GMT" + "Thu, 10 May 2018 06:43:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5700,7 +6052,7 @@ "10" ], "x-ms-request-id": [ - "10bb1651-a125-4879-ae4e-719e8056bf0b" + "718dc07c-0c50-4dc9-86f9-10739b49c59a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5713,31 +6065,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "14909" ], "x-ms-correlation-request-id": [ - "39ec5f76-e741-4a24-a226-e5ecc9bd75ac" + "dab530d3-cd7f-4d00-a3fe-fbe1e65b9d03" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213857Z:39ec5f76-e741-4a24-a226-e5ecc9bd75ac" + "WESTUS2:20180510T064327Z:dab530d3-cd7f-4d00-a3fe-fbe1e65b9d03" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:38:57 GMT" + "Thu, 10 May 2018 06:43:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5758,7 +6113,7 @@ "10" ], "x-ms-request-id": [ - "1e93a830-9a69-4cf8-ab30-7860ec39023c" + "1b242aea-5c71-4af6-89ab-79722ad4c564" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5771,31 +6126,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "14908" ], "x-ms-correlation-request-id": [ - "521c1c02-c6be-47ac-8207-d886a49305ca" + "9ca6e1dd-dce7-49a5-9f22-bc8ad3bfe31b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213908Z:521c1c02-c6be-47ac-8207-d886a49305ca" + "WESTUS2:20180510T064337Z:9ca6e1dd-dce7-49a5-9f22-bc8ad3bfe31b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:39:07 GMT" + "Thu, 10 May 2018 06:43:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5816,7 +6174,7 @@ "10" ], "x-ms-request-id": [ - "3e09ee52-6535-48a4-9032-ee2b87875370" + "70e86423-af35-4bea-b9bb-2e8fa8783f35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5829,31 +6187,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" + "14907" ], "x-ms-correlation-request-id": [ - "37572c52-9c7e-4e48-a93e-301fa84b6c0e" + "358173ca-4001-47df-963c-e4249e3ee434" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213918Z:37572c52-9c7e-4e48-a93e-301fa84b6c0e" + "WESTUS2:20180510T064347Z:358173ca-4001-47df-963c-e4249e3ee434" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:39:17 GMT" + "Thu, 10 May 2018 06:43:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5874,7 +6235,7 @@ "10" ], "x-ms-request-id": [ - "6b428298-0d81-4afc-87b1-c734c5bd9500" + "d944da85-277a-4782-a0dd-4074c80ae071" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5887,31 +6248,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "14906" ], "x-ms-correlation-request-id": [ - "3df5d6ce-00da-4250-8ad5-24f05a226dba" + "344a871b-8095-4dd9-965c-0c2096e4d7c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213928Z:3df5d6ce-00da-4250-8ad5-24f05a226dba" + "WESTUS2:20180510T064358Z:344a871b-8095-4dd9-965c-0c2096e4d7c2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:39:28 GMT" + "Thu, 10 May 2018 06:43:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5932,7 +6296,7 @@ "10" ], "x-ms-request-id": [ - "304c591c-0cf1-4124-b389-c94acac7227a" + "62a640dd-f9fd-4e53-8aca-63d4df4add48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5945,31 +6309,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" + "14905" ], "x-ms-correlation-request-id": [ - "a80f7dec-0ad3-4ed2-8e0f-37ed845156d6" + "afae8213-31c9-490d-a257-97d1537315e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213938Z:a80f7dec-0ad3-4ed2-8e0f-37ed845156d6" + "WESTUS2:20180510T064408Z:afae8213-31c9-490d-a257-97d1537315e4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:39:38 GMT" + "Thu, 10 May 2018 06:44:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5990,7 +6357,7 @@ "10" ], "x-ms-request-id": [ - "72593035-1b31-4f89-8411-33a1733d238f" + "67ce6c93-4cd3-4b44-bc2e-ff4b4692df58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6003,31 +6370,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" + "14904" ], "x-ms-correlation-request-id": [ - "648ab24b-0b26-416d-bef1-6b801ea8458a" + "7da30d43-b82c-42f5-8f30-6a25919efffa" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213948Z:648ab24b-0b26-416d-bef1-6b801ea8458a" + "WESTUS2:20180510T064418Z:7da30d43-b82c-42f5-8f30-6a25919efffa" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:39:48 GMT" + "Thu, 10 May 2018 06:44:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6048,7 +6418,7 @@ "10" ], "x-ms-request-id": [ - "f807b4d3-88c6-4593-b31f-7f4c2412806f" + "75c02a3a-1b74-40e7-bc1e-02824a1e6ad1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6061,31 +6431,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" + "14903" ], "x-ms-correlation-request-id": [ - "64407275-acac-4675-aee5-b620b143816b" + "ef041eda-b2a4-4e3c-8107-a55d7b24f269" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T213959Z:64407275-acac-4675-aee5-b620b143816b" + "WESTUS2:20180510T064428Z:ef041eda-b2a4-4e3c-8107-a55d7b24f269" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:39:58 GMT" + "Thu, 10 May 2018 06:44:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6106,11 +6479,14 @@ "10" ], "x-ms-request-id": [ - "987d39ac-4552-4cdf-8e76-b68764b19978" + "a8d5596d-cc98-4c4f-ab7f-abbb6cbaba29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], "Cache-Control": [ "no-cache" ], @@ -6118,32 +6494,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14898" - ], "x-ms-correlation-request-id": [ - "55c418da-9b39-4b78-9642-577a1e8b564b" + "d1181274-626d-44b4-b22e-b7b7c42d012e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214009Z:55c418da-9b39-4b78-9642-577a1e8b564b" + "WESTUS2:20180510T064438Z:d1181274-626d-44b4-b22e-b7b7c42d012e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:40:09 GMT" + "Thu, 10 May 2018 06:44:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6164,7 +6540,7 @@ "10" ], "x-ms-request-id": [ - "bb0fe605-412b-4dfd-987d-f6f438202b46" + "de21067a-ca72-4405-bb04-0a9d85492024" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6177,31 +6553,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" + "14901" ], "x-ms-correlation-request-id": [ - "baa106a7-0b4b-4d0c-b89f-44baaef8e014" + "faf720bd-8485-451b-9a68-433258fb4135" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214019Z:baa106a7-0b4b-4d0c-b89f-44baaef8e014" + "WESTUS2:20180510T064448Z:faf720bd-8485-451b-9a68-433258fb4135" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:40:19 GMT" + "Thu, 10 May 2018 06:44:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6222,7 +6601,7 @@ "10" ], "x-ms-request-id": [ - "3fad076d-542b-4bdd-8c4f-17c88381e455" + "fb70b669-8fcf-4ba1-ab16-f8f5e42f04dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6235,31 +6614,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" + "14900" ], "x-ms-correlation-request-id": [ - "f8e1f43f-ff6f-4418-911e-fafb8aa297af" + "13880809-3808-4159-ab9d-fed1693ecef7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214029Z:f8e1f43f-ff6f-4418-911e-fafb8aa297af" + "WESTUS2:20180510T064458Z:13880809-3808-4159-ab9d-fed1693ecef7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:40:28 GMT" + "Thu, 10 May 2018 06:44:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6280,7 +6662,7 @@ "10" ], "x-ms-request-id": [ - "75d6cf0b-86a7-44c5-95cf-949c21ca0348" + "815af531-5919-4b83-96f8-fd6277426195" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6293,31 +6675,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" + "14899" ], "x-ms-correlation-request-id": [ - "44b46da9-f16f-4da7-a375-3df461a7ac24" + "e2f2b59e-f00a-4f25-a851-ab5dd8ff0b7f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214039Z:44b46da9-f16f-4da7-a375-3df461a7ac24" + "WESTUS2:20180510T064508Z:e2f2b59e-f00a-4f25-a851-ab5dd8ff0b7f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:40:38 GMT" + "Thu, 10 May 2018 06:45:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6338,7 +6723,7 @@ "10" ], "x-ms-request-id": [ - "3a85728b-32ff-48a4-bb8e-67eb0310d282" + "12d8f6f9-f9c9-43b7-a168-0d5e4eef0057" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6351,31 +6736,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14898" ], "x-ms-correlation-request-id": [ - "58da2008-477f-4944-a990-9dc8113f90de" + "7873042d-f63e-42a4-ae93-585fc95c6010" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214050Z:58da2008-477f-4944-a990-9dc8113f90de" + "WESTUS2:20180510T064518Z:7873042d-f63e-42a4-ae93-585fc95c6010" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:40:50 GMT" + "Thu, 10 May 2018 06:45:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6396,7 +6784,7 @@ "10" ], "x-ms-request-id": [ - "c12a24df-4c69-4266-9b31-c798502a6705" + "8822c63d-9353-4cfc-bc3c-26917aae76ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6409,31 +6797,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" + "14897" ], "x-ms-correlation-request-id": [ - "5bce3eda-28eb-4acd-ac78-528fd0a38739" + "3a6ec5ee-330d-4020-b01d-91a580acf916" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214100Z:5bce3eda-28eb-4acd-ac78-528fd0a38739" + "WESTUS2:20180510T064528Z:3a6ec5ee-330d-4020-b01d-91a580acf916" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:41:00 GMT" + "Thu, 10 May 2018 06:45:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6454,7 +6845,7 @@ "10" ], "x-ms-request-id": [ - "3890c461-d3a2-4c31-a606-22a18dc5a382" + "5ad65c31-ebf8-4706-8b5c-64d332dd0562" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6467,31 +6858,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" + "14896" ], "x-ms-correlation-request-id": [ - "e0402dcd-304a-4bb6-972c-a34175f56da2" + "40c9959f-c794-4d03-a333-a831fe4d16f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214110Z:e0402dcd-304a-4bb6-972c-a34175f56da2" + "WESTUS2:20180510T064538Z:40c9959f-c794-4d03-a333-a831fe4d16f5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:41:10 GMT" + "Thu, 10 May 2018 06:45:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6512,7 +6906,7 @@ "10" ], "x-ms-request-id": [ - "6430bbd8-785a-4238-b14f-54617ab0a4fc" + "ce9ace5d-f3b2-424d-ae91-45f6f78b7f73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6525,31 +6919,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" + "14895" ], "x-ms-correlation-request-id": [ - "52fbe5d9-decd-4ce6-bfb7-0f5f9b32c53d" + "4a68d383-7458-4f86-a365-ad433e9da552" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214120Z:52fbe5d9-decd-4ce6-bfb7-0f5f9b32c53d" + "WESTUS2:20180510T064548Z:4a68d383-7458-4f86-a365-ad433e9da552" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:41:20 GMT" + "Thu, 10 May 2018 06:45:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6570,7 +6967,7 @@ "10" ], "x-ms-request-id": [ - "ffe6056b-d26b-41ec-a5cc-08e42d2c4005" + "a331e20e-1315-4ba5-929e-9b56ea1ab741" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6583,31 +6980,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14890" + "14894" ], "x-ms-correlation-request-id": [ - "e17749eb-be2a-41b2-99da-6102f0bcf0f1" + "afbceaaa-6c02-4205-84b1-23cfc013d90d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214131Z:e17749eb-be2a-41b2-99da-6102f0bcf0f1" + "WESTUS2:20180510T064558Z:afbceaaa-6c02-4205-84b1-23cfc013d90d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:41:30 GMT" + "Thu, 10 May 2018 06:45:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6628,11 +7028,14 @@ "10" ], "x-ms-request-id": [ - "027a0a91-3cc6-4756-abf2-c47848deeb5c" + "5fb74fa7-263d-4515-98f4-78c95b91cd32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14893" + ], "Cache-Control": [ "no-cache" ], @@ -6640,32 +7043,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14889" - ], "x-ms-correlation-request-id": [ - "915b4835-4471-4506-833d-2ae195db0870" + "881e4f81-f5c6-451f-a316-43eddfef429d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214141Z:915b4835-4471-4506-833d-2ae195db0870" + "WESTUS2:20180510T064609Z:881e4f81-f5c6-451f-a316-43eddfef429d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:41:40 GMT" + "Thu, 10 May 2018 06:46:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6686,7 +7089,7 @@ "10" ], "x-ms-request-id": [ - "ae8077b5-43f9-41b5-bd18-b162a488c2aa" + "5afab572-c1a3-401b-9bcc-fca46fefb507" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6699,31 +7102,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14888" + "14892" ], "x-ms-correlation-request-id": [ - "17040090-2241-439f-a86f-88ba9b41c51b" + "34f126fd-612b-47f8-9381-be23c8530097" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214151Z:17040090-2241-439f-a86f-88ba9b41c51b" + "WESTUS2:20180510T064619Z:34f126fd-612b-47f8-9381-be23c8530097" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:41:51 GMT" + "Thu, 10 May 2018 06:46:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6744,7 +7150,7 @@ "10" ], "x-ms-request-id": [ - "32f53590-8d66-4c16-a5ff-a7d9f4231dbd" + "1bee6002-65ce-4735-9c0c-f2d8d749826d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6757,31 +7163,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14887" + "14891" ], "x-ms-correlation-request-id": [ - "ca3e2813-6daa-4ace-aa03-c9fc6acee830" + "b7c732d9-e84e-40fd-9f05-4a42bb72db3e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214201Z:ca3e2813-6daa-4ace-aa03-c9fc6acee830" + "WESTUS2:20180510T064629Z:b7c732d9-e84e-40fd-9f05-4a42bb72db3e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:42:01 GMT" + "Thu, 10 May 2018 06:46:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6802,7 +7211,7 @@ "10" ], "x-ms-request-id": [ - "dcd1692d-98f0-4ac0-9819-c7dc0d010518" + "8aee36e1-b8b0-4048-9cf1-ca43afff7935" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6815,31 +7224,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14886" + "14890" ], "x-ms-correlation-request-id": [ - "94144ed0-f23f-406a-9e6d-cd4d5b69e7de" + "49afb41e-cce9-4159-b2bc-2d670b493257" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214212Z:94144ed0-f23f-406a-9e6d-cd4d5b69e7de" + "WESTUS2:20180510T064639Z:49afb41e-cce9-4159-b2bc-2d670b493257" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:42:11 GMT" + "Thu, 10 May 2018 06:46:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6860,7 +7272,7 @@ "10" ], "x-ms-request-id": [ - "65ea24cf-0897-4c1f-80f5-2c3c0ef62aa9" + "eb043915-d77d-4b6f-a260-d93ce927acad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6873,31 +7285,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14885" + "14889" ], "x-ms-correlation-request-id": [ - "361c8b06-3cd8-482a-abcd-63df8826a556" + "df972811-f4ef-4e37-86cd-0d3dbb5c86f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214222Z:361c8b06-3cd8-482a-abcd-63df8826a556" + "WESTUS2:20180510T064649Z:df972811-f4ef-4e37-86cd-0d3dbb5c86f4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:42:21 GMT" + "Thu, 10 May 2018 06:46:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6918,7 +7333,7 @@ "10" ], "x-ms-request-id": [ - "35b07e5b-da9c-421b-9d61-1ac323cbd750" + "9d414b6b-c4e2-4f17-831c-97f86519de8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6931,31 +7346,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14884" + "14888" ], "x-ms-correlation-request-id": [ - "04827173-47f7-480d-82db-7631ebeb9b5d" + "1551d956-ea2f-477c-9a22-088cd245ab9a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214232Z:04827173-47f7-480d-82db-7631ebeb9b5d" + "WESTUS2:20180510T064659Z:1551d956-ea2f-477c-9a22-088cd245ab9a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:42:31 GMT" + "Thu, 10 May 2018 06:46:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -6976,7 +7394,7 @@ "10" ], "x-ms-request-id": [ - "c55fe2e9-35c2-4326-a0b7-2cbc5c186b4f" + "779a3865-f683-437e-891d-39dca2b0ad83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6989,31 +7407,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14883" + "14887" ], "x-ms-correlation-request-id": [ - "9c33bacb-98f0-480a-acff-958c1e8b7be3" + "6e51c826-f139-4695-b7de-29e9583596d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214242Z:9c33bacb-98f0-480a-acff-958c1e8b7be3" + "WESTUS2:20180510T064709Z:6e51c826-f139-4695-b7de-29e9583596d5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:42:41 GMT" + "Thu, 10 May 2018 06:47:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7034,7 +7455,7 @@ "10" ], "x-ms-request-id": [ - "d8a45832-d26f-4932-ac9f-b9583d49ca81" + "b7f7e53f-2541-48f8-bd6e-2ec4ac1f20b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7047,31 +7468,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14882" + "14886" ], "x-ms-correlation-request-id": [ - "098cb4e2-9903-43a1-9755-4335f0bc9eb5" + "329648ea-dd1a-4099-8772-4ff4e91fb83b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214253Z:098cb4e2-9903-43a1-9755-4335f0bc9eb5" + "WESTUS2:20180510T064719Z:329648ea-dd1a-4099-8772-4ff4e91fb83b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:42:53 GMT" + "Thu, 10 May 2018 06:47:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7092,7 +7516,7 @@ "10" ], "x-ms-request-id": [ - "5f1ac218-0e27-4b93-98ea-0d798a155310" + "f358c8d7-d4b6-4617-a1af-fb20e4635dae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7105,31 +7529,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14881" + "14885" ], "x-ms-correlation-request-id": [ - "6cc9414c-485f-4009-a52f-50a9d6d243d2" + "029a29f3-11dc-4a28-9b2d-9c6cdff23713" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214303Z:6cc9414c-485f-4009-a52f-50a9d6d243d2" + "WESTUS2:20180510T064729Z:029a29f3-11dc-4a28-9b2d-9c6cdff23713" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:43:03 GMT" + "Thu, 10 May 2018 06:47:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7150,11 +7577,14 @@ "10" ], "x-ms-request-id": [ - "0f62facf-6c76-41d0-b95e-c4112db8f633" + "44861d84-8e99-45e8-be1c-e9a77b07d403" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14884" + ], "Cache-Control": [ "no-cache" ], @@ -7162,32 +7592,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14880" - ], "x-ms-correlation-request-id": [ - "63b44b8f-86b9-4659-8e51-41cf505c4bff" + "354d8a23-7b53-4614-89f5-002eb136c83d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214313Z:63b44b8f-86b9-4659-8e51-41cf505c4bff" + "WESTUS2:20180510T064739Z:354d8a23-7b53-4614-89f5-002eb136c83d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:43:13 GMT" + "Thu, 10 May 2018 06:47:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7208,7 +7638,7 @@ "10" ], "x-ms-request-id": [ - "e1611b5a-faac-4937-9c00-35107e7baaad" + "504e6ad7-54ec-4ca3-aafe-b3a53cd7bacd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7221,31 +7651,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14879" + "14883" ], "x-ms-correlation-request-id": [ - "3d362a6a-3a6e-4ceb-85c1-3d831d486a3e" + "93b3b9bc-c04e-4d0f-b9fc-5cd064dcbff3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214323Z:3d362a6a-3a6e-4ceb-85c1-3d831d486a3e" + "WESTUS2:20180510T064749Z:93b3b9bc-c04e-4d0f-b9fc-5cd064dcbff3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:43:23 GMT" + "Thu, 10 May 2018 06:47:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7266,7 +7699,7 @@ "10" ], "x-ms-request-id": [ - "bd9a69be-18d1-41e5-b6ac-04e1853e9a05" + "d6b35988-055b-4c60-bd55-5af88f658af5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7279,31 +7712,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14878" + "14882" ], "x-ms-correlation-request-id": [ - "6d58ccfb-dc27-4472-9962-b765cee1e700" + "93821f3e-773b-4e43-813a-c1299a9ba01e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214334Z:6d58ccfb-dc27-4472-9962-b765cee1e700" + "WESTUS2:20180510T064759Z:93821f3e-773b-4e43-813a-c1299a9ba01e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:43:33 GMT" + "Thu, 10 May 2018 06:47:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7324,7 +7760,7 @@ "10" ], "x-ms-request-id": [ - "340ca32d-aefc-4f2a-89d9-152306636950" + "04f86d96-e6ce-4c8c-9c88-550ef992d412" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7337,31 +7773,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14877" + "14881" ], "x-ms-correlation-request-id": [ - "d4483296-77f0-44dd-be42-6851d2f3a278" + "9f4436ac-2d70-49eb-b320-b49dfe86b603" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214344Z:d4483296-77f0-44dd-be42-6851d2f3a278" + "WESTUS2:20180510T064809Z:9f4436ac-2d70-49eb-b320-b49dfe86b603" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:43:44 GMT" + "Thu, 10 May 2018 06:48:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7382,7 +7821,7 @@ "10" ], "x-ms-request-id": [ - "6ba8bafa-f597-4458-876c-b5e54f25e6aa" + "d82062db-abf5-4ce0-87f3-f2c5f4ee019b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7395,31 +7834,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14876" + "14880" ], "x-ms-correlation-request-id": [ - "292bc907-1a43-4829-adfb-aa3723d8f15a" + "a074cd64-4c22-4587-bc08-2814933ce589" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214354Z:292bc907-1a43-4829-adfb-aa3723d8f15a" + "WESTUS2:20180510T064819Z:a074cd64-4c22-4587-bc08-2814933ce589" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:43:54 GMT" + "Thu, 10 May 2018 06:48:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7440,7 +7882,7 @@ "10" ], "x-ms-request-id": [ - "5c6ca224-f793-4274-b74d-3fb63b8c0575" + "7772fe72-48aa-4edd-814b-585260e54b89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7453,31 +7895,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14875" + "14879" ], "x-ms-correlation-request-id": [ - "6b8fece0-f0cc-450c-a840-8c40f10290ec" + "292af2c0-c17b-4f88-b7e6-20e000e61cf6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214404Z:6b8fece0-f0cc-450c-a840-8c40f10290ec" + "WESTUS2:20180510T064829Z:292af2c0-c17b-4f88-b7e6-20e000e61cf6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:44:04 GMT" + "Thu, 10 May 2018 06:48:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7498,7 +7943,7 @@ "10" ], "x-ms-request-id": [ - "fef843a5-83e0-4833-b6d4-4a8bd9fcd633" + "c9c16ec5-d5f0-45f1-afe1-414387b7127b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7511,31 +7956,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14874" + "14878" ], "x-ms-correlation-request-id": [ - "c36dea65-b64f-47ab-96e3-1b44690e6d8d" + "656b15d0-657b-480a-ac34-8805ad301ad1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214414Z:c36dea65-b64f-47ab-96e3-1b44690e6d8d" + "WESTUS2:20180510T064840Z:656b15d0-657b-480a-ac34-8805ad301ad1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:44:14 GMT" + "Thu, 10 May 2018 06:48:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7556,7 +8004,7 @@ "10" ], "x-ms-request-id": [ - "d68405bb-2200-450a-822b-86d0d4227f79" + "cd776c4e-8a53-4ff0-bc01-518371c33545" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7569,31 +8017,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14873" + "14877" ], "x-ms-correlation-request-id": [ - "a94466d5-de02-44f5-bb7e-db114eb622f2" + "7be471db-a382-4ba9-b7af-379aade65834" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214425Z:a94466d5-de02-44f5-bb7e-db114eb622f2" + "WESTUS2:20180510T064850Z:7be471db-a382-4ba9-b7af-379aade65834" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:44:24 GMT" + "Thu, 10 May 2018 06:48:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7614,7 +8065,7 @@ "10" ], "x-ms-request-id": [ - "714aa97c-4915-4e2e-9eef-0da9564bb190" + "ba62531c-3c90-4184-899a-e41ba27cc07c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7627,31 +8078,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14872" + "14876" ], "x-ms-correlation-request-id": [ - "2a5e712e-1b1a-4f19-8591-837b4dc3284d" + "2b6f3a84-ca40-4083-a5c3-20709df03cca" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214435Z:2a5e712e-1b1a-4f19-8591-837b4dc3284d" + "WESTUS2:20180510T064900Z:2b6f3a84-ca40-4083-a5c3-20709df03cca" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:44:35 GMT" + "Thu, 10 May 2018 06:48:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7672,11 +8126,14 @@ "10" ], "x-ms-request-id": [ - "c4a96b92-1769-409c-949b-c46e6966cc9c" + "753f4e90-33f2-4d5b-93f6-c580f9b341ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14875" + ], "Cache-Control": [ "no-cache" ], @@ -7684,32 +8141,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14871" - ], "x-ms-correlation-request-id": [ - "44b71d33-d5e2-4603-a802-135cd97ef971" + "78f4c7a4-a540-4171-9aee-d2a12c3bbd23" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214445Z:44b71d33-d5e2-4603-a802-135cd97ef971" + "WESTUS2:20180510T064910Z:78f4c7a4-a540-4171-9aee-d2a12c3bbd23" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:44:45 GMT" + "Thu, 10 May 2018 06:49:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7730,7 +8187,7 @@ "10" ], "x-ms-request-id": [ - "449b13d3-5cd6-449e-97ac-5a8fb72065c4" + "e098d436-e8de-4dc0-925a-d6e6df67302c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7743,31 +8200,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14870" + "14874" ], "x-ms-correlation-request-id": [ - "05ff9a7f-9685-497c-b417-1ac18dde4682" + "9444677a-5998-429a-9338-92b00375766e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214455Z:05ff9a7f-9685-497c-b417-1ac18dde4682" + "WESTUS2:20180510T064920Z:9444677a-5998-429a-9338-92b00375766e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:44:55 GMT" + "Thu, 10 May 2018 06:49:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7788,7 +8248,7 @@ "10" ], "x-ms-request-id": [ - "89fad6c1-fdc1-49b4-b21c-a541ac3d27a8" + "d6ce82c2-f34b-4f58-b7a3-79d2e700f565" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7801,31 +8261,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "14873" ], "x-ms-correlation-request-id": [ - "e4cd8f31-b784-4979-a41f-e84c6864ae1d" + "5840eec6-cf57-40e2-a981-6a76ec7b3588" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214506Z:e4cd8f31-b784-4979-a41f-e84c6864ae1d" + "WESTUS2:20180510T064930Z:5840eec6-cf57-40e2-a981-6a76ec7b3588" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:45:05 GMT" + "Thu, 10 May 2018 06:49:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7846,7 +8309,7 @@ "10" ], "x-ms-request-id": [ - "dd409d5d-603d-4f6a-9489-3081a49e7e91" + "5506ed2d-421f-4529-8d1c-9ce9eb5af04a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7859,31 +8322,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14868" + "14872" ], "x-ms-correlation-request-id": [ - "13c55403-5cfd-4814-a55b-e4a26b78935c" + "a5622734-37e8-4200-9406-9dfa230808af" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214516Z:13c55403-5cfd-4814-a55b-e4a26b78935c" + "WESTUS2:20180510T064940Z:a5622734-37e8-4200-9406-9dfa230808af" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:45:15 GMT" + "Thu, 10 May 2018 06:49:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7904,7 +8370,7 @@ "10" ], "x-ms-request-id": [ - "51ba0c12-6563-4499-9137-a4d15160d468" + "55b5a074-209d-4d32-bb38-580b1bdfb245" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7917,31 +8383,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14867" + "14871" ], "x-ms-correlation-request-id": [ - "c9d9db90-6302-4760-8278-78d22c29e528" + "56e22199-58f3-42c8-b69c-3f7e9e285e7f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214526Z:c9d9db90-6302-4760-8278-78d22c29e528" + "WESTUS2:20180510T064950Z:56e22199-58f3-42c8-b69c-3f7e9e285e7f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:45:26 GMT" + "Thu, 10 May 2018 06:49:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -7962,7 +8431,7 @@ "10" ], "x-ms-request-id": [ - "566cf384-5bd0-4677-8a3f-3559c8fdada9" + "f9bf44d3-28ef-4a2e-b924-0498920d346c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7975,31 +8444,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14866" + "14870" ], "x-ms-correlation-request-id": [ - "94f48514-8eae-4be8-b3e7-5894172e2230" + "630cdf34-da25-4dd1-a4bf-6cc9716e5173" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214536Z:94f48514-8eae-4be8-b3e7-5894172e2230" + "WESTUS2:20180510T065000Z:630cdf34-da25-4dd1-a4bf-6cc9716e5173" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:45:36 GMT" + "Thu, 10 May 2018 06:50:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8020,7 +8492,7 @@ "10" ], "x-ms-request-id": [ - "96379ab7-6a9e-4b74-b1c6-d980b92282e5" + "956b7f66-9964-437e-992c-c85d79fc4c78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8033,31 +8505,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14865" + "14869" ], "x-ms-correlation-request-id": [ - "4ca26254-51e3-400c-b44e-eba789c39798" + "7eeab662-ab2f-4bb1-8328-4e02ebf9e570" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214546Z:4ca26254-51e3-400c-b44e-eba789c39798" + "WESTUS2:20180510T065010Z:7eeab662-ab2f-4bb1-8328-4e02ebf9e570" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:45:46 GMT" + "Thu, 10 May 2018 06:50:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8078,7 +8553,7 @@ "10" ], "x-ms-request-id": [ - "33ce66a0-b13a-4c2b-8160-5acb2d361fb8" + "04339bb4-cfda-48fa-bd0c-75324caf751e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8091,31 +8566,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14864" + "14868" ], "x-ms-correlation-request-id": [ - "3d9563ae-91dc-4786-9155-5eb84742a4cc" + "b3a502c7-5472-460f-a9a7-874e4009c1ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214557Z:3d9563ae-91dc-4786-9155-5eb84742a4cc" + "WESTUS2:20180510T065020Z:b3a502c7-5472-460f-a9a7-874e4009c1ea" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:45:56 GMT" + "Thu, 10 May 2018 06:50:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8136,7 +8614,7 @@ "10" ], "x-ms-request-id": [ - "e3da4a51-beed-455a-908a-480e11d93fab" + "981bccc9-b7ac-4a19-9c09-25ec98697f2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8149,31 +8627,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14863" + "14867" ], "x-ms-correlation-request-id": [ - "c0975f42-a9dd-4ca2-8d5d-32deedbc01ca" + "cee05bbd-3d30-4b7d-82e1-122dfd145ae2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214607Z:c0975f42-a9dd-4ca2-8d5d-32deedbc01ca" + "WESTUS2:20180510T065030Z:cee05bbd-3d30-4b7d-82e1-122dfd145ae2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:46:06 GMT" + "Thu, 10 May 2018 06:50:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8194,11 +8675,14 @@ "10" ], "x-ms-request-id": [ - "e10363c2-b1ee-40a1-af68-a17fa6bfeee1" + "168179eb-d6bf-43d5-a5dd-8c70f5ceb862" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14866" + ], "Cache-Control": [ "no-cache" ], @@ -8206,32 +8690,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14862" - ], "x-ms-correlation-request-id": [ - "8e5322c9-bf49-4d41-a727-f31eefb5d092" + "30288798-e5d2-4a31-9358-be65527ce7b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214617Z:8e5322c9-bf49-4d41-a727-f31eefb5d092" + "WESTUS2:20180510T065040Z:30288798-e5d2-4a31-9358-be65527ce7b7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:46:16 GMT" + "Thu, 10 May 2018 06:50:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8252,7 +8736,7 @@ "10" ], "x-ms-request-id": [ - "f8638c56-aa6c-4086-b752-0e785ff9d290" + "929d6761-06d6-47ed-acca-fccf66e7716d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8265,31 +8749,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14861" + "14865" ], "x-ms-correlation-request-id": [ - "f168e798-6bb3-4e8b-a266-1e204558c954" + "8f5390bf-9d61-411d-8609-f3f39408e7a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214627Z:f168e798-6bb3-4e8b-a266-1e204558c954" + "WESTUS2:20180510T065050Z:8f5390bf-9d61-411d-8609-f3f39408e7a3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:46:27 GMT" + "Thu, 10 May 2018 06:50:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8310,7 +8797,7 @@ "10" ], "x-ms-request-id": [ - "fe19ac3e-12df-49ca-be9e-8ae3e32d8913" + "1cb2b260-d959-4618-a609-5491088326ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8323,31 +8810,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14860" + "14864" ], "x-ms-correlation-request-id": [ - "3304e80f-5570-43dc-be30-91ce0bb515f0" + "9f128711-2f92-4e23-82f9-056921e9a62a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214637Z:3304e80f-5570-43dc-be30-91ce0bb515f0" + "WESTUS2:20180510T065101Z:9f128711-2f92-4e23-82f9-056921e9a62a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:46:37 GMT" + "Thu, 10 May 2018 06:51:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8368,7 +8858,7 @@ "10" ], "x-ms-request-id": [ - "7b0f10d2-06f1-416e-9030-8f85de78cbcb" + "e497bc81-d2ac-44d9-801c-dd4a775ec442" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8381,31 +8871,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14859" + "14863" ], "x-ms-correlation-request-id": [ - "aaee92cc-8995-462f-a041-5723267655ed" + "452e1d2a-e76c-43f1-88cd-c6a2a26a24c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214648Z:aaee92cc-8995-462f-a041-5723267655ed" + "WESTUS2:20180510T065111Z:452e1d2a-e76c-43f1-88cd-c6a2a26a24c3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:46:47 GMT" + "Thu, 10 May 2018 06:51:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8426,7 +8919,7 @@ "10" ], "x-ms-request-id": [ - "b405503d-8798-4d8e-aef5-0e942a277598" + "7b8c983d-c851-47a7-94c2-ce7b18dc55b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8439,31 +8932,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14858" + "14862" ], "x-ms-correlation-request-id": [ - "bf11f0b0-5ff3-41ca-81fc-23940efde331" + "d2190e7c-eea4-4353-966c-e78d328e9c58" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214658Z:bf11f0b0-5ff3-41ca-81fc-23940efde331" + "WESTUS2:20180510T065121Z:d2190e7c-eea4-4353-966c-e78d328e9c58" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:46:57 GMT" + "Thu, 10 May 2018 06:51:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8484,7 +8980,7 @@ "10" ], "x-ms-request-id": [ - "4e07e110-939a-4a95-a212-f76d935f325f" + "aa77d663-5505-409a-a9b5-2d044c4acea9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8497,31 +8993,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14861" ], "x-ms-correlation-request-id": [ - "fd875ce3-0010-431f-9d87-a647902fe111" + "add8b523-d7cf-45ce-8d43-aab894050fd7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214708Z:fd875ce3-0010-431f-9d87-a647902fe111" + "WESTUS2:20180510T065131Z:add8b523-d7cf-45ce-8d43-aab894050fd7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:47:07 GMT" + "Thu, 10 May 2018 06:51:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8542,7 +9041,7 @@ "10" ], "x-ms-request-id": [ - "870eb08f-caf2-4f33-b5ef-31ee93b6b80f" + "616542ab-a703-4ee4-9743-e43f603c96f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8555,31 +9054,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14856" + "14860" ], "x-ms-correlation-request-id": [ - "366f6544-06e3-4529-9aea-60f28d3395a9" + "cebe6d22-99ee-4a5e-a551-23bca7680d3d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214718Z:366f6544-06e3-4529-9aea-60f28d3395a9" + "WESTUS2:20180510T065141Z:cebe6d22-99ee-4a5e-a551-23bca7680d3d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:47:17 GMT" + "Thu, 10 May 2018 06:51:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8600,7 +9102,7 @@ "10" ], "x-ms-request-id": [ - "728818cc-4c9b-4510-8aea-e560df48a734" + "fec9f5c4-d505-4e4e-9a1e-b9322ece254c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8613,31 +9115,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "14859" ], "x-ms-correlation-request-id": [ - "fe0f1da4-6920-47c2-9f90-9d53dc874999" + "0364c235-0610-4a23-916a-2d7de068bdd9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214729Z:fe0f1da4-6920-47c2-9f90-9d53dc874999" + "WESTUS2:20180510T065151Z:0364c235-0610-4a23-916a-2d7de068bdd9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:47:28 GMT" + "Thu, 10 May 2018 06:51:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8658,7 +9163,7 @@ "10" ], "x-ms-request-id": [ - "2ae12f83-d681-4215-a704-78ea6bb4cef8" + "802b6b79-5ae9-4138-afc3-9b28b5fc31d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8671,31 +9176,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14854" + "14858" ], "x-ms-correlation-request-id": [ - "feb574a3-ec13-40e7-9c44-f3d05a37198f" + "3f85d188-ee52-43ab-a050-2c4e647069e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214739Z:feb574a3-ec13-40e7-9c44-f3d05a37198f" + "WESTUS2:20180510T065201Z:3f85d188-ee52-43ab-a050-2c4e647069e0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:47:39 GMT" + "Thu, 10 May 2018 06:52:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8716,11 +9224,14 @@ "10" ], "x-ms-request-id": [ - "fb7cf12c-dc1b-467e-8bbd-440351741dc9" + "f2c94d28-4ae3-49de-8d62-c522349521dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14857" + ], "Cache-Control": [ "no-cache" ], @@ -8728,32 +9239,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14853" - ], "x-ms-correlation-request-id": [ - "25ed6322-4a01-4b2d-a874-400d5fa5fbb8" + "9a6b35d8-340d-4fd4-be01-6508aa0f5b35" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214749Z:25ed6322-4a01-4b2d-a874-400d5fa5fbb8" + "WESTUS2:20180510T065211Z:9a6b35d8-340d-4fd4-be01-6508aa0f5b35" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:47:49 GMT" + "Thu, 10 May 2018 06:52:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8774,7 +9285,7 @@ "10" ], "x-ms-request-id": [ - "79c2c4ca-00d5-4af6-8f71-36e0f4b73158" + "5b92fef2-3749-4f8f-bed9-c8e0db31bd1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8787,31 +9298,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "14856" ], "x-ms-correlation-request-id": [ - "32fedcd7-e8f7-4552-9a55-2047024429f3" + "7f6a3b50-7cc2-4779-8c21-133379ee9501" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214759Z:32fedcd7-e8f7-4552-9a55-2047024429f3" + "WESTUS2:20180510T065221Z:7f6a3b50-7cc2-4779-8c21-133379ee9501" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:47:59 GMT" + "Thu, 10 May 2018 06:52:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8832,7 +9346,7 @@ "10" ], "x-ms-request-id": [ - "0f5b5e33-2b73-44c9-943c-4e94335106d3" + "47d3aa6f-a6cc-4434-b922-b0b804be9c3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8845,31 +9359,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14851" + "14855" ], "x-ms-correlation-request-id": [ - "357ef6fd-f2c0-471d-b874-cae2265b1187" + "b7de9644-cb89-4d84-a834-1a3f4c3574ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214810Z:357ef6fd-f2c0-471d-b874-cae2265b1187" + "WESTUS2:20180510T065231Z:b7de9644-cb89-4d84-a834-1a3f4c3574ff" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:48:09 GMT" + "Thu, 10 May 2018 06:52:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8890,7 +9407,7 @@ "10" ], "x-ms-request-id": [ - "b21eaaaf-56e8-4c0e-b93c-3025c232ce84" + "7abad464-9617-4821-b96b-ca3ccdcd3b48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8903,31 +9420,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14850" + "14854" ], "x-ms-correlation-request-id": [ - "0fb5cec4-e8ae-44ba-b8fa-82ee119f0ec7" + "0dcc2871-b195-4cb8-b818-e8ab94fd559a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214820Z:0fb5cec4-e8ae-44ba-b8fa-82ee119f0ec7" + "WESTUS2:20180510T065241Z:0dcc2871-b195-4cb8-b818-e8ab94fd559a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:48:19 GMT" + "Thu, 10 May 2018 06:52:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -8948,7 +9468,7 @@ "10" ], "x-ms-request-id": [ - "f4cfcb42-5383-4bba-866c-4e007738dfe3" + "33288c16-f98b-4e47-8609-bf52515c4277" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8961,31 +9481,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14849" + "14853" ], "x-ms-correlation-request-id": [ - "de910a48-6a3b-4d5f-a26f-dcb13bbb6158" + "2e9f67e0-3134-4034-b249-1718b339070e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214830Z:de910a48-6a3b-4d5f-a26f-dcb13bbb6158" + "WESTUS2:20180510T065251Z:2e9f67e0-3134-4034-b249-1718b339070e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:48:29 GMT" + "Thu, 10 May 2018 06:52:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -9006,7 +9529,7 @@ "10" ], "x-ms-request-id": [ - "be2dd903-c786-4caa-a0d2-daedffed0641" + "3f57b1ec-f250-4492-91a5-eeead4213f8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9019,31 +9542,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14848" + "14852" ], "x-ms-correlation-request-id": [ - "cdad8c6e-8e6a-408e-9d09-5444a8f83b71" + "7bfa3ed6-2208-424c-bea2-39ea1f1c3a78" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214840Z:cdad8c6e-8e6a-408e-9d09-5444a8f83b71" + "WESTUS2:20180510T065301Z:7bfa3ed6-2208-424c-bea2-39ea1f1c3a78" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:48:40 GMT" + "Thu, 10 May 2018 06:53:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -9064,7 +9590,7 @@ "10" ], "x-ms-request-id": [ - "2053e8a7-eb19-479e-a244-f315a8511a59" + "3d004699-757c-4076-a359-62647d084ad3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9077,31 +9603,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14847" + "14851" ], "x-ms-correlation-request-id": [ - "b8c4b2b8-dca3-420f-908e-6bb45ad71af7" + "cdc1fc0a-83d4-462a-8dbd-5384c86475c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214850Z:b8c4b2b8-dca3-420f-908e-6bb45ad71af7" + "WESTUS2:20180510T065311Z:cdc1fc0a-83d4-462a-8dbd-5384c86475c1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:48:50 GMT" + "Thu, 10 May 2018 06:53:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -9122,7 +9651,7 @@ "10" ], "x-ms-request-id": [ - "9fa91893-5211-4160-9859-217e1edcfc0d" + "7222aca9-0d9e-4401-afcd-11ca9a22caf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9135,31 +9664,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14846" + "14850" ], "x-ms-correlation-request-id": [ - "8aadd60e-b2b8-487f-a317-7f301d0301c2" + "d0d43653-d29e-4ffd-b8ec-f57d5acf8a28" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214901Z:8aadd60e-b2b8-487f-a317-7f301d0301c2" + "WESTUS2:20180510T065321Z:d0d43653-d29e-4ffd-b8ec-f57d5acf8a28" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:49:00 GMT" + "Thu, 10 May 2018 06:53:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -9180,7 +9712,7 @@ "10" ], "x-ms-request-id": [ - "ff1a2fca-4d4b-4e45-b01a-2f1a4a34e0ad" + "16b13f1c-b220-458d-b6ac-b3544ca44df2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9193,31 +9725,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14845" + "14849" ], "x-ms-correlation-request-id": [ - "50f5a9ad-585c-4eea-8b67-b7ce033ca0d5" + "c76e6201-c1e5-4f7e-89d9-ba13eb2b8cd3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214911Z:50f5a9ad-585c-4eea-8b67-b7ce033ca0d5" + "WESTUS2:20180510T065332Z:c76e6201-c1e5-4f7e-89d9-ba13eb2b8cd3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:49:10 GMT" + "Thu, 10 May 2018 06:53:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -9238,11 +9773,14 @@ "10" ], "x-ms-request-id": [ - "fe6348a6-c830-4cdb-9a9a-3b0be9a2db76" + "51076801-7305-4a58-8e42-6e975fb5d12d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14848" + ], "Cache-Control": [ "no-cache" ], @@ -9250,32 +9788,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14844" - ], "x-ms-correlation-request-id": [ - "1b0b4370-ebba-4b87-b2d2-187083e8b749" + "ea309649-2e39-4254-a05b-204227c489e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214921Z:1b0b4370-ebba-4b87-b2d2-187083e8b749" + "WESTUS2:20180510T065342Z:ea309649-2e39-4254-a05b-204227c489e0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:49:20 GMT" + "Thu, 10 May 2018 06:53:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -9296,7 +9834,7 @@ "10" ], "x-ms-request-id": [ - "dcaba7cd-c459-4e5b-ab98-780f328e5dd3" + "8ad6e56f-2989-4192-8b80-c22a1830678b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9309,31 +9847,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14843" + "14847" ], "x-ms-correlation-request-id": [ - "ee9acc8c-577a-4b59-a0fc-35d310f61ae1" + "d1dec6c1-2a47-46fa-bf0b-d199b8b39f93" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214931Z:ee9acc8c-577a-4b59-a0fc-35d310f61ae1" + "WESTUS2:20180510T065352Z:d1dec6c1-2a47-46fa-bf0b-d199b8b39f93" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:49:31 GMT" + "Thu, 10 May 2018 06:53:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -9354,7 +9895,7 @@ "10" ], "x-ms-request-id": [ - "7fc5d339-1b59-4246-8226-27c70c48b2f6" + "60ad1f0d-1ad2-4859-b72a-b83fab355659" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9367,31 +9908,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14842" + "14846" ], "x-ms-correlation-request-id": [ - "371bc2c4-767f-42ab-b9d4-93906bd65244" + "8ea06c9b-dc11-4178-a7a7-8924b2cc2654" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214942Z:371bc2c4-767f-42ab-b9d4-93906bd65244" + "WESTUS2:20180510T065402Z:8ea06c9b-dc11-4178-a7a7-8924b2cc2654" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:49:41 GMT" + "Thu, 10 May 2018 06:54:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -9412,7 +9956,7 @@ "10" ], "x-ms-request-id": [ - "a0d9fbc5-d0da-4b88-9cc1-44aabac4e74b" + "c7646f10-9f09-40c9-9b53-fb02139cac6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9425,31 +9969,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14841" + "14845" ], "x-ms-correlation-request-id": [ - "2389f56f-40f8-4869-b1aa-ebde207ad9f8" + "0e84f1ec-3580-4a0b-bbca-227cd9d727a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T214952Z:2389f56f-40f8-4869-b1aa-ebde207ad9f8" + "WESTUS2:20180510T065412Z:0e84f1ec-3580-4a0b-bbca-227cd9d727a8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:49:51 GMT" + "Thu, 10 May 2018 06:54:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -9470,7 +10017,7 @@ "10" ], "x-ms-request-id": [ - "f796bfa5-0b5c-47ee-b2f7-901b05033048" + "21080d70-aad8-4acb-b978-663b651caf77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9483,31 +10030,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14841" + "14844" ], "x-ms-correlation-request-id": [ - "020cc05c-607f-458f-8093-3805edf4ecd9" + "c27838ac-02d6-46c1-a64a-af861793442c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215002Z:020cc05c-607f-458f-8093-3805edf4ecd9" + "WESTUS2:20180510T065422Z:c27838ac-02d6-46c1-a64a-af861793442c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:50:01 GMT" + "Thu, 10 May 2018 06:54:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -9528,7 +10078,7 @@ "10" ], "x-ms-request-id": [ - "8fbf35e7-3a27-4eb7-aef2-6ee61908af02" + "9ad76974-3a39-4e6d-8de4-dcf3fc81ae71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9541,31 +10091,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14840" + "14843" ], "x-ms-correlation-request-id": [ - "39d610f0-6085-4a83-aecb-f5912fcd4fec" + "946dceb3-9376-4f84-903b-bbd73dc1e4f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215012Z:39d610f0-6085-4a83-aecb-f5912fcd4fec" + "WESTUS2:20180510T065432Z:946dceb3-9376-4f84-903b-bbd73dc1e4f2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:50:11 GMT" + "Thu, 10 May 2018 06:54:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -9586,7 +10139,7 @@ "10" ], "x-ms-request-id": [ - "8ccae9af-3686-4cce-a8a0-e3f95864c042" + "05c10a8a-bf71-4b84-a9a0-ceacf63d8db6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9599,31 +10152,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14839" + "14842" ], "x-ms-correlation-request-id": [ - "a8d65c31-5b80-4b37-a9b1-c36a3521107f" + "4dbec012-ad37-44b6-b6d8-dad8cf746ae4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215022Z:a8d65c31-5b80-4b37-a9b1-c36a3521107f" + "WESTUS2:20180510T065442Z:4dbec012-ad37-44b6-b6d8-dad8cf746ae4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:50:22 GMT" + "Thu, 10 May 2018 06:54:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -9644,7 +10200,7 @@ "10" ], "x-ms-request-id": [ - "e05f2322-d32e-4b6a-be7a-d17fa5d5f694" + "18e97692-640c-4a63-a96c-891fea44639c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9657,31 +10213,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14838" + "14841" ], "x-ms-correlation-request-id": [ - "f9197671-8ead-49a6-9ef9-959602f69133" + "17ae4957-9b3f-4376-8ec9-3233e60c0c85" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215033Z:f9197671-8ead-49a6-9ef9-959602f69133" + "WESTUS2:20180510T065452Z:17ae4957-9b3f-4376-8ec9-3233e60c0c85" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:50:32 GMT" + "Thu, 10 May 2018 06:54:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -9702,7 +10261,7 @@ "10" ], "x-ms-request-id": [ - "919fc948-9f97-48ba-9c13-aac2738d715c" + "1b263c91-9ea9-4e2c-b030-861e0d054cd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9715,31 +10274,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14837" + "14840" ], "x-ms-correlation-request-id": [ - "b5bb23b6-2a54-4cbd-a9d5-5c6387d81278" + "8a18d548-f8cd-4734-b34e-0289f8c9e21b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215043Z:b5bb23b6-2a54-4cbd-a9d5-5c6387d81278" + "WESTUS2:20180510T065502Z:8a18d548-f8cd-4734-b34e-0289f8c9e21b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:50:42 GMT" + "Thu, 10 May 2018 06:55:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -9760,11 +10322,14 @@ "10" ], "x-ms-request-id": [ - "6b2a44b2-b1d1-4ebc-8e06-8502625237e3" + "ea485ca7-4b47-4f16-bb91-258fba895279" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14839" + ], "Cache-Control": [ "no-cache" ], @@ -9772,38 +10337,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14836" - ], "x-ms-correlation-request-id": [ - "cae0ec1c-9732-456e-8925-c87aa5cafb28" + "790e6f16-a379-4a59-b3ce-f649faf42b65" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215053Z:cae0ec1c-9732-456e-8925-c87aa5cafb28" + "WESTUS2:20180510T065512Z:790e6f16-a379-4a59-b3ce-f649faf42b65" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:50:52 GMT" + "Thu, 10 May 2018 06:55:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/f961cd70-d4d9-48b5-8991-cf89817171f2?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk2MWNkNzAtZDRkOS00OGI1LTg5OTEtY2Y4OTgxNzE3MWYyP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "30" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9814,11 +10379,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "e74c6d65-3ecf-46a3-a6b4-4a5b7d0abe74" + "143fe8c4-b69f-4eb6-ad0f-c2d5b435c75d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9831,37 +10393,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14835" + "14838" ], "x-ms-correlation-request-id": [ - "27767c69-9dcc-4c03-b860-a39a9af0caec" + "8c7e0d76-d7d1-4453-b6bd-62f94264142b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215103Z:27767c69-9dcc-4c03-b860-a39a9af0caec" + "WESTUS2:20180510T065522Z:8c7e0d76-d7d1-4453-b6bd-62f94264142b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:02 GMT" + "Thu, 10 May 2018 06:55:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjE0MT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bfd6fb0e-04a1-4d67-bf96-0e6f8f8e4b35" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps6141' under resource group 'ps6642' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "30" + "150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9872,54 +10443,50 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "caa6adaa-df3c-4f1a-b915-2380312cf3c5" + "e98f1c5b-4c63-430c-bc1a-f34e5a767ade" + ], + "x-ms-correlation-request-id": [ + "e98f1c5b-4c63-430c-bc1a-f34e5a767ade" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T065523Z:e98f1c5b-4c63-430c-bc1a-f34e5a767ade" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14834" - ], - "x-ms-correlation-request-id": [ - "d51f18e6-638a-49b6-a1cc-42e1418291cc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180206T215114Z:d51f18e6-638a-49b6-a1cc-42e1418291cc" - ], "Date": [ - "Tue, 06 Feb 2018 21:51:14 GMT" + "Thu, 10 May 2018 06:55:23 GMT" ] }, - "StatusCode": 200 + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/900b1e45-4cc3-4655-b35c-39668714701c?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvOTAwYjFlNDUtNGNjMy00NjU1LWIzNWMtMzk2Njg3MTQ3MDFjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjE0MT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6141\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141\",\r\n \"etag\": \"W/\\\"7f51467b-2b50-4bf4-86fd-25a962a2ac4c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e7c77cef-d7bd-4fe6-afd2-382d961e5c3c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"7f51467b-2b50-4bf4-86fd-25a962a2ac4c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9931,7 +10498,7 @@ "no-cache" ], "x-ms-request-id": [ - "cecb3d95-946a-4a8d-a7f6-2426fdaf0707" + "05a1204f-1ba5-4eca-93d9-d1bb997da129" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9939,99 +10506,54 @@ "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"7f51467b-2b50-4bf4-86fd-25a962a2ac4c\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "14831" ], "x-ms-correlation-request-id": [ - "ac6f4be0-8274-488f-94b1-77e5dd8fcae2" + "d77121f3-9668-4269-8b91-02be01be57b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215124Z:ac6f4be0-8274-488f-94b1-77e5dd8fcae2" + "WESTUS2:20180510T065545Z:d77121f3-9668-4269-8b91-02be01be57b3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:24 GMT" + "Thu, 10 May 2018 06:55:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTM5Nz9hcGktdmVyc2lvbj0yMDE3LTExLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjE0MT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7788b442-a1a6-4dbf-974e-f7a5029e3397" + "c7d2e786-fb58-421b-aaff-5b6ff58bf061" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps5397' under resource group 'ps3193' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "150" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "39767adc-3883-404f-85b5-2d55d6017717" - ], - "x-ms-correlation-request-id": [ - "39767adc-3883-404f-85b5-2d55d6017717" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180206T215125Z:39767adc-3883-404f-85b5-2d55d6017717" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Feb 2018 21:51:24 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTM5Nz9hcGktdmVyc2lvbj0yMDE3LTExLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps5397\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397\",\r\n \"etag\": \"W/\\\"fd5a2be0-c46b-45b4-8f97-45f0085f409d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01fac144-c0b3-4db9-b027-3673b6d64d7f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"fd5a2be0-c46b-45b4-8f97-45f0085f409d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6141\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141\",\r\n \"etag\": \"W/\\\"7f51467b-2b50-4bf4-86fd-25a962a2ac4c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e7c77cef-d7bd-4fe6-afd2-382d961e5c3c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"7f51467b-2b50-4bf4-86fd-25a962a2ac4c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1078" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10043,7 +10565,7 @@ "no-cache" ], "x-ms-request-id": [ - "2d9e8adb-a220-4c66-8c2e-1631c28d79b3" + "dffc904e-bf30-4224-a515-d9c89af2d310" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10052,50 +10574,53 @@ "no-cache" ], "ETag": [ - "W/\"fd5a2be0-c46b-45b4-8f97-45f0085f409d\"" + "W/\"7f51467b-2b50-4bf4-86fd-25a962a2ac4c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14827" + "14830" ], "x-ms-correlation-request-id": [ - "2c7fc4b8-91bc-4358-9dcd-e7d6f4c33d57" + "de488659-b314-4a03-9605-e8158b9881b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215136Z:2c7fc4b8-91bc-4358-9dcd-e7d6f4c33d57" + "WESTUS2:20180510T065545Z:de488659-b314-4a03-9605-e8158b9881b4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:36 GMT" + "Thu, 10 May 2018 06:55:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTM5Nz9hcGktdmVyc2lvbj0yMDE3LTExLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjE0MT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3296298c-f9d3-4d05-aac9-b7c5ca35e690" + "aa3e207a-e47b-4e13-bf69-5fc10338e98b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps5397\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397\",\r\n \"etag\": \"W/\\\"fd5a2be0-c46b-45b4-8f97-45f0085f409d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01fac144-c0b3-4db9-b027-3673b6d64d7f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"fd5a2be0-c46b-45b4-8f97-45f0085f409d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6141\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141\",\r\n \"etag\": \"W/\\\"7f51467b-2b50-4bf4-86fd-25a962a2ac4c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e7c77cef-d7bd-4fe6-afd2-382d961e5c3c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"7f51467b-2b50-4bf4-86fd-25a962a2ac4c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1078" + "1105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10107,7 +10632,7 @@ "no-cache" ], "x-ms-request-id": [ - "7b3d74de-53ab-48b6-8cfc-6999dd39433e" + "513511cb-8855-43df-8b84-462594beaf10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10116,50 +10641,59 @@ "no-cache" ], "ETag": [ - "W/\"fd5a2be0-c46b-45b4-8f97-45f0085f409d\"" + "W/\"7f51467b-2b50-4bf4-86fd-25a962a2ac4c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "14829" ], "x-ms-correlation-request-id": [ - "109866db-3dd4-4f25-9246-bd250d35e3a3" + "a79d620c-4bf2-47c7-8cf6-832cd83ac7e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215136Z:109866db-3dd4-4f25-9246-bd250d35e3a3" + "WESTUS2:20180510T065545Z:a79d620c-4bf2-47c7-8cf6-832cd83ac7e2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:36 GMT" + "Thu, 10 May 2018 06:55:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTM5Nz9hcGktdmVyc2lvbj0yMDE3LTExLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjE0MT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "482" + ], "x-ms-client-request-id": [ - "d0ab1e11-95b7-4800-a4a5-2fb7a142b75e" + "6e70812c-f498-461a-953e-acf7f4f19729" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps5397\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397\",\r\n \"etag\": \"W/\\\"fd5a2be0-c46b-45b4-8f97-45f0085f409d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01fac144-c0b3-4db9-b027-3673b6d64d7f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"fd5a2be0-c46b-45b4-8f97-45f0085f409d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6141\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141\",\r\n \"etag\": \"W/\\\"a4a901bd-bd4b-4b89-aeff-04903752948e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e7c77cef-d7bd-4fe6-afd2-382d961e5c3c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"a4a901bd-bd4b-4b89-aeff-04903752948e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1078" + "1103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10170,8 +10704,14 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "3" + ], "x-ms-request-id": [ - "d88d70c6-c934-4d60-ada8-0dc0d66d61e5" + "03929812-5960-4eed-83a6-2b629f4d9210" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03929812-5960-4eed-83a6-2b629f4d9210?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10179,57 +10719,45 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"fd5a2be0-c46b-45b4-8f97-45f0085f409d\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14825" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "173838ff-ed28-4e1e-a0af-cb4a23f52877" + "8cbd3405-cf51-4809-bef6-8693b35340fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215137Z:173838ff-ed28-4e1e-a0af-cb4a23f52877" + "WESTUS2:20180510T065524Z:8cbd3405-cf51-4809-bef6-8693b35340fc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:36 GMT" + "Thu, 10 May 2018 06:55:24 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTM5Nz9hcGktdmVyc2lvbj0yMDE3LTExLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"location\": \"centralus\"\r\n}", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03929812-5960-4eed-83a6-2b629f4d9210?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDM5Mjk4MTItNTk2MC00ZWVkLTgzYTYtMmI2MjlmNGQ5MjEwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "484" - ], - "x-ms-client-request-id": [ - "fc406b23-0b13-4a29-9b7d-58ab5b38fc4b" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps5397\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397\",\r\n \"etag\": \"W/\\\"8879c584-c1c6-4043-bab1-6f37691906d5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"01fac144-c0b3-4db9-b027-3673b6d64d7f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"8879c584-c1c6-4043-bab1-6f37691906d5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1076" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10241,13 +10769,10 @@ "no-cache" ], "Retry-After": [ - "3" + "10" ], "x-ms-request-id": [ - "f1ff1a73-0311-4d2d-a8a8-a72faca275a6" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/f1ff1a73-0311-4d2d-a8a8-a72faca275a6?api-version=2017-11-01" + "5b73f0a4-3d21-44cd-a1f4-43d3a966ca2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10259,32 +10784,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14833" ], "x-ms-correlation-request-id": [ - "fa163c1c-5bb7-45ef-8b8c-6fe5849686ee" + "647c0990-0a75-4ff6-9897-5a885e6d820d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215126Z:fa163c1c-5bb7-45ef-8b8c-6fe5849686ee" + "WESTUS2:20180510T065534Z:647c0990-0a75-4ff6-9897-5a885e6d820d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:26 GMT" + "Thu, 10 May 2018 06:55:34 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/f1ff1a73-0311-4d2d-a8a8-a72faca275a6?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZjFmZjFhNzMtMDMxMS00ZDJkLWE4YTgtYTcyZmFjYTI3NWE2P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/03929812-5960-4eed-83a6-2b629f4d9210?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDM5Mjk4MTItNTk2MC00ZWVkLTgzYTYtMmI2MjlmNGQ5MjEwP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -10302,7 +10830,7 @@ "no-cache" ], "x-ms-request-id": [ - "f1df9c5c-b102-4c21-a3f0-27148dd04d78" + "13aafc65-c824-4b91-9fe4-c6e66f045696" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10315,40 +10843,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" + "14832" ], "x-ms-correlation-request-id": [ - "fc0a7d91-6be4-4b4e-9707-2e8b43791c49" + "dbb3d7cd-86ca-4e4b-9f14-862af8ccf3d0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215136Z:fc0a7d91-6be4-4b4e-9707-2e8b43791c49" + "WESTUS2:20180510T065544Z:dbb3d7cd-86ca-4e4b-9f14-862af8ccf3d0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:36 GMT" + "Thu, 10 May 2018 06:55:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps9827?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM5ODI3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps2616?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyNjE2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73b54d3c-ff1f-4d06-9a6f-c39a793fa8f0" + "c8f11082-767d-40bd-a715-848557698eed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps9827' under resource group 'ps3193' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps2616' under resource group 'ps6642' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "152" @@ -10366,43 +10897,46 @@ "gateway" ], "x-ms-request-id": [ - "8d8e4063-aed1-40f7-a0f6-ff05dd68b249" + "b2b6552a-20e4-41c9-8849-99da4c834909" ], "x-ms-correlation-request-id": [ - "8d8e4063-aed1-40f7-a0f6-ff05dd68b249" + "b2b6552a-20e4-41c9-8849-99da4c834909" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215137Z:8d8e4063-aed1-40f7-a0f6-ff05dd68b249" + "WESTUS2:20180510T065545Z:b2b6552a-20e4-41c9-8849-99da4c834909" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 21:51:37 GMT" + "Thu, 10 May 2018 06:55:44 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps9827?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM5ODI3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps2616?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyNjE2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9827\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps9827\",\r\n \"etag\": \"W/\\\"91e924f1-55a6-4e56-86ba-42d177c89a5c\\\"\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d9afb01a-53f0-45f9-b47a-5a2342f7ef55\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps4291\",\r\n \"fqdn\": \"ps4291.centralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2616\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps2616\",\r\n \"etag\": \"W/\\\"61382365-c966-475f-8748-bd531c08f92c\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1214b4fd-9cc4-4d6c-9ddf-90f41f887cd6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps2983\",\r\n \"fqdn\": \"ps2983.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "714" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10414,7 +10948,7 @@ "no-cache" ], "x-ms-request-id": [ - "216095c7-f733-4d73-8eaf-6775626d4f14" + "cb2bb6f6-b34a-4e81-80ab-49c058a7a107" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10423,50 +10957,53 @@ "no-cache" ], "ETag": [ - "W/\"91e924f1-55a6-4e56-86ba-42d177c89a5c\"" + "W/\"61382365-c966-475f-8748-bd531c08f92c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14822" + "14826" ], "x-ms-correlation-request-id": [ - "49e2aae4-f82b-45ad-89e0-528b1f3e6d73" + "91546698-0e79-4859-952b-1c0d555f8052" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215149Z:49e2aae4-f82b-45ad-89e0-528b1f3e6d73" + "WESTUS2:20180510T065557Z:91546698-0e79-4859-952b-1c0d555f8052" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:48 GMT" + "Thu, 10 May 2018 06:55:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps9827?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM5ODI3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps2616?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyNjE2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3677ca0-20a3-4f4e-b328-e0a1c3d3d6d9" + "1c8e5613-9fba-450c-b20c-853b24dce0fd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9827\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps9827\",\r\n \"etag\": \"W/\\\"91e924f1-55a6-4e56-86ba-42d177c89a5c\\\"\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d9afb01a-53f0-45f9-b47a-5a2342f7ef55\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps4291\",\r\n \"fqdn\": \"ps4291.centralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2616\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps2616\",\r\n \"etag\": \"W/\\\"61382365-c966-475f-8748-bd531c08f92c\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1214b4fd-9cc4-4d6c-9ddf-90f41f887cd6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps2983\",\r\n \"fqdn\": \"ps2983.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "714" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10478,7 +11015,7 @@ "no-cache" ], "x-ms-request-id": [ - "31bf841d-1b38-456e-baa4-1874b085b5d5" + "0a170e8f-fbd5-49d0-896b-208889617eb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10487,56 +11024,59 @@ "no-cache" ], "ETag": [ - "W/\"91e924f1-55a6-4e56-86ba-42d177c89a5c\"" + "W/\"61382365-c966-475f-8748-bd531c08f92c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14821" + "14825" ], "x-ms-correlation-request-id": [ - "d459c259-5b58-44b2-8f23-e316a0e7faac" + "e77e1231-18e2-4a04-8f43-dd6ebdce584c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215149Z:d459c259-5b58-44b2-8f23-e316a0e7faac" + "WESTUS2:20180510T065557Z:e77e1231-18e2-4a04-8f43-dd6ebdce584c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:48 GMT" + "Thu, 10 May 2018 06:55:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps9827?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM5ODI3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps2616?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyNjE2P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps4291\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"centralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps2983\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "199" + "197" ], "x-ms-client-request-id": [ - "632b2e01-252d-458f-8bea-617aca34183b" + "cb8e816b-aaf5-45cb-bc21-4747dbc19c6a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9827\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps9827\",\r\n \"etag\": \"W/\\\"b4504542-72ef-4532-a9fe-5b5cc921bcd2\\\"\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d9afb01a-53f0-45f9-b47a-5a2342f7ef55\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps4291\",\r\n \"fqdn\": \"ps4291.centralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2616\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps2616\",\r\n \"etag\": \"W/\\\"f31ee4a4-0ef8-463d-8193-a8b31034e7a8\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1214b4fd-9cc4-4d6c-9ddf-90f41f887cd6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps2983\",\r\n \"fqdn\": \"ps2983.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "713" + "732" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10551,10 +11091,10 @@ "3" ], "x-ms-request-id": [ - "0c6aa9f0-1729-41e9-beef-bc2fd4873636" + "2beea5fc-dcdf-4953-9756-c70d43f89e97" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/0c6aa9f0-1729-41e9-beef-bc2fd4873636?api-version=2017-11-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/2beea5fc-dcdf-4953-9756-c70d43f89e97?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10570,28 +11110,31 @@ "1195" ], "x-ms-correlation-request-id": [ - "b9356487-82b2-442b-ac4c-5d22b455f108" + "cfc5fa29-af10-48c7-b2b2-f612129e96e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215138Z:b9356487-82b2-442b-ac4c-5d22b455f108" + "WESTUS2:20180510T065546Z:cfc5fa29-af10-48c7-b2b2-f612129e96e9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:38 GMT" + "Thu, 10 May 2018 06:55:46 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/0c6aa9f0-1729-41e9-beef-bc2fd4873636?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvMGM2YWE5ZjAtMTcyOS00MWU5LWJlZWYtYmMyZmQ0ODczNjM2P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/2beea5fc-dcdf-4953-9756-c70d43f89e97?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmJlZWE1ZmMtZGNkZi00OTUzLTk3NTYtYzcwZDQzZjg5ZTk3P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -10609,7 +11152,7 @@ "no-cache" ], "x-ms-request-id": [ - "8cf625e3-0717-4a14-b360-feeb5a36aa20" + "48fa0b50-00a1-41b5-8025-dee56b0a408b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10622,40 +11165,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14823" + "14827" ], "x-ms-correlation-request-id": [ - "eaeabc55-c6f8-4425-a3ed-7d269b08e24e" + "14e0c4fe-1efd-4bb2-baa2-0f1feb35c540" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215149Z:eaeabc55-c6f8-4425-a3ed-7d269b08e24e" + "WESTUS2:20180510T065557Z:14e0c4fe-1efd-4bb2-baa2-0f1feb35c540" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:48 GMT" + "Thu, 10 May 2018 06:55:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczYxODU/YXBpLXZlcnNpb249MjAxNy0xMS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczM0NDI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bd0e38c-0d09-4a5a-9862-1547d88a6da1" + "62382c6a-367c-4509-bf9c-5ae3108eeeaf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/ps6185' under resource group 'ps3193' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/ps3442' under resource group 'ps6642' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "157" @@ -10673,43 +11219,46 @@ "gateway" ], "x-ms-request-id": [ - "fa3c03ad-b228-4998-9360-78e624ad92dc" + "6b5b5652-e013-4641-831b-36d4effee0cb" ], "x-ms-correlation-request-id": [ - "fa3c03ad-b228-4998-9360-78e624ad92dc" + "6b5b5652-e013-4641-831b-36d4effee0cb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215149Z:fa3c03ad-b228-4998-9360-78e624ad92dc" + "WESTUS2:20180510T065557Z:6b5b5652-e013-4641-831b-36d4effee0cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 21:51:48 GMT" + "Thu, 10 May 2018 06:55:57 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczYxODU/YXBpLXZlcnNpb249MjAxNy0xMS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczM0NDI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6185\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185\",\r\n \"etag\": \"W/\\\"d3eb8bb2-fc14-49aa-bd42-c669e4f50e82\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dce3bb60-9608-4bfe-811a-ef9b0929c853\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps1619\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185/ipConfigurations/ps1619\",\r\n \"etag\": \"W/\\\"d3eb8bb2-fc14-49aa-bd42-c669e4f50e82\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps9827\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3442\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442\",\r\n \"etag\": \"W/\\\"58758b46-e7ec-4fdc-a521-526b39025d95\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e90dfcc1-6f29-4b90-aa51-40dc87adc839\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps8899\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442/ipConfigurations/ps8899\",\r\n \"etag\": \"W/\\\"58758b46-e7ec-4fdc-a521-526b39025d95\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps2616\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1601" + "1598" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10721,7 +11270,7 @@ "no-cache" ], "x-ms-request-id": [ - "89c391a8-1081-4430-a076-3625bb410b0f" + "58b77bcf-f896-459d-a54e-915b889746c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10734,43 +11283,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14635" + "14947" ], "x-ms-correlation-request-id": [ - "b90f89e3-2337-40bc-ae7c-254407bbe5b6" + "1c7cb94e-017d-4689-af2c-a6978ed9ab98" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221713Z:b90f89e3-2337-40bc-ae7c-254407bbe5b6" + "WESTUS2:20180510T072158Z:1c7cb94e-017d-4689-af2c-a6978ed9ab98" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:12 GMT" + "Thu, 10 May 2018 07:21:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczYxODU/YXBpLXZlcnNpb249MjAxNy0xMS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczM0NDI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2f35a48-f4e0-4cd5-87eb-f72e31523e15" + "e08f2d37-e356-4d9b-a716-631904180fa4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6185\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185\",\r\n \"etag\": \"W/\\\"d3eb8bb2-fc14-49aa-bd42-c669e4f50e82\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dce3bb60-9608-4bfe-811a-ef9b0929c853\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps1619\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185/ipConfigurations/ps1619\",\r\n \"etag\": \"W/\\\"d3eb8bb2-fc14-49aa-bd42-c669e4f50e82\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps9827\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3442\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442\",\r\n \"etag\": \"W/\\\"58758b46-e7ec-4fdc-a521-526b39025d95\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e90dfcc1-6f29-4b90-aa51-40dc87adc839\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps8899\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442/ipConfigurations/ps8899\",\r\n \"etag\": \"W/\\\"58758b46-e7ec-4fdc-a521-526b39025d95\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps2616\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1601" + "1598" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10782,7 +11334,7 @@ "no-cache" ], "x-ms-request-id": [ - "3cbdacd8-c251-4921-8681-a1a77afcd924" + "ec4a05e8-a3e1-4f37-9fb2-b71f51874054" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10795,43 +11347,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14634" + "14946" ], "x-ms-correlation-request-id": [ - "0cd4b843-8a98-4f19-9746-f96e6254c7cc" + "6f7ff850-aa7e-46bb-b8c5-5128eb88b2db" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221713Z:0cd4b843-8a98-4f19-9746-f96e6254c7cc" + "WESTUS2:20180510T072158Z:6f7ff850-aa7e-46bb-b8c5-5128eb88b2db" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:12 GMT" + "Thu, 10 May 2018 07:21:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczYxODU/YXBpLXZlcnNpb249MjAxNy0xMS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczM0NDI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88c1d1c6-d8c6-4da9-9a5e-cdb5b0b438a1" + "e5365c59-5d48-47ea-ac8e-6e8fad1326f4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6185\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185\",\r\n \"etag\": \"W/\\\"d3eb8bb2-fc14-49aa-bd42-c669e4f50e82\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dce3bb60-9608-4bfe-811a-ef9b0929c853\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps1619\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185/ipConfigurations/ps1619\",\r\n \"etag\": \"W/\\\"d3eb8bb2-fc14-49aa-bd42-c669e4f50e82\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps9827\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3442\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442\",\r\n \"etag\": \"W/\\\"58758b46-e7ec-4fdc-a521-526b39025d95\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e90dfcc1-6f29-4b90-aa51-40dc87adc839\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps8899\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442/ipConfigurations/ps8899\",\r\n \"etag\": \"W/\\\"58758b46-e7ec-4fdc-a521-526b39025d95\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps2616\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1601" + "1598" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10843,7 +11398,7 @@ "no-cache" ], "x-ms-request-id": [ - "0a364308-f9d5-497f-8a1d-db144839e642" + "51312f69-0fed-4f83-bd95-32d749fe699d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10856,49 +11411,52 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14633" + "14945" ], "x-ms-correlation-request-id": [ - "238fceac-d75c-4a0d-b1a3-acfff26c7c6d" + "ab111620-2dc7-4b2c-8777-048b97ab867e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221713Z:238fceac-d75c-4a0d-b1a3-acfff26c7c6d" + "WESTUS2:20180510T072159Z:ab111620-2dc7-4b2c-8777-048b97ab867e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:12 GMT" + "Thu, 10 May 2018 07:21:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczYxODU/YXBpLXZlcnNpb249MjAxNy0xMS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczM0NDI/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps9827\"\r\n }\r\n },\r\n \"name\": \"ps1619\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfiguration/ps1619\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337\r\n }\r\n },\r\n \"location\": \"centralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps2616\"\r\n }\r\n },\r\n \"name\": \"ps8899\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfiguration/ps8899\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1108" + "1106" ], "x-ms-client-request-id": [ - "a1dc3072-cd68-425a-88ee-9c4f25a6448a" + "850d56e8-e23b-4421-a32e-e831b437260b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6185\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185\",\r\n \"etag\": \"W/\\\"9e5014b8-648b-4965-a9c5-66763b41d257\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"dce3bb60-9608-4bfe-811a-ef9b0929c853\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps1619\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185/ipConfigurations/ps1619\",\r\n \"etag\": \"W/\\\"9e5014b8-648b-4965-a9c5-66763b41d257\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps9827\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3442\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442\",\r\n \"etag\": \"W/\\\"77aff96f-5c94-42fb-989e-058a524e73bf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e90dfcc1-6f29-4b90-aa51-40dc87adc839\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps8899\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442/ipConfigurations/ps8899\",\r\n \"etag\": \"W/\\\"77aff96f-5c94-42fb-989e-058a524e73bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps2616\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1755" + "1789" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10913,10 +11471,10 @@ "10" ], "x-ms-request-id": [ - "d8906429-f78c-4210-8b71-2031dad5b0a7" + "57fe7983-412a-47c9-a1a3-cb836723a898" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10932,28 +11490,275 @@ "1194" ], "x-ms-correlation-request-id": [ - "114e1f41-f0b8-409b-8510-b8a9afbaa235" + "488c675b-9ae4-471f-b1dc-bbc85c4929f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215150Z:114e1f41-f0b8-409b-8510-b8a9afbaa235" + "WESTUS2:20180510T065557Z:488c675b-9ae4-471f-b1dc-bbc85c4929f5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:49 GMT" + "Thu, 10 May 2018 06:55:57 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4ad37bea-df6a-454f-bb53-7ac9ad2da9e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14823" + ], + "x-ms-correlation-request-id": [ + "e2f07680-5c25-4209-8752-be95592d4e22" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T065608Z:e2f07680-5c25-4209-8752-be95592d4e22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 06:56:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3966cb41-04b5-4762-9862-894e2bb19c86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14822" + ], + "x-ms-correlation-request-id": [ + "beef992b-5e72-4fec-9e54-ac3e77b905be" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T065618Z:beef992b-5e72-4fec-9e54-ac3e77b905be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 06:56:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5ace2b05-8921-40e1-85e1-47469484daee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14821" + ], + "x-ms-correlation-request-id": [ + "b648b0f1-102f-425c-af44-c9e1953904a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T065628Z:b648b0f1-102f-425c-af44-c9e1953904a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 06:56:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6c7ad867-ad8c-4358-bbf8-d9ceb9d2c309" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14820" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d19daad8-79b4-4883-84de-ab8a8341c2cb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T065638Z:d19daad8-79b4-4883-84de-ab8a8341c2cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 06:56:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -10974,7 +11779,7 @@ "10" ], "x-ms-request-id": [ - "dccb3c72-c438-42be-9239-86b7dd123a78" + "0d071173-f7fe-42c4-ae9e-65e4a162dd9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10990,28 +11795,31 @@ "14819" ], "x-ms-correlation-request-id": [ - "4d67c873-9339-49b4-81fc-392c49713478" + "50527c5f-5339-4755-b0fd-320c04784789" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215200Z:4d67c873-9339-49b4-81fc-392c49713478" + "WESTUS2:20180510T065648Z:50527c5f-5339-4755-b0fd-320c04784789" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:51:59 GMT" + "Thu, 10 May 2018 06:56:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11032,7 +11840,7 @@ "10" ], "x-ms-request-id": [ - "ae0db105-193e-4368-b5da-89faeff89cfd" + "33c3ba8a-f7ab-45f8-bf70-f28a4b15d7b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11048,28 +11856,31 @@ "14818" ], "x-ms-correlation-request-id": [ - "5928c447-3100-43a5-9564-c3422d60d5c3" + "b6577da4-27db-4820-a8c4-eb536536bd25" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215210Z:5928c447-3100-43a5-9564-c3422d60d5c3" + "WESTUS2:20180510T065658Z:b6577da4-27db-4820-a8c4-eb536536bd25" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:52:09 GMT" + "Thu, 10 May 2018 06:56:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11090,7 +11901,7 @@ "10" ], "x-ms-request-id": [ - "287586d3-34e5-4470-b2ae-77e4fab8f823" + "10d7fecc-1155-4319-b9b0-c248cc1f7487" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11106,28 +11917,31 @@ "14817" ], "x-ms-correlation-request-id": [ - "f9fea317-f9ef-4fe0-aa03-82ac6fe2c062" + "370a591f-46f0-49d8-ac55-2f3d37a54cd4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215220Z:f9fea317-f9ef-4fe0-aa03-82ac6fe2c062" + "WESTUS2:20180510T065708Z:370a591f-46f0-49d8-ac55-2f3d37a54cd4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:52:20 GMT" + "Thu, 10 May 2018 06:57:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11148,7 +11962,7 @@ "10" ], "x-ms-request-id": [ - "56026841-3633-49a1-9b7e-578a08b4e3b8" + "8e764d14-9c58-4b58-919c-c5658cee5249" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11164,28 +11978,31 @@ "14816" ], "x-ms-correlation-request-id": [ - "6f012064-bbf8-4db7-8ef0-87d5a5aab354" + "4d8c78b6-cd78-4fc1-bf8c-50d8c5ee24df" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215230Z:6f012064-bbf8-4db7-8ef0-87d5a5aab354" + "WESTUS2:20180510T065718Z:4d8c78b6-cd78-4fc1-bf8c-50d8c5ee24df" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:52:30 GMT" + "Thu, 10 May 2018 06:57:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11206,7 +12023,7 @@ "10" ], "x-ms-request-id": [ - "9c979f28-4588-49bb-9606-60f839a30616" + "dc9b0903-ae10-4d51-986f-2cb64f3ec6d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11222,28 +12039,31 @@ "14815" ], "x-ms-correlation-request-id": [ - "0bbd821a-0c95-4d32-b7f2-8bc61aad396b" + "989651a8-0eac-4e70-9774-8672994387d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215241Z:0bbd821a-0c95-4d32-b7f2-8bc61aad396b" + "WESTUS2:20180510T065728Z:989651a8-0eac-4e70-9774-8672994387d6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:52:40 GMT" + "Thu, 10 May 2018 06:57:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11264,7 +12084,7 @@ "10" ], "x-ms-request-id": [ - "a85f5b3a-41f2-49db-a2a0-5b4b3fd807e1" + "51ed50d9-8c00-41e7-aeea-59d83d2b6e60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11280,28 +12100,31 @@ "14814" ], "x-ms-correlation-request-id": [ - "cde7cfbb-c031-4d8d-ba16-a68bbce3ad83" + "1f1d5f89-96fa-42dc-99d8-ad60a956d32d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215251Z:cde7cfbb-c031-4d8d-ba16-a68bbce3ad83" + "WESTUS2:20180510T065738Z:1f1d5f89-96fa-42dc-99d8-ad60a956d32d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:52:50 GMT" + "Thu, 10 May 2018 06:57:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11322,7 +12145,7 @@ "10" ], "x-ms-request-id": [ - "14108908-11bb-495a-91c9-2cc57bd1c363" + "efc3fa3c-9e4d-497f-9025-c178b69ce2b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11338,28 +12161,31 @@ "14813" ], "x-ms-correlation-request-id": [ - "47f365c1-7adc-4281-9089-cafd596d6300" + "ed0cc2cc-6976-4b29-8c94-1ce235a929c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215301Z:47f365c1-7adc-4281-9089-cafd596d6300" + "WESTUS2:20180510T065748Z:ed0cc2cc-6976-4b29-8c94-1ce235a929c5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:53:00 GMT" + "Thu, 10 May 2018 06:57:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11380,7 +12206,7 @@ "10" ], "x-ms-request-id": [ - "d1812efd-76df-4fa1-b70e-29dc641c4345" + "620e1099-2d13-40a1-b8eb-2b2224674e81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11396,28 +12222,31 @@ "14812" ], "x-ms-correlation-request-id": [ - "6676ce63-6ff1-4c32-b302-3a4aac192d09" + "0bfcccfc-e6af-465e-b544-bb431782dd4f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215311Z:6676ce63-6ff1-4c32-b302-3a4aac192d09" + "WESTUS2:20180510T065758Z:0bfcccfc-e6af-465e-b544-bb431782dd4f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:53:11 GMT" + "Thu, 10 May 2018 06:57:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11438,11 +12267,14 @@ "10" ], "x-ms-request-id": [ - "3e357af7-0c4b-4313-940c-6107fb275f3a" + "43549eaa-2d15-45e7-8d2e-c0f18a1e93f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14811" + ], "Cache-Control": [ "no-cache" ], @@ -11450,32 +12282,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14811" - ], "x-ms-correlation-request-id": [ - "0cb2591a-04fe-4fea-a09a-4872ff861561" + "95aae054-f908-4449-9a56-ceac75549935" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215322Z:0cb2591a-04fe-4fea-a09a-4872ff861561" + "WESTUS2:20180510T065808Z:95aae054-f908-4449-9a56-ceac75549935" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:53:21 GMT" + "Thu, 10 May 2018 06:58:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11496,7 +12328,7 @@ "10" ], "x-ms-request-id": [ - "a4b9a291-4a44-4a2c-bac4-b0fc55cbff13" + "694f48fb-e89e-48db-8f70-965d4834226e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11512,28 +12344,31 @@ "14810" ], "x-ms-correlation-request-id": [ - "0b895d28-6cbd-4be4-9665-066f618fbc64" + "91764cca-e5d9-4d33-9262-870ab5b0bb84" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215332Z:0b895d28-6cbd-4be4-9665-066f618fbc64" + "WESTUS2:20180510T065818Z:91764cca-e5d9-4d33-9262-870ab5b0bb84" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:53:32 GMT" + "Thu, 10 May 2018 06:58:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11554,7 +12389,7 @@ "10" ], "x-ms-request-id": [ - "0f475ef7-9c94-4eb0-81c8-74b08cdce7b8" + "5f581acb-7df5-432e-89ff-8bd2b67f8851" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11570,28 +12405,31 @@ "14809" ], "x-ms-correlation-request-id": [ - "5b9f7fdf-ff06-4e8c-a6d3-fb250ddfea95" + "90350cf2-8e20-4a9e-a5f9-0e8e66ef8696" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215342Z:5b9f7fdf-ff06-4e8c-a6d3-fb250ddfea95" + "WESTUS2:20180510T065828Z:90350cf2-8e20-4a9e-a5f9-0e8e66ef8696" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:53:42 GMT" + "Thu, 10 May 2018 06:58:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11612,7 +12450,7 @@ "10" ], "x-ms-request-id": [ - "4267afa4-1099-457a-a6e5-fbf64fc30b05" + "9ea3b614-ce49-4eaa-9b92-7a13becf2ddf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11628,28 +12466,31 @@ "14808" ], "x-ms-correlation-request-id": [ - "535a9808-d26a-4603-a212-f080c09a4c1b" + "36a612e2-fe03-4ab3-b75f-c62fbf1ee941" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215352Z:535a9808-d26a-4603-a212-f080c09a4c1b" + "WESTUS2:20180510T065839Z:36a612e2-fe03-4ab3-b75f-c62fbf1ee941" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:53:52 GMT" + "Thu, 10 May 2018 06:58:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11670,7 +12511,7 @@ "10" ], "x-ms-request-id": [ - "c936f7a3-f96b-4aaa-824b-1cd4bba80323" + "36295507-50d9-4b01-9be8-0a8dd07cf199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11686,28 +12527,31 @@ "14807" ], "x-ms-correlation-request-id": [ - "cd267b7c-616b-4998-b949-aeb3f9a82673" + "2729d549-ed0c-40fe-9742-97af73a7101b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215403Z:cd267b7c-616b-4998-b949-aeb3f9a82673" + "WESTUS2:20180510T065849Z:2729d549-ed0c-40fe-9742-97af73a7101b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:54:02 GMT" + "Thu, 10 May 2018 06:58:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11728,7 +12572,7 @@ "10" ], "x-ms-request-id": [ - "11e17c1e-d715-4652-8663-064526947929" + "6f4039ed-c1db-4bed-b534-4c25d2e63b24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11744,28 +12588,31 @@ "14806" ], "x-ms-correlation-request-id": [ - "1f9cb795-4783-4c83-917a-e81736ff916c" + "6407209a-c12d-48c0-aa7f-ecc4a44cc0fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215413Z:1f9cb795-4783-4c83-917a-e81736ff916c" + "WESTUS2:20180510T065859Z:6407209a-c12d-48c0-aa7f-ecc4a44cc0fe" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:54:13 GMT" + "Thu, 10 May 2018 06:58:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11786,7 +12633,7 @@ "10" ], "x-ms-request-id": [ - "16595a58-3be2-4598-9b2f-efebfabe18e5" + "6af7b5c0-b763-490f-8ebb-32fd238d73d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11802,28 +12649,31 @@ "14805" ], "x-ms-correlation-request-id": [ - "af795d4a-6bd5-4acf-8c8c-2117bdd1d06d" + "e22e1365-9956-4055-a939-4d42b8e1c4e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215423Z:af795d4a-6bd5-4acf-8c8c-2117bdd1d06d" + "WESTUS2:20180510T065909Z:e22e1365-9956-4055-a939-4d42b8e1c4e0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:54:23 GMT" + "Thu, 10 May 2018 06:59:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11844,7 +12694,7 @@ "10" ], "x-ms-request-id": [ - "63bf489b-bd8d-4d03-b2ce-cbcdc9803cd9" + "a8aebb1a-328d-4970-91cb-b321440837b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11860,28 +12710,31 @@ "14804" ], "x-ms-correlation-request-id": [ - "5ef60fa8-6061-46f9-ba4a-738e31794a7c" + "77fe9037-41fb-4ce0-801d-bfd87926917e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215433Z:5ef60fa8-6061-46f9-ba4a-738e31794a7c" + "WESTUS2:20180510T065919Z:77fe9037-41fb-4ce0-801d-bfd87926917e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:54:33 GMT" + "Thu, 10 May 2018 06:59:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11902,7 +12755,7 @@ "10" ], "x-ms-request-id": [ - "9e6e1af9-b48a-4c4b-a988-3566516f0a26" + "ad9379fd-a52b-4221-84f5-53b7e49183e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11918,28 +12771,31 @@ "14803" ], "x-ms-correlation-request-id": [ - "0238f1ec-7ac2-4e50-bb72-e5ef23e9e4e2" + "14022d1a-829c-4b1e-932a-40a864188135" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215443Z:0238f1ec-7ac2-4e50-bb72-e5ef23e9e4e2" + "WESTUS2:20180510T065929Z:14022d1a-829c-4b1e-932a-40a864188135" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:54:43 GMT" + "Thu, 10 May 2018 06:59:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -11960,11 +12816,14 @@ "10" ], "x-ms-request-id": [ - "0cafd3aa-24b2-4c1c-b88f-a1103647c8ef" + "cfdceb66-d2de-4288-9258-27d3275c2c6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14802" + ], "Cache-Control": [ "no-cache" ], @@ -11972,32 +12831,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14802" - ], "x-ms-correlation-request-id": [ - "da1eb462-97d9-486b-9113-9946e2b5655e" + "abbb041d-4265-4ca0-bc05-aa79aa24e958" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215454Z:da1eb462-97d9-486b-9113-9946e2b5655e" + "WESTUS2:20180510T065939Z:abbb041d-4265-4ca0-bc05-aa79aa24e958" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:54:53 GMT" + "Thu, 10 May 2018 06:59:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12018,7 +12877,7 @@ "10" ], "x-ms-request-id": [ - "639a1e3e-198f-42a1-ab4c-8e7cdac640c0" + "d223bf82-af38-426a-817b-4d95ec506f91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12034,28 +12893,31 @@ "14801" ], "x-ms-correlation-request-id": [ - "c3d3feff-55b7-4490-a661-cc474fbbdbac" + "91a11f52-a11d-4820-8d38-c1e46726501b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215504Z:c3d3feff-55b7-4490-a661-cc474fbbdbac" + "WESTUS2:20180510T065949Z:91a11f52-a11d-4820-8d38-c1e46726501b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:55:03 GMT" + "Thu, 10 May 2018 06:59:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12076,7 +12938,7 @@ "10" ], "x-ms-request-id": [ - "c8795d90-b4a8-488e-82fa-044ae26d1a3b" + "ab4c5185-4dc9-4863-a29e-8592f0a86df1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12092,28 +12954,31 @@ "14800" ], "x-ms-correlation-request-id": [ - "928ff612-bff9-47fb-a104-b35c4c905cea" + "de19b98a-3d5a-40a7-bcd8-99578dbe27e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215514Z:928ff612-bff9-47fb-a104-b35c4c905cea" + "WESTUS2:20180510T065959Z:de19b98a-3d5a-40a7-bcd8-99578dbe27e2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:55:13 GMT" + "Thu, 10 May 2018 06:59:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12134,7 +12999,7 @@ "10" ], "x-ms-request-id": [ - "060be612-0c58-47e2-b149-3f686576a820" + "bce76201-99b3-43d9-a95b-75e39848b4fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12150,28 +13015,31 @@ "14799" ], "x-ms-correlation-request-id": [ - "5abb3523-524c-4594-a0dd-c3f210a616c1" + "5065b279-833e-4105-b354-4224c33612f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215524Z:5abb3523-524c-4594-a0dd-c3f210a616c1" + "WESTUS2:20180510T070009Z:5065b279-833e-4105-b354-4224c33612f3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:55:23 GMT" + "Thu, 10 May 2018 07:00:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12192,7 +13060,7 @@ "10" ], "x-ms-request-id": [ - "6ae29910-8cd6-4651-9372-ebfb1862620f" + "327826ec-1636-4260-93b4-47d7a1bf05bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12208,28 +13076,31 @@ "14798" ], "x-ms-correlation-request-id": [ - "a754d652-777b-45e2-a521-74412dfc4c6b" + "5641eced-4a98-4d0a-bea7-6688a253ea84" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215535Z:a754d652-777b-45e2-a521-74412dfc4c6b" + "WESTUS2:20180510T070019Z:5641eced-4a98-4d0a-bea7-6688a253ea84" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:55:35 GMT" + "Thu, 10 May 2018 07:00:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12250,7 +13121,7 @@ "10" ], "x-ms-request-id": [ - "7f21f5a0-3337-42a1-8a38-5eb4f86ff05c" + "9a31c48b-2095-4ff3-b02c-caeef15d4336" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12266,28 +13137,31 @@ "14797" ], "x-ms-correlation-request-id": [ - "9069ae34-4b70-44e7-bdea-25ba939ea68d" + "f1b76a95-06bb-4d70-a6b0-f8a8c2c924fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215545Z:9069ae34-4b70-44e7-bdea-25ba939ea68d" + "WESTUS2:20180510T070029Z:f1b76a95-06bb-4d70-a6b0-f8a8c2c924fd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:55:45 GMT" + "Thu, 10 May 2018 07:00:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12308,7 +13182,7 @@ "10" ], "x-ms-request-id": [ - "856a21cc-6200-4bcd-9b97-12b794fddb82" + "0adfc0a5-0ce1-4557-a11e-47e9aee5630a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12324,28 +13198,31 @@ "14796" ], "x-ms-correlation-request-id": [ - "28ab3886-3b6b-4001-912c-f0d9e3db297c" + "c811560d-9a85-4124-9b1c-acfb8ee47a03" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215555Z:28ab3886-3b6b-4001-912c-f0d9e3db297c" + "WESTUS2:20180510T070039Z:c811560d-9a85-4124-9b1c-acfb8ee47a03" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:55:55 GMT" + "Thu, 10 May 2018 07:00:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12366,7 +13243,7 @@ "10" ], "x-ms-request-id": [ - "343cb807-6a97-42cc-a559-90e85d4047d5" + "a852c3c1-dc0e-482f-afb7-3e506b824827" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12382,28 +13259,31 @@ "14795" ], "x-ms-correlation-request-id": [ - "73e5d954-fdc5-486b-a8a9-cbad88367ee6" + "a85e93a0-2d8c-4ac9-aebf-fd5fe151fe9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215605Z:73e5d954-fdc5-486b-a8a9-cbad88367ee6" + "WESTUS2:20180510T070049Z:a85e93a0-2d8c-4ac9-aebf-fd5fe151fe9f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:56:05 GMT" + "Thu, 10 May 2018 07:00:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12424,7 +13304,7 @@ "10" ], "x-ms-request-id": [ - "5fc873c8-e8ee-4572-b74c-b5f18d4dfc57" + "7b15a3ca-8fb2-4945-a803-85af006db2ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12440,28 +13320,31 @@ "14794" ], "x-ms-correlation-request-id": [ - "5af52daf-5548-481d-9e75-0bcea150e74c" + "0e429593-5ce4-422c-806f-10d421ea74ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215615Z:5af52daf-5548-481d-9e75-0bcea150e74c" + "WESTUS2:20180510T070059Z:0e429593-5ce4-422c-806f-10d421ea74ad" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:56:15 GMT" + "Thu, 10 May 2018 07:00:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12482,11 +13365,14 @@ "10" ], "x-ms-request-id": [ - "62624d08-42ae-4460-8df0-93409666809f" + "4f55ea4f-1de2-4642-9532-ec05f04222cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14793" + ], "Cache-Control": [ "no-cache" ], @@ -12494,32 +13380,520 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14793" - ], "x-ms-correlation-request-id": [ - "d9da28e3-0c68-4c36-a9e6-6f5121177c91" + "670cb6d8-d367-4e9e-8e3f-fb9bcaf94167" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215626Z:d9da28e3-0c68-4c36-a9e6-6f5121177c91" + "WESTUS2:20180510T070110Z:670cb6d8-d367-4e9e-8e3f-fb9bcaf94167" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 07:01:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b64d9f90-bf2b-4ba3-8623-cd0c38b8536b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14792" + ], + "x-ms-correlation-request-id": [ + "75a8c09d-180a-4afe-94ac-b486f22cf5dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T070120Z:75a8c09d-180a-4afe-94ac-b486f22cf5dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 07:01:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b8a70287-6f78-4e63-a76b-a997986cb12b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14791" + ], + "x-ms-correlation-request-id": [ + "e332f9a4-dcc8-4011-bcdc-5f9707a3c235" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T070130Z:e332f9a4-dcc8-4011-bcdc-5f9707a3c235" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 07:01:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "20862859-e9fa-41ee-8b98-6eef45b1c002" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14790" + ], + "x-ms-correlation-request-id": [ + "68263f40-7647-4e45-973d-07861c77e1c7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T070140Z:68263f40-7647-4e45-973d-07861c77e1c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 07:01:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7f7f0061-75a2-4ad7-b326-04fbd25c3a79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14789" + ], + "x-ms-correlation-request-id": [ + "ca60eac5-938e-43e7-b50b-ee4be93d35b2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T070150Z:ca60eac5-938e-43e7-b50b-ee4be93d35b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 07:01:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fba5fbc7-2635-4823-a28b-33e68687fab4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14788" + ], + "x-ms-correlation-request-id": [ + "9d877497-1bf0-4b08-9bde-00d5d512a9d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T070200Z:9d877497-1bf0-4b08-9bde-00d5d512a9d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 07:02:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bdc64fb3-e24e-49e8-8527-63b4e4b06707" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14787" + ], + "x-ms-correlation-request-id": [ + "2a663e00-8477-4ce2-8e22-d48ab10105f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T070210Z:2a663e00-8477-4ce2-8e22-d48ab10105f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 07:02:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "73fb7676-2edf-4866-bb80-dfce54185145" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14786" + ], + "x-ms-correlation-request-id": [ + "20ec9772-17ea-42ba-b717-8e10776b4209" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T070220Z:20ec9772-17ea-42ba-b717-8e10776b4209" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 10 May 2018 07:02:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dd78c183-82ce-413a-b571-ba5ea9121c59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14785" + ], + "x-ms-correlation-request-id": [ + "415ea807-0cd0-4771-88d0-93d71fe0be5a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T070230Z:415ea807-0cd0-4771-88d0-93d71fe0be5a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:56:25 GMT" + "Thu, 10 May 2018 07:02:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12540,11 +13914,14 @@ "10" ], "x-ms-request-id": [ - "f7d5b9ea-b7c0-4229-92dc-91b1c0ccca63" + "c6890a57-01ea-4d70-b441-568dbdd2f007" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14784" + ], "Cache-Control": [ "no-cache" ], @@ -12552,32 +13929,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14792" - ], "x-ms-correlation-request-id": [ - "f535e496-1654-4ec2-b4d9-aa1fcb73b568" + "c58dd472-81e8-457e-a107-0134bdd0e6cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215636Z:f535e496-1654-4ec2-b4d9-aa1fcb73b568" + "WESTUS2:20180510T070240Z:c58dd472-81e8-457e-a107-0134bdd0e6cd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:56:36 GMT" + "Thu, 10 May 2018 07:02:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12598,7 +13975,7 @@ "10" ], "x-ms-request-id": [ - "4003d622-3628-4ea8-aeb2-692497e91b52" + "c65684d1-dd69-42f6-910e-e7391fbde26b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12611,31 +13988,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14791" + "14783" ], "x-ms-correlation-request-id": [ - "80284bdf-86bb-4913-b768-a6059cf1cbdb" + "a1cdd9a4-280c-4d73-9b67-6efff3c64de9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215646Z:80284bdf-86bb-4913-b768-a6059cf1cbdb" + "WESTUS2:20180510T070250Z:a1cdd9a4-280c-4d73-9b67-6efff3c64de9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:56:45 GMT" + "Thu, 10 May 2018 07:02:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12656,7 +14036,7 @@ "10" ], "x-ms-request-id": [ - "bf9dab2e-3a1b-485d-9bcd-0636cbe4dd19" + "626eca82-b791-483f-b45a-99ba2ff19faf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12669,31 +14049,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14790" + "14782" ], "x-ms-correlation-request-id": [ - "59b02976-d205-49c4-8f38-0fbe0e252929" + "2b04b7a7-fca2-424b-b136-0ac9e81b0458" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215656Z:59b02976-d205-49c4-8f38-0fbe0e252929" + "WESTUS2:20180510T070300Z:2b04b7a7-fca2-424b-b136-0ac9e81b0458" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:56:55 GMT" + "Thu, 10 May 2018 07:03:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12714,7 +14097,7 @@ "10" ], "x-ms-request-id": [ - "44503067-36d7-4c4c-b040-bafbfc6bf639" + "dc5acd26-67c2-459e-a675-51fbc7c6d1ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12727,31 +14110,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14789" + "14781" ], "x-ms-correlation-request-id": [ - "870d71a3-872d-4911-8c59-4556c432a472" + "92909d8d-2f0a-4ce1-b778-51a1104ae011" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215706Z:870d71a3-872d-4911-8c59-4556c432a472" + "WESTUS2:20180510T070310Z:92909d8d-2f0a-4ce1-b778-51a1104ae011" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:57:06 GMT" + "Thu, 10 May 2018 07:03:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12772,7 +14158,7 @@ "10" ], "x-ms-request-id": [ - "c2e75186-8209-4ba9-93f8-ce27cca1c9ed" + "b010f9ee-4ae5-4ae6-95ea-88197fdfed2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12785,31 +14171,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14788" + "14780" ], "x-ms-correlation-request-id": [ - "c5367977-9acf-482e-a062-eb258018d5fd" + "641942a9-4e09-42fe-bd40-6a12e7f123e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215717Z:c5367977-9acf-482e-a062-eb258018d5fd" + "WESTUS2:20180510T070320Z:641942a9-4e09-42fe-bd40-6a12e7f123e8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:57:16 GMT" + "Thu, 10 May 2018 07:03:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12830,7 +14219,7 @@ "10" ], "x-ms-request-id": [ - "265c72e4-c05d-4d89-85c5-ae95c1837912" + "f9e8bc32-8c2b-4431-97ba-426f8d12ba26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12843,31 +14232,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14787" + "14779" ], "x-ms-correlation-request-id": [ - "0883de73-73e8-4202-afca-bf17a29252c8" + "e682a7ea-18d3-4671-8a59-bf15467806d2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215727Z:0883de73-73e8-4202-afca-bf17a29252c8" + "WESTUS2:20180510T070331Z:e682a7ea-18d3-4671-8a59-bf15467806d2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:57:27 GMT" + "Thu, 10 May 2018 07:03:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12888,7 +14280,7 @@ "10" ], "x-ms-request-id": [ - "5e5dde20-d8cb-422c-aea4-d3ed6524e9f3" + "26b0c171-2e06-409b-8da8-d821157e7189" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12901,31 +14293,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14786" + "14778" ], "x-ms-correlation-request-id": [ - "70aaf7e5-57cb-44b4-8931-377b2695622d" + "0b0336ed-371f-42a5-a342-fa45be464d9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215737Z:70aaf7e5-57cb-44b4-8931-377b2695622d" + "WESTUS2:20180510T070341Z:0b0336ed-371f-42a5-a342-fa45be464d9e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:57:37 GMT" + "Thu, 10 May 2018 07:03:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -12946,7 +14341,7 @@ "10" ], "x-ms-request-id": [ - "8a63e66b-80a5-4560-8be6-230adbe1f132" + "2d860e7e-efec-427c-b054-7e48e4efbe13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12959,31 +14354,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14785" + "14777" ], "x-ms-correlation-request-id": [ - "56e8387c-9a57-4a50-855f-336efaed9aa1" + "b6e6717c-5c1c-4fe4-9770-27d70e184b37" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215747Z:56e8387c-9a57-4a50-855f-336efaed9aa1" + "WESTUS2:20180510T070351Z:b6e6717c-5c1c-4fe4-9770-27d70e184b37" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:57:47 GMT" + "Thu, 10 May 2018 07:03:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13004,7 +14402,7 @@ "10" ], "x-ms-request-id": [ - "4404363e-0073-4e7c-9407-a7f5a2bc7d4d" + "d68ed057-a7a5-4188-995e-a45d6cb2ded7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13017,31 +14415,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14784" + "14776" ], "x-ms-correlation-request-id": [ - "9daaf8c2-d1f7-40b4-a3fd-4a52acd04282" + "f6a3de79-2a50-457d-ae27-0f77327db90e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215757Z:9daaf8c2-d1f7-40b4-a3fd-4a52acd04282" + "WESTUS2:20180510T070401Z:f6a3de79-2a50-457d-ae27-0f77327db90e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:57:57 GMT" + "Thu, 10 May 2018 07:04:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13062,11 +14463,14 @@ "10" ], "x-ms-request-id": [ - "2c32b833-4f05-42a0-acb0-78fb579840fb" + "22326723-5a7a-4ddd-af5b-aa192033fc3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14775" + ], "Cache-Control": [ "no-cache" ], @@ -13074,32 +14478,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14783" - ], "x-ms-correlation-request-id": [ - "770561a6-14d0-4c68-9414-8b6787a97cdf" + "17e194e1-934d-4847-bc0c-8e8d0c8fb380" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215808Z:770561a6-14d0-4c68-9414-8b6787a97cdf" + "WESTUS2:20180510T070411Z:17e194e1-934d-4847-bc0c-8e8d0c8fb380" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:58:07 GMT" + "Thu, 10 May 2018 07:04:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13120,7 +14524,7 @@ "10" ], "x-ms-request-id": [ - "5b5029b6-615f-4cdd-bcd6-1b5fe0df5e45" + "17ac4ac2-f0d2-4f7d-a4b9-6bf5aec253ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13133,31 +14537,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14782" + "14774" ], "x-ms-correlation-request-id": [ - "2103db6b-6104-4a10-a942-78854bf24427" + "d16aed09-5857-47d5-b2eb-4e45ebaec91e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215818Z:2103db6b-6104-4a10-a942-78854bf24427" + "WESTUS2:20180510T070421Z:d16aed09-5857-47d5-b2eb-4e45ebaec91e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:58:18 GMT" + "Thu, 10 May 2018 07:04:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13178,7 +14585,7 @@ "10" ], "x-ms-request-id": [ - "dda08339-5752-414b-88b8-46c6bc87b997" + "9c2e3f72-05d4-4b5c-91a2-132e24405a06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13191,31 +14598,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" + "14773" ], "x-ms-correlation-request-id": [ - "fb6dc67f-de54-4547-ac29-49c6c8f9662a" + "0c0d0553-5825-4796-8f4e-6f1ddeb19ac5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215828Z:fb6dc67f-de54-4547-ac29-49c6c8f9662a" + "WESTUS2:20180510T070431Z:0c0d0553-5825-4796-8f4e-6f1ddeb19ac5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:58:28 GMT" + "Thu, 10 May 2018 07:04:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13236,7 +14646,7 @@ "10" ], "x-ms-request-id": [ - "045e730a-fb8e-4fee-b11f-74a3329a3327" + "02457540-e7df-4235-956a-9ceaa1f89aaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13249,31 +14659,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14780" + "14772" ], "x-ms-correlation-request-id": [ - "ff2278bc-a302-404c-b78e-ab488ac5a58b" + "f6a9cf1d-60ef-4947-a61e-754704b1ec94" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215838Z:ff2278bc-a302-404c-b78e-ab488ac5a58b" + "WESTUS2:20180510T070441Z:f6a9cf1d-60ef-4947-a61e-754704b1ec94" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:58:38 GMT" + "Thu, 10 May 2018 07:04:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13294,7 +14707,7 @@ "10" ], "x-ms-request-id": [ - "fe165c08-fa2c-4445-af51-c59a862325a4" + "c12f78f9-5eff-40da-8c13-75dd17584218" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13307,31 +14720,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14779" + "14771" ], "x-ms-correlation-request-id": [ - "915dd8cb-fa2f-43f7-925b-59f3da740c79" + "73643092-8e08-40dc-8461-7360458f88b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215848Z:915dd8cb-fa2f-43f7-925b-59f3da740c79" + "WESTUS2:20180510T070451Z:73643092-8e08-40dc-8461-7360458f88b7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:58:48 GMT" + "Thu, 10 May 2018 07:04:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13352,7 +14768,7 @@ "10" ], "x-ms-request-id": [ - "ae4c3c17-6e82-4af3-8262-5b2797b8770a" + "b3b6094c-b2b7-4640-9632-fb0c9b48a5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13365,31 +14781,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14778" + "14770" ], "x-ms-correlation-request-id": [ - "6897b0c4-16d2-4c5e-99e1-47c662d097f1" + "18ab5813-702b-4803-8a6f-5142cb70304b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215859Z:6897b0c4-16d2-4c5e-99e1-47c662d097f1" + "WESTUS2:20180510T070501Z:18ab5813-702b-4803-8a6f-5142cb70304b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:58:58 GMT" + "Thu, 10 May 2018 07:05:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13410,7 +14829,7 @@ "10" ], "x-ms-request-id": [ - "7e3f4e96-c999-4cdd-b233-c676cb644761" + "7e2eed4a-15f3-42b4-93e7-d27ec707330e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13423,31 +14842,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14777" + "14769" ], "x-ms-correlation-request-id": [ - "380bc56f-db2d-45a5-bc76-07d20f6df603" + "66e6e598-c723-4513-8bec-8cc7e3a473a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215909Z:380bc56f-db2d-45a5-bc76-07d20f6df603" + "WESTUS2:20180510T070511Z:66e6e598-c723-4513-8bec-8cc7e3a473a1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:59:08 GMT" + "Thu, 10 May 2018 07:05:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13468,7 +14890,7 @@ "10" ], "x-ms-request-id": [ - "58f42f66-36ec-4b4c-aa64-b37803cd249d" + "817d0337-0392-497a-bec9-c4c5ba8bf6aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13481,31 +14903,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14776" + "14768" ], "x-ms-correlation-request-id": [ - "c9b66db3-2ad6-4cf0-8b5c-6ac65335649e" + "c9e4dfe5-6a5d-475f-ab27-9e361d453da0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215919Z:c9b66db3-2ad6-4cf0-8b5c-6ac65335649e" + "WESTUS2:20180510T070521Z:c9e4dfe5-6a5d-475f-ab27-9e361d453da0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:59:18 GMT" + "Thu, 10 May 2018 07:05:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13526,7 +14951,7 @@ "10" ], "x-ms-request-id": [ - "cb6529d4-cdb3-47af-9a26-4103588eb0e0" + "3c4b9f90-fe9b-4302-b09e-7843df6f2971" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13539,31 +14964,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14775" + "14767" ], "x-ms-correlation-request-id": [ - "fd309926-8535-4de7-9029-93707eb31785" + "3c5a09e1-6016-4f9d-b33e-96bacccec812" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215929Z:fd309926-8535-4de7-9029-93707eb31785" + "WESTUS2:20180510T070531Z:3c5a09e1-6016-4f9d-b33e-96bacccec812" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:59:29 GMT" + "Thu, 10 May 2018 07:05:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13584,11 +15012,14 @@ "10" ], "x-ms-request-id": [ - "5042b93d-085d-4741-be7c-1e90c583f227" + "425342b4-91dd-4390-b9bd-1df3443752ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14766" + ], "Cache-Control": [ "no-cache" ], @@ -13596,32 +15027,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14774" - ], "x-ms-correlation-request-id": [ - "cdd83c69-1248-4a7e-8fc0-b9127db13efa" + "a422dc6a-5d5c-46d4-924b-d83446c578ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215940Z:cdd83c69-1248-4a7e-8fc0-b9127db13efa" + "WESTUS2:20180510T070541Z:a422dc6a-5d5c-46d4-924b-d83446c578ad" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:59:39 GMT" + "Thu, 10 May 2018 07:05:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13642,7 +15073,7 @@ "10" ], "x-ms-request-id": [ - "9c9dfd58-d332-4568-9130-5986c58f2265" + "317987cf-c6d2-46ac-9ee6-5a13d1ebf061" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13655,31 +15086,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14773" + "14765" ], "x-ms-correlation-request-id": [ - "47d20d2f-b510-476e-b579-df85f14a011e" + "f12a2708-5844-4174-a0e4-d598365a032e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T215950Z:47d20d2f-b510-476e-b579-df85f14a011e" + "WESTUS2:20180510T070552Z:f12a2708-5844-4174-a0e4-d598365a032e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:59:49 GMT" + "Thu, 10 May 2018 07:05:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13700,7 +15134,7 @@ "10" ], "x-ms-request-id": [ - "1465369f-c133-49ef-9a67-d531b057ba0b" + "3832a729-6437-40c5-abd5-d7d8a572fa93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13713,31 +15147,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14772" + "14764" ], "x-ms-correlation-request-id": [ - "18db3cbe-909b-4f26-b6c8-bb1c09b5c541" + "16cbfdc8-d9de-43b8-b57d-a889ed369038" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220000Z:18db3cbe-909b-4f26-b6c8-bb1c09b5c541" + "WESTUS2:20180510T070602Z:16cbfdc8-d9de-43b8-b57d-a889ed369038" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 21:59:59 GMT" + "Thu, 10 May 2018 07:06:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13758,7 +15195,7 @@ "10" ], "x-ms-request-id": [ - "0b686566-4cb9-4b31-a6a6-12d8c64d0e6a" + "0b5870a9-e61f-4ea9-9227-0ee59e9385f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13771,31 +15208,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14771" + "14763" ], "x-ms-correlation-request-id": [ - "6b9dfab1-d053-45ee-b22d-d1c3b838a2bb" + "7a3bee45-7e0c-4f53-88ac-50c6803dc934" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220010Z:6b9dfab1-d053-45ee-b22d-d1c3b838a2bb" + "WESTUS2:20180510T070612Z:7a3bee45-7e0c-4f53-88ac-50c6803dc934" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:00:09 GMT" + "Thu, 10 May 2018 07:06:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13816,7 +15256,7 @@ "10" ], "x-ms-request-id": [ - "5a76a88c-4be8-4526-a62c-67e7eef31778" + "1b24c770-747b-4ef5-87ce-e5c607b0b6db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13829,31 +15269,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14770" + "14762" ], "x-ms-correlation-request-id": [ - "924a2c7b-a58d-4d14-b935-e93bb1960a56" + "14bc202b-c1f6-4c7f-92c6-e9b971aa924c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220021Z:924a2c7b-a58d-4d14-b935-e93bb1960a56" + "WESTUS2:20180510T070622Z:14bc202b-c1f6-4c7f-92c6-e9b971aa924c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:00:20 GMT" + "Thu, 10 May 2018 07:06:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13874,7 +15317,7 @@ "10" ], "x-ms-request-id": [ - "3f74f831-de82-43d0-b87b-dbb90c3becc8" + "51b5a19b-4354-4909-8d71-6e397e004b2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13887,31 +15330,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14769" + "14761" ], "x-ms-correlation-request-id": [ - "21f676d0-237b-480f-8a84-91800c28f635" + "dd9eb90b-6cf5-4e9a-9fcc-e42a8746c3dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220031Z:21f676d0-237b-480f-8a84-91800c28f635" + "WESTUS2:20180510T070632Z:dd9eb90b-6cf5-4e9a-9fcc-e42a8746c3dc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:00:30 GMT" + "Thu, 10 May 2018 07:06:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13932,7 +15378,7 @@ "10" ], "x-ms-request-id": [ - "dbf6c6fd-b74b-4ce0-8ed2-51ae4cdef08f" + "4031abd4-2d88-430d-bba5-2ca00887c80f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13945,31 +15391,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14768" + "14760" ], "x-ms-correlation-request-id": [ - "e091caaf-8aa5-4f4f-b1c6-6d153178add8" + "bcac6362-5827-414d-b8d7-d2302c534e29" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220041Z:e091caaf-8aa5-4f4f-b1c6-6d153178add8" + "WESTUS2:20180510T070642Z:bcac6362-5827-414d-b8d7-d2302c534e29" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:00:40 GMT" + "Thu, 10 May 2018 07:06:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -13990,7 +15439,7 @@ "10" ], "x-ms-request-id": [ - "5f71e44c-6302-4776-951b-d47fe4ffc5eb" + "f407d56b-730c-4e64-a108-aa3ad8d27688" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14003,31 +15452,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14767" + "14759" ], "x-ms-correlation-request-id": [ - "d6e90d49-6302-40e6-9757-03b5d356229c" + "c76e9ce0-2d10-44ec-9da1-14de32956b30" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220051Z:d6e90d49-6302-40e6-9757-03b5d356229c" + "WESTUS2:20180510T070652Z:c76e9ce0-2d10-44ec-9da1-14de32956b30" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:00:51 GMT" + "Thu, 10 May 2018 07:06:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14048,7 +15500,7 @@ "10" ], "x-ms-request-id": [ - "a8ef0f8d-906a-4d0a-ade2-81ccde09ea28" + "53d5dc9a-c126-491e-b0a6-2d5ebb12cad8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14061,31 +15513,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14766" + "14758" ], "x-ms-correlation-request-id": [ - "65406ee4-79b4-4f15-880d-725bbd7b367c" + "33ad8447-1a89-49e8-8625-677450ac9e55" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220101Z:65406ee4-79b4-4f15-880d-725bbd7b367c" + "WESTUS2:20180510T070702Z:33ad8447-1a89-49e8-8625-677450ac9e55" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:01:01 GMT" + "Thu, 10 May 2018 07:07:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14106,11 +15561,14 @@ "10" ], "x-ms-request-id": [ - "65586d9c-6a0b-4431-8224-c73e0a3d7b1f" + "7bdfabff-d23d-46a8-bb0b-3d4614a22bb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14757" + ], "Cache-Control": [ "no-cache" ], @@ -14118,32 +15576,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14765" - ], "x-ms-correlation-request-id": [ - "60c7203f-d674-417c-8837-323495e08110" + "df15a8b7-2626-41bd-8b84-0ae509d1972b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220111Z:60c7203f-d674-417c-8837-323495e08110" + "WESTUS2:20180510T070712Z:df15a8b7-2626-41bd-8b84-0ae509d1972b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:01:11 GMT" + "Thu, 10 May 2018 07:07:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14164,7 +15622,7 @@ "10" ], "x-ms-request-id": [ - "8a39cc34-0007-432e-9d1b-68d492a876de" + "f6f8816d-aba6-4b93-a3be-6ecf576916c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14177,31 +15635,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14764" + "14756" ], "x-ms-correlation-request-id": [ - "24a3fb10-4aa3-49fa-9040-3f3f4c666f55" + "230b8675-3501-4920-a9db-b022d41e0d09" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220122Z:24a3fb10-4aa3-49fa-9040-3f3f4c666f55" + "WESTUS2:20180510T070722Z:230b8675-3501-4920-a9db-b022d41e0d09" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:01:22 GMT" + "Thu, 10 May 2018 07:07:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14222,7 +15683,7 @@ "10" ], "x-ms-request-id": [ - "5eaeea7c-08b8-41c5-9815-aed1761a8e73" + "d760c38c-4a80-42f1-907f-8ac6a8abcb6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14235,31 +15696,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14763" + "14755" ], "x-ms-correlation-request-id": [ - "11172f17-e369-484f-82aa-952aac19a42f" + "b732f69b-60df-4fc3-a9bd-c1759d93f25b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220132Z:11172f17-e369-484f-82aa-952aac19a42f" + "WESTUS2:20180510T070732Z:b732f69b-60df-4fc3-a9bd-c1759d93f25b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:01:32 GMT" + "Thu, 10 May 2018 07:07:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14280,7 +15744,7 @@ "10" ], "x-ms-request-id": [ - "1845eda1-6660-4df1-b459-93c4eabd00b9" + "2e11ca5d-fb06-4e3f-976e-95fa14278c6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14293,31 +15757,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14762" + "14754" ], "x-ms-correlation-request-id": [ - "66ce28de-eb7e-45aa-bf74-1fcab6e2b6d5" + "726bb30c-d610-427e-a272-3abd302e9d7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220142Z:66ce28de-eb7e-45aa-bf74-1fcab6e2b6d5" + "WESTUS2:20180510T070742Z:726bb30c-d610-427e-a272-3abd302e9d7b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:01:42 GMT" + "Thu, 10 May 2018 07:07:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14338,7 +15805,7 @@ "10" ], "x-ms-request-id": [ - "538501f6-39b1-4a7c-9ffc-5ea1350c67d0" + "75beb6a3-1bd4-4147-bbfd-3b74c1724754" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14351,31 +15818,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14761" + "14753" ], "x-ms-correlation-request-id": [ - "91cd2414-0bad-4dee-a9ca-43f49a61c336" + "92b41b06-53ec-4292-93b3-d4e0c4dcd8f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220152Z:91cd2414-0bad-4dee-a9ca-43f49a61c336" + "WESTUS2:20180510T070752Z:92b41b06-53ec-4292-93b3-d4e0c4dcd8f5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:01:52 GMT" + "Thu, 10 May 2018 07:07:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14396,7 +15866,7 @@ "10" ], "x-ms-request-id": [ - "aa8a227e-3870-4a5f-aa3e-06a78c7cab89" + "d6fdd2af-0cfd-4e12-b5ae-2f6f362c2bc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14409,31 +15879,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14760" + "14752" ], "x-ms-correlation-request-id": [ - "ceaa1d41-f437-4bec-a5a1-f089a72db9c3" + "337d0f63-2ddc-49d9-9e44-1ed8ea2a30d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220203Z:ceaa1d41-f437-4bec-a5a1-f089a72db9c3" + "WESTUS2:20180510T070802Z:337d0f63-2ddc-49d9-9e44-1ed8ea2a30d4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:02:02 GMT" + "Thu, 10 May 2018 07:08:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14454,7 +15927,7 @@ "10" ], "x-ms-request-id": [ - "1e68bf9b-c538-47b3-8da4-fa859fe12ad3" + "69b20075-6c0d-4a34-8a12-7a89cc893807" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14467,31 +15940,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14759" + "14751" ], "x-ms-correlation-request-id": [ - "7ebe58d1-eca0-4510-af36-c69c53574618" + "8b6969f2-2618-4a69-b83f-c5e06774a542" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220213Z:7ebe58d1-eca0-4510-af36-c69c53574618" + "WESTUS2:20180510T070812Z:8b6969f2-2618-4a69-b83f-c5e06774a542" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:02:12 GMT" + "Thu, 10 May 2018 07:08:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14512,7 +15988,7 @@ "10" ], "x-ms-request-id": [ - "1aaa3533-de1d-4594-bb1a-acbd72dc2369" + "4182632f-d89c-4e65-a044-ed80d4ceeadd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14525,31 +16001,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14758" + "14750" ], "x-ms-correlation-request-id": [ - "2d9cb041-04ec-4ec5-98f5-d48cac5da841" + "fb0a4472-7758-4c82-b713-66239266c0d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220223Z:2d9cb041-04ec-4ec5-98f5-d48cac5da841" + "WESTUS2:20180510T070822Z:fb0a4472-7758-4c82-b713-66239266c0d4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:02:23 GMT" + "Thu, 10 May 2018 07:08:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14570,7 +16049,7 @@ "10" ], "x-ms-request-id": [ - "192d0bab-b1a2-45d5-97fa-e026973b7ad0" + "e9113d6d-e4a7-418d-b337-7cdf90838017" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14583,31 +16062,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14757" + "14749" ], "x-ms-correlation-request-id": [ - "4a7e0899-b238-41c5-ad0e-31ef6da90b73" + "e76c7a0e-7c48-4c80-8411-8f4138e60e32" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220233Z:4a7e0899-b238-41c5-ad0e-31ef6da90b73" + "WESTUS2:20180510T070833Z:e76c7a0e-7c48-4c80-8411-8f4138e60e32" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:02:33 GMT" + "Thu, 10 May 2018 07:08:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14628,11 +16110,14 @@ "10" ], "x-ms-request-id": [ - "e94bb7eb-d71e-49cb-8dd1-50eccc2eed89" + "2868b4e6-42d8-45c2-8cd2-ba52d1e8ee93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14748" + ], "Cache-Control": [ "no-cache" ], @@ -14640,32 +16125,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14756" - ], "x-ms-correlation-request-id": [ - "4a5a8881-b8bb-4589-a8a9-97984adb98ca" + "45dd5009-c054-4704-9aa1-869e00369935" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220243Z:4a5a8881-b8bb-4589-a8a9-97984adb98ca" + "WESTUS2:20180510T070843Z:45dd5009-c054-4704-9aa1-869e00369935" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:02:43 GMT" + "Thu, 10 May 2018 07:08:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14686,7 +16171,7 @@ "10" ], "x-ms-request-id": [ - "9443c813-5be3-496b-98ea-10a722137b92" + "be3b422c-384b-481c-b8c3-09e6461aa032" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14699,31 +16184,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14755" + "14747" ], "x-ms-correlation-request-id": [ - "88830508-b3d9-4ec9-91c1-b55919aed6dd" + "f2bf9530-7dfa-4c7e-8774-862caaa70023" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220254Z:88830508-b3d9-4ec9-91c1-b55919aed6dd" + "WESTUS2:20180510T070853Z:f2bf9530-7dfa-4c7e-8774-862caaa70023" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:02:54 GMT" + "Thu, 10 May 2018 07:08:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14744,7 +16232,7 @@ "10" ], "x-ms-request-id": [ - "8323b6ac-67f9-4658-b053-ec5c2d541e02" + "ce198dfe-4d54-45ae-b0fd-eab1d21cc4e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14757,31 +16245,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14754" + "14746" ], "x-ms-correlation-request-id": [ - "e42156c7-b13d-4a59-9282-a4c4bd4abb86" + "f9cf483f-56d5-4c15-9c93-58fcdc964534" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220304Z:e42156c7-b13d-4a59-9282-a4c4bd4abb86" + "WESTUS2:20180510T070903Z:f9cf483f-56d5-4c15-9c93-58fcdc964534" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:03:04 GMT" + "Thu, 10 May 2018 07:09:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14802,7 +16293,7 @@ "10" ], "x-ms-request-id": [ - "de5a659c-1884-46cd-a87d-1cc96231009c" + "10e29818-fa32-411d-bae9-9b66e2d04892" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14815,31 +16306,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14753" + "14745" ], "x-ms-correlation-request-id": [ - "d178fa7e-b34f-4dd3-bd77-b857bb3addcb" + "a4ce03c5-84ea-4691-8432-2a8e4b18a929" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220314Z:d178fa7e-b34f-4dd3-bd77-b857bb3addcb" + "WESTUS2:20180510T070913Z:a4ce03c5-84ea-4691-8432-2a8e4b18a929" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:03:14 GMT" + "Thu, 10 May 2018 07:09:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14860,7 +16354,7 @@ "10" ], "x-ms-request-id": [ - "232bd3e7-0e47-4119-be16-71827b360a3b" + "835c7e83-3aea-40d3-b749-932c7efcbff7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14873,31 +16367,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14752" + "14744" ], "x-ms-correlation-request-id": [ - "a40b2e9e-4653-443a-9ce6-aa97f4fc3273" + "25d20768-8e6f-44d9-b169-121e64444375" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220324Z:a40b2e9e-4653-443a-9ce6-aa97f4fc3273" + "WESTUS2:20180510T070923Z:25d20768-8e6f-44d9-b169-121e64444375" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:03:24 GMT" + "Thu, 10 May 2018 07:09:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14918,7 +16415,7 @@ "10" ], "x-ms-request-id": [ - "e2f35401-d2ed-416f-8e3b-294b845e81b1" + "d3bec35f-f79a-4b5f-a97a-8bd50a8d486d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14931,31 +16428,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14751" + "14743" ], "x-ms-correlation-request-id": [ - "facb8e77-8c1c-494f-b00a-5757ee2df3b3" + "b067abc4-3380-49c7-85e5-13844e4e1dda" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220334Z:facb8e77-8c1c-494f-b00a-5757ee2df3b3" + "WESTUS2:20180510T070933Z:b067abc4-3380-49c7-85e5-13844e4e1dda" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:03:34 GMT" + "Thu, 10 May 2018 07:09:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -14976,7 +16476,7 @@ "10" ], "x-ms-request-id": [ - "9cb513ee-aad6-4627-b0ba-cb7ee2a55137" + "9f27576f-24cb-4446-989c-6949accc1e4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14989,31 +16489,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14750" + "14742" ], "x-ms-correlation-request-id": [ - "7a89a87d-b176-48c6-b0ec-7f9960f04302" + "21c0a71e-f01e-4b67-a271-e899235902b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220345Z:7a89a87d-b176-48c6-b0ec-7f9960f04302" + "WESTUS2:20180510T070943Z:21c0a71e-f01e-4b67-a271-e899235902b4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:03:44 GMT" + "Thu, 10 May 2018 07:09:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15034,7 +16537,7 @@ "10" ], "x-ms-request-id": [ - "b5e98240-0d3d-411c-88b0-7983114ff264" + "81b79eea-ee49-48b9-91ba-b6626a2beefc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15047,31 +16550,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14749" + "14741" ], "x-ms-correlation-request-id": [ - "7e3e50e9-bd1a-4aea-80fb-4e0c7b94cdc1" + "d516ee9f-24e3-4951-bc2f-ae57e526ee53" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220355Z:7e3e50e9-bd1a-4aea-80fb-4e0c7b94cdc1" + "WESTUS2:20180510T070953Z:d516ee9f-24e3-4951-bc2f-ae57e526ee53" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:03:54 GMT" + "Thu, 10 May 2018 07:09:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15092,7 +16598,7 @@ "10" ], "x-ms-request-id": [ - "3e5c358b-0a56-41c8-9630-fcdd2b6f265d" + "c28528bb-f1c7-4660-9238-ab5a487eb1ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15105,31 +16611,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14748" + "14740" ], "x-ms-correlation-request-id": [ - "d90b3c5e-e993-4a61-ae8d-7e7dfe6d2ea8" + "00e27790-38d6-452d-b80b-69007ed4a73d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220405Z:d90b3c5e-e993-4a61-ae8d-7e7dfe6d2ea8" + "WESTUS2:20180510T071003Z:00e27790-38d6-452d-b80b-69007ed4a73d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:04:05 GMT" + "Thu, 10 May 2018 07:10:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15150,11 +16659,14 @@ "10" ], "x-ms-request-id": [ - "ff57116c-f483-4a03-8212-8960f4582464" + "77eb8e53-eb38-4379-8a08-1387ad6d387f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14739" + ], "Cache-Control": [ "no-cache" ], @@ -15162,32 +16674,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14747" - ], "x-ms-correlation-request-id": [ - "345ec010-d0a1-4bad-963a-acab94907971" + "5151a4ac-b34b-4be2-b225-15e4a1213da9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220415Z:345ec010-d0a1-4bad-963a-acab94907971" + "WESTUS2:20180510T071013Z:5151a4ac-b34b-4be2-b225-15e4a1213da9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:04:15 GMT" + "Thu, 10 May 2018 07:10:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15208,7 +16720,7 @@ "10" ], "x-ms-request-id": [ - "7ca5d146-e6bf-49a2-b83d-c4cafcc7642f" + "d68e12a5-c957-419c-8c48-b99558aeafb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15221,31 +16733,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14746" + "14738" ], "x-ms-correlation-request-id": [ - "72af8bc8-17c5-4ac4-90cf-78582e48eea1" + "7a5f2a48-cb85-4b73-9004-1113fc572f14" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220426Z:72af8bc8-17c5-4ac4-90cf-78582e48eea1" + "WESTUS2:20180510T071023Z:7a5f2a48-cb85-4b73-9004-1113fc572f14" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:04:25 GMT" + "Thu, 10 May 2018 07:10:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15266,7 +16781,7 @@ "10" ], "x-ms-request-id": [ - "1b58c3b1-cac2-4589-b9e3-965f8c767198" + "e2f71bf0-32c7-4f36-98b0-0b6500538fd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15279,31 +16794,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14745" + "14737" ], "x-ms-correlation-request-id": [ - "4580d72b-cae5-41b6-884c-0d277802d120" + "f3bb679c-e16e-434c-8e42-f0f47f3ad4c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220436Z:4580d72b-cae5-41b6-884c-0d277802d120" + "WESTUS2:20180510T071033Z:f3bb679c-e16e-434c-8e42-f0f47f3ad4c1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:04:35 GMT" + "Thu, 10 May 2018 07:10:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15324,7 +16842,7 @@ "10" ], "x-ms-request-id": [ - "b182b46f-efc6-40e5-9cae-85dc6388060c" + "d9d01cc0-4c30-4fcb-95b5-8ce220e7b6ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15337,31 +16855,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14736" ], "x-ms-correlation-request-id": [ - "e457598e-e599-47c2-aed7-58330e7e29fa" + "7b32fd60-20ec-4cec-9d5c-954ac663e66f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220446Z:e457598e-e599-47c2-aed7-58330e7e29fa" + "WESTUS2:20180510T071043Z:7b32fd60-20ec-4cec-9d5c-954ac663e66f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:04:45 GMT" + "Thu, 10 May 2018 07:10:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15382,7 +16903,7 @@ "10" ], "x-ms-request-id": [ - "a6358a6a-ef63-40f6-bce9-610603c3723a" + "e3229dbe-503b-4c6b-bdb4-bcb47e9f895d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15395,31 +16916,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14743" + "14735" ], "x-ms-correlation-request-id": [ - "793540d0-b417-4f3d-ba58-532b2780e49e" + "0bc40529-5cf3-471b-9652-42db56c39218" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220456Z:793540d0-b417-4f3d-ba58-532b2780e49e" + "WESTUS2:20180510T071054Z:0bc40529-5cf3-471b-9652-42db56c39218" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:04:55 GMT" + "Thu, 10 May 2018 07:10:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15440,7 +16964,7 @@ "10" ], "x-ms-request-id": [ - "7a1a0254-43c8-4e06-addc-ec4c2dfae7c4" + "422747b0-d692-446a-bf9e-389c2762d361" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15453,31 +16977,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14742" + "14734" ], "x-ms-correlation-request-id": [ - "8c587f33-52a4-4f57-beec-ba87f258c08a" + "868e98f3-794f-4b6e-952c-fa8c7dfef884" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220507Z:8c587f33-52a4-4f57-beec-ba87f258c08a" + "WESTUS2:20180510T071104Z:868e98f3-794f-4b6e-952c-fa8c7dfef884" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:05:06 GMT" + "Thu, 10 May 2018 07:11:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15498,7 +17025,7 @@ "10" ], "x-ms-request-id": [ - "85cccb99-d9d5-4da9-b0b4-702dab2667c4" + "0350a76d-156c-42dd-b6f5-8a906ef5e1cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15511,31 +17038,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" + "14733" ], "x-ms-correlation-request-id": [ - "0316c8b2-ebde-47c7-9940-dc141c1f8cf3" + "5eece634-7f0b-4c5d-bbe7-41ad79385798" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220517Z:0316c8b2-ebde-47c7-9940-dc141c1f8cf3" + "WESTUS2:20180510T071114Z:5eece634-7f0b-4c5d-bbe7-41ad79385798" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:05:17 GMT" + "Thu, 10 May 2018 07:11:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15556,7 +17086,7 @@ "10" ], "x-ms-request-id": [ - "afcecb0c-3a94-4e25-80d4-49f9d8943ac9" + "5685d951-9d5d-4928-a687-b3d4efb530d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15569,31 +17099,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14740" + "14732" ], "x-ms-correlation-request-id": [ - "4164ae2d-f420-4126-ae69-1a3a12034234" + "924468ba-e39d-4f02-bbeb-c899ed308f7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220527Z:4164ae2d-f420-4126-ae69-1a3a12034234" + "WESTUS2:20180510T071124Z:924468ba-e39d-4f02-bbeb-c899ed308f7d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:05:27 GMT" + "Thu, 10 May 2018 07:11:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15614,7 +17147,7 @@ "10" ], "x-ms-request-id": [ - "cf20f33a-b939-438f-b943-8cdb5ee94d6d" + "0232693a-0cbf-4e55-ae9b-80400ee86afc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15627,31 +17160,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" + "14731" ], "x-ms-correlation-request-id": [ - "ba8c03f7-4e5c-42d7-b455-360151ad7dc4" + "912fd698-1873-4211-9a3b-00d709a6e756" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220537Z:ba8c03f7-4e5c-42d7-b455-360151ad7dc4" + "WESTUS2:20180510T071134Z:912fd698-1873-4211-9a3b-00d709a6e756" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:05:37 GMT" + "Thu, 10 May 2018 07:11:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15672,11 +17208,14 @@ "10" ], "x-ms-request-id": [ - "71f84059-d4ae-4794-9ef4-ddfa3dcf4af9" + "0d564252-2616-4f16-beff-2d582bb3577a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14730" + ], "Cache-Control": [ "no-cache" ], @@ -15684,32 +17223,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14738" - ], "x-ms-correlation-request-id": [ - "22f5f072-071e-41d3-a1d8-f74cdd90cc00" + "07b05c7e-19c2-404f-8f4a-08dbbe8715a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220547Z:22f5f072-071e-41d3-a1d8-f74cdd90cc00" + "WESTUS2:20180510T071144Z:07b05c7e-19c2-404f-8f4a-08dbbe8715a3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:05:47 GMT" + "Thu, 10 May 2018 07:11:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15730,7 +17269,7 @@ "10" ], "x-ms-request-id": [ - "0728667a-5a34-41fc-bd86-d35ecd6e8a7e" + "d66f9f84-6dfa-400d-8db4-a0fb637a6816" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15743,31 +17282,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14737" + "14729" ], "x-ms-correlation-request-id": [ - "fa525b02-a84b-4142-bff0-29bf89bf6890" + "5c3f63b9-5734-453b-9629-7224e441e733" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220558Z:fa525b02-a84b-4142-bff0-29bf89bf6890" + "WESTUS2:20180510T071154Z:5c3f63b9-5734-453b-9629-7224e441e733" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:05:57 GMT" + "Thu, 10 May 2018 07:11:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15788,7 +17330,7 @@ "10" ], "x-ms-request-id": [ - "5ae44b17-b2a8-4a48-9cc2-6c91394a36f3" + "9485353d-cabd-491a-b9e1-45730651025a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15801,31 +17343,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14736" + "14728" ], "x-ms-correlation-request-id": [ - "23586c83-ca3c-4817-9cda-2e4077527a5a" + "a1cef32e-f984-4ecc-b21d-bdb81f833f84" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220608Z:23586c83-ca3c-4817-9cda-2e4077527a5a" + "WESTUS2:20180510T071204Z:a1cef32e-f984-4ecc-b21d-bdb81f833f84" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:06:08 GMT" + "Thu, 10 May 2018 07:12:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15846,7 +17391,7 @@ "10" ], "x-ms-request-id": [ - "eebec8e9-1e25-4c18-ba66-89584de2e2ef" + "4303bfc5-e524-490f-9613-67751178d891" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15859,31 +17404,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14735" + "14727" ], "x-ms-correlation-request-id": [ - "e3b12f22-e896-48f9-a449-1d9eb7ec76fa" + "5e812100-1cc7-4bc4-a784-f48dbbc048b5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220618Z:e3b12f22-e896-48f9-a449-1d9eb7ec76fa" + "WESTUS2:20180510T071214Z:5e812100-1cc7-4bc4-a784-f48dbbc048b5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:06:18 GMT" + "Thu, 10 May 2018 07:12:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15904,7 +17452,7 @@ "10" ], "x-ms-request-id": [ - "6e12baae-ea9d-419c-9f56-313cae0c8018" + "6a9de730-33f9-4a41-8eff-46cd86ef4eea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15917,31 +17465,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14734" + "14726" ], "x-ms-correlation-request-id": [ - "e8431dae-e19e-49b7-b239-bb52cc2992c6" + "5f67a091-d2c3-4d9b-b480-91c1f40e3c17" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220628Z:e8431dae-e19e-49b7-b239-bb52cc2992c6" + "WESTUS2:20180510T071224Z:5f67a091-d2c3-4d9b-b480-91c1f40e3c17" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:06:28 GMT" + "Thu, 10 May 2018 07:12:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -15962,7 +17513,7 @@ "10" ], "x-ms-request-id": [ - "e241dcfe-affc-4d4e-acd6-e9828895371d" + "5b30cc0b-2f0b-43c7-aa4e-021f2a039eb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15975,31 +17526,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14733" + "14725" ], "x-ms-correlation-request-id": [ - "cbb0d174-1efa-4b51-871d-90abf77aa104" + "8b8f2696-757a-40ff-942b-98e70476a27d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220639Z:cbb0d174-1efa-4b51-871d-90abf77aa104" + "WESTUS2:20180510T071234Z:8b8f2696-757a-40ff-942b-98e70476a27d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:06:38 GMT" + "Thu, 10 May 2018 07:12:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16020,7 +17574,7 @@ "10" ], "x-ms-request-id": [ - "8401a902-427e-46ca-9640-6500520e0062" + "e38f6c99-e7c5-4047-be3a-4d3fc8ad3117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16033,31 +17587,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14732" + "14724" ], "x-ms-correlation-request-id": [ - "8a47d58a-3968-40fd-9eba-d17cb8cf97e3" + "11d73de9-6ce7-47c7-9a26-1d09abf3b7f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220649Z:8a47d58a-3968-40fd-9eba-d17cb8cf97e3" + "WESTUS2:20180510T071244Z:11d73de9-6ce7-47c7-9a26-1d09abf3b7f5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:06:48 GMT" + "Thu, 10 May 2018 07:12:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16078,7 +17635,7 @@ "10" ], "x-ms-request-id": [ - "59b4d357-478a-4601-b911-237fc47cfa3c" + "03163277-54d7-4bc2-965e-0fbf7c0d861c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16091,31 +17648,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14731" + "14723" ], "x-ms-correlation-request-id": [ - "8bda52d0-f00d-47f4-bac9-f18ca68af937" + "7ed77cde-dbb8-4a66-a7bb-88d3c566f3aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220659Z:8bda52d0-f00d-47f4-bac9-f18ca68af937" + "WESTUS2:20180510T071254Z:7ed77cde-dbb8-4a66-a7bb-88d3c566f3aa" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:06:59 GMT" + "Thu, 10 May 2018 07:12:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16136,7 +17696,7 @@ "10" ], "x-ms-request-id": [ - "63ae2d99-9b67-4d1d-8115-4ac1d823c5f1" + "d95978c4-1ec6-47f3-989a-d4afec9daa5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16149,31 +17709,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" + "14722" ], "x-ms-correlation-request-id": [ - "dc5a0990-7ba3-487a-8a18-a7d1356c2d06" + "2de10c09-6dfd-4d99-86f4-3100528a6962" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220709Z:dc5a0990-7ba3-487a-8a18-a7d1356c2d06" + "WESTUS2:20180510T071304Z:2de10c09-6dfd-4d99-86f4-3100528a6962" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:07:09 GMT" + "Thu, 10 May 2018 07:13:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16194,11 +17757,14 @@ "10" ], "x-ms-request-id": [ - "8797e45b-1ab4-4cc6-ac8a-3a9ec19428f9" + "e60cac32-4872-40a3-ad59-857e071c891a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14721" + ], "Cache-Control": [ "no-cache" ], @@ -16206,32 +17772,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" - ], "x-ms-correlation-request-id": [ - "35aa7c16-a2ed-45be-b6cd-eac3a75b0da5" + "2663fc60-feb3-4865-861a-705e0f633bcf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220720Z:35aa7c16-a2ed-45be-b6cd-eac3a75b0da5" + "WESTUS2:20180510T071314Z:2663fc60-feb3-4865-861a-705e0f633bcf" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:07:19 GMT" + "Thu, 10 May 2018 07:13:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16252,7 +17818,7 @@ "10" ], "x-ms-request-id": [ - "365b1296-106e-4cde-a00a-8d173b4b3901" + "bd730384-d6ba-410f-8712-a3b7899cfdc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16265,31 +17831,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14728" + "14999" ], "x-ms-correlation-request-id": [ - "01c98896-1ea4-4bf2-8e38-fa312e5915f2" + "34a11de0-762f-409e-89bc-c3fe6e1bc890" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220730Z:01c98896-1ea4-4bf2-8e38-fa312e5915f2" + "WESTUS2:20180510T071325Z:34a11de0-762f-409e-89bc-c3fe6e1bc890" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:07:30 GMT" + "Thu, 10 May 2018 07:13:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16310,7 +17879,7 @@ "10" ], "x-ms-request-id": [ - "49fef88c-87f1-4c24-a307-39f56fb9bab0" + "e549b817-9bf7-4254-b144-c216b39f66ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16323,31 +17892,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" + "14998" ], "x-ms-correlation-request-id": [ - "77ae5c6f-3ffe-4747-a26b-67f7918b8c77" + "7187d409-e1a2-47d4-8893-bc18f1edcbb9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220740Z:77ae5c6f-3ffe-4747-a26b-67f7918b8c77" + "WESTUS2:20180510T071335Z:7187d409-e1a2-47d4-8893-bc18f1edcbb9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:07:40 GMT" + "Thu, 10 May 2018 07:13:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16368,7 +17940,7 @@ "10" ], "x-ms-request-id": [ - "0a8fa64f-e9fb-4b5f-a2df-2f763487a1da" + "44bf8678-0944-4e85-a99c-1d37bc00569a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16381,31 +17953,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" + "14997" ], "x-ms-correlation-request-id": [ - "4cd7a92b-4e11-4420-b65b-ab72fa9d54cb" + "65a64b4e-5da4-46b6-81a4-66ec264076a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220750Z:4cd7a92b-4e11-4420-b65b-ab72fa9d54cb" + "WESTUS2:20180510T071345Z:65a64b4e-5da4-46b6-81a4-66ec264076a3" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:07:50 GMT" + "Thu, 10 May 2018 07:13:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16426,7 +18001,7 @@ "10" ], "x-ms-request-id": [ - "3063a329-5aa3-4b92-bdd1-38f983d18f81" + "0681ef29-4e4c-457b-b906-840b8070f977" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16439,31 +18014,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14725" + "14996" ], "x-ms-correlation-request-id": [ - "5df7b419-4e34-420b-9b80-f9c05a71574a" + "aa2ee693-d9a1-47e7-a341-bb2512eb4362" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220800Z:5df7b419-4e34-420b-9b80-f9c05a71574a" + "WESTUS2:20180510T071355Z:aa2ee693-d9a1-47e7-a341-bb2512eb4362" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:08:00 GMT" + "Thu, 10 May 2018 07:13:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16484,7 +18062,7 @@ "10" ], "x-ms-request-id": [ - "12443532-4f7c-4a39-b592-6918ffb71650" + "162d869f-7895-4e63-8226-6ce6cebdfc7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16497,31 +18075,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14995" ], "x-ms-correlation-request-id": [ - "d83568a3-f292-4c0e-8024-29b2a9490cb8" + "0ea72321-d6e4-43a4-9dac-240fbaaf94f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220811Z:d83568a3-f292-4c0e-8024-29b2a9490cb8" + "WESTUS2:20180510T071405Z:0ea72321-d6e4-43a4-9dac-240fbaaf94f4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:08:11 GMT" + "Thu, 10 May 2018 07:14:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16542,7 +18123,7 @@ "10" ], "x-ms-request-id": [ - "77a874ca-fa4d-47de-9aae-5a89239b3cfc" + "14140879-516d-4a88-a936-bd320bb41b64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16555,31 +18136,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14723" + "14994" ], "x-ms-correlation-request-id": [ - "25918edb-c67f-4872-8415-2450489bffde" + "1e1e7214-7c32-4034-a386-fd0ff0398cb9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220821Z:25918edb-c67f-4872-8415-2450489bffde" + "WESTUS2:20180510T071415Z:1e1e7214-7c32-4034-a386-fd0ff0398cb9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:08:21 GMT" + "Thu, 10 May 2018 07:14:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16600,7 +18184,7 @@ "10" ], "x-ms-request-id": [ - "56e4d2b9-fd15-42e5-ab38-207c09b65579" + "0874cbb2-3e5e-4375-b673-2595fe4fa43a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16613,31 +18197,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14722" + "14993" ], "x-ms-correlation-request-id": [ - "c3a5bb7a-5d8e-4949-a338-b3878d018ad2" + "4ccfb63f-eb23-4961-be60-ad69dcbd475d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220831Z:c3a5bb7a-5d8e-4949-a338-b3878d018ad2" + "WESTUS2:20180510T071425Z:4ccfb63f-eb23-4961-be60-ad69dcbd475d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:08:31 GMT" + "Thu, 10 May 2018 07:14:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16658,11 +18245,14 @@ "10" ], "x-ms-request-id": [ - "c6c0937d-f7a7-43a2-9bf1-d41b319b5631" + "fd3617a2-2c6f-474f-8b3a-62d9ec4438af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], "Cache-Control": [ "no-cache" ], @@ -16670,32 +18260,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14721" - ], "x-ms-correlation-request-id": [ - "34370410-0200-4e44-9cca-5cd8d49d72d8" + "4a42563f-baa7-4e6c-a913-dae9a2b984c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220841Z:34370410-0200-4e44-9cca-5cd8d49d72d8" + "WESTUS2:20180510T071435Z:4a42563f-baa7-4e6c-a913-dae9a2b984c7" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:08:41 GMT" + "Thu, 10 May 2018 07:14:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16716,7 +18306,7 @@ "10" ], "x-ms-request-id": [ - "edd9b653-5f44-49a4-ac0e-774855ccce3e" + "e4cefaf0-333f-402e-a71a-4119dced1eb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16729,31 +18319,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14991" ], "x-ms-correlation-request-id": [ - "ce6ade5a-d7b4-495f-86fc-70949494721a" + "b0332673-4ab3-4aac-a5b1-fa3de52d6164" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220852Z:ce6ade5a-d7b4-495f-86fc-70949494721a" + "WESTUS2:20180510T071445Z:b0332673-4ab3-4aac-a5b1-fa3de52d6164" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:08:51 GMT" + "Thu, 10 May 2018 07:14:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16774,7 +18367,7 @@ "10" ], "x-ms-request-id": [ - "6a5cdc21-ef7b-49c9-a65c-cf8a98f8d069" + "a421a697-69ad-466e-b482-e2551a1e62ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16787,31 +18380,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" + "14990" ], "x-ms-correlation-request-id": [ - "a4c5e6ec-eac5-4b51-b6b0-0b90eafb9716" + "d0661847-2676-4d07-8687-a222d0fd2297" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220902Z:a4c5e6ec-eac5-4b51-b6b0-0b90eafb9716" + "WESTUS2:20180510T071455Z:d0661847-2676-4d07-8687-a222d0fd2297" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:09:02 GMT" + "Thu, 10 May 2018 07:14:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16832,7 +18428,7 @@ "10" ], "x-ms-request-id": [ - "b2e1aeae-68d2-42fa-923f-71ab2b53e05c" + "84eaaa39-d193-4c3f-be91-0fed57b27522" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16845,31 +18441,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14718" + "14989" ], "x-ms-correlation-request-id": [ - "3087e003-b8be-4b74-a161-1d316925f1fe" + "2ac6fa3f-db83-4aba-8a51-b5320c97c5fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220912Z:3087e003-b8be-4b74-a161-1d316925f1fe" + "WESTUS2:20180510T071505Z:2ac6fa3f-db83-4aba-8a51-b5320c97c5fc" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:09:12 GMT" + "Thu, 10 May 2018 07:15:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16890,7 +18489,7 @@ "10" ], "x-ms-request-id": [ - "f239a3ba-4fa9-49ce-b600-740fe1c384d5" + "7d3cf13b-1506-42cc-a470-f1ba1fb2afce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16903,31 +18502,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" + "14988" ], "x-ms-correlation-request-id": [ - "eaba07ae-7e56-4215-af1b-daad7920fe29" + "74060f41-ddfc-4a10-930c-1bf84fd41e2a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220922Z:eaba07ae-7e56-4215-af1b-daad7920fe29" + "WESTUS2:20180510T071515Z:74060f41-ddfc-4a10-930c-1bf84fd41e2a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:09:22 GMT" + "Thu, 10 May 2018 07:15:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -16948,7 +18550,7 @@ "10" ], "x-ms-request-id": [ - "b87d25ec-d0b4-446f-90c5-9de03958f2b7" + "2b461275-fd22-4ca8-bf84-49e5883f15ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16961,31 +18563,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "14987" ], "x-ms-correlation-request-id": [ - "ab80dbb0-36b5-4784-970c-1a7e051cbfb5" + "3c7876ef-2751-4483-a31b-7c0aa2bf5bb9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220932Z:ab80dbb0-36b5-4784-970c-1a7e051cbfb5" + "WESTUS2:20180510T071525Z:3c7876ef-2751-4483-a31b-7c0aa2bf5bb9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:09:32 GMT" + "Thu, 10 May 2018 07:15:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17006,7 +18611,7 @@ "10" ], "x-ms-request-id": [ - "e175b342-4806-4dbc-aac2-c24877fc23b2" + "bb69fe1f-e948-4a61-a218-f3e3f710cf09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17019,31 +18624,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" + "14986" ], "x-ms-correlation-request-id": [ - "e1d9525f-7880-4374-be90-92d82119e7aa" + "dffeb1f0-e9b2-4418-b91b-d092ab8a0f66" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220943Z:e1d9525f-7880-4374-be90-92d82119e7aa" + "WESTUS2:20180510T071535Z:dffeb1f0-e9b2-4418-b91b-d092ab8a0f66" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:09:42 GMT" + "Thu, 10 May 2018 07:15:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17064,7 +18672,7 @@ "10" ], "x-ms-request-id": [ - "d3c88576-1f80-409f-9459-01dd039d8792" + "d9305a52-41be-4f19-a1a2-70ea6d40ea53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17077,31 +18685,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" + "14985" ], "x-ms-correlation-request-id": [ - "bb8f5a8d-6172-4293-b1d4-36cc6ff800c9" + "d3d1aa52-3e29-481e-824a-52672ad3ec67" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T220953Z:bb8f5a8d-6172-4293-b1d4-36cc6ff800c9" + "WESTUS2:20180510T071546Z:d3d1aa52-3e29-481e-824a-52672ad3ec67" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:09:52 GMT" + "Thu, 10 May 2018 07:15:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17122,11 +18733,14 @@ "10" ], "x-ms-request-id": [ - "26d7b9a6-4f50-44b3-bf2a-1308908c6b36" + "2604440e-a5df-4ab1-af78-5e875a10c438" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], "Cache-Control": [ "no-cache" ], @@ -17134,32 +18748,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" - ], "x-ms-correlation-request-id": [ - "db069ea3-388b-49db-8d44-643b97b00410" + "548aec66-1392-4c2e-8c5c-8f2b4d832f7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221003Z:db069ea3-388b-49db-8d44-643b97b00410" + "WESTUS2:20180510T071556Z:548aec66-1392-4c2e-8c5c-8f2b4d832f7d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:10:02 GMT" + "Thu, 10 May 2018 07:15:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17180,7 +18794,7 @@ "10" ], "x-ms-request-id": [ - "e0d77662-c69b-4d58-8c6a-b78871e30ca4" + "ee2c6c24-4f49-4432-8b91-3cd69ad9db53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17193,31 +18807,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14713" + "14983" ], "x-ms-correlation-request-id": [ - "a887666e-e1cd-420a-8939-c81cd83d636a" + "6368d199-98fc-4d0a-91bd-ec77599971f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221013Z:a887666e-e1cd-420a-8939-c81cd83d636a" + "WESTUS2:20180510T071606Z:6368d199-98fc-4d0a-91bd-ec77599971f4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:10:13 GMT" + "Thu, 10 May 2018 07:16:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17238,7 +18855,7 @@ "10" ], "x-ms-request-id": [ - "dc0285ac-a97e-4619-96d7-1de1e690641b" + "bdfa6737-f4db-475d-8ef0-083c8bcacd0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17251,31 +18868,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14712" + "14982" ], "x-ms-correlation-request-id": [ - "88484a30-49a6-43c5-9d19-7fddc6693003" + "ed312fe1-292c-4fbd-8f7a-1769fa949fae" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221024Z:88484a30-49a6-43c5-9d19-7fddc6693003" + "WESTUS2:20180510T071616Z:ed312fe1-292c-4fbd-8f7a-1769fa949fae" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:10:23 GMT" + "Thu, 10 May 2018 07:16:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17296,7 +18916,7 @@ "10" ], "x-ms-request-id": [ - "2ee89def-0093-4b03-82b5-23c0815b841b" + "6f0620e9-6b8a-4ec2-a3bc-06cb75f0860a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17309,31 +18929,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14711" + "14981" ], "x-ms-correlation-request-id": [ - "25cc5075-d2a7-47da-a87a-1b14c6b3b1f6" + "4ae2a223-a06c-4008-bd7a-f76d65c01b5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221034Z:25cc5075-d2a7-47da-a87a-1b14c6b3b1f6" + "WESTUS2:20180510T071626Z:4ae2a223-a06c-4008-bd7a-f76d65c01b5d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:10:33 GMT" + "Thu, 10 May 2018 07:16:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17354,7 +18977,7 @@ "10" ], "x-ms-request-id": [ - "043c16e3-5426-467a-ac2c-36f5d9e5b2d4" + "90f55a39-cd86-4c1b-b239-5303e3e1cf92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17367,31 +18990,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14710" + "14980" ], "x-ms-correlation-request-id": [ - "a4b82df6-a7d6-44a7-b073-b59459b17329" + "3d7ba843-2ff2-448b-b212-52036fa2f38c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221044Z:a4b82df6-a7d6-44a7-b073-b59459b17329" + "WESTUS2:20180510T071636Z:3d7ba843-2ff2-448b-b212-52036fa2f38c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:10:44 GMT" + "Thu, 10 May 2018 07:16:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17412,7 +19038,7 @@ "10" ], "x-ms-request-id": [ - "67359ea9-d5b1-4540-94db-b303149bfd46" + "8a5379ae-755a-4fd6-8d7c-4b658bb412b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17425,31 +19051,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14709" + "14979" ], "x-ms-correlation-request-id": [ - "bb665009-9164-4304-b2ad-2f6471fb898b" + "c9f63df3-e42c-4110-9ed3-a8851cf9bdb6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221054Z:bb665009-9164-4304-b2ad-2f6471fb898b" + "WESTUS2:20180510T071646Z:c9f63df3-e42c-4110-9ed3-a8851cf9bdb6" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:10:54 GMT" + "Thu, 10 May 2018 07:16:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17470,7 +19099,7 @@ "10" ], "x-ms-request-id": [ - "c5a5914a-e9cc-48c9-b03b-f04f386491dc" + "f354e0bb-3b57-4dc7-95ff-37b4f5a39343" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17483,31 +19112,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14707" + "14978" ], "x-ms-correlation-request-id": [ - "59617a33-843c-40c1-9905-9543fcb7b7a7" + "0e04c9fc-583e-46f8-9ac3-6e494755a8a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221104Z:59617a33-843c-40c1-9905-9543fcb7b7a7" + "WESTUS2:20180510T071656Z:0e04c9fc-583e-46f8-9ac3-6e494755a8a5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:11:04 GMT" + "Thu, 10 May 2018 07:16:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17528,7 +19160,7 @@ "10" ], "x-ms-request-id": [ - "d957f230-de09-40d6-aeda-f33f09013ab9" + "fde14017-8909-4c7e-805c-77cfb604bc7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17541,31 +19173,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14705" + "14977" ], "x-ms-correlation-request-id": [ - "90308cb7-6be5-4f48-af2c-2f3bb5abfbb8" + "26ac7df8-400e-4682-abb0-463006db0124" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221115Z:90308cb7-6be5-4f48-af2c-2f3bb5abfbb8" + "WESTUS2:20180510T071706Z:26ac7df8-400e-4682-abb0-463006db0124" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:11:14 GMT" + "Thu, 10 May 2018 07:17:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17586,11 +19221,14 @@ "10" ], "x-ms-request-id": [ - "61c2c9c6-5af7-4f6e-9c01-36519548d94a" + "5279a98a-651b-4ff1-8f42-cfa8297a4867" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], "Cache-Control": [ "no-cache" ], @@ -17598,32 +19236,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14703" - ], "x-ms-correlation-request-id": [ - "819841d8-acbd-41cc-b15a-8df82d6a5adc" + "7277b258-4c85-423e-9ff5-6dd6b5cd4a93" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221125Z:819841d8-acbd-41cc-b15a-8df82d6a5adc" + "WESTUS2:20180510T071716Z:7277b258-4c85-423e-9ff5-6dd6b5cd4a93" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:11:24 GMT" + "Thu, 10 May 2018 07:17:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17644,7 +19282,7 @@ "10" ], "x-ms-request-id": [ - "d469ef0a-7d83-46cd-bfcc-6bff967f1817" + "2910990e-8ad1-4783-b667-562c9fdac64e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17657,31 +19295,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14700" + "14975" ], "x-ms-correlation-request-id": [ - "5a17cb37-4307-4dcb-b72f-2374614d2386" + "06068a10-f559-4c0e-b527-cb4a825bbe6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221135Z:5a17cb37-4307-4dcb-b72f-2374614d2386" + "WESTUS2:20180510T071726Z:06068a10-f559-4c0e-b527-cb4a825bbe6b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:11:34 GMT" + "Thu, 10 May 2018 07:17:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17702,7 +19343,7 @@ "10" ], "x-ms-request-id": [ - "4e0e1ea5-9b69-4014-a71d-e79f0fb0f59d" + "bb4a08ea-a319-4f63-a1fa-99101376730c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17715,31 +19356,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14698" + "14974" ], "x-ms-correlation-request-id": [ - "87cde9f1-39a2-466d-b84f-f9a486a2600b" + "d5d57f1c-9602-47dd-b37a-7bdfe2f826e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221145Z:87cde9f1-39a2-466d-b84f-f9a486a2600b" + "WESTUS2:20180510T071736Z:d5d57f1c-9602-47dd-b37a-7bdfe2f826e1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:11:45 GMT" + "Thu, 10 May 2018 07:17:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17760,7 +19404,7 @@ "10" ], "x-ms-request-id": [ - "479dd032-4e60-454d-98da-49f5faacc2d5" + "c005f205-299e-4e1d-87b5-ddf5d6e3d3b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17773,31 +19417,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14697" + "14973" ], "x-ms-correlation-request-id": [ - "6ff92084-33a1-4511-8e43-f888bdd88053" + "ebe4f82c-1785-42d4-95be-4b307b5ebf89" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221155Z:6ff92084-33a1-4511-8e43-f888bdd88053" + "WESTUS2:20180510T071747Z:ebe4f82c-1785-42d4-95be-4b307b5ebf89" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:11:55 GMT" + "Thu, 10 May 2018 07:17:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17818,7 +19465,7 @@ "10" ], "x-ms-request-id": [ - "6ac8f48f-1ecb-4050-a580-cad8529bb361" + "26d97d41-e013-43b6-b9de-98d0c85798d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17831,31 +19478,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14694" + "14972" ], "x-ms-correlation-request-id": [ - "7bc5113c-7c8c-4e0c-a9ca-01a0bc46ab71" + "08e2ae2e-6778-4872-ac00-5fa2670337d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221206Z:7bc5113c-7c8c-4e0c-a9ca-01a0bc46ab71" + "WESTUS2:20180510T071757Z:08e2ae2e-6778-4872-ac00-5fa2670337d9" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:12:05 GMT" + "Thu, 10 May 2018 07:17:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17876,7 +19526,7 @@ "10" ], "x-ms-request-id": [ - "31a1c172-1517-4ec1-b249-5e880a46d793" + "d887c375-c0b9-4c31-b20d-5c159ad9bf47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17889,31 +19539,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14692" + "14971" ], "x-ms-correlation-request-id": [ - "d1afe585-cc80-4ed6-9c4f-b04484b649b6" + "a853308c-aef5-412e-810c-79a0f19038f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221216Z:d1afe585-cc80-4ed6-9c4f-b04484b649b6" + "WESTUS2:20180510T071807Z:a853308c-aef5-412e-810c-79a0f19038f0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:12:16 GMT" + "Thu, 10 May 2018 07:18:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17934,7 +19587,7 @@ "10" ], "x-ms-request-id": [ - "2bec4087-39c8-4b65-bab1-e0e48ece2c73" + "7042ebbb-c49e-4961-9899-1d72edaf61bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17947,31 +19600,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14690" + "14970" ], "x-ms-correlation-request-id": [ - "0fe21e21-c427-4cb8-807c-61f9e9a00fbf" + "84e6f5e6-233e-4951-a96c-9f32d48e5ec5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221226Z:0fe21e21-c427-4cb8-807c-61f9e9a00fbf" + "WESTUS2:20180510T071817Z:84e6f5e6-233e-4951-a96c-9f32d48e5ec5" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:12:26 GMT" + "Thu, 10 May 2018 07:18:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -17992,7 +19648,7 @@ "10" ], "x-ms-request-id": [ - "63b06fa2-ed2f-4ce9-9d38-317783c916f9" + "bca1f2ed-99c5-49a0-bc2b-89a3b9b98ca2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18005,31 +19661,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14687" + "14969" ], "x-ms-correlation-request-id": [ - "30059302-16f1-497e-9845-3e8f3b8d633f" + "808609bd-5554-4c2e-8e0f-c91b313c0938" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221236Z:30059302-16f1-497e-9845-3e8f3b8d633f" + "WESTUS2:20180510T071827Z:808609bd-5554-4c2e-8e0f-c91b313c0938" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:12:36 GMT" + "Thu, 10 May 2018 07:18:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18050,11 +19709,14 @@ "10" ], "x-ms-request-id": [ - "e576cd9c-e267-47a2-aed4-3f79b7ca539a" + "e7190169-90e0-430d-aca2-8bd8f384622f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], "Cache-Control": [ "no-cache" ], @@ -18062,32 +19724,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14685" - ], "x-ms-correlation-request-id": [ - "fbaf11a9-89b7-4c49-ad5b-a6d3fa73f361" + "c8c170d7-9db3-4a48-8a51-6430a6b1e357" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221246Z:fbaf11a9-89b7-4c49-ad5b-a6d3fa73f361" + "WESTUS2:20180510T071837Z:c8c170d7-9db3-4a48-8a51-6430a6b1e357" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:12:46 GMT" + "Thu, 10 May 2018 07:18:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18108,7 +19770,7 @@ "10" ], "x-ms-request-id": [ - "28869b41-cfea-4e66-b750-74d99b2c8188" + "4a92a272-c8bc-4dcc-be6d-3521f93515f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18121,31 +19783,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14683" + "14967" ], "x-ms-correlation-request-id": [ - "a82170b0-e5da-49cf-927a-1326b12ae315" + "58f291da-6033-439b-8077-336a21eb1791" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221257Z:a82170b0-e5da-49cf-927a-1326b12ae315" + "WESTUS2:20180510T071847Z:58f291da-6033-439b-8077-336a21eb1791" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:12:56 GMT" + "Thu, 10 May 2018 07:18:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18166,7 +19831,7 @@ "10" ], "x-ms-request-id": [ - "6ab298de-6430-4451-9975-c30084477522" + "743c353a-b4f8-47a1-b588-d1613f4024b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18179,31 +19844,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14680" + "14966" ], "x-ms-correlation-request-id": [ - "c3fc1e8f-e24d-4de3-a58f-41579138b051" + "b96c8699-9e97-4cf1-a169-30e61efd94a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221307Z:c3fc1e8f-e24d-4de3-a58f-41579138b051" + "WESTUS2:20180510T071857Z:b96c8699-9e97-4cf1-a169-30e61efd94a0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:13:06 GMT" + "Thu, 10 May 2018 07:18:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18224,7 +19892,7 @@ "10" ], "x-ms-request-id": [ - "8a4d958a-0bd6-4c49-9531-6d9363c0d6b1" + "5eb638e2-a54e-4e01-aa56-ebad7ba1502e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18237,31 +19905,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14678" + "14965" ], "x-ms-correlation-request-id": [ - "b5782854-5a21-4801-9a82-9ce8926f74f0" + "373114ae-47b1-4c68-a92e-f49306da8330" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221317Z:b5782854-5a21-4801-9a82-9ce8926f74f0" + "WESTUS2:20180510T071907Z:373114ae-47b1-4c68-a92e-f49306da8330" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:13:17 GMT" + "Thu, 10 May 2018 07:19:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18282,7 +19953,7 @@ "10" ], "x-ms-request-id": [ - "11c3db06-0d3f-40c5-be2d-501f51656a54" + "205272f5-4cda-4efa-86d5-29d97119a2e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18295,31 +19966,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14676" + "14964" ], "x-ms-correlation-request-id": [ - "ce91c9d0-7d1c-463a-bd1b-82a4de1e64e2" + "892619ea-3ff3-4f23-871b-d32190c96a69" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221327Z:ce91c9d0-7d1c-463a-bd1b-82a4de1e64e2" + "WESTUS2:20180510T071917Z:892619ea-3ff3-4f23-871b-d32190c96a69" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:13:27 GMT" + "Thu, 10 May 2018 07:19:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18340,7 +20014,7 @@ "10" ], "x-ms-request-id": [ - "a20de036-130a-4604-999a-9b18408cd9fd" + "c1607f25-a576-42cc-8da6-28bbde3efeba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18353,31 +20027,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14673" + "14963" ], "x-ms-correlation-request-id": [ - "66a8b530-2c6e-468f-8881-6a136fc1adde" + "b8d4de11-bca0-4ea6-990d-3a5453bc6210" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221338Z:66a8b530-2c6e-468f-8881-6a136fc1adde" + "WESTUS2:20180510T071927Z:b8d4de11-bca0-4ea6-990d-3a5453bc6210" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:13:37 GMT" + "Thu, 10 May 2018 07:19:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18398,7 +20075,7 @@ "10" ], "x-ms-request-id": [ - "6a83ca06-1839-4b4f-99f1-5f1bf1e23fcc" + "6a6fa158-6650-4749-bf6f-0c8b49a52c34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18411,31 +20088,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14671" + "14962" ], "x-ms-correlation-request-id": [ - "c9b51671-d540-4914-8595-8d6e63b99a7b" + "f112b9f9-6d4c-49d2-8535-a2c46345733e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221348Z:c9b51671-d540-4914-8595-8d6e63b99a7b" + "WESTUS2:20180510T071937Z:f112b9f9-6d4c-49d2-8535-a2c46345733e" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:13:47 GMT" + "Thu, 10 May 2018 07:19:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18456,7 +20136,7 @@ "10" ], "x-ms-request-id": [ - "139a2b05-4f30-45a6-aa83-cddeef49036b" + "c92d59b1-3790-4231-be0f-d43562cee298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18469,31 +20149,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14669" + "14961" ], "x-ms-correlation-request-id": [ - "2c17d34e-b2f1-4763-a2ff-a9c3be67b578" + "310a32c7-5669-4cf8-bdcb-ba01eb856c3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221358Z:2c17d34e-b2f1-4763-a2ff-a9c3be67b578" + "WESTUS2:20180510T071947Z:310a32c7-5669-4cf8-bdcb-ba01eb856c3a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:13:57 GMT" + "Thu, 10 May 2018 07:19:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18514,11 +20197,14 @@ "10" ], "x-ms-request-id": [ - "1d89f842-4abe-48b1-ab53-1b41e3050ac6" + "9faea1ff-395c-43f4-bdad-d70c468af018" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], "Cache-Control": [ "no-cache" ], @@ -18526,32 +20212,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14666" - ], "x-ms-correlation-request-id": [ - "a3c799bb-909f-4387-88c6-06415364ca06" + "dff15381-1fae-49ce-b6d5-1cdd996af905" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221408Z:a3c799bb-909f-4387-88c6-06415364ca06" + "WESTUS2:20180510T071957Z:dff15381-1fae-49ce-b6d5-1cdd996af905" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:14:07 GMT" + "Thu, 10 May 2018 07:19:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18572,7 +20258,7 @@ "10" ], "x-ms-request-id": [ - "d2b7dfea-b605-442f-ae29-08b15779d916" + "a41edbde-e385-4a23-a7c6-1a6fb635327a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18585,31 +20271,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14665" + "14959" ], "x-ms-correlation-request-id": [ - "6cd387a5-4990-4931-b6c3-ede7df8a1447" + "fdc92925-89b8-4aef-905d-0457e1fda41a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221418Z:6cd387a5-4990-4931-b6c3-ede7df8a1447" + "WESTUS2:20180510T072007Z:fdc92925-89b8-4aef-905d-0457e1fda41a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:14:18 GMT" + "Thu, 10 May 2018 07:20:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18630,7 +20319,7 @@ "10" ], "x-ms-request-id": [ - "b033e022-2927-4af4-88fd-7b20690f84a0" + "f3281736-efbc-4e51-8636-7ee41eb4e9ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18643,31 +20332,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14663" + "14958" ], "x-ms-correlation-request-id": [ - "118ffa9c-374c-4bca-8a6e-d34fdc0895cb" + "46d95b3f-1efe-4075-b1f1-12f102498dcf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221429Z:118ffa9c-374c-4bca-8a6e-d34fdc0895cb" + "WESTUS2:20180510T072018Z:46d95b3f-1efe-4075-b1f1-12f102498dcf" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:14:28 GMT" + "Thu, 10 May 2018 07:20:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18688,7 +20380,7 @@ "10" ], "x-ms-request-id": [ - "8f4db8e6-4145-4273-a536-3c5ea73cb66f" + "f1ad911e-6f8a-4a52-96e5-998a2d2f32f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18701,31 +20393,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14660" + "14957" ], "x-ms-correlation-request-id": [ - "c0774aee-e4f6-417c-9d5d-944cb5b23b5c" + "e01f100f-2c7d-46a5-8ffd-43febbbfacd4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221439Z:c0774aee-e4f6-417c-9d5d-944cb5b23b5c" + "WESTUS2:20180510T072028Z:e01f100f-2c7d-46a5-8ffd-43febbbfacd4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:14:38 GMT" + "Thu, 10 May 2018 07:20:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18746,7 +20441,7 @@ "10" ], "x-ms-request-id": [ - "14633e30-f88b-4d61-898b-8da957f6204b" + "de6fa336-fb6f-42e8-a3ad-18f80124f233" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18759,31 +20454,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14658" + "14956" ], "x-ms-correlation-request-id": [ - "88cf5a93-370d-4325-b5ec-aa11a7fdf059" + "1c5d3682-b305-46ab-b5b4-fc7749f0429d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221449Z:88cf5a93-370d-4325-b5ec-aa11a7fdf059" + "WESTUS2:20180510T072038Z:1c5d3682-b305-46ab-b5b4-fc7749f0429d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:14:48 GMT" + "Thu, 10 May 2018 07:20:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18804,7 +20502,7 @@ "10" ], "x-ms-request-id": [ - "7a6812e6-d8d9-4578-8742-026b64a85a3b" + "19216c4b-a158-4169-9174-4cd72b985caa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18817,31 +20515,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14656" + "14955" ], "x-ms-correlation-request-id": [ - "8b0aa887-ac65-43b5-80a3-73da1e9c950c" + "554856a3-2224-4c60-a746-20bbb40f8fa4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221459Z:8b0aa887-ac65-43b5-80a3-73da1e9c950c" + "WESTUS2:20180510T072048Z:554856a3-2224-4c60-a746-20bbb40f8fa4" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:14:58 GMT" + "Thu, 10 May 2018 07:20:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18862,7 +20563,7 @@ "10" ], "x-ms-request-id": [ - "c4248fce-d18c-4631-ac9f-87dd5172ad22" + "a7c43815-296f-4392-9b75-3244e567faf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18875,31 +20576,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14656" + "14954" ], "x-ms-correlation-request-id": [ - "59721b74-480a-4ac2-a3ba-f2c446841dde" + "f8cd7abb-045a-4d78-8a1e-6adbd0183056" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221510Z:59721b74-480a-4ac2-a3ba-f2c446841dde" + "WESTUS2:20180510T072058Z:f8cd7abb-045a-4d78-8a1e-6adbd0183056" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:15:09 GMT" + "Thu, 10 May 2018 07:20:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18920,7 +20624,7 @@ "10" ], "x-ms-request-id": [ - "521b5738-cf94-40f7-9425-8eb5ac067d96" + "e266a633-395e-4822-821b-040c453fb4f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -18933,31 +20637,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14654" + "14953" ], "x-ms-correlation-request-id": [ - "1e196404-b2f1-4e75-822a-6fb86829492c" + "f9164286-b2fc-4ac0-8e66-8b0c8bc70bb1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221520Z:1e196404-b2f1-4e75-822a-6fb86829492c" + "WESTUS2:20180510T072108Z:f9164286-b2fc-4ac0-8e66-8b0c8bc70bb1" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:15:20 GMT" + "Thu, 10 May 2018 07:21:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -18978,11 +20685,14 @@ "10" ], "x-ms-request-id": [ - "3c1aaf1e-e202-4384-b57c-e523e1b06c94" + "5029add3-07be-4ed1-989b-6111fe716aa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], "Cache-Control": [ "no-cache" ], @@ -18990,32 +20700,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14651" - ], "x-ms-correlation-request-id": [ - "b555b2f8-1ef3-410a-8c9d-2671108c4e98" + "b10dcf89-e6a0-42d5-abad-9def1379e59c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221530Z:b555b2f8-1ef3-410a-8c9d-2671108c4e98" + "WESTUS2:20180510T072118Z:b10dcf89-e6a0-42d5-abad-9def1379e59c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:15:30 GMT" + "Thu, 10 May 2018 07:21:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -19036,7 +20746,7 @@ "10" ], "x-ms-request-id": [ - "7cea7c1b-6522-49ba-a3a2-85a24a88dd42" + "22d72410-9669-4e22-8d83-03e12287ffef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19049,31 +20759,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14648" + "14951" ], "x-ms-correlation-request-id": [ - "8c5c932e-68fe-49b0-816f-8d4f0048a9c8" + "d530c2f2-e9d4-4420-b980-c84bca6089b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221540Z:8c5c932e-68fe-49b0-816f-8d4f0048a9c8" + "WESTUS2:20180510T072128Z:d530c2f2-e9d4-4420-b980-c84bca6089b2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:15:40 GMT" + "Thu, 10 May 2018 07:21:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -19094,7 +20807,7 @@ "10" ], "x-ms-request-id": [ - "70c82751-0683-47fc-ac72-41b099b4dac5" + "958036fa-cd12-4955-bbcd-90de64dd10ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19107,31 +20820,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14647" + "14950" ], "x-ms-correlation-request-id": [ - "33ff0592-5af4-4033-82de-85eb90d69bf5" + "beaf5eda-b0a0-4238-99af-c4ee0602caba" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221551Z:33ff0592-5af4-4033-82de-85eb90d69bf5" + "WESTUS2:20180510T072138Z:beaf5eda-b0a0-4238-99af-c4ee0602caba" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:15:50 GMT" + "Thu, 10 May 2018 07:21:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -19152,7 +20868,7 @@ "10" ], "x-ms-request-id": [ - "8e37787a-296d-4228-817a-2191a5215044" + "672e443a-d294-477f-b119-69b10688feec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19165,37 +20881,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14646" + "14949" ], "x-ms-correlation-request-id": [ - "045d1c51-6d8d-4fb6-8907-c22b620f9c8e" + "586112c5-aaac-4395-9ea0-343bbcbe1a0f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221601Z:045d1c51-6d8d-4fb6-8907-c22b620f9c8e" + "WESTUS2:20180510T072148Z:586112c5-aaac-4395-9ea0-343bbcbe1a0f" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:16:01 GMT" + "Thu, 10 May 2018 07:21:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/57fe7983-412a-47c9-a1a3-cb836723a898?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTdmZTc5ODMtNDEyYS00N2M5LWExYTMtY2I4MzY3MjNhODk4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "30" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19206,11 +20925,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "bfdf733a-bbbc-48dc-ac82-451d358bab0e" + "1c87b4ae-7604-47fc-80fa-a5bca27597bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19223,37 +20939,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14645" + "14948" ], "x-ms-correlation-request-id": [ - "27df57c7-2fee-4c11-b03b-2c7280dd72f8" + "b61492ea-4aaa-4dae-9ba4-3158fc5e4c99" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221611Z:27df57c7-2fee-4c11-b03b-2c7280dd72f8" + "WESTUS2:20180510T072158Z:b61492ea-4aaa-4dae-9ba4-3158fc5e4c99" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:16:11 GMT" + "Thu, 10 May 2018 07:21:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/connections/ps2969?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHMyOTY5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "35e635ef-c118-4b40-9b8f-366176512911" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/connections/ps2969' under resource group 'ps6642' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "30" + "146" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19264,54 +20989,50 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "4a377a0b-bbb2-4940-94a1-cf5da824ddf1" + "3998bb47-c24d-4776-a823-0a1616fc3515" + ], + "x-ms-correlation-request-id": [ + "3998bb47-c24d-4776-a823-0a1616fc3515" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T072159Z:3998bb47-c24d-4776-a823-0a1616fc3515" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14644" - ], - "x-ms-correlation-request-id": [ - "f17ea4d2-8f8f-416d-9b98-732070ecac92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180206T221621Z:f17ea4d2-8f8f-416d-9b98-732070ecac92" - ], "Date": [ - "Tue, 06 Feb 2018 22:16:21 GMT" + "Thu, 10 May 2018 07:21:59 GMT" ] }, - "StatusCode": 200 + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/connections/ps2969?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHMyOTY5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2969\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/connections/ps2969\",\r\n \"etag\": \"W/\\\"0d010584-e85a-4a14-be8e-85f1d3de5795\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ffceadd7-8f23-46fd-9341-044095762561\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "30" + "1075" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19322,11 +21043,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "e4c15233-1b68-4786-8f48-2bcf22ea0b09" + "2e4ea596-a139-479b-aca8-6cdf00a54651" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19339,37 +21057,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14643" + "14941" ], "x-ms-correlation-request-id": [ - "767d2185-1890-43da-892b-3fc0543e819f" + "47872357-298f-4b97-a890-b37fa8bbe128" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221632Z:767d2185-1890-43da-892b-3fc0543e819f" + "WESTUS2:20180510T072221Z:47872357-298f-4b97-a890-b37fa8bbe128" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:16:31 GMT" + "Thu, 10 May 2018 07:22:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/connections/ps2969?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHMyOTY5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4ead83e4-84fe-4b25-a814-304756756ddb" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2969\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/connections/ps2969\",\r\n \"etag\": \"W/\\\"0d010584-e85a-4a14-be8e-85f1d3de5795\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ffceadd7-8f23-46fd-9341-044095762561\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "30" + "1075" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19380,11 +21107,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "1ef674ca-86fb-444a-b2af-52f3312cc66f" + "32eef34b-2d6c-436f-8f1d-254a441ec3c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19397,37 +21121,52 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14641" + "14940" ], "x-ms-correlation-request-id": [ - "56788701-661a-4873-aba8-bd22fe522683" + "c9a33af2-cc6e-4e83-b2b6-49e8a065aabb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221642Z:56788701-661a-4873-aba8-bd22fe522683" + "WESTUS2:20180510T072222Z:c9a33af2-cc6e-4e83-b2b6-49e8a065aabb" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:16:41 GMT" + "Thu, 10 May 2018 07:22:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/connections/ps2969?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHMyOTY5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps4531\"\r\n }\r\n },\r\n \"name\": \"ps8159\",\r\n \"etag\": \"W/\\\"44a2d369-9b91-40b3-8fdb-7dee27b3a147\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398/ipConfigurations/ps8159\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"849a4f49-e759-4169-bbdf-a317d3adc0a4\"\r\n },\r\n \"etag\": \"W/\\\"44a2d369-9b91-40b3-8fdb-7dee27b3a147\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps2616\"\r\n }\r\n },\r\n \"name\": \"ps8899\",\r\n \"etag\": \"W/\\\"58758b46-e7ec-4fdc-a521-526b39025d95\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442/ipConfigurations/ps8899\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"e90dfcc1-6f29-4b90-aa51-40dc87adc839\"\r\n },\r\n \"etag\": \"W/\\\"58758b46-e7ec-4fdc-a521-526b39025d95\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": []\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3516" + ], + "x-ms-client-request-id": [ + "c4513bba-18b0-4157-a2f7-fb3ddb670486" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2969\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/connections/ps2969\",\r\n \"etag\": \"W/\\\"408a67d8-4108-4190-8819-5aa5f0463e73\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ffceadd7-8f23-46fd-9341-044095762561\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "30" + "1038" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19442,7 +21181,10 @@ "10" ], "x-ms-request-id": [ - "946543d4-b0f9-49e8-acc1-00a1f63f36dc" + "40f95d40-c3ed-46e7-a2a7-1bcc1f819f39" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/40f95d40-c3ed-46e7-a2a7-1bcc1f819f39?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19454,32 +21196,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14638" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "bb266c80-30ed-475e-8243-f3fdce99645e" + "0ca493a0-8abd-446f-8ea6-f585b6659ace" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221652Z:bb266c80-30ed-475e-8243-f3fdce99645e" + "WESTUS2:20180510T072200Z:0ca493a0-8abd-446f-8ea6-f585b6659ace" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:16:52 GMT" + "Thu, 10 May 2018 07:22:00 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/40f95d40-c3ed-46e7-a2a7-1bcc1f819f39?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDBmOTVkNDAtYzNlZC00NmU3LWEyYTctMWJjYzFmODE5ZjM5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -19500,7 +21245,7 @@ "10" ], "x-ms-request-id": [ - "9f3268ae-694b-4bd6-9729-3877c2456b11" + "08008691-2cb5-4cee-b9c3-ca1f3d5ca24c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19513,31 +21258,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14637" + "14943" ], "x-ms-correlation-request-id": [ - "7abb058a-9ecd-4a22-bac3-236442bc1597" + "c4f9cacc-4776-4ecd-997a-4fc538f5b148" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221702Z:7abb058a-9ecd-4a22-bac3-236442bc1597" + "WESTUS2:20180510T072210Z:c4f9cacc-4776-4ecd-997a-4fc538f5b148" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:02 GMT" + "Thu, 10 May 2018 07:22:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/d8906429-f78c-4210-8b71-2031dad5b0a7?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZDg5MDY0MjktZjc4Yy00MjEwLThiNzEtMjAzMWRhZDViMGE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/40f95d40-c3ed-46e7-a2a7-1bcc1f819f39?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDBmOTVkNDAtYzNlZC00NmU3LWEyYTctMWJjYzFmODE5ZjM5P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -19555,7 +21303,7 @@ "no-cache" ], "x-ms-request-id": [ - "037fdcfe-cf9f-4504-8e2b-3b3d557f4966" + "c1641df2-f2f9-4d8b-8abf-36c73d296529" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19568,40 +21316,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14636" + "14942" ], "x-ms-correlation-request-id": [ - "d8be9a1e-b152-460c-9c5a-7060d9d1619e" + "ebbf242c-0bd5-4cd7-9bd6-6658cdbd555b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221713Z:d8be9a1e-b152-460c-9c5a-7060d9d1619e" + "WESTUS2:20180510T072220Z:ebbf242c-0bd5-4cd7-9bd6-6658cdbd555b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:12 GMT" + "Thu, 10 May 2018 07:22:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/connections/ps6030?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM2MDMwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/connections/ps8838?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM4ODM4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8aefac01-e039-4ed4-9a75-b56eb81c597c" + "a1847aea-4fbc-477e-972f-740c9437142a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/connections/ps6030' under resource group 'ps3193' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/connections/ps8838' under resource group 'ps6642' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "146" @@ -19619,43 +21370,46 @@ "gateway" ], "x-ms-request-id": [ - "c3b7d43a-1292-4cee-ae71-bb1dedf3b47b" + "cc9b3b90-b733-4c71-a8fe-389c55952a41" ], "x-ms-correlation-request-id": [ - "c3b7d43a-1292-4cee-ae71-bb1dedf3b47b" + "cc9b3b90-b733-4c71-a8fe-389c55952a41" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221713Z:c3b7d43a-1292-4cee-ae71-bb1dedf3b47b" + "WESTUS2:20180510T072222Z:cc9b3b90-b733-4c71-a8fe-389c55952a41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:17:13 GMT" + "Thu, 10 May 2018 07:22:21 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/connections/ps6030?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM2MDMwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/connections/ps8838?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM4ODM4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6030\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/connections/ps6030\",\r\n \"etag\": \"W/\\\"f58f3a52-cfd7-4d8f-a806-26cb0275029a\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d509d75c-b60f-4c84-aeaf-599eae4dcf3d\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8838\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/connections/ps8838\",\r\n \"etag\": \"W/\\\"7606a8de-4646-46d0-91a4-94d65911631a\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"21962cf6-f3fd-473f-a3aa-501a791670f7\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1079" + "1075" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19667,11 +21421,14 @@ "no-cache" ], "x-ms-request-id": [ - "05274b1e-5bcb-44d1-b67a-e697ed4089ee" + "537cb4d4-a765-43e3-a597-bf5e0363d482" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], "Cache-Control": [ "no-cache" ], @@ -19679,44 +21436,44 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14629" - ], "x-ms-correlation-request-id": [ - "7c8e4f6f-3dcb-4775-a480-479e37621348" + "9942a39a-b4b0-498e-828c-48a2d4b2359d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221726Z:7c8e4f6f-3dcb-4775-a480-479e37621348" + "WESTUS2:20180510T072244Z:9942a39a-b4b0-498e-828c-48a2d4b2359d" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:26 GMT" + "Thu, 10 May 2018 07:22:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/connections/ps6030?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM2MDMwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/connections/ps8838?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM4ODM4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9abd2f15-ca66-461f-b05e-2f6dc540bac6" + "f1d1bc88-c543-427e-a204-9c776658fa1d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6030\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/connections/ps6030\",\r\n \"etag\": \"W/\\\"f58f3a52-cfd7-4d8f-a806-26cb0275029a\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d509d75c-b60f-4c84-aeaf-599eae4dcf3d\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8838\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/connections/ps8838\",\r\n \"etag\": \"W/\\\"7606a8de-4646-46d0-91a4-94d65911631a\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"21962cf6-f3fd-473f-a3aa-501a791670f7\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1079" + "1075" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19728,7 +21485,7 @@ "no-cache" ], "x-ms-request-id": [ - "b427d688-6dae-4b11-b63f-4bce0a4d42b0" + "83202fea-3df2-464d-aef1-758da666863b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19741,49 +21498,52 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14628" + "14935" ], "x-ms-correlation-request-id": [ - "e6fb4f16-1dc5-460d-a0ed-13aa46cf67dd" + "fd66a953-db38-41fd-adfa-802041ecac3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221726Z:e6fb4f16-1dc5-460d-a0ed-13aa46cf67dd" + "WESTUS2:20180510T072245Z:fd66a953-db38-41fd-adfa-802041ecac3b" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:26 GMT" + "Thu, 10 May 2018 07:22:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/connections/ps6030?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM2MDMwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/connections/ps8838?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM4ODM4P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps4925\"\r\n }\r\n },\r\n \"name\": \"ps5413\",\r\n \"etag\": \"W/\\\"ae243616-bad3-4a34-ad6f-95e9ac95f5b6\\\"\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712/ipConfigurations/ps5413\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"926f8753-9b3a-4613-abbc-ae8c682a517d\"\r\n },\r\n \"etag\": \"W/\\\"ae243616-bad3-4a34-ad6f-95e9ac95f5b6\\\"\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps9827\"\r\n }\r\n },\r\n \"name\": \"ps1619\",\r\n \"etag\": \"W/\\\"d3eb8bb2-fc14-49aa-bd42-c669e4f50e82\\\"\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185/ipConfigurations/ps1619\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"dce3bb60-9608-4bfe-811a-ef9b0929c853\"\r\n },\r\n \"etag\": \"W/\\\"d3eb8bb2-fc14-49aa-bd42-c669e4f50e82\\\"\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": []\r\n },\r\n \"location\": \"centralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps6141/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps2616\"\r\n }\r\n },\r\n \"name\": \"ps8899\",\r\n \"etag\": \"W/\\\"58758b46-e7ec-4fdc-a521-526b39025d95\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442/ipConfigurations/ps8899\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"e90dfcc1-6f29-4b90-aa51-40dc87adc839\"\r\n },\r\n \"etag\": \"W/\\\"58758b46-e7ec-4fdc-a521-526b39025d95\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworks/ps9935/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/publicIPAddresses/ps4531\"\r\n }\r\n },\r\n \"name\": \"ps8159\",\r\n \"etag\": \"W/\\\"44a2d369-9b91-40b3-8fdb-7dee27b3a147\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398/ipConfigurations/ps8159\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"849a4f49-e759-4169-bbdf-a317d3adc0a4\"\r\n },\r\n \"etag\": \"W/\\\"44a2d369-9b91-40b3-8fdb-7dee27b3a147\\\"\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": []\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3526" + "3516" ], "x-ms-client-request-id": [ - "172375a3-8876-4bda-809f-f372912dd1ae" + "56ee6f55-745c-476a-bbb7-bbee831ec643" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6030\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/connections/ps6030\",\r\n \"etag\": \"W/\\\"7fd35d9e-8fac-4d88-938c-554e93dbac50\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d509d75c-b60f-4c84-aeaf-599eae4dcf3d\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8838\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/connections/ps8838\",\r\n \"etag\": \"W/\\\"f9dff86c-9513-48a0-bab5-f3a6f8879a81\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"21962cf6-f3fd-473f-a3aa-501a791670f7\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps3442\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1042" + "1038" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19798,10 +21558,10 @@ "10" ], "x-ms-request-id": [ - "e8126364-deae-4d8c-9bba-39f72c9dbda6" + "2ccc7c68-5dce-4b79-a5e9-26cbf785f99a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/e8126364-deae-4d8c-9bba-39f72c9dbda6?api-version=2017-11-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/2ccc7c68-5dce-4b79-a5e9-26cbf785f99a?api-version=2018-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19814,37 +21574,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-correlation-request-id": [ - "bf4a7d29-575f-4d95-a4d4-1cf8c34d0cfd" + "aef05cc4-bd49-4c68-a0e6-a92f7e73d9fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221715Z:bf4a7d29-575f-4d95-a4d4-1cf8c34d0cfd" + "WESTUS2:20180510T072223Z:aef05cc4-bd49-4c68-a0e6-a92f7e73d9fd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:14 GMT" + "Thu, 10 May 2018 07:22:22 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/e8126364-deae-4d8c-9bba-39f72c9dbda6?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZTgxMjYzNjQtZGVhZS00ZDhjLTliYmEtMzlmNzJjOWRiZGE2P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/2ccc7c68-5dce-4b79-a5e9-26cbf785f99a?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmNjYzdjNjgtNWRjZS00Yjc5LWE1ZTktMjZjYmY3ODVmOTlhP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19855,12 +21618,18 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "9bb7620f-009d-43f7-9680-fc9b3621b0c8" + "af486107-a353-4088-9484-e364e90f9340" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], "Cache-Control": [ "no-cache" ], @@ -19868,44 +21637,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14630" - ], "x-ms-correlation-request-id": [ - "6d9d1072-45bf-4cee-85e1-1bb35d473a19" + "eaf30a24-6ff8-41c7-baf5-a3ea540482a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221725Z:6d9d1072-45bf-4cee-85e1-1bb35d473a19" + "WESTUS2:20180510T072233Z:eaf30a24-6ff8-41c7-baf5-a3ea540482a2" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:25 GMT" + "Thu, 10 May 2018 07:22:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/connections/ps8975?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM4OTc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operations/2ccc7c68-5dce-4b79-a5e9-26cbf785f99a?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmNjYzdjNjgtNWRjZS00Yjc5LWE1ZTktMjZjYmY3ODVmOTlhP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e1de93f0-2254-4aa8-9526-068a9ad81393" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/connections/ps8975' under resource group 'ps3193' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "146" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19916,17 +21679,8 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" - ], "x-ms-request-id": [ - "ff44c200-c65d-46cd-9324-24a09d677b4d" - ], - "x-ms-correlation-request-id": [ - "ff44c200-c65d-46cd-9324-24a09d677b4d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180206T221726Z:ff44c200-c65d-46cd-9324-24a09d677b4d" + "cdfcbea6-9839-4077-9dc0-257494d9d7b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19934,29 +21688,51 @@ "Cache-Control": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "4edfe2db-a860-4071-be9c-7456d90a18ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180510T072243Z:4edfe2db-a860-4071-be9c-7456d90a18ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Tue, 06 Feb 2018 22:17:26 GMT" + "Thu, 10 May 2018 07:22:43 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/connections/ps8975?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM4OTc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398/getBgpPeerStatus?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczM5OC9nZXRCZ3BQZWVyU3RhdHVzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8c969f96-ee7d-4bd0-9f1f-3cf578357ff1" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8975\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/connections/ps8975\",\r\n \"etag\": \"W/\\\"05ba3e46-b88c-40fa-a1ad-4061746993e9\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"605ca6dd-fda6-4208-b195-0cc6d8f0c14c\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1079" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19967,8 +21743,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "1cd754bf-ec92-4cfd-89fc-bfb9497b9ccf" + "5ff48dcf-b381-4cba-8624-0860f68326aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19976,48 +21755,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/5ff48dcf-b381-4cba-8624-0860f68326aa?api-version=2018-04-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14625" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "3a9c7105-2bd3-4e15-b2a5-ddfa582d9471" + "8ee748ed-d441-407a-9f3b-efd2a551aeea" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221739Z:3a9c7105-2bd3-4e15-b2a5-ddfa582d9471" + "WESTUS2:20180510T072245Z:8ee748ed-d441-407a-9f3b-efd2a551aeea" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:39 GMT" + "Thu, 10 May 2018 07:22:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/connections/ps8975?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM4OTc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/5ff48dcf-b381-4cba-8624-0860f68326aa?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNWZmNDhkY2YtYjM4MS00Y2JhLTg2MjQtMDg2MGY2ODMyNmFhP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "30b0c801-861e-431f-9b66-b9c3a8a21648" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8975\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/connections/ps8975\",\r\n \"etag\": \"W/\\\"05ba3e46-b88c-40fa-a1ad-4061746993e9\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"605ca6dd-fda6-4208-b195-0cc6d8f0c14c\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"neighbor\": \"10.1.0.254\",\r\n \"asn\": 1337,\r\n \"state\": \"Connecting\",\r\n \"routesReceived\": 0,\r\n \"messagesSent\": 0,\r\n \"messagesReceived\": 0\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1079" + "240" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20029,7 +21808,7 @@ "no-cache" ], "x-ms-request-id": [ - "86d340f8-dcf6-4056-afa0-1231c2446a45" + "5ff48dcf-b381-4cba-8624-0860f68326aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20037,54 +21816,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/5ff48dcf-b381-4cba-8624-0860f68326aa?api-version=2018-04-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14624" + "14934" ], "x-ms-correlation-request-id": [ - "dabce56f-d596-482d-9a36-cacba3169e11" + "29ccec2e-1946-4daa-9a61-5ff11b9c24cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221739Z:dabce56f-d596-482d-9a36-cacba3169e11" + "WESTUS2:20180510T072255Z:29ccec2e-1946-4daa-9a61-5ff11b9c24cd" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:39 GMT" + "Thu, 10 May 2018 07:22:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/connections/ps8975?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvcHM4OTc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps5397/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps9827\"\r\n }\r\n },\r\n \"name\": \"ps1619\",\r\n \"etag\": \"W/\\\"d3eb8bb2-fc14-49aa-bd42-c669e4f50e82\\\"\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185/ipConfigurations/ps1619\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"dce3bb60-9608-4bfe-811a-ef9b0929c853\"\r\n },\r\n \"etag\": \"W/\\\"d3eb8bb2-fc14-49aa-bd42-c669e4f50e82\\\"\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworks/ps7984/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/publicIPAddresses/ps4925\"\r\n }\r\n },\r\n \"name\": \"ps5413\",\r\n \"etag\": \"W/\\\"ae243616-bad3-4a34-ad6f-95e9ac95f5b6\\\"\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712/ipConfigurations/ps5413\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"926f8753-9b3a-4613-abbc-ae8c682a517d\"\r\n },\r\n \"etag\": \"W/\\\"ae243616-bad3-4a34-ad6f-95e9ac95f5b6\\\"\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": []\r\n },\r\n \"location\": \"centralus\"\r\n}", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/5ff48dcf-b381-4cba-8624-0860f68326aa?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNWZmNDhkY2YtYjM4MS00Y2JhLTg2MjQtMDg2MGY2ODMyNmFhP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "3526" - ], - "x-ms-client-request-id": [ - "16e0565b-83d7-4258-97b5-4381a934a551" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8975\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/connections/ps8975\",\r\n \"etag\": \"W/\\\"e9175c8f-0188-4481-b253-d8a4981b8f28\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"605ca6dd-fda6-4208-b195-0cc6d8f0c14c\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps6185\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 0,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"neighbor\": \"10.1.0.254\",\r\n \"asn\": 1337,\r\n \"state\": \"Connecting\",\r\n \"routesReceived\": 0,\r\n \"messagesSent\": 0,\r\n \"messagesReceived\": 0\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1042" + "240" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20095,14 +21868,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "dc26dc5d-0ecf-4223-b719-264c5080355d" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/dc26dc5d-0ecf-4223-b719-264c5080355d?api-version=2017-11-01" + "5ff48dcf-b381-4cba-8624-0860f68326aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20110,42 +21877,54 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/5ff48dcf-b381-4cba-8624-0860f68326aa?api-version=2018-04-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" ], "x-ms-correlation-request-id": [ - "c68c9d5c-1981-481b-9194-20d79d96d2d8" + "a2b8d377-148f-4e3d-b37c-4904bf9eda7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221728Z:c68c9d5c-1981-481b-9194-20d79d96d2d8" + "WESTUS2:20180510T072256Z:a2b8d377-148f-4e3d-b37c-4904bf9eda7c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:28 GMT" + "Thu, 10 May 2018 07:22:55 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operations/dc26dc5d-0ecf-4223-b719-264c5080355d?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvZGMyNmRjNWQtMGVjZi00MjIzLWI3MTktMjY0YzUwODAzNTVkP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398/getLearnedRoutes?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczM5OC9nZXRMZWFybmVkUm91dGVzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ca9f4788-8ef1-4d0c-80bf-9938dbba3b1e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "29" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20156,8 +21935,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "2de5021d-6879-4725-9610-ad51f17e32cf" + "ab6002db-b8d5-45dd-a708-7273685f8d0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20165,48 +21947,48 @@ "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/ab6002db-b8d5-45dd-a708-7273685f8d0d?api-version=2018-04-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14626" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "34c14ee9-c6f7-45b3-a167-4afbd645eac5" + "f1463b73-f878-46a3-b14b-ac3abc251d41" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221739Z:34c14ee9-c6f7-45b3-a167-4afbd645eac5" + "WESTUS2:20180510T072256Z:f1463b73-f878-46a3-b14b-ac3abc251d41" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:38 GMT" + "Thu, 10 May 2018 07:22:55 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712/getBgpPeerStatus?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczI3MTIvZ2V0QmdwUGVlclN0YXR1cz9hcGktdmVyc2lvbj0yMDE3LTExLTAx", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/ab6002db-b8d5-45dd-a708-7273685f8d0d?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYWI2MDAyZGItYjhkNS00NWRkLWE3MDgtNzI3MzY4NWY4ZDBkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6ffe59e3-d5dd-4ba8-98c0-2a950ebb403f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"network\": \"10.0.0.0/16\",\r\n \"sourcePeer\": \"10.0.0.254\",\r\n \"origin\": \"Network\",\r\n \"asPath\": \"\",\r\n \"weight\": 32768\r\n },\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"network\": \"10.1.0.254/32\",\r\n \"sourcePeer\": \"10.0.0.254\",\r\n \"origin\": \"Network\",\r\n \"asPath\": \"\",\r\n \"weight\": 32768\r\n },\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"network\": \"10.1.0.0/16\",\r\n \"nextHop\": \"10.1.0.254\",\r\n \"sourcePeer\": \"10.1.0.254\",\r\n \"origin\": \"EBgp\",\r\n \"asPath\": \"1337\",\r\n \"weight\": 32768\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4" + "633" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20217,11 +21999,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "d207fefc-c707-42a9-a894-5c437ecdd965" + "ab6002db-b8d5-45dd-a708-7273685f8d0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20230,44 +22009,47 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operationResults/d207fefc-c707-42a9-a894-5c437ecdd965?api-version=2017-11-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/ab6002db-b8d5-45dd-a708-7273685f8d0d?api-version=2018-04-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" ], "x-ms-correlation-request-id": [ - "b21c867e-5019-4a8e-bdb6-dbe2a46bc44b" + "dabc4342-0d09-4fff-a76f-270d50a089ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221740Z:b21c867e-5019-4a8e-bdb6-dbe2a46bc44b" + "WESTUS2:20180510T072306Z:dabc4342-0d09-4fff-a76f-270d50a089ab" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:39 GMT" + "Thu, 10 May 2018 07:23:06 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operationResults/d207fefc-c707-42a9-a894-5c437ecdd965?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZDIwN2ZlZmMtYzcwNy00MmE5LWE4OTQtNWM0MzdlY2RkOTY1P2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/ab6002db-b8d5-45dd-a708-7273685f8d0d?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYWI2MDAyZGItYjhkNS00NWRkLWE3MDgtNzI3MzY4NWY4ZDBkP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"neighbor\": \"10.1.0.254\",\r\n \"asn\": 1337,\r\n \"state\": \"Connecting\",\r\n \"routesReceived\": 0,\r\n \"messagesSent\": 0,\r\n \"messagesReceived\": 0\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"network\": \"10.0.0.0/16\",\r\n \"sourcePeer\": \"10.0.0.254\",\r\n \"origin\": \"Network\",\r\n \"asPath\": \"\",\r\n \"weight\": 32768\r\n },\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"network\": \"10.1.0.254/32\",\r\n \"sourcePeer\": \"10.0.0.254\",\r\n \"origin\": \"Network\",\r\n \"asPath\": \"\",\r\n \"weight\": 32768\r\n },\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"network\": \"10.1.0.0/16\",\r\n \"nextHop\": \"10.1.0.254\",\r\n \"sourcePeer\": \"10.1.0.254\",\r\n \"origin\": \"EBgp\",\r\n \"asPath\": \"1337\",\r\n \"weight\": 32768\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "240" + "633" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20279,7 +22061,7 @@ "no-cache" ], "x-ms-request-id": [ - "d207fefc-c707-42a9-a894-5c437ecdd965" + "ab6002db-b8d5-45dd-a708-7273685f8d0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20288,44 +22070,47 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operationResults/d207fefc-c707-42a9-a894-5c437ecdd965?api-version=2017-11-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/ab6002db-b8d5-45dd-a708-7273685f8d0d?api-version=2018-04-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14622" + "14931" ], "x-ms-correlation-request-id": [ - "64e6c126-5d02-4d89-8ede-107d3bd38720" + "6ccf9311-ab6b-41f3-9215-f1a3f7d6746a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221750Z:64e6c126-5d02-4d89-8ede-107d3bd38720" + "WESTUS2:20180510T072306Z:6ccf9311-ab6b-41f3-9215-f1a3f7d6746a" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:50 GMT" + "Thu, 10 May 2018 07:23:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712/getLearnedRoutes?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczI3MTIvZ2V0TGVhcm5lZFJvdXRlcz9hcGktdmVyc2lvbj0yMDE3LTExLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6642/providers/Microsoft.Network/virtualNetworkGateways/ps398/getAdvertisedRoutes?peer=10.1.0.254&api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczM5OC9nZXRBZHZlcnRpc2VkUm91dGVzP3BlZXI9MTAuMS4wLjI1NCZhcGktdmVyc2lvbj0yMDE4LTA0LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d046c639-09fb-4e9a-a75b-61f617d16382" + "f117301f-10bf-47c2-995c-e77aecf00a61" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, "ResponseBody": "null", @@ -20346,7 +22131,7 @@ "10" ], "x-ms-request-id": [ - "66e0e6e0-2831-4e39-8c9f-2afa8dd9283e" + "b6d42e1b-9d8d-4e98-b7a6-5a9f0237fd04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20355,44 +22140,47 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operationResults/66e0e6e0-2831-4e39-8c9f-2afa8dd9283e?api-version=2017-11-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/b6d42e1b-9d8d-4e98-b7a6-5a9f0237fd04?api-version=2018-04-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1195" ], "x-ms-correlation-request-id": [ - "4494a56b-6630-4893-bf0b-4922c2107831" + "0290c4a9-6f12-44f6-aa56-707fc7e8e280" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221750Z:4494a56b-6630-4893-bf0b-4922c2107831" + "WESTUS2:20180510T072306Z:0290c4a9-6f12-44f6-aa56-707fc7e8e280" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:17:50 GMT" + "Thu, 10 May 2018 07:23:06 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operationResults/66e0e6e0-2831-4e39-8c9f-2afa8dd9283e?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjZlMGU2ZTAtMjgzMS00ZTM5LThjOWYtMmFmYThkZDkyODNlP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/b6d42e1b-9d8d-4e98-b7a6-5a9f0237fd04?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYjZkNDJlMWItOWQ4ZC00ZTk4LWI3YTYtNWE5ZjAyMzdmZDA0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"network\": \"10.0.0.0/16\",\r\n \"sourcePeer\": \"10.0.0.254\",\r\n \"origin\": \"Network\",\r\n \"asPath\": \"\",\r\n \"weight\": 32768\r\n },\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"network\": \"10.1.0.254/32\",\r\n \"sourcePeer\": \"10.0.0.254\",\r\n \"origin\": \"Network\",\r\n \"asPath\": \"\",\r\n \"weight\": 32768\r\n },\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"network\": \"10.1.0.0/16\",\r\n \"nextHop\": \"10.1.0.254\",\r\n \"sourcePeer\": \"10.1.0.254\",\r\n \"origin\": \"EBgp\",\r\n \"asPath\": \"1337\",\r\n \"weight\": 32768\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"network\": \"10.0.0.0/16\",\r\n \"nextHop\": \"10.0.0.254\",\r\n \"origin\": \"Igp\",\r\n \"asPath\": \"65515\",\r\n \"weight\": 0\r\n },\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"network\": \"10.1.0.254/32\",\r\n \"nextHop\": \"10.0.0.254\",\r\n \"origin\": \"Igp\",\r\n \"asPath\": \"65515\",\r\n \"weight\": 0\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "633" + "396" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20404,7 +22192,7 @@ "no-cache" ], "x-ms-request-id": [ - "66e0e6e0-2831-4e39-8c9f-2afa8dd9283e" + "b6d42e1b-9d8d-4e98-b7a6-5a9f0237fd04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20413,50 +22201,47 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operationResults/66e0e6e0-2831-4e39-8c9f-2afa8dd9283e?api-version=2017-11-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/b6d42e1b-9d8d-4e98-b7a6-5a9f0237fd04?api-version=2018-04-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14621" + "14930" ], "x-ms-correlation-request-id": [ - "df86e40b-e721-47c1-bc89-4cde62d8c74e" + "7cac48ff-0e84-447a-900e-a0d333232f1c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221801Z:df86e40b-e721-47c1-bc89-4cde62d8c74e" + "WESTUS2:20180510T072316Z:7cac48ff-0e84-447a-900e-a0d333232f1c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:18:00 GMT" + "Thu, 10 May 2018 07:23:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps3193/providers/Microsoft.Network/virtualNetworkGateways/ps2712/getAdvertisedRoutes?peer=10.1.0.254&api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzMzE5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczI3MTIvZ2V0QWR2ZXJ0aXNlZFJvdXRlcz9wZWVyPTEwLjEuMC4yNTQmYXBpLXZlcnNpb249MjAxNy0xMS0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/b6d42e1b-9d8d-4e98-b7a6-5a9f0237fd04?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYjZkNDJlMWItOWQ4ZC00ZTk4LWI3YTYtNWE5ZjAyMzdmZDA0P2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fbf251dc-e091-49bc-be1c-0a30b822c10e" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2563.0", + "FxVersion/4.7.2633.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"network\": \"10.0.0.0/16\",\r\n \"nextHop\": \"10.0.0.254\",\r\n \"origin\": \"Igp\",\r\n \"asPath\": \"65515\",\r\n \"weight\": 0\r\n },\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"network\": \"10.1.0.254/32\",\r\n \"nextHop\": \"10.0.0.254\",\r\n \"origin\": \"Igp\",\r\n \"asPath\": \"65515\",\r\n \"weight\": 0\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4" + "396" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20467,11 +22252,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "50f5233a-0739-4fe8-8307-fb90d45c9adc" + "b6d42e1b-9d8d-4e98-b7a6-5a9f0237fd04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20480,47 +22262,44 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operationResults/50f5233a-0739-4fe8-8307-fb90d45c9adc?api-version=2017-11-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westus/operationResults/b6d42e1b-9d8d-4e98-b7a6-5a9f0237fd04?api-version=2018-04-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" ], "x-ms-correlation-request-id": [ - "25ce13fd-3701-41b1-8b05-e42e0784cb99" + "bc877989-0519-468f-8074-1833ccd416a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221801Z:25ce13fd-3701-41b1-8b05-e42e0784cb99" + "WESTUS2:20180510T072316Z:bc877989-0519-468f-8074-1833ccd416a8" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 06 Feb 2018 22:18:00 GMT" + "Thu, 10 May 2018 07:23:16 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operationResults/50f5233a-0739-4fe8-8307-fb90d45c9adc?api-version=2017-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNTBmNTIzM2EtMDczOS00ZmU4LTgzMDctZmI5MGQ0NWM5YWRjP2FwaS12ZXJzaW9uPTIwMTctMTEtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps6642?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzNjY0Mj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2563.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/17.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"network\": \"10.0.0.0/16\",\r\n \"nextHop\": \"10.0.0.254\",\r\n \"origin\": \"Igp\",\r\n \"asPath\": \"65515\",\r\n \"weight\": 0\r\n },\r\n {\r\n \"localAddress\": \"10.0.0.254\",\r\n \"network\": \"10.1.0.254/32\",\r\n \"nextHop\": \"10.0.0.254\",\r\n \"origin\": \"Igp\",\r\n \"asPath\": \"65515\",\r\n \"weight\": 0\r\n }\r\n ]\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "396" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -20528,43 +22307,48 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "50f5233a-0739-4fe8-8307-fb90d45c9adc" + "Retry-After": [ + "15" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "89a48f4f-1530-4f97-8bef-7ac404378f2c" ], - "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centralus/operationResults/50f5233a-0739-4fe8-8307-fb90d45c9adc?api-version=2017-11-01" + "x-ms-correlation-request-id": [ + "89a48f4f-1530-4f97-8bef-7ac404378f2c" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-routing-request-id": [ + "WESTUS2:20180510T072317Z:89a48f4f-1530-4f97-8bef-7ac404378f2c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14620" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-correlation-request-id": [ - "74eb6998-595d-48e1-b96b-8ff920dcfe7a" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-routing-request-id": [ - "WESTUS2:20180206T221811Z:74eb6998-595d-48e1-b96b-8ff920dcfe7a" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:18:10 GMT" + "Thu, 10 May 2018 07:23:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourcegroups/ps3193?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlZ3JvdXBzL3BzMzE5Mz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -20583,36 +22367,39 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" ], "x-ms-request-id": [ - "7489e012-525c-43c2-8666-2cd203afc42e" + "1de35a20-8e06-4806-9300-317f78f75375" ], "x-ms-correlation-request-id": [ - "7489e012-525c-43c2-8666-2cd203afc42e" + "1de35a20-8e06-4806-9300-317f78f75375" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221812Z:7489e012-525c-43c2-8666-2cd203afc42e" + "WESTUS2:20180510T072317Z:1de35a20-8e06-4806-9300-317f78f75375" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:18:12 GMT" + "Thu, 10 May 2018 07:23:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -20641,32 +22428,35 @@ "14997" ], "x-ms-request-id": [ - "163cb082-d80c-456b-bb99-32d9037ed69a" + "3649efcf-b209-4218-8faf-874f1e094604" ], "x-ms-correlation-request-id": [ - "163cb082-d80c-456b-bb99-32d9037ed69a" + "3649efcf-b209-4218-8faf-874f1e094604" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221812Z:163cb082-d80c-456b-bb99-32d9037ed69a" + "WESTUS2:20180510T072332Z:3649efcf-b209-4218-8faf-874f1e094604" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:18:12 GMT" + "Thu, 10 May 2018 07:23:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -20695,32 +22485,35 @@ "14996" ], "x-ms-request-id": [ - "97bfe561-12d6-4e52-a056-b3d4d821f93b" + "b2c68993-269d-43e4-a3d9-afc97d7ff096" ], "x-ms-correlation-request-id": [ - "97bfe561-12d6-4e52-a056-b3d4d821f93b" + "b2c68993-269d-43e4-a3d9-afc97d7ff096" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221828Z:97bfe561-12d6-4e52-a056-b3d4d821f93b" + "WESTUS2:20180510T072347Z:b2c68993-269d-43e4-a3d9-afc97d7ff096" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:18:27 GMT" + "Thu, 10 May 2018 07:23:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -20749,32 +22542,35 @@ "14995" ], "x-ms-request-id": [ - "ddf73691-d779-4f65-aee4-29b9c8592e39" + "db08ea81-685c-4921-ab34-77047fa3953d" ], "x-ms-correlation-request-id": [ - "ddf73691-d779-4f65-aee4-29b9c8592e39" + "db08ea81-685c-4921-ab34-77047fa3953d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221843Z:ddf73691-d779-4f65-aee4-29b9c8592e39" + "WESTUS2:20180510T072404Z:db08ea81-685c-4921-ab34-77047fa3953d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:18:42 GMT" + "Thu, 10 May 2018 07:24:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -20803,32 +22599,35 @@ "14994" ], "x-ms-request-id": [ - "833e2a8f-806f-435f-bcef-4affa6068a35" + "9d508aed-66c7-4f07-87af-fd8e3b102e08" ], "x-ms-correlation-request-id": [ - "833e2a8f-806f-435f-bcef-4affa6068a35" + "9d508aed-66c7-4f07-87af-fd8e3b102e08" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221858Z:833e2a8f-806f-435f-bcef-4affa6068a35" + "WESTUS2:20180510T072419Z:9d508aed-66c7-4f07-87af-fd8e3b102e08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:18:58 GMT" + "Thu, 10 May 2018 07:24:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -20857,32 +22656,35 @@ "14993" ], "x-ms-request-id": [ - "67cae426-6e15-4a97-be5a-44cac7dbab5d" + "f8cd5f1c-d9da-41cd-8939-d64849693ae5" ], "x-ms-correlation-request-id": [ - "67cae426-6e15-4a97-be5a-44cac7dbab5d" + "f8cd5f1c-d9da-41cd-8939-d64849693ae5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221913Z:67cae426-6e15-4a97-be5a-44cac7dbab5d" + "WESTUS2:20180510T072434Z:f8cd5f1c-d9da-41cd-8939-d64849693ae5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:19:13 GMT" + "Thu, 10 May 2018 07:24:34 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -20911,32 +22713,35 @@ "14992" ], "x-ms-request-id": [ - "881032e3-70b8-4bc1-a8fa-8aac0e0c28a8" + "ffc59386-31ea-4277-960b-768c4486add5" ], "x-ms-correlation-request-id": [ - "881032e3-70b8-4bc1-a8fa-8aac0e0c28a8" + "ffc59386-31ea-4277-960b-768c4486add5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221930Z:881032e3-70b8-4bc1-a8fa-8aac0e0c28a8" + "WESTUS2:20180510T072449Z:ffc59386-31ea-4277-960b-768c4486add5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:19:29 GMT" + "Thu, 10 May 2018 07:24:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -20965,32 +22770,35 @@ "14991" ], "x-ms-request-id": [ - "257f8389-ec6c-4715-a4e4-65fad9d2233a" + "05b000b4-15bb-4c8b-9d56-ac80a30d632a" ], "x-ms-correlation-request-id": [ - "257f8389-ec6c-4715-a4e4-65fad9d2233a" + "05b000b4-15bb-4c8b-9d56-ac80a30d632a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T221945Z:257f8389-ec6c-4715-a4e4-65fad9d2233a" + "WESTUS2:20180510T072504Z:05b000b4-15bb-4c8b-9d56-ac80a30d632a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:19:45 GMT" + "Thu, 10 May 2018 07:25:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21019,32 +22827,35 @@ "14990" ], "x-ms-request-id": [ - "717cf18f-bc44-4cb4-a17c-1dc58ae90ec5" + "385511ae-50bb-4228-a904-62a3acb640ee" ], "x-ms-correlation-request-id": [ - "717cf18f-bc44-4cb4-a17c-1dc58ae90ec5" + "385511ae-50bb-4228-a904-62a3acb640ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222000Z:717cf18f-bc44-4cb4-a17c-1dc58ae90ec5" + "WESTUS2:20180510T072520Z:385511ae-50bb-4228-a904-62a3acb640ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:20:00 GMT" + "Thu, 10 May 2018 07:25:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21073,32 +22884,35 @@ "14989" ], "x-ms-request-id": [ - "f2b71179-c298-4699-9428-9e5eb67c2982" + "1e6cbddf-29ab-47da-9d82-99d4a19ea5f0" ], "x-ms-correlation-request-id": [ - "f2b71179-c298-4699-9428-9e5eb67c2982" + "1e6cbddf-29ab-47da-9d82-99d4a19ea5f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222015Z:f2b71179-c298-4699-9428-9e5eb67c2982" + "WESTUS2:20180510T072535Z:1e6cbddf-29ab-47da-9d82-99d4a19ea5f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:20:15 GMT" + "Thu, 10 May 2018 07:25:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21127,32 +22941,35 @@ "14988" ], "x-ms-request-id": [ - "ade2f9e6-f291-4e72-8452-d92c23125bd9" + "020c7fc5-4a7d-4e57-9aa5-c6c3383758c6" ], "x-ms-correlation-request-id": [ - "ade2f9e6-f291-4e72-8452-d92c23125bd9" + "020c7fc5-4a7d-4e57-9aa5-c6c3383758c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222030Z:ade2f9e6-f291-4e72-8452-d92c23125bd9" + "WESTUS2:20180510T072550Z:020c7fc5-4a7d-4e57-9aa5-c6c3383758c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:20:30 GMT" + "Thu, 10 May 2018 07:25:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21181,32 +22998,35 @@ "14987" ], "x-ms-request-id": [ - "1af0009d-53fc-48e0-95c3-a4c6337828e4" + "6b2a12e4-7c63-4b05-8f20-bac06c68ada8" ], "x-ms-correlation-request-id": [ - "1af0009d-53fc-48e0-95c3-a4c6337828e4" + "6b2a12e4-7c63-4b05-8f20-bac06c68ada8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222046Z:1af0009d-53fc-48e0-95c3-a4c6337828e4" + "WESTUS2:20180510T072605Z:6b2a12e4-7c63-4b05-8f20-bac06c68ada8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:20:45 GMT" + "Thu, 10 May 2018 07:26:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21235,32 +23055,35 @@ "14986" ], "x-ms-request-id": [ - "c05f10fc-4ed6-4fc1-a120-c30404b56cc5" + "041758cb-a8ca-4d71-83bc-9c52f88bc67c" ], "x-ms-correlation-request-id": [ - "c05f10fc-4ed6-4fc1-a120-c30404b56cc5" + "041758cb-a8ca-4d71-83bc-9c52f88bc67c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222101Z:c05f10fc-4ed6-4fc1-a120-c30404b56cc5" + "WESTUS2:20180510T072620Z:041758cb-a8ca-4d71-83bc-9c52f88bc67c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:21:00 GMT" + "Thu, 10 May 2018 07:26:20 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21289,32 +23112,35 @@ "14985" ], "x-ms-request-id": [ - "efbdf2c4-3623-4183-a403-029c11ed5f0b" + "8a33c11a-c76e-4699-a639-0268740d0df7" ], "x-ms-correlation-request-id": [ - "efbdf2c4-3623-4183-a403-029c11ed5f0b" + "8a33c11a-c76e-4699-a639-0268740d0df7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222116Z:efbdf2c4-3623-4183-a403-029c11ed5f0b" + "WESTUS2:20180510T072635Z:8a33c11a-c76e-4699-a639-0268740d0df7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:21:15 GMT" + "Thu, 10 May 2018 07:26:34 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21343,32 +23169,35 @@ "14984" ], "x-ms-request-id": [ - "3da22a66-ee33-45c7-a375-5aca2161d8a9" + "b7d5ecda-7ee2-496f-9a2b-1fcc11954e24" ], "x-ms-correlation-request-id": [ - "3da22a66-ee33-45c7-a375-5aca2161d8a9" + "b7d5ecda-7ee2-496f-9a2b-1fcc11954e24" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222131Z:3da22a66-ee33-45c7-a375-5aca2161d8a9" + "WESTUS2:20180510T072650Z:b7d5ecda-7ee2-496f-9a2b-1fcc11954e24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:21:30 GMT" + "Thu, 10 May 2018 07:26:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21397,32 +23226,35 @@ "14983" ], "x-ms-request-id": [ - "069e8bfc-fc34-492c-bd3b-f4d2f85159f6" + "97f66c5b-972e-4e9a-91a5-d8bf57538cc6" ], "x-ms-correlation-request-id": [ - "069e8bfc-fc34-492c-bd3b-f4d2f85159f6" + "97f66c5b-972e-4e9a-91a5-d8bf57538cc6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222146Z:069e8bfc-fc34-492c-bd3b-f4d2f85159f6" + "WESTUS2:20180510T072705Z:97f66c5b-972e-4e9a-91a5-d8bf57538cc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:21:45 GMT" + "Thu, 10 May 2018 07:27:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21451,32 +23283,35 @@ "14982" ], "x-ms-request-id": [ - "cea88e22-17fe-485c-ad73-332c2e979255" + "3469f145-e447-4d44-acfd-cd255cfc61fd" ], "x-ms-correlation-request-id": [ - "cea88e22-17fe-485c-ad73-332c2e979255" + "3469f145-e447-4d44-acfd-cd255cfc61fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222201Z:cea88e22-17fe-485c-ad73-332c2e979255" + "WESTUS2:20180510T072720Z:3469f145-e447-4d44-acfd-cd255cfc61fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:22:00 GMT" + "Thu, 10 May 2018 07:27:20 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21505,32 +23340,35 @@ "14981" ], "x-ms-request-id": [ - "c0d04f97-1d58-4f4a-9708-fae77cc11b19" + "f6f9008a-9ec6-4202-8d37-fe68383a609b" ], "x-ms-correlation-request-id": [ - "c0d04f97-1d58-4f4a-9708-fae77cc11b19" + "f6f9008a-9ec6-4202-8d37-fe68383a609b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222216Z:c0d04f97-1d58-4f4a-9708-fae77cc11b19" + "WESTUS2:20180510T072735Z:f6f9008a-9ec6-4202-8d37-fe68383a609b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:22:16 GMT" + "Thu, 10 May 2018 07:27:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21559,32 +23397,35 @@ "14980" ], "x-ms-request-id": [ - "623703d1-edf6-49a3-987c-6627c01d47b9" + "a7f3ace6-5837-468c-8d3d-477b30ee7f5d" ], "x-ms-correlation-request-id": [ - "623703d1-edf6-49a3-987c-6627c01d47b9" + "a7f3ace6-5837-468c-8d3d-477b30ee7f5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222231Z:623703d1-edf6-49a3-987c-6627c01d47b9" + "WESTUS2:20180510T072750Z:a7f3ace6-5837-468c-8d3d-477b30ee7f5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:22:31 GMT" + "Thu, 10 May 2018 07:27:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21613,32 +23454,35 @@ "14979" ], "x-ms-request-id": [ - "d638744d-0074-4c21-870f-2e8f761eb1f8" + "95c10555-95b8-42e2-846b-4e5035e42e86" ], "x-ms-correlation-request-id": [ - "d638744d-0074-4c21-870f-2e8f761eb1f8" + "95c10555-95b8-42e2-846b-4e5035e42e86" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222246Z:d638744d-0074-4c21-870f-2e8f761eb1f8" + "WESTUS2:20180510T072805Z:95c10555-95b8-42e2-846b-4e5035e42e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:22:46 GMT" + "Thu, 10 May 2018 07:28:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21667,32 +23511,35 @@ "14978" ], "x-ms-request-id": [ - "75faf760-5d6c-4c71-a614-c462ef557995" + "73973d4b-e7ad-45da-8a5b-6396bdf9135b" ], "x-ms-correlation-request-id": [ - "75faf760-5d6c-4c71-a614-c462ef557995" + "73973d4b-e7ad-45da-8a5b-6396bdf9135b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222302Z:75faf760-5d6c-4c71-a614-c462ef557995" + "WESTUS2:20180510T072820Z:73973d4b-e7ad-45da-8a5b-6396bdf9135b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:23:01 GMT" + "Thu, 10 May 2018 07:28:20 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21721,32 +23568,35 @@ "14977" ], "x-ms-request-id": [ - "f64d9651-ee7a-43d8-99a3-b77598fba950" + "34c8328a-99df-4375-908d-358e7915901f" ], "x-ms-correlation-request-id": [ - "f64d9651-ee7a-43d8-99a3-b77598fba950" + "34c8328a-99df-4375-908d-358e7915901f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222317Z:f64d9651-ee7a-43d8-99a3-b77598fba950" + "WESTUS2:20180510T072836Z:34c8328a-99df-4375-908d-358e7915901f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:23:17 GMT" + "Thu, 10 May 2018 07:28:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21775,32 +23625,35 @@ "14976" ], "x-ms-request-id": [ - "7bc2b2d9-924b-4d06-b767-caee2efd78f2" + "d4f40042-7b8f-4c7a-87e8-a6e72904646b" ], "x-ms-correlation-request-id": [ - "7bc2b2d9-924b-4d06-b767-caee2efd78f2" + "d4f40042-7b8f-4c7a-87e8-a6e72904646b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222332Z:7bc2b2d9-924b-4d06-b767-caee2efd78f2" + "WESTUS2:20180510T072851Z:d4f40042-7b8f-4c7a-87e8-a6e72904646b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:23:31 GMT" + "Thu, 10 May 2018 07:28:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21829,32 +23682,35 @@ "14975" ], "x-ms-request-id": [ - "ff06c083-1990-4f98-9f89-eff91262b7a1" + "da6cfc6d-09c6-4609-8d1a-557694e9ca19" ], "x-ms-correlation-request-id": [ - "ff06c083-1990-4f98-9f89-eff91262b7a1" + "da6cfc6d-09c6-4609-8d1a-557694e9ca19" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222347Z:ff06c083-1990-4f98-9f89-eff91262b7a1" + "WESTUS2:20180510T072906Z:da6cfc6d-09c6-4609-8d1a-557694e9ca19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:23:46 GMT" + "Thu, 10 May 2018 07:29:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21883,32 +23739,35 @@ "14974" ], "x-ms-request-id": [ - "ca857477-1180-4fd3-93a6-327ff074a0b0" + "9fe900f7-59e9-4cf6-a161-67728f54d5a3" ], "x-ms-correlation-request-id": [ - "ca857477-1180-4fd3-93a6-327ff074a0b0" + "9fe900f7-59e9-4cf6-a161-67728f54d5a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222402Z:ca857477-1180-4fd3-93a6-327ff074a0b0" + "WESTUS2:20180510T072921Z:9fe900f7-59e9-4cf6-a161-67728f54d5a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:24:01 GMT" + "Thu, 10 May 2018 07:29:20 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21937,32 +23796,35 @@ "14973" ], "x-ms-request-id": [ - "08292620-5afa-4d94-9afe-1ca992992845" + "5dce6fd9-71a9-445d-bfa0-580732ee6f53" ], "x-ms-correlation-request-id": [ - "08292620-5afa-4d94-9afe-1ca992992845" + "5dce6fd9-71a9-445d-bfa0-580732ee6f53" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222417Z:08292620-5afa-4d94-9afe-1ca992992845" + "WESTUS2:20180510T072936Z:5dce6fd9-71a9-445d-bfa0-580732ee6f53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:24:17 GMT" + "Thu, 10 May 2018 07:29:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -21991,32 +23853,35 @@ "14972" ], "x-ms-request-id": [ - "cc45c826-f049-475e-8730-8937d0b6755f" + "e1374dff-5048-4019-b236-9177d3927912" ], "x-ms-correlation-request-id": [ - "cc45c826-f049-475e-8730-8937d0b6755f" + "e1374dff-5048-4019-b236-9177d3927912" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222432Z:cc45c826-f049-475e-8730-8937d0b6755f" + "WESTUS2:20180510T072951Z:e1374dff-5048-4019-b236-9177d3927912" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:24:32 GMT" + "Thu, 10 May 2018 07:29:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22045,32 +23910,35 @@ "14971" ], "x-ms-request-id": [ - "a6d69774-29e4-4705-9664-a7740a8d35b3" + "b80e8367-99be-489f-a992-f3c4b0db78d7" ], "x-ms-correlation-request-id": [ - "a6d69774-29e4-4705-9664-a7740a8d35b3" + "b80e8367-99be-489f-a992-f3c4b0db78d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222447Z:a6d69774-29e4-4705-9664-a7740a8d35b3" + "WESTUS2:20180510T073006Z:b80e8367-99be-489f-a992-f3c4b0db78d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:24:47 GMT" + "Thu, 10 May 2018 07:30:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22099,32 +23967,35 @@ "14970" ], "x-ms-request-id": [ - "ef64ddbc-2d56-44ca-866a-5245405fb556" + "7a8821c7-dfc4-4003-b225-8a0453df1eb3" ], "x-ms-correlation-request-id": [ - "ef64ddbc-2d56-44ca-866a-5245405fb556" + "7a8821c7-dfc4-4003-b225-8a0453df1eb3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222503Z:ef64ddbc-2d56-44ca-866a-5245405fb556" + "WESTUS2:20180510T073021Z:7a8821c7-dfc4-4003-b225-8a0453df1eb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:25:02 GMT" + "Thu, 10 May 2018 07:30:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22153,32 +24024,35 @@ "14969" ], "x-ms-request-id": [ - "7db73bc9-93ea-4558-ac5e-fa978966e586" + "ff02b52e-3f91-4961-8cab-83dcb06cf55c" ], "x-ms-correlation-request-id": [ - "7db73bc9-93ea-4558-ac5e-fa978966e586" + "ff02b52e-3f91-4961-8cab-83dcb06cf55c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222518Z:7db73bc9-93ea-4558-ac5e-fa978966e586" + "WESTUS2:20180510T073036Z:ff02b52e-3f91-4961-8cab-83dcb06cf55c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:25:17 GMT" + "Thu, 10 May 2018 07:30:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22207,32 +24081,35 @@ "14968" ], "x-ms-request-id": [ - "b708ff41-0435-44da-a7d8-d51858f14e9d" + "d84067db-4397-4b9b-82d5-1498806df024" ], "x-ms-correlation-request-id": [ - "b708ff41-0435-44da-a7d8-d51858f14e9d" + "d84067db-4397-4b9b-82d5-1498806df024" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222533Z:b708ff41-0435-44da-a7d8-d51858f14e9d" + "WESTUS2:20180510T073051Z:d84067db-4397-4b9b-82d5-1498806df024" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:25:32 GMT" + "Thu, 10 May 2018 07:30:51 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22261,32 +24138,35 @@ "14967" ], "x-ms-request-id": [ - "82872f7e-9da9-4a53-8a0b-a637876e16ed" + "19379dec-757e-454e-9a63-15c250cca6f7" ], "x-ms-correlation-request-id": [ - "82872f7e-9da9-4a53-8a0b-a637876e16ed" + "19379dec-757e-454e-9a63-15c250cca6f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222548Z:82872f7e-9da9-4a53-8a0b-a637876e16ed" + "WESTUS2:20180510T073106Z:19379dec-757e-454e-9a63-15c250cca6f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:25:47 GMT" + "Thu, 10 May 2018 07:31:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22315,32 +24195,35 @@ "14966" ], "x-ms-request-id": [ - "911c9f52-caa5-49bc-8153-387db3e3fd77" + "d99e62e0-bd09-4898-a547-53d18a47fb46" ], "x-ms-correlation-request-id": [ - "911c9f52-caa5-49bc-8153-387db3e3fd77" + "d99e62e0-bd09-4898-a547-53d18a47fb46" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222603Z:911c9f52-caa5-49bc-8153-387db3e3fd77" + "WESTUS2:20180510T073121Z:d99e62e0-bd09-4898-a547-53d18a47fb46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:26:03 GMT" + "Thu, 10 May 2018 07:31:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22369,32 +24252,35 @@ "14965" ], "x-ms-request-id": [ - "48e0bf1f-89b6-4057-b426-da99f8a96eed" + "ac8d8fd4-78fc-469f-9fb2-541500946c27" ], "x-ms-correlation-request-id": [ - "48e0bf1f-89b6-4057-b426-da99f8a96eed" + "ac8d8fd4-78fc-469f-9fb2-541500946c27" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222618Z:48e0bf1f-89b6-4057-b426-da99f8a96eed" + "WESTUS2:20180510T073137Z:ac8d8fd4-78fc-469f-9fb2-541500946c27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:26:18 GMT" + "Thu, 10 May 2018 07:31:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22423,32 +24309,35 @@ "14964" ], "x-ms-request-id": [ - "fc09b652-02d5-43c6-82be-6d96fb8bb7bc" + "d62bc9b0-af92-40e2-89a5-0362e3c94bfe" ], "x-ms-correlation-request-id": [ - "fc09b652-02d5-43c6-82be-6d96fb8bb7bc" + "d62bc9b0-af92-40e2-89a5-0362e3c94bfe" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222633Z:fc09b652-02d5-43c6-82be-6d96fb8bb7bc" + "WESTUS2:20180510T073152Z:d62bc9b0-af92-40e2-89a5-0362e3c94bfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:26:32 GMT" + "Thu, 10 May 2018 07:31:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22477,32 +24366,35 @@ "14963" ], "x-ms-request-id": [ - "846a1b7b-bdd1-47ee-8f82-4af6cc93884d" + "f27ebe65-5dc1-404e-8ce5-0e769932c809" ], "x-ms-correlation-request-id": [ - "846a1b7b-bdd1-47ee-8f82-4af6cc93884d" + "f27ebe65-5dc1-404e-8ce5-0e769932c809" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222648Z:846a1b7b-bdd1-47ee-8f82-4af6cc93884d" + "WESTUS2:20180510T073207Z:f27ebe65-5dc1-404e-8ce5-0e769932c809" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:26:48 GMT" + "Thu, 10 May 2018 07:32:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22531,32 +24423,35 @@ "14962" ], "x-ms-request-id": [ - "d99c828c-38e0-4e88-9238-74fa3d9e2107" + "0db3731a-f6c5-437e-825e-407bc3c7d057" ], "x-ms-correlation-request-id": [ - "d99c828c-38e0-4e88-9238-74fa3d9e2107" + "0db3731a-f6c5-437e-825e-407bc3c7d057" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222703Z:d99c828c-38e0-4e88-9238-74fa3d9e2107" + "WESTUS2:20180510T073222Z:0db3731a-f6c5-437e-825e-407bc3c7d057" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:27:03 GMT" + "Thu, 10 May 2018 07:32:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22585,32 +24480,35 @@ "14961" ], "x-ms-request-id": [ - "6ce5f0d7-f275-4010-9064-e5497413439c" + "fdc04618-3e0e-4b55-9dfd-1d26e73d5822" ], "x-ms-correlation-request-id": [ - "6ce5f0d7-f275-4010-9064-e5497413439c" + "fdc04618-3e0e-4b55-9dfd-1d26e73d5822" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222719Z:6ce5f0d7-f275-4010-9064-e5497413439c" + "WESTUS2:20180510T073237Z:fdc04618-3e0e-4b55-9dfd-1d26e73d5822" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:27:18 GMT" + "Thu, 10 May 2018 07:32:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22639,32 +24537,35 @@ "14960" ], "x-ms-request-id": [ - "8ae6197f-9723-41f7-9fb8-9119415107d6" + "444676be-9e57-44f5-bf25-ddc5c6b6516b" ], "x-ms-correlation-request-id": [ - "8ae6197f-9723-41f7-9fb8-9119415107d6" + "444676be-9e57-44f5-bf25-ddc5c6b6516b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222734Z:8ae6197f-9723-41f7-9fb8-9119415107d6" + "WESTUS2:20180510T073252Z:444676be-9e57-44f5-bf25-ddc5c6b6516b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:27:33 GMT" + "Thu, 10 May 2018 07:32:51 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22693,32 +24594,35 @@ "14959" ], "x-ms-request-id": [ - "7cc3935b-b7c6-41da-b872-5414aaf7994b" + "ff281b73-3f22-4f94-8a97-545e31632ed1" ], "x-ms-correlation-request-id": [ - "7cc3935b-b7c6-41da-b872-5414aaf7994b" + "ff281b73-3f22-4f94-8a97-545e31632ed1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222749Z:7cc3935b-b7c6-41da-b872-5414aaf7994b" + "WESTUS2:20180510T073307Z:ff281b73-3f22-4f94-8a97-545e31632ed1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:27:48 GMT" + "Thu, 10 May 2018 07:33:07 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22747,32 +24651,35 @@ "14958" ], "x-ms-request-id": [ - "bca4c828-7ac1-4d00-8a57-f1fd399cceea" + "ed3ff2aa-fdc3-40f6-af56-5bbf6ec1c3a1" ], "x-ms-correlation-request-id": [ - "bca4c828-7ac1-4d00-8a57-f1fd399cceea" + "ed3ff2aa-fdc3-40f6-af56-5bbf6ec1c3a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222804Z:bca4c828-7ac1-4d00-8a57-f1fd399cceea" + "WESTUS2:20180510T073322Z:ed3ff2aa-fdc3-40f6-af56-5bbf6ec1c3a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:28:04 GMT" + "Thu, 10 May 2018 07:33:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22801,32 +24708,35 @@ "14957" ], "x-ms-request-id": [ - "461a5ce9-753c-4793-85b8-6bc8ee0dd918" + "a86f5391-5687-4783-b6ec-7b14bc612920" ], "x-ms-correlation-request-id": [ - "461a5ce9-753c-4793-85b8-6bc8ee0dd918" + "a86f5391-5687-4783-b6ec-7b14bc612920" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222819Z:461a5ce9-753c-4793-85b8-6bc8ee0dd918" + "WESTUS2:20180510T073338Z:a86f5391-5687-4783-b6ec-7b14bc612920" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:28:19 GMT" + "Thu, 10 May 2018 07:33:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22855,32 +24765,35 @@ "14956" ], "x-ms-request-id": [ - "c7c8620b-b611-4bb0-bef1-673fe6d8081a" + "4f8ca948-6b17-459f-8449-72ced8877239" ], "x-ms-correlation-request-id": [ - "c7c8620b-b611-4bb0-bef1-673fe6d8081a" + "4f8ca948-6b17-459f-8449-72ced8877239" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222834Z:c7c8620b-b611-4bb0-bef1-673fe6d8081a" + "WESTUS2:20180510T073353Z:4f8ca948-6b17-459f-8449-72ced8877239" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:28:34 GMT" + "Thu, 10 May 2018 07:33:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22909,32 +24822,35 @@ "14955" ], "x-ms-request-id": [ - "0497d70b-fe60-49bf-b39e-230dbda9cf39" + "0099c7d0-6924-4ea1-aca0-0dd15d396acd" ], "x-ms-correlation-request-id": [ - "0497d70b-fe60-49bf-b39e-230dbda9cf39" + "0099c7d0-6924-4ea1-aca0-0dd15d396acd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222849Z:0497d70b-fe60-49bf-b39e-230dbda9cf39" + "WESTUS2:20180510T073408Z:0099c7d0-6924-4ea1-aca0-0dd15d396acd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:28:48 GMT" + "Thu, 10 May 2018 07:34:07 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -22963,32 +24879,35 @@ "14954" ], "x-ms-request-id": [ - "bb81b19e-e1db-4c55-b078-758fcaeaeab5" + "48bbead7-1a8e-4821-aa93-8f119095ac06" ], "x-ms-correlation-request-id": [ - "bb81b19e-e1db-4c55-b078-758fcaeaeab5" + "48bbead7-1a8e-4821-aa93-8f119095ac06" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222904Z:bb81b19e-e1db-4c55-b078-758fcaeaeab5" + "WESTUS2:20180510T073423Z:48bbead7-1a8e-4821-aa93-8f119095ac06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:29:04 GMT" + "Thu, 10 May 2018 07:34:23 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -23017,32 +24936,35 @@ "14953" ], "x-ms-request-id": [ - "230e1ae0-ed99-414e-a997-c06523fad9a2" + "b82f6e30-7cb9-4878-9ed9-2299e3c135bc" ], "x-ms-correlation-request-id": [ - "230e1ae0-ed99-414e-a997-c06523fad9a2" + "b82f6e30-7cb9-4878-9ed9-2299e3c135bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222919Z:230e1ae0-ed99-414e-a997-c06523fad9a2" + "WESTUS2:20180510T073438Z:b82f6e30-7cb9-4878-9ed9-2299e3c135bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:29:19 GMT" + "Thu, 10 May 2018 07:34:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -23071,32 +24993,35 @@ "14952" ], "x-ms-request-id": [ - "6f3ee8ea-4711-4016-9ad8-170869559fe2" + "ff6efbaa-59e3-416a-a95f-e91a78303510" ], "x-ms-correlation-request-id": [ - "6f3ee8ea-4711-4016-9ad8-170869559fe2" + "ff6efbaa-59e3-416a-a95f-e91a78303510" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222935Z:6f3ee8ea-4711-4016-9ad8-170869559fe2" + "WESTUS2:20180510T073453Z:ff6efbaa-59e3-416a-a95f-e91a78303510" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:29:34 GMT" + "Thu, 10 May 2018 07:34:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -23125,32 +25050,35 @@ "14951" ], "x-ms-request-id": [ - "b2e00e1f-59e7-4c31-8043-fbab48e709e7" + "2de446b3-0995-4df2-94ff-b4bddcc1852a" ], "x-ms-correlation-request-id": [ - "b2e00e1f-59e7-4c31-8043-fbab48e709e7" + "2de446b3-0995-4df2-94ff-b4bddcc1852a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T222950Z:b2e00e1f-59e7-4c31-8043-fbab48e709e7" + "WESTUS2:20180510T073508Z:2de446b3-0995-4df2-94ff-b4bddcc1852a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:29:50 GMT" + "Thu, 10 May 2018 07:35:07 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -23179,32 +25107,35 @@ "14950" ], "x-ms-request-id": [ - "e8b4d489-ee92-4f47-a6b4-18e4c4aef5d1" + "017d4aa2-fef6-4a56-80d8-d27684dc8347" ], "x-ms-correlation-request-id": [ - "e8b4d489-ee92-4f47-a6b4-18e4c4aef5d1" + "017d4aa2-fef6-4a56-80d8-d27684dc8347" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T223005Z:e8b4d489-ee92-4f47-a6b4-18e4c4aef5d1" + "WESTUS2:20180510T073523Z:017d4aa2-fef6-4a56-80d8-d27684dc8347" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:30:05 GMT" + "Thu, 10 May 2018 07:35:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -23233,32 +25164,35 @@ "14949" ], "x-ms-request-id": [ - "153de166-748a-4a02-975d-72ebddf5c1bf" + "94878371-5b8c-4804-88f8-fb5d0bf13b96" ], "x-ms-correlation-request-id": [ - "153de166-748a-4a02-975d-72ebddf5c1bf" + "94878371-5b8c-4804-88f8-fb5d0bf13b96" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T223020Z:153de166-748a-4a02-975d-72ebddf5c1bf" + "WESTUS2:20180510T073538Z:94878371-5b8c-4804-88f8-fb5d0bf13b96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:30:19 GMT" + "Thu, 10 May 2018 07:35:38 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2NDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk5ESXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -23280,80 +25214,29 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "14948" ], "x-ms-request-id": [ - "8c02cdc9-b59b-4f58-bf46-5f2e34b5ec7e" + "d1942ed4-aa60-4e98-a3d8-a399467709ec" ], "x-ms-correlation-request-id": [ - "8c02cdc9-b59b-4f58-bf46-5f2e34b5ec7e" + "d1942ed4-aa60-4e98-a3d8-a399467709ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20180206T223035Z:8c02cdc9-b59b-4f58-bf46-5f2e34b5ec7e" + "WESTUS2:20180510T073553Z:d1942ed4-aa60-4e98-a3d8-a399467709ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Feb 2018 22:30:34 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxOTMtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE9UTXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2016-02-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" - ], - "x-ms-request-id": [ - "80182104-82cb-4793-87d5-db5a9a2e0567" - ], - "x-ms-correlation-request-id": [ - "80182104-82cb-4793-87d5-db5a9a2e0567" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180206T223050Z:80182104-82cb-4793-87d5-db5a9a2e0567" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 06 Feb 2018 22:30:49 GMT" + "Thu, 10 May 2018 07:35:53 GMT" ] }, "StatusCode": 200 @@ -23361,22 +25244,22 @@ ], "Names": { "Test-VirtualNetworkGatewayBgpRouteApi": [ - "ps3193", - "ps2712", - "ps8621", - "ps7984", - "ps4925", - "ps5413", - "ps6185", - "ps5397", - "ps9827", - "ps4291", - "ps1619", - "ps6030", - "ps8975" + "ps6642", + "ps398", + "ps1623", + "ps9935", + "ps4531", + "ps8159", + "ps3442", + "ps6141", + "ps2616", + "ps2983", + "ps8899", + "ps2969", + "ps8838" ] }, "Variables": { - "SubscriptionId": "c886bc58-08de-4e01-993f-e01ba3702aaf" + "SubscriptionId": "b1f1deed-af60-4bab-9223-65d340462e24" } } \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/VirtualNetworkGatewayVpnCustomIpsecPolicySetTest.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/VirtualNetworkGatewayVpnCustomIpsecPolicySetTest.json new file mode 100644 index 000000000000..89217f7294e3 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/VirtualNetworkGatewayVpnCustomIpsecPolicySetTest.json @@ -0,0 +1,16433 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-11-30\",\r\n \"2015-11-15-preview\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29662" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "53b0990a-6a46-4117-a16c-736d1e3abc36" + ], + "x-ms-correlation-request-id": [ + "53b0990a-6a46-4117-a16c-736d1e3abc36" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002416Z:53b0990a-6a46-4117-a16c-736d1e3abc36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 00:24:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourcegroups/ps5339?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlZ3JvdXBzL3BzNTMzOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339\",\r\n \"name\": \"ps5339\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "5481bafb-3965-4393-b754-64859de6d427" + ], + "x-ms-correlation-request-id": [ + "5481bafb-3965-4393-b754-64859de6d427" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002417Z:5481bafb-3965-4393-b754-64859de6d427" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 00:24:17 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTcwND9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c378129-dee9-4d8f-b57b-2c686d3a4e2a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps9704' under resource group 'ps5339' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "789cca9d-767c-4513-89a6-873670a33a3d" + ], + "x-ms-correlation-request-id": [ + "789cca9d-767c-4513-89a6-873670a33a3d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002418Z:789cca9d-767c-4513-89a6-873670a33a3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 00:24:18 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTcwND9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9704\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704\",\r\n \"etag\": \"W/\\\"73502dd2-3946-4f9f-bdff-29703a15f883\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"21515fe4-5eb6-42e6-b33b-fe7698ea0fa9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"73502dd2-3946-4f9f-bdff-29703a15f883\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1112" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8c7afcdc-d33a-4295-86fa-51b14a7ec5dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"73502dd2-3946-4f9f-bdff-29703a15f883\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "ebedb567-ff8c-4f56-ba07-244d376ef55c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002442Z:ebedb567-ff8c-4f56-ba07-244d376ef55c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:24:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTcwND9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5def7047-ec28-4e66-888f-15a46f6695aa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9704\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704\",\r\n \"etag\": \"W/\\\"73502dd2-3946-4f9f-bdff-29703a15f883\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"21515fe4-5eb6-42e6-b33b-fe7698ea0fa9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"73502dd2-3946-4f9f-bdff-29703a15f883\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1112" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e5426c93-4b5a-47f3-b48e-1198176ff89d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"73502dd2-3946-4f9f-bdff-29703a15f883\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "dcee7ffb-8d94-40fe-a6e4-fc1e5a226301" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002442Z:dcee7ffb-8d94-40fe-a6e4-fc1e5a226301" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:24:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTcwND9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fda2935-cca7-47a0-9966-a1099e790bce" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9704\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704\",\r\n \"etag\": \"W/\\\"73502dd2-3946-4f9f-bdff-29703a15f883\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"21515fe4-5eb6-42e6-b33b-fe7698ea0fa9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"73502dd2-3946-4f9f-bdff-29703a15f883\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1112" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0ba011ac-7f6a-4cec-a713-c59f6f965029" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"73502dd2-3946-4f9f-bdff-29703a15f883\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "b60e24ca-326e-4d9d-9c06-5a8d96135360" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002442Z:b60e24ca-326e-4d9d-9c06-5a8d96135360" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:24:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTcwND9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "488" + ], + "x-ms-client-request-id": [ + "7b57da5f-438b-4820-94e5-5594cc71cd49" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9704\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704\",\r\n \"etag\": \"W/\\\"58240560-90e5-492b-a4e8-985edfecae01\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"21515fe4-5eb6-42e6-b33b-fe7698ea0fa9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"58240560-90e5-492b-a4e8-985edfecae01\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1110" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "c31ed1e2-9dfa-4e74-bd3d-316ee0fc3305" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/c31ed1e2-9dfa-4e74-bd3d-316ee0fc3305?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "f280b2a1-4877-4c02-a5f1-7e9db3dc835a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002421Z:f280b2a1-4877-4c02-a5f1-7e9db3dc835a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:24:21 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/c31ed1e2-9dfa-4e74-bd3d-316ee0fc3305?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2MzMWVkMWUyLTlkZmEtNGU3NC1iZDNkLTMxNmVlMGZjMzMwNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "01174ac3-d459-4f89-93e3-caa6c07a3830" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "bb84ae23-9803-48e1-9aa8-dd516df00dc8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002432Z:bb84ae23-9803-48e1-9aa8-dd516df00dc8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:24:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/c31ed1e2-9dfa-4e74-bd3d-316ee0fc3305?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2MzMWVkMWUyLTlkZmEtNGU3NC1iZDNkLTMxNmVlMGZjMzMwNT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0ef863ce-d1f6-4acf-b6a4-fc084b260d06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "3673694d-d446-44e7-8dc5-00d10e8be1c1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002442Z:3673694d-d446-44e7-8dc5-00d10e8be1c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:24:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyMDMzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "645ffc4c-b825-44d4-9ca3-726595ee1ccc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps2033' under resource group 'ps5339' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "04959e73-6bf3-42de-a569-775f541b8528" + ], + "x-ms-correlation-request-id": [ + "04959e73-6bf3-42de-a569-775f541b8528" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002443Z:04959e73-6bf3-42de-a569-775f541b8528" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 00:24:42 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyMDMzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps2033\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\",\r\n \"etag\": \"W/\\\"de67054a-d417-4f5e-acf4-36a6cd145b8b\\\"\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aedb9b94-b199-4a52-b67f-20b340a83c22\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps8607\",\r\n \"fqdn\": \"ps8607.centraluseuap.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "747" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "352f9f25-85b8-4bd2-bc68-8de77fb7ffcd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"de67054a-d417-4f5e-acf4-36a6cd145b8b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "92a65e01-9f9f-4290-8a4a-4f540c1d2937" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002455Z:92a65e01-9f9f-4290-8a4a-4f540c1d2937" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:24:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyMDMzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f49da1b-323f-47e2-9200-21977838ffd1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps2033\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\",\r\n \"etag\": \"W/\\\"de67054a-d417-4f5e-acf4-36a6cd145b8b\\\"\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aedb9b94-b199-4a52-b67f-20b340a83c22\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps8607\",\r\n \"fqdn\": \"ps8607.centraluseuap.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "747" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3933815a-b6ea-4245-bd02-18b85a8e3763" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"de67054a-d417-4f5e-acf4-36a6cd145b8b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "8174b543-ad65-4580-9e3e-520f9a0270a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002455Z:8174b543-ad65-4580-9e3e-520f9a0270a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:24:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMyMDMzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps8607\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "203" + ], + "x-ms-client-request-id": [ + "5d4574f1-c2d1-4e12-9189-d20c94d966b4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps2033\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\",\r\n \"etag\": \"W/\\\"20a5fbdb-442c-4aa5-9635-e0906a8df1e5\\\"\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"aedb9b94-b199-4a52-b67f-20b340a83c22\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"ps8607\",\r\n \"fqdn\": \"ps8607.centraluseuap.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "746" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "e3c7ad0e-e25f-48c4-9107-1407b2031838" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/e3c7ad0e-e25f-48c4-9107-1407b2031838?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "9ed28ed0-e616-4410-aaec-8e713d4e9187" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002445Z:9ed28ed0-e616-4410-aaec-8e713d4e9187" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:24:45 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/e3c7ad0e-e25f-48c4-9107-1407b2031838?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2UzYzdhZDBlLWUyNWYtNDhjNC05MTA3LTE0MDdiMjAzMTgzOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b54f88ad-757a-4eb0-adbc-8d92000492a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "60314f07-35ae-4288-affe-8f97b7ad7814" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002455Z:60314f07-35ae-4288-affe-8f97b7ad7814" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:24:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4fed1e18-4a56-4277-9736-cbcce373ed77" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworkGateways/ps2084' under resource group 'ps5339' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "15aa5b60-9cac-43a2-861d-f094b2f1caf6" + ], + "x-ms-correlation-request-id": [ + "15aa5b60-9cac-43a2-861d-f094b2f1caf6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002456Z:15aa5b60-9cac-43a2-861d-f094b2f1caf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 00:24:55 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps2084\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"etag\": \"W/\\\"950c6f4a-6541-4a35-ba1a-9a7a9ee3e978\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\",\r\n \"etag\": \"W/\\\"950c6f4a-6541-4a35-ba1a-9a7a9ee3e978\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"950c6f4a-6541-4a35-ba1a-9a7a9ee3e978\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS2\"\r\n }\r\n ]\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4044" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cec7ca6a-75db-441b-9dc1-7de855a164cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14784" + ], + "x-ms-correlation-request-id": [ + "e258c901-5a48-4b11-9891-793fef9608b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005709Z:e258c901-5a48-4b11-9891-793fef9608b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:57:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5615a462-b348-450e-9163-ca7132978b65" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps2084\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"etag\": \"W/\\\"950c6f4a-6541-4a35-ba1a-9a7a9ee3e978\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\",\r\n \"etag\": \"W/\\\"950c6f4a-6541-4a35-ba1a-9a7a9ee3e978\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"950c6f4a-6541-4a35-ba1a-9a7a9ee3e978\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS2\"\r\n }\r\n ]\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4044" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5ce51a39-a2c8-4673-8356-c19db42ecefc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14783" + ], + "x-ms-correlation-request-id": [ + "089c7cc8-b45a-4fdb-9685-265d479b1c1a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005712Z:089c7cc8-b45a-4fdb-9685-265d479b1c1a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:57:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbe44601-cc4c-483f-a85b-a0000d096afe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps2084\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"etag\": \"W/\\\"950c6f4a-6541-4a35-ba1a-9a7a9ee3e978\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\",\r\n \"etag\": \"W/\\\"950c6f4a-6541-4a35-ba1a-9a7a9ee3e978\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"950c6f4a-6541-4a35-ba1a-9a7a9ee3e978\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS2\"\r\n }\r\n ]\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4044" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8492dcf9-758e-424c-81d8-808bfbb93549" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14782" + ], + "x-ms-correlation-request-id": [ + "c02e845b-60c4-4f99-98fb-65c0d19798ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005713Z:c02e845b-60c4-4f99-98fb-65c0d19798ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:57:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5d7e065-4442-4347-b0ae-6d7889bd4b80" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps2084\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"etag\": \"W/\\\"950c6f4a-6541-4a35-ba1a-9a7a9ee3e978\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\",\r\n \"etag\": \"W/\\\"950c6f4a-6541-4a35-ba1a-9a7a9ee3e978\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"950c6f4a-6541-4a35-ba1a-9a7a9ee3e978\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS2\"\r\n }\r\n ]\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4044" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b8d229d4-4290-4868-b5fc-964194064521" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14781" + ], + "x-ms-correlation-request-id": [ + "00bf3235-7087-403c-88ba-025df0e9df32" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005713Z:00bf3235-7087-403c-88ba-025df0e9df32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:57:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps2084\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"etag\": \"W/\\\"bea4ddd8-b4c0-4450-9dce-84eed3a378e2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\",\r\n \"etag\": \"W/\\\"bea4ddd8-b4c0-4450-9dce-84eed3a378e2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"bea4ddd8-b4c0-4450-9dce-84eed3a378e2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86472,\r\n \"saDataSizeKilobytes\": 429497,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA256\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"None\"\r\n }\r\n ]\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "09ac7de7-7b5d-442b-b321-63dcee701455" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14776" + ], + "x-ms-correlation-request-id": [ + "7882c509-31d9-47f7-8f76-c37f03f31534" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005755Z:7882c509-31d9-47f7-8f76-c37f03f31534" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:57:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1bbd3067-0e5d-4270-bbeb-21e574130565" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps2084\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"etag\": \"W/\\\"bea4ddd8-b4c0-4450-9dce-84eed3a378e2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\",\r\n \"etag\": \"W/\\\"bea4ddd8-b4c0-4450-9dce-84eed3a378e2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"bea4ddd8-b4c0-4450-9dce-84eed3a378e2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86472,\r\n \"saDataSizeKilobytes\": 429497,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA256\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"None\"\r\n }\r\n ]\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3404f2ba-7153-4dce-afc7-3f5ea39cbb04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14775" + ], + "x-ms-correlation-request-id": [ + "53cd3f98-18dc-4165-8286-be1374820bfa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005755Z:53cd3f98-18dc-4165-8286-be1374820bfa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:57:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55e7806d-409b-485e-84f2-eda5ec0e50d7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps2084\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"etag\": \"W/\\\"bea4ddd8-b4c0-4450-9dce-84eed3a378e2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\",\r\n \"etag\": \"W/\\\"bea4ddd8-b4c0-4450-9dce-84eed3a378e2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"bea4ddd8-b4c0-4450-9dce-84eed3a378e2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86472,\r\n \"saDataSizeKilobytes\": 429497,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA256\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"None\"\r\n }\r\n ]\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3664a982-3cc9-4713-a193-d198697b0a04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14774" + ], + "x-ms-correlation-request-id": [ + "194196cf-6fd7-442d-8dff-0c329d58cdcf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005756Z:194196cf-6fd7-442d-8dff-0c329d58cdcf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:57:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a97fdef3-57af-4408-885a-0a6bf7f00a91" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps2084\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"etag\": \"W/\\\"5e51d364-95ae-4c72-a954-f1ca0ec02e36\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\",\r\n \"etag\": \"W/\\\"5e51d364-95ae-4c72-a954-f1ca0ec02e36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"5e51d364-95ae-4c72-a954-f1ca0ec02e36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86473,\r\n \"saDataSizeKilobytes\": 429498,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS2\"\r\n }\r\n ]\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "814b69f6-1c46-4b6e-90fe-62684e21ab81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14771" + ], + "x-ms-correlation-request-id": [ + "013d8ce4-9409-41f4-a8b7-888962d0fe24" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005807Z:013d8ce4-9409-41f4-a8b7-888962d0fe24" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:58:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34bb6505-976e-454d-bb47-cf36b8d6b384" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps2084\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"etag\": \"W/\\\"5e51d364-95ae-4c72-a954-f1ca0ec02e36\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\",\r\n \"etag\": \"W/\\\"5e51d364-95ae-4c72-a954-f1ca0ec02e36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"5e51d364-95ae-4c72-a954-f1ca0ec02e36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86473,\r\n \"saDataSizeKilobytes\": 429498,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS2\"\r\n }\r\n ]\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7b05cc7b-a5b2-4f22-880d-a9ed594b3028" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14770" + ], + "x-ms-correlation-request-id": [ + "4f2a3132-d651-4187-8d86-ae44bc23a4df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005807Z:4f2a3132-d651-4187-8d86-ae44bc23a4df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:58:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbd4be33-dcdc-4557-b4df-6cb6699d1d12" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps2084\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"etag\": \"W/\\\"5e51d364-95ae-4c72-a954-f1ca0ec02e36\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\",\r\n \"etag\": \"W/\\\"5e51d364-95ae-4c72-a954-f1ca0ec02e36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"5e51d364-95ae-4c72-a954-f1ca0ec02e36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86473,\r\n \"saDataSizeKilobytes\": 429498,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS2\"\r\n }\r\n ]\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bb59871d-2546-4ad0-9aba-1700642498fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14769" + ], + "x-ms-correlation-request-id": [ + "731d2f00-4c80-427f-9756-2e167ba8ebe3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005807Z:731d2f00-4c80-427f-9756-2e167ba8ebe3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:58:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps2084\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"etag\": \"W/\\\"3d6acefc-36c3-469f-bf99-47507518c43b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\",\r\n \"etag\": \"W/\\\"3d6acefc-36c3-469f-bf99-47507518c43b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"3d6acefc-36c3-469f-bf99-47507518c43b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cc2286e9-ce6b-4bbc-8089-e1e346579a22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14766" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "47d1f82e-8360-477b-a2a4-2154902e091b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005828Z:47d1f82e-8360-477b-a2a4-2154902e091b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:58:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ebe4a0a-d8be-4c3d-9e3f-0a2562b342f9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps2084\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"etag\": \"W/\\\"3d6acefc-36c3-469f-bf99-47507518c43b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\",\r\n \"etag\": \"W/\\\"3d6acefc-36c3-469f-bf99-47507518c43b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"3d6acefc-36c3-469f-bf99-47507518c43b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"allocatedIpAddresses\": [],\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "711cebab-8db8-4548-b85b-2d5eb973e00a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14765" + ], + "x-ms-correlation-request-id": [ + "28b2b406-c2bd-4f65-94db-fd29990b0ec5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005828Z:28b2b406-c2bd-4f65-94db-fd29990b0ec5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:58:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n }\r\n },\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfiguration/ps6937\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n },\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS2\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3010" + ], + "x-ms-client-request-id": [ + "19e26c0e-4cf3-4a0b-9f83-d83e0968797b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps2084\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"etag\": \"W/\\\"05052ad7-5bff-4454-9356-1b6640ad868c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\",\r\n \"etag\": \"W/\\\"05052ad7-5bff-4454-9356-1b6640ad868c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"05052ad7-5bff-4454-9356-1b6640ad868c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS2\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3750" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "58862454-dd3d-47c4-82b5-18087196bbe8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "71f38530-a385-4ecd-bd2c-691eadd02724" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002457Z:71f38530-a385-4ecd-bd2c-691eadd02724" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:24:57 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n }\r\n },\r\n \"name\": \"ps6937\",\r\n \"etag\": \"W/\\\"950c6f4a-6541-4a35-ba1a-9a7a9ee3e978\\\"\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n },\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"950c6f4a-6541-4a35-ba1a-9a7a9ee3e978\\\"\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86472,\r\n \"saDataSizeKilobytes\": 429497,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA256\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"None\"\r\n }\r\n ]\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\"\r\n },\r\n \"etag\": \"W/\\\"950c6f4a-6541-4a35-ba1a-9a7a9ee3e978\\\"\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3662" + ], + "x-ms-client-request-id": [ + "1320d59a-97f6-4499-b252-925beed4e7e6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps2084\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"etag\": \"W/\\\"c402d2e9-aa77-4ffa-b192-c4c5925f1707\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\",\r\n \"etag\": \"W/\\\"c402d2e9-aa77-4ffa-b192-c4c5925f1707\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"c402d2e9-aa77-4ffa-b192-c4c5925f1707\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 86472,\r\n \"saDataSizeKilobytes\": 429497,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA256\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"None\"\r\n }\r\n ]\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3866" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "08616575-d8ab-4d11-b6ff-57e257f2fefa" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/08616575-d8ab-4d11-b6ff-57e257f2fefa?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "a35975e9-ecf1-48b2-b7a2-a527e44fcdb1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005714Z:a35975e9-ecf1-48b2-b7a2-a527e44fcdb1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:57:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQ/YXBpLXZlcnNpb249MjAxOC0wNC0wMQ==", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n }\r\n },\r\n \"name\": \"ps6937\",\r\n \"etag\": \"W/\\\"5e51d364-95ae-4c72-a954-f1ca0ec02e36\\\"\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n },\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"5e51d364-95ae-4c72-a954-f1ca0ec02e36\\\"\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\"\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\"\r\n },\r\n \"etag\": \"W/\\\"5e51d364-95ae-4c72-a954-f1ca0ec02e36\\\"\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3333" + ], + "x-ms-client-request-id": [ + "3d2907c4-d814-44d8-9a90-002f1745057b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"name\": \"ps2084\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084\",\r\n \"etag\": \"W/\\\"c9dc22d1-23ad-42d9-83df-ea75d9350a0b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a56e8818-2969-4ab4-8699-780000eeae7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6937\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/ipConfigurations/ps6937\",\r\n \"etag\": \"W/\\\"c9dc22d1-23ad-42d9-83df-ea75d9350a0b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/publicIPAddresses/ps2033\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworks/ps9704/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"VpnGw1\",\r\n \"tier\": \"VpnGw1\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\": [\r\n \"IkeV2\"\r\n ],\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"id\": \"/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/vpnClientRootCertificates/BrkLiteTestMSFTRootCA.cer\",\r\n \"etag\": \"W/\\\"c9dc22d1-23ad-42d9-83df-ea75d9350a0b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3537" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6ecf57bd-df0d-4b0a-8520-2b11defc9edb" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/6ecf57bd-df0d-4b0a-8520-2b11defc9edb?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "fcef4074-8c9e-496a-a8e5-243518a836e6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005807Z:fcef4074-8c9e-496a-a8e5-243518a836e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:58:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a588d24e-e7df-463a-b352-caa71e5ab12d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "18e2da50-ba59-41f2-95bb-d7f998a852ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002507Z:18e2da50-ba59-41f2-95bb-d7f998a852ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:25:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e99f52ad-f4b4-44d0-9b60-b97dc18f31b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "053535f4-f827-43e3-a111-25ad2ea1d3bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002517Z:053535f4-f827-43e3-a111-25ad2ea1d3bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:25:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2e0d4dfa-c96f-4ab2-b31d-32371f74c9ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "b3a35a26-ae18-4d58-acea-42d00110c53b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002527Z:b3a35a26-ae18-4d58-acea-42d00110c53b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:25:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "67072644-6474-4e6c-af53-081eb72132f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "7dc8f26c-fa4c-4d20-bdfb-238daa990685" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002537Z:7dc8f26c-fa4c-4d20-bdfb-238daa990685" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:25:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ed6b8ed4-d6a1-4a53-ac8f-3d8f0537d214" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "602ec6e4-33ec-4069-9b99-9f2fdeb0e012" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002548Z:602ec6e4-33ec-4069-9b99-9f2fdeb0e012" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:25:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8c2054a3-9e8e-48bc-bf35-b84411227e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "4c781a6d-0f04-44b4-8584-5ed78af1be55" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002558Z:4c781a6d-0f04-44b4-8584-5ed78af1be55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:25:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0697c117-7030-4e2b-a58c-849748db8d5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "6b60f7a4-b166-4097-9f2c-d225edda58f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002608Z:6b60f7a4-b166-4097-9f2c-d225edda58f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:26:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4db40fc8-fd22-407b-a600-51e9ba0557f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "577b7316-37bd-4877-9e84-8cb72848fc8b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002618Z:577b7316-37bd-4877-9e84-8cb72848fc8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:26:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "364d8a86-4e97-48be-926f-f6d3ee3b2bdf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "ed351c67-4f02-4296-95ec-e474eed48b89" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002628Z:ed351c67-4f02-4296-95ec-e474eed48b89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:26:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8fcc681b-459b-4900-91ca-13a48c5ac945" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "662ae899-6e6b-40c1-bcfb-f14b0d583d7f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002638Z:662ae899-6e6b-40c1-bcfb-f14b0d583d7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:26:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5af3ed13-7b8e-4c0d-a0ba-c9b8676d2715" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "db0a45d7-459d-4135-8542-106479e1a52a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002648Z:db0a45d7-459d-4135-8542-106479e1a52a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:26:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6ef1d77b-8fd6-4750-a944-267aaaa96959" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "77c96c03-2595-422f-b36b-422ccde1d66e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002658Z:77c96c03-2595-422f-b36b-422ccde1d66e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:26:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6bc6b64c-a049-4cfe-85dc-3ca979dc9073" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ab34a7eb-31af-41a9-80f7-475a6b44bf37" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002708Z:ab34a7eb-31af-41a9-80f7-475a6b44bf37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:27:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c11bd16a-6573-4176-8014-085b4244b885" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "da5d24ec-1667-4df2-aac7-2a56ce207614" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002718Z:da5d24ec-1667-4df2-aac7-2a56ce207614" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:27:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0f5ae0fd-d08e-4bcc-bc20-e3c30f546f8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "81ea6a47-8004-4516-b06a-afeb3be1ec9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002728Z:81ea6a47-8004-4516-b06a-afeb3be1ec9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:27:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "da1d74d6-800d-42ee-b037-5ad12d9fc364" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "3f57b4ab-3c1a-4e71-81a8-fcd271dc217b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002739Z:3f57b4ab-3c1a-4e71-81a8-fcd271dc217b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:27:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7943d6ab-1d7b-4561-b12c-b0f9337cc69e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "4204944f-ec13-4be1-a45c-259f70260424" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002749Z:4204944f-ec13-4be1-a45c-259f70260424" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:27:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d2ee0a00-2d78-4a3d-bc14-66e0151a2000" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "2cd0aef4-6212-41a1-9149-bd54a5ebdcf8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002759Z:2cd0aef4-6212-41a1-9149-bd54a5ebdcf8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:27:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8530a4ca-5d96-4065-a30c-990a75a8caed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "70cf9375-f985-4dc4-b4c4-17db26eee062" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002809Z:70cf9375-f985-4dc4-b4c4-17db26eee062" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:28:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2e246a58-755c-4b1e-acfa-2ad4af734edf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "fc4d2a75-ec5c-46a1-8bc5-e746149123f8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002819Z:fc4d2a75-ec5c-46a1-8bc5-e746149123f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:28:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fd6afdac-7612-4e60-8903-c397726eab6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "603f984b-5a49-46a0-95cf-5fa5273a0ed1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002829Z:603f984b-5a49-46a0-95cf-5fa5273a0ed1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:28:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cdb58ac9-a966-4606-b85a-b5c21b145de2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "9d95f937-83ad-449f-9fc6-51e798651fc6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002839Z:9d95f937-83ad-449f-9fc6-51e798651fc6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:28:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2f6b4207-a796-4d97-87c5-f0d659573f03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "1090d0f8-eb37-4d14-9fcf-492debc72ad2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002849Z:1090d0f8-eb37-4d14-9fcf-492debc72ad2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:28:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "90339d1c-459e-413e-a18d-09c094dcc641" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "acabd73b-4520-47e4-a610-4f3fd8a3c635" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002859Z:acabd73b-4520-47e4-a610-4f3fd8a3c635" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:28:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a2df0229-91c9-426c-9bb6-5f871566fca1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "a3481c6a-907a-4011-acf6-d88d45e7631d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002909Z:a3481c6a-907a-4011-acf6-d88d45e7631d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:29:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "44509d3a-8156-4e9a-b53a-5ee44f28b604" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "ef92ed7c-016b-451e-954b-1e8dd0608d72" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002920Z:ef92ed7c-016b-451e-954b-1e8dd0608d72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:29:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "795efe30-14ee-4983-aa86-269e5dd98a3f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "c85c5d4b-06c2-44aa-b728-6f9e1a748848" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002930Z:c85c5d4b-06c2-44aa-b728-6f9e1a748848" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:29:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dc5c66b1-0198-4c23-9e26-d669fe9ae48b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "7bb84963-94b1-4198-af82-a5663ad2b48c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002940Z:7bb84963-94b1-4198-af82-a5663ad2b48c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:29:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fb7f7363-4253-4755-8cb9-625f4eb2ce50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "5e997526-b6cc-4942-b1e3-89839ee16975" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T002950Z:5e997526-b6cc-4942-b1e3-89839ee16975" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:29:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d315f731-c91f-4a66-8c85-ede697a425e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "0d880442-4dae-4fc0-b225-d0cd589dddea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003000Z:0d880442-4dae-4fc0-b225-d0cd589dddea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:30:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f039a2c8-46ba-49b5-a2bf-3f5f14f5af99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "8d21b937-7776-4b15-8808-deb50f6743f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003010Z:8d21b937-7776-4b15-8808-deb50f6743f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:30:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d20de27e-c0e8-4372-91ff-8e17b143533a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "400011cb-9b98-4c74-a2bf-a21b1bde9dd7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003020Z:400011cb-9b98-4c74-a2bf-a21b1bde9dd7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:30:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0694d57c-50ac-48bb-bfec-7173eef096ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "177d3fe2-4042-4799-97fa-cb2af3cb48a4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003030Z:177d3fe2-4042-4799-97fa-cb2af3cb48a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:30:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9574268e-fd69-430f-b5ae-c15cdce71493" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "e693d3db-96f1-4f2f-8745-01a570eb01d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003041Z:e693d3db-96f1-4f2f-8745-01a570eb01d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:30:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "96bc0f60-e6cd-4732-9723-2e3e9e670efb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "608f79b0-903f-43ab-a3d6-1989d42b8857" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003051Z:608f79b0-903f-43ab-a3d6-1989d42b8857" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:30:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "893f3ba2-27c4-49b8-a493-5fd97147c923" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "b1a32b02-c226-4b6e-9394-52ee4eb037a4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003101Z:b1a32b02-c226-4b6e-9394-52ee4eb037a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:31:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f9717077-0c7f-4902-9469-2a3f7603532e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ae96917e-1fa5-4e65-823f-4461162d36b2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003111Z:ae96917e-1fa5-4e65-823f-4461162d36b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:31:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "80a79357-3f3d-4c28-9a8d-acb491588b6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "5c61bd72-7383-4079-a07d-5a905efd157b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003121Z:5c61bd72-7383-4079-a07d-5a905efd157b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:31:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "02a65c64-eaef-4ee6-a190-d1cf6b572994" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "f9ed782b-4fc8-4971-8a56-08a8484d0e2f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003131Z:f9ed782b-4fc8-4971-8a56-08a8484d0e2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:31:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f6205953-cb13-4866-a7ba-6c409e3a75f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "de5a19af-f2dd-41d0-94b4-0643aadeb554" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003141Z:de5a19af-f2dd-41d0-94b4-0643aadeb554" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:31:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fa48766f-2845-49c1-b708-429ad7c2c886" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "eed96f40-6f43-439f-9e82-66e7c4f1bda0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003151Z:eed96f40-6f43-439f-9e82-66e7c4f1bda0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:31:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "276ec19e-dc7d-4770-b732-4dc37da61df1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "04c22d01-dd63-40ae-abd2-75b89aa6745e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003201Z:04c22d01-dd63-40ae-abd2-75b89aa6745e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:32:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "178a5ee8-61b1-4446-aff1-1fcaad8efed2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "3af9168f-569c-4e22-ad29-e0d5bb8aafad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003212Z:3af9168f-569c-4e22-ad29-e0d5bb8aafad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:32:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6e6e5129-7adc-4112-b909-4de05911a909" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "86aacb5a-4dd3-49dd-8c3a-fb710c737217" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003222Z:86aacb5a-4dd3-49dd-8c3a-fb710c737217" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:32:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6bfa738b-dbda-4ae7-b2dc-0f5ac0cbaa3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "cef023b9-cd98-4d47-9ae1-3d51ea77f027" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003232Z:cef023b9-cd98-4d47-9ae1-3d51ea77f027" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:32:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3a8e6284-f47c-4f5d-bd2a-2f16c514f731" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "b3506e4b-37c5-48b8-845d-1573d138254b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003242Z:b3506e4b-37c5-48b8-845d-1573d138254b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:32:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "642a992e-1d5c-434c-95c0-6f261704ca80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "0c7daae4-6fd9-4f24-8b1c-219dbb628274" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003252Z:0c7daae4-6fd9-4f24-8b1c-219dbb628274" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:32:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "25b6abe5-5765-4fd2-9317-9e79b698d93d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "d8de8895-c016-48fc-8c95-b8e36005225a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003302Z:d8de8895-c016-48fc-8c95-b8e36005225a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:33:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e44ff484-4acb-4b57-8097-97fd263215f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "338d1c50-bb8b-46bc-a820-bebe18fe5098" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003312Z:338d1c50-bb8b-46bc-a820-bebe18fe5098" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:33:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2d9abfe2-36f0-48dd-b10b-edd3eef09f78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "b0d079da-1955-46c1-95df-07ea9d0e54dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003322Z:b0d079da-1955-46c1-95df-07ea9d0e54dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:33:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b79fdd40-0901-433d-a667-8d253691176d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "3c144f79-35fe-49a3-b621-e5b924a4cdf9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003332Z:3c144f79-35fe-49a3-b621-e5b924a4cdf9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:33:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "57c06b19-af53-4048-9138-109a68363893" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "5449063e-f33e-4022-8576-6e1c2bc809eb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003342Z:5449063e-f33e-4022-8576-6e1c2bc809eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:33:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "64caaf54-760f-45d0-8044-ac957a8d8195" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c3a1da4f-8bab-450d-bc53-0435868787a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003352Z:c3a1da4f-8bab-450d-bc53-0435868787a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:33:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a4d754ae-a872-4f37-98bb-6ee398a3528f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "36f60489-2d3b-4a84-bcd1-6a7935c4b7c2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003403Z:36f60489-2d3b-4a84-bcd1-6a7935c4b7c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:34:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c9c80e06-83ee-45c9-9f21-c1021e379e81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "90a61c7c-0315-44d1-9bbb-fd2a1a3ef759" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003413Z:90a61c7c-0315-44d1-9bbb-fd2a1a3ef759" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:34:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ea9e25be-abfe-4db8-b559-702388eff534" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-correlation-request-id": [ + "53bddf62-7c08-452c-b342-39698f91697e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003423Z:53bddf62-7c08-452c-b342-39698f91697e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:34:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8d7c11d7-0f94-40f6-a798-ea1f24fed504" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "1839ed46-4ea5-4dcb-8d4e-b7460d8c6229" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003433Z:1839ed46-4ea5-4dcb-8d4e-b7460d8c6229" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:34:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5b9407e7-960d-4444-b389-7058334eb8f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "e3ecab6b-9b8d-455b-9999-2f2b065033d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003443Z:e3ecab6b-9b8d-455b-9999-2f2b065033d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:34:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c7d457eb-1ac0-4875-a3fd-cf66f698bed3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "5ee4ba57-f6c9-4762-93e8-11fe6412510d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003453Z:5ee4ba57-f6c9-4762-93e8-11fe6412510d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:34:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b9f0ab60-e849-4e39-9e89-9399ab2ebb00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-correlation-request-id": [ + "51787b4c-c92a-4f3a-8fec-a3d469091ee5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003503Z:51787b4c-c92a-4f3a-8fec-a3d469091ee5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:35:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "24d7f970-3ea8-4073-a315-f5a8d22a1ff0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "0b65951b-fad3-41af-8006-010f3d07bc75" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003514Z:0b65951b-fad3-41af-8006-010f3d07bc75" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:35:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "edc6547f-02c6-44f8-9da7-989e1f521dba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-correlation-request-id": [ + "1c8f9250-7602-43de-8d33-e02ab34c058b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003524Z:1c8f9250-7602-43de-8d33-e02ab34c058b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:35:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "74e710bc-9c76-4685-bef3-766232b549b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-correlation-request-id": [ + "d37010a1-cbef-4605-9acb-d1ce7f95d3a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003534Z:d37010a1-cbef-4605-9acb-d1ce7f95d3a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:35:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a3b4b88e-472c-4da8-9934-251bc74b953b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "d3b58de1-c95b-467c-b000-b59d3f1830b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003544Z:d3b58de1-c95b-467c-b000-b59d3f1830b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:35:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9edfe354-3462-48b1-b2c6-904b9942ec70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-correlation-request-id": [ + "e12b53cb-3a84-4da1-a05d-5c5bf9e3e0b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003554Z:e12b53cb-3a84-4da1-a05d-5c5bf9e3e0b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:35:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "449b48d7-6584-40ce-97aa-2481d986b068" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-correlation-request-id": [ + "79584eb4-e50d-4dc6-b1bc-283b5839aca9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003604Z:79584eb4-e50d-4dc6-b1bc-283b5839aca9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:36:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "12661e50-0c5a-4178-8395-65ca9f339691" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-correlation-request-id": [ + "dcd90e14-9345-4758-9cba-031549eab6b2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003614Z:dcd90e14-9345-4758-9cba-031549eab6b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:36:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "54549b0f-1799-4800-849b-f6c80da7d618" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-correlation-request-id": [ + "ee24474f-182d-412d-90f2-7f64c8e4de28" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003625Z:ee24474f-182d-412d-90f2-7f64c8e4de28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:36:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "67c5312b-1eb3-43e7-8f82-59705749bed5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14908" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "1799dd81-92f7-4bb9-abca-fc9b047c5bf7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003635Z:1799dd81-92f7-4bb9-abca-fc9b047c5bf7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:36:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "330e9415-38bd-4e1a-968a-dabb89e2ccc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" + ], + "x-ms-correlation-request-id": [ + "49ac65fa-3f48-445a-9f10-992621846f5c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003645Z:49ac65fa-3f48-445a-9f10-992621846f5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:36:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "10a13f18-2150-433d-b831-865b40931a90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14906" + ], + "x-ms-correlation-request-id": [ + "782cecf3-87e1-4887-a89d-02d5225410e5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003655Z:782cecf3-87e1-4887-a89d-02d5225410e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:36:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "39fa6a97-a7da-4332-ac2c-e95222ef7f06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14905" + ], + "x-ms-correlation-request-id": [ + "c9333016-d334-40cd-9174-4293f21bc604" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003705Z:c9333016-d334-40cd-9174-4293f21bc604" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:37:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3052ba12-8ec7-4e46-8cd8-2a0dadb065da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14904" + ], + "x-ms-correlation-request-id": [ + "199c328a-aa23-4f2e-b7c3-96a5e9ca5e78" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003715Z:199c328a-aa23-4f2e-b7c3-96a5e9ca5e78" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:37:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "acad47de-8568-432d-999e-88f1dd76c333" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14903" + ], + "x-ms-correlation-request-id": [ + "d6851678-18ee-4138-ac30-cb314b021915" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003726Z:d6851678-18ee-4138-ac30-cb314b021915" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:37:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9146c90a-3f2e-431f-847f-0b3acbed5297" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], + "x-ms-correlation-request-id": [ + "15a225c9-7fd5-4b57-9dde-b984e8946b13" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003736Z:15a225c9-7fd5-4b57-9dde-b984e8946b13" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:37:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0fbbcba6-8cec-4ae8-9926-f9b30969f52e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14901" + ], + "x-ms-correlation-request-id": [ + "881b45e6-7659-4b58-987b-d5dcc323e0d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003746Z:881b45e6-7659-4b58-987b-d5dcc323e0d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:37:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "52cab2c1-5ed1-4dd4-bb22-2bc066d888e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14900" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "91a26044-60ef-4624-98c8-f23e3d6e5b19" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003756Z:91a26044-60ef-4624-98c8-f23e3d6e5b19" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:37:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a2dc17db-b9f0-431e-86a3-60db0aa8c381" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14899" + ], + "x-ms-correlation-request-id": [ + "490fcdf2-b28e-4423-b64d-94df973c3f1e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003806Z:490fcdf2-b28e-4423-b64d-94df973c3f1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:38:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7fc428ff-4a34-45f1-a21a-4027ca66c662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14898" + ], + "x-ms-correlation-request-id": [ + "199f5507-4399-4fe5-a7fe-d2496f833c0d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003816Z:199f5507-4399-4fe5-a7fe-d2496f833c0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:38:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f126c0b6-a6ff-437f-ba07-b4cb2a8ba3cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14897" + ], + "x-ms-correlation-request-id": [ + "e98b986f-ec48-478e-9f8d-82ee2aa15c6e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003826Z:e98b986f-ec48-478e-9f8d-82ee2aa15c6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:38:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5b4386cb-8221-4f9a-9004-8cef10dc67e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14896" + ], + "x-ms-correlation-request-id": [ + "7ac2e530-e4ce-42bd-8741-ee6b24c8e040" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003836Z:7ac2e530-e4ce-42bd-8741-ee6b24c8e040" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:38:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bac33f20-d8f2-4a61-8ca5-ab2b9f7b9a12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14895" + ], + "x-ms-correlation-request-id": [ + "2eeca3a7-bd47-4c32-9e3f-670f87118077" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003846Z:2eeca3a7-bd47-4c32-9e3f-670f87118077" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:38:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "46454132-f828-426f-b293-35811118cb6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14894" + ], + "x-ms-correlation-request-id": [ + "e8df4075-2fbd-4bdc-a854-5530d236d0a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003856Z:e8df4075-2fbd-4bdc-a854-5530d236d0a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:38:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "327318b1-89ac-412e-a72f-414509fca827" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14893" + ], + "x-ms-correlation-request-id": [ + "acb97025-99eb-4eb8-bd95-1a7fbb3a5231" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003906Z:acb97025-99eb-4eb8-bd95-1a7fbb3a5231" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:39:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e245c2df-a456-4388-962b-9a3ea8584d54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "6db83026-7f11-4868-ae81-87c14282b4d8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003917Z:6db83026-7f11-4868-ae81-87c14282b4d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:39:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "65a39a79-fd3e-4382-b0ae-5b0678bbab54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14891" + ], + "x-ms-correlation-request-id": [ + "164f990c-b4cb-4bc5-84b6-600b4f5428a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003927Z:164f990c-b4cb-4bc5-84b6-600b4f5428a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:39:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "29de930b-e75c-47cd-83bd-8e798e926239" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" + ], + "x-ms-correlation-request-id": [ + "eae975c0-c04b-45f3-8454-1893efd3479e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003937Z:eae975c0-c04b-45f3-8454-1893efd3479e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:39:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8ad696b6-3825-43b5-863c-32fc4603bc6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" + ], + "x-ms-correlation-request-id": [ + "22a2ef05-3447-47c9-8318-2a39d7a8b89b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003947Z:22a2ef05-3447-47c9-8318-2a39d7a8b89b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:39:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "57aad9f8-ff46-4bb6-8fb8-b445fc218ef5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], + "x-ms-correlation-request-id": [ + "ec814f46-8e93-44c5-a224-a8593d777436" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T003957Z:ec814f46-8e93-44c5-a224-a8593d777436" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:39:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dd0614f9-0a51-4a85-9858-9be3b93bbddb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14887" + ], + "x-ms-correlation-request-id": [ + "fb49e0b5-37c2-44f0-b17e-dd2341ffa097" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004007Z:fb49e0b5-37c2-44f0-b17e-dd2341ffa097" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:40:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "07ac3178-58f3-4e2c-bef9-bed71fcc783f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14886" + ], + "x-ms-correlation-request-id": [ + "0bfbce28-3b4b-4bbc-9484-5fcc15038be1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004017Z:0bfbce28-3b4b-4bbc-9484-5fcc15038be1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:40:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2e14c6ec-e082-4099-81b1-bb46c4c37975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14885" + ], + "x-ms-correlation-request-id": [ + "730a0d5b-f9b4-47fc-bab9-e4bf9218b6cd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004027Z:730a0d5b-f9b4-47fc-bab9-e4bf9218b6cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:40:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b614b4cb-6c37-484c-b149-714eab405bdf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14884" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "76420e97-beaf-45f9-ad54-06b68cbca4e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004037Z:76420e97-beaf-45f9-ad54-06b68cbca4e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:40:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "34a7ddb6-3804-418c-90e3-2881155b6c9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14883" + ], + "x-ms-correlation-request-id": [ + "03360c53-fcba-4876-88c9-a89bb214706a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004048Z:03360c53-fcba-4876-88c9-a89bb214706a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:40:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9db66681-eaad-43a0-9f69-75b27c71a760" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14882" + ], + "x-ms-correlation-request-id": [ + "3a64bc8b-c18f-48af-94c9-75be6620c3a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004058Z:3a64bc8b-c18f-48af-94c9-75be6620c3a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:40:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "34d952d6-91f6-4cfa-ba08-6a3c6d1e5e41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14881" + ], + "x-ms-correlation-request-id": [ + "ea643152-66ca-497a-b14b-d462aea3da38" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004108Z:ea643152-66ca-497a-b14b-d462aea3da38" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:41:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0f48aea0-968e-477e-9385-70def4c9c7d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14880" + ], + "x-ms-correlation-request-id": [ + "d27c8db0-6c45-4006-bd93-68523eb2401c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004118Z:d27c8db0-6c45-4006-bd93-68523eb2401c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:41:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cb5d9287-da36-45e6-a253-60147a648e30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14879" + ], + "x-ms-correlation-request-id": [ + "4ec935c2-2332-4114-8d5a-844e2056b544" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004128Z:4ec935c2-2332-4114-8d5a-844e2056b544" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:41:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "18bce134-8f48-41e4-b2c6-2df8e88f1b61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14878" + ], + "x-ms-correlation-request-id": [ + "1f4344a6-4215-45c2-9c35-7b49676953f2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004138Z:1f4344a6-4215-45c2-9c35-7b49676953f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:41:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7f7bb7bd-5b12-4419-b0c9-77bee5279162" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14877" + ], + "x-ms-correlation-request-id": [ + "156f4413-ec54-43b3-8336-04f0bd386614" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004148Z:156f4413-ec54-43b3-8336-04f0bd386614" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:41:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8e9ff7f1-8a16-4ff8-819c-af90512859f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14876" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "7b0456d5-5935-400d-883b-89ff83355e31" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004158Z:7b0456d5-5935-400d-883b-89ff83355e31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:41:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "83450961-94d0-4e20-b55c-f59138f84134" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14875" + ], + "x-ms-correlation-request-id": [ + "cf5c158e-c1e1-479e-9336-9fd6aec3f701" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004209Z:cf5c158e-c1e1-479e-9336-9fd6aec3f701" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:42:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "90ac6069-574e-475b-8abb-300e4dc635a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14874" + ], + "x-ms-correlation-request-id": [ + "3a62d48f-e34a-482f-8d38-5487fdce0bc5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004219Z:3a62d48f-e34a-482f-8d38-5487fdce0bc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:42:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "32e72b6f-989a-4dbc-8426-2d44efc47bc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14872" + ], + "x-ms-correlation-request-id": [ + "6b407177-566a-48ff-99e7-880474d2c01b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004229Z:6b407177-566a-48ff-99e7-880474d2c01b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:42:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "43d014df-3bf9-4d0b-a74d-856439e05f3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14871" + ], + "x-ms-correlation-request-id": [ + "0c9faca3-03a5-4086-be5c-44a9c2ed0249" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004239Z:0c9faca3-03a5-4086-be5c-44a9c2ed0249" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:42:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3e61c643-5f6a-426a-b771-1997486df9e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14869" + ], + "x-ms-correlation-request-id": [ + "83e019dd-e879-472b-9251-47b6e20b1d79" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004249Z:83e019dd-e879-472b-9251-47b6e20b1d79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:42:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e9929e76-b6d3-4e1b-a77e-2623438ae776" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14868" + ], + "x-ms-correlation-request-id": [ + "4aed55e1-ecc3-4927-93e4-e8d41ab1ba0f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004259Z:4aed55e1-ecc3-4927-93e4-e8d41ab1ba0f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:42:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "04c6a170-bb16-40e0-bfd6-08590f58b5a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14867" + ], + "x-ms-correlation-request-id": [ + "006dae07-1127-4b98-bd99-631b83ac7404" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004309Z:006dae07-1127-4b98-bd99-631b83ac7404" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:43:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c6878cf4-858d-43f6-b5b1-89fe9881b316" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14866" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "776f1585-794c-4d15-bc3d-cda476893532" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004319Z:776f1585-794c-4d15-bc3d-cda476893532" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:43:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c0c0e9ac-20a7-4e97-a704-6af5fa45854c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14865" + ], + "x-ms-correlation-request-id": [ + "dad4a28b-4444-426e-befb-011ec933df58" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004330Z:dad4a28b-4444-426e-befb-011ec933df58" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:43:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f1c0fa85-5781-483d-ad3f-181f8038ca57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14864" + ], + "x-ms-correlation-request-id": [ + "5ea50148-b6e0-4c83-975e-53e1ad26a992" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004340Z:5ea50148-b6e0-4c83-975e-53e1ad26a992" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:43:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7ab00ee4-9b14-466c-92ad-364545d4667c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14863" + ], + "x-ms-correlation-request-id": [ + "068b3b77-fafe-4dc4-b7ad-3eac969217c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004350Z:068b3b77-fafe-4dc4-b7ad-3eac969217c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:43:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "22a8569b-abb5-4d14-be2a-ef8ba917f7a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14862" + ], + "x-ms-correlation-request-id": [ + "3c7fd3bb-366b-46d4-9d32-712cfb9336ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004400Z:3c7fd3bb-366b-46d4-9d32-712cfb9336ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:43:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7eea45be-cc17-4846-b599-9d383ada557c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14861" + ], + "x-ms-correlation-request-id": [ + "2f21ca38-41c5-45a6-a692-6a70d22e8815" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004410Z:2f21ca38-41c5-45a6-a692-6a70d22e8815" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:44:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "da4de7af-0e1e-416c-b7a7-ad55817bcfe3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14860" + ], + "x-ms-correlation-request-id": [ + "550f42ed-c6bf-4930-b432-14e7e7c5b227" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004420Z:550f42ed-c6bf-4930-b432-14e7e7c5b227" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:44:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b26a15ad-e2dc-44d9-937f-325c681c4442" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14859" + ], + "x-ms-correlation-request-id": [ + "14f43cf0-08ca-4633-9f61-0b9ddab9d092" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004430Z:14f43cf0-08ca-4633-9f61-0b9ddab9d092" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:44:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "38778352-7146-4007-979b-687742668047" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14858" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "39647948-fe1e-46d1-81a9-8aafbcd70629" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004440Z:39647948-fe1e-46d1-81a9-8aafbcd70629" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:44:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d7fff510-cdbe-4665-8cc4-7613465b5b11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14857" + ], + "x-ms-correlation-request-id": [ + "e947cb21-c8ca-4542-bed6-11f7d77ed63d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004450Z:e947cb21-c8ca-4542-bed6-11f7d77ed63d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:44:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6c385a89-cfc6-46c7-8c9f-69d27e929b7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14856" + ], + "x-ms-correlation-request-id": [ + "84dda71b-f8c8-4eb6-9ff7-f8cf913e0215" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004500Z:84dda71b-f8c8-4eb6-9ff7-f8cf913e0215" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:45:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b35687b7-1483-4a50-979e-0c1841e74321" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14855" + ], + "x-ms-correlation-request-id": [ + "7f5a4a7e-c23a-4105-a745-56043e40ec5c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004510Z:7f5a4a7e-c23a-4105-a745-56043e40ec5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:45:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "581b8dd0-5394-4bda-bc75-124ee23311c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14854" + ], + "x-ms-correlation-request-id": [ + "27fcc45c-480f-454d-b0db-9c2c99f71822" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004521Z:27fcc45c-480f-454d-b0db-9c2c99f71822" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:45:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4b37425c-7155-45c9-88dd-540a70b7f949" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14853" + ], + "x-ms-correlation-request-id": [ + "2ffc6089-7031-45bc-9ff3-10eed0c454b9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004531Z:2ffc6089-7031-45bc-9ff3-10eed0c454b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:45:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "250d6b93-8427-425a-a6ce-ed310ebbbb20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14852" + ], + "x-ms-correlation-request-id": [ + "c0185390-fdc7-448f-9c66-07d425c07afc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004541Z:c0185390-fdc7-448f-9c66-07d425c07afc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:45:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "caa3f4e0-9b38-40a7-926a-baf37ec34e3f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14851" + ], + "x-ms-correlation-request-id": [ + "25c54435-86ef-40e7-9e3b-4f9a29d72000" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004551Z:25c54435-86ef-40e7-9e3b-4f9a29d72000" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:45:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e3cf20db-7236-4249-9226-d518d92b9630" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14850" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "8db66701-9c15-4020-a37b-4de1da0b360d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004601Z:8db66701-9c15-4020-a37b-4de1da0b360d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:46:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "639fc13c-0738-4a40-aa2a-bd30bf7d5c4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14849" + ], + "x-ms-correlation-request-id": [ + "e4d9cb36-f5d3-4b24-b349-9105d5c8a23c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004611Z:e4d9cb36-f5d3-4b24-b349-9105d5c8a23c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:46:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "db6526b7-522d-450c-afef-09b607978471" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14848" + ], + "x-ms-correlation-request-id": [ + "c0b7e35b-3b4d-406e-ae30-ac75a1832bbd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004621Z:c0b7e35b-3b4d-406e-ae30-ac75a1832bbd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:46:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f1a51433-91a8-4e32-a55b-9aa8f1a1efb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14847" + ], + "x-ms-correlation-request-id": [ + "67233932-7a33-482b-95af-6783d584d17c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004631Z:67233932-7a33-482b-95af-6783d584d17c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:46:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9034ccf1-6e13-4b94-b646-a421d8a12148" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14846" + ], + "x-ms-correlation-request-id": [ + "8944a0ca-9928-456a-9392-76cfe495a695" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004641Z:8944a0ca-9928-456a-9392-76cfe495a695" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:46:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c6d85060-3293-495c-b99e-72e3b83aa255" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14845" + ], + "x-ms-correlation-request-id": [ + "2909c9d0-8a8f-4fb5-9b24-b9bb670b4f9d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004651Z:2909c9d0-8a8f-4fb5-9b24-b9bb670b4f9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:46:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "aab08b92-f0f7-4b57-a9ca-8be1b47b2916" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14844" + ], + "x-ms-correlation-request-id": [ + "1584fda7-bd15-401e-92cd-c518931b9f52" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004702Z:1584fda7-bd15-401e-92cd-c518931b9f52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:47:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b53be4e7-1102-4cd6-b684-a02364c32b90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14843" + ], + "x-ms-correlation-request-id": [ + "4c243e66-df56-4adb-8220-9e4863f4cc96" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004712Z:4c243e66-df56-4adb-8220-9e4863f4cc96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:47:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "83db141e-0d43-4ed1-8970-6169bc170916" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14842" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "19f1d812-c593-4700-a031-523ec692ff58" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004722Z:19f1d812-c593-4700-a031-523ec692ff58" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:47:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "03afe624-7291-448b-85b3-98fcfd659d91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14841" + ], + "x-ms-correlation-request-id": [ + "8ca223d4-17de-4a84-b085-4cc22e24780a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004732Z:8ca223d4-17de-4a84-b085-4cc22e24780a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:47:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7668055a-6b7a-4dd7-a6d3-ed4b1bb88d93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14840" + ], + "x-ms-correlation-request-id": [ + "4350e3fe-98e9-461c-92e2-60700a54c6de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004742Z:4350e3fe-98e9-461c-92e2-60700a54c6de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:47:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0502e057-37f7-4013-987f-0f7660c38e1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14839" + ], + "x-ms-correlation-request-id": [ + "2b976c42-1256-4f20-859a-73d5c5a7999b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004752Z:2b976c42-1256-4f20-859a-73d5c5a7999b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:47:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e0a47c06-ca46-44c2-b288-1eca8d6cca21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14838" + ], + "x-ms-correlation-request-id": [ + "2e430eaa-b037-4ff4-82ae-55ec0994774f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004802Z:2e430eaa-b037-4ff4-82ae-55ec0994774f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:48:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d2a290c9-400f-4205-8743-3cd958a82cb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14837" + ], + "x-ms-correlation-request-id": [ + "b17ebf8d-62af-411c-b18c-83fcc4cb92a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004812Z:b17ebf8d-62af-411c-b18c-83fcc4cb92a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:48:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "32a61ab6-2887-42e6-b5de-826a993fdb0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14836" + ], + "x-ms-correlation-request-id": [ + "8509bf55-15b9-4317-8f0e-58fc5343633a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004822Z:8509bf55-15b9-4317-8f0e-58fc5343633a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:48:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e38fbc22-6ed4-4667-83b4-ef007bcd3564" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14835" + ], + "x-ms-correlation-request-id": [ + "43f05d0a-32e6-42a4-b662-599b9d2e8038" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004832Z:43f05d0a-32e6-42a4-b662-599b9d2e8038" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:48:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "183a0607-473b-48c5-842e-a148a6c5eeb8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14834" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "0dd38c44-a045-42c6-86eb-e0e0254fed25" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004843Z:0dd38c44-a045-42c6-86eb-e0e0254fed25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:48:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6f8ad7c1-e052-475f-93da-c9b7fbbcb975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14833" + ], + "x-ms-correlation-request-id": [ + "0b34fa79-2fb0-4beb-9add-87c37a52313b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004853Z:0b34fa79-2fb0-4beb-9add-87c37a52313b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:48:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a09b2dcc-8b32-4ea3-bf2d-af911ad09cb6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14832" + ], + "x-ms-correlation-request-id": [ + "de0b4121-cd38-4ef6-8494-b28a7ed81a57" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004903Z:de0b4121-cd38-4ef6-8494-b28a7ed81a57" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:49:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "295258cd-ccd2-416e-8a4a-22228ce37bf8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14831" + ], + "x-ms-correlation-request-id": [ + "c2099007-97b7-4e4a-af00-e4ebef36649d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004913Z:c2099007-97b7-4e4a-af00-e4ebef36649d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:49:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b52f43a5-ab4b-4e65-a883-ac7c6a877948" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14830" + ], + "x-ms-correlation-request-id": [ + "53dfe848-d072-43c6-a24d-0ba8be733301" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004923Z:53dfe848-d072-43c6-a24d-0ba8be733301" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:49:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1cdee589-bdbb-4245-bf0a-a5bb499bc173" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14829" + ], + "x-ms-correlation-request-id": [ + "381c9abd-0703-4d2b-bdda-c442c121bd2a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004933Z:381c9abd-0703-4d2b-bdda-c442c121bd2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:49:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "58fbf724-764f-43ff-9b06-2dff8df5543d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14828" + ], + "x-ms-correlation-request-id": [ + "28a06ab7-da0c-491a-bee5-d29852afde5c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T004943Z:28a06ab7-da0c-491a-bee5-d29852afde5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:49:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c2e86c87-557c-4d2b-9448-123d5f011cb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14827" + ], + "x-ms-correlation-request-id": [ + "a353cb37-9f96-4a9e-80a3-a8165a23d109" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005003Z:a353cb37-9f96-4a9e-80a3-a8165a23d109" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:50:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5606a174-471a-4105-8f6d-d740983e8efc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14826" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "64fb5c76-00c8-40a0-a866-632b6a92d824" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005013Z:64fb5c76-00c8-40a0-a866-632b6a92d824" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:50:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ed5c9c88-dcc4-4d19-b08e-01a4936ed597" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14825" + ], + "x-ms-correlation-request-id": [ + "a967c120-5f08-4a00-8ad2-858e4e5afcb4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005024Z:a967c120-5f08-4a00-8ad2-858e4e5afcb4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:50:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "25928138-0431-4f32-b720-df5b39bec1ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14824" + ], + "x-ms-correlation-request-id": [ + "b1046a4d-0adb-4e3e-84fa-64bd5a4e779f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005034Z:b1046a4d-0adb-4e3e-84fa-64bd5a4e779f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:50:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2fb68a19-99d0-4661-92b4-289e91fccc34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14823" + ], + "x-ms-correlation-request-id": [ + "b7337893-3a02-4a94-b36c-114567e8efae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005044Z:b7337893-3a02-4a94-b36c-114567e8efae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:50:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8c68c3b7-c6a1-41a9-9e5d-e1318b8a450f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14822" + ], + "x-ms-correlation-request-id": [ + "b66653ab-5f74-48f1-9871-c75c65183284" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005054Z:b66653ab-5f74-48f1-9871-c75c65183284" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:50:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4d8fab8a-5517-4d34-ab2e-024280b73a44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14821" + ], + "x-ms-correlation-request-id": [ + "19ebd341-fb7b-4ba9-adc4-a5d881901724" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005104Z:19ebd341-fb7b-4ba9-adc4-a5d881901724" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:51:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6c5ed402-3d61-4909-97b5-638624fe64f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14820" + ], + "x-ms-correlation-request-id": [ + "d243e5ae-eea6-4f4b-85b6-0a502978ef7f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005115Z:d243e5ae-eea6-4f4b-85b6-0a502978ef7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:51:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a34b8e9e-e1de-42d7-8361-0878800c361d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14819" + ], + "x-ms-correlation-request-id": [ + "2ff74960-8b01-405e-b497-bbbb4f2ead65" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005125Z:2ff74960-8b01-405e-b497-bbbb4f2ead65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:51:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1611072b-5196-4a6b-ab9e-01265f63fbfe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14818" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "8d535d87-146f-454b-bf8a-965aaa944e26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005135Z:8d535d87-146f-454b-bf8a-965aaa944e26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:51:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "67dfcff3-0318-46c1-9935-94f96649684e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14817" + ], + "x-ms-correlation-request-id": [ + "4bb7e1ab-5ae0-49c1-90e5-91869554d697" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005145Z:4bb7e1ab-5ae0-49c1-90e5-91869554d697" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:51:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "05149ab9-8462-433d-a1ee-b8f5c5299af1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14816" + ], + "x-ms-correlation-request-id": [ + "7ede48e7-89a3-45fd-96e3-bdec93bde7f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005155Z:7ede48e7-89a3-45fd-96e3-bdec93bde7f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:51:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a14e9b22-5730-4805-aa14-2db661affb09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14815" + ], + "x-ms-correlation-request-id": [ + "167d2580-135c-4aa4-bd5a-cd5e617a0f6c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005205Z:167d2580-135c-4aa4-bd5a-cd5e617a0f6c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:52:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "56099b25-86ab-4a76-8254-bce4041ad993" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14814" + ], + "x-ms-correlation-request-id": [ + "a534139b-cb0b-4613-8a18-2269d4e98ddb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005215Z:a534139b-cb0b-4613-8a18-2269d4e98ddb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:52:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b0187ab1-02a4-4dd0-a559-5e7875ca153d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14813" + ], + "x-ms-correlation-request-id": [ + "c4a6db7c-ff6c-4a41-a0fd-69c7ab2c2f06" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005225Z:c4a6db7c-ff6c-4a41-a0fd-69c7ab2c2f06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:52:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "21d9381d-d6f7-4320-b631-d653781d7ed5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14812" + ], + "x-ms-correlation-request-id": [ + "3e6048ef-64c2-4f24-872f-1500d5fbffcb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005235Z:3e6048ef-64c2-4f24-872f-1500d5fbffcb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:52:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bfb55c38-571f-4dae-a032-63a3e263dcef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14811" + ], + "x-ms-correlation-request-id": [ + "4bcef8f7-425f-4919-b7ec-67335806dc10" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005245Z:4bcef8f7-425f-4919-b7ec-67335806dc10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:52:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dc76de44-a5dd-4b5e-b27f-766066225a23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14810" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f6290715-0244-4db9-b6b7-604e296564af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005256Z:f6290715-0244-4db9-b6b7-604e296564af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:52:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5bf60552-3f1b-4217-a8b3-7f31b35e30f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14809" + ], + "x-ms-correlation-request-id": [ + "13d79771-fc61-472f-b6ef-bccf19ca1e7c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005306Z:13d79771-fc61-472f-b6ef-bccf19ca1e7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:53:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "33cac9cb-85db-42ee-a550-70666a63fe7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14808" + ], + "x-ms-correlation-request-id": [ + "c1c7c8ac-e785-49d2-ac5b-31a336043f25" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005316Z:c1c7c8ac-e785-49d2-ac5b-31a336043f25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:53:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1e330d07-5fc6-478d-b594-40918ab0263b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14807" + ], + "x-ms-correlation-request-id": [ + "5131fd3d-71a4-4d9e-ade7-8505da2f1fdf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005326Z:5131fd3d-71a4-4d9e-ade7-8505da2f1fdf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:53:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fa7244d7-a709-4d67-94ce-73ed6aa5ce62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14806" + ], + "x-ms-correlation-request-id": [ + "e473a0ad-06ed-45be-9f02-de1e6359a0ca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005336Z:e473a0ad-06ed-45be-9f02-de1e6359a0ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:53:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6261b63e-5910-4ccd-bdf5-abc539a962ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14805" + ], + "x-ms-correlation-request-id": [ + "b02a6f44-129f-461d-8ac9-827278c60826" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005346Z:b02a6f44-129f-461d-8ac9-827278c60826" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:53:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5aefb459-7286-41b1-911c-0311845c57d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14804" + ], + "x-ms-correlation-request-id": [ + "a948f3c6-570c-4874-a8ee-fbd28d4cc2a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005356Z:a948f3c6-570c-4874-a8ee-fbd28d4cc2a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:53:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d25533e1-66c7-4ddb-b384-f7c73c09476e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14803" + ], + "x-ms-correlation-request-id": [ + "3ee8b50e-929d-499a-ab6b-83f8b5b27754" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005407Z:3ee8b50e-929d-499a-ab6b-83f8b5b27754" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:54:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cad55668-b991-44be-ae96-d49596d1dde7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14802" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "353cf7e5-91c1-4525-a743-52651e8daf3c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005417Z:353cf7e5-91c1-4525-a743-52651e8daf3c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:54:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0334f744-e33b-404c-8a2a-6131f9b516f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14801" + ], + "x-ms-correlation-request-id": [ + "3d5aad14-3e2d-44a6-b438-9cae2a858e73" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005427Z:3d5aad14-3e2d-44a6-b438-9cae2a858e73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:54:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f54b935a-4723-4781-b8a0-310abd01306c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14800" + ], + "x-ms-correlation-request-id": [ + "684a75cb-c547-435b-a0bf-76fa216e3ea7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005437Z:684a75cb-c547-435b-a0bf-76fa216e3ea7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:54:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a603d319-07d9-40d5-ba4d-67afc8fd1d5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14799" + ], + "x-ms-correlation-request-id": [ + "233482cf-a70d-45fc-97dc-ed8da27b6afb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005447Z:233482cf-a70d-45fc-97dc-ed8da27b6afb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:54:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c96cb7ef-7e44-4d01-823e-9f7570594b2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14798" + ], + "x-ms-correlation-request-id": [ + "198a8ea9-0832-4115-aa3e-ee5badfd3afa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005457Z:198a8ea9-0832-4115-aa3e-ee5badfd3afa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:54:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f9bfadc6-2cbc-4d73-a1f4-119457219e41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14797" + ], + "x-ms-correlation-request-id": [ + "ad5f35d4-6261-48ee-a8ec-42b47dd3178a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005507Z:ad5f35d4-6261-48ee-a8ec-42b47dd3178a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:55:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3239fb48-c61e-42ca-8a88-e08b9cde773b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14796" + ], + "x-ms-correlation-request-id": [ + "d087a6d1-3c0e-4647-baaa-e58868993c24" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005518Z:d087a6d1-3c0e-4647-baaa-e58868993c24" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:55:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7cbdb754-1cf0-43cb-a432-27d7be6042b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14795" + ], + "x-ms-correlation-request-id": [ + "fb7549a5-eacc-492f-b4a6-a0d431b052ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005528Z:fb7549a5-eacc-492f-b4a6-a0d431b052ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:55:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "99ed024f-1d89-4c12-87ad-c74c256a2239" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14794" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "8147dce8-8da3-43bf-a508-13e744370ae0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005538Z:8147dce8-8da3-43bf-a508-13e744370ae0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:55:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c43219f8-2b73-406b-837b-baa844156411" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14793" + ], + "x-ms-correlation-request-id": [ + "1cb88c1e-4e0a-4c19-9b99-5f12a8d0bbf4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005548Z:1cb88c1e-4e0a-4c19-9b99-5f12a8d0bbf4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:55:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a31fefdd-931f-45fd-9ba5-d4879e1d523e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14792" + ], + "x-ms-correlation-request-id": [ + "2119eaa1-ea9d-4e68-a816-a9e43b53edb4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005558Z:2119eaa1-ea9d-4e68-a816-a9e43b53edb4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:55:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e4dca17d-151f-4022-8755-1907fd681333" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14791" + ], + "x-ms-correlation-request-id": [ + "ca98381f-8109-463c-8769-c61df77874ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005608Z:ca98381f-8109-463c-8769-c61df77874ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:56:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "69f0f9b6-06c9-41c5-9f73-edc639ba7de0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14790" + ], + "x-ms-correlation-request-id": [ + "cebbef3b-a951-4e50-88a3-e7118156436b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005618Z:cebbef3b-a951-4e50-88a3-e7118156436b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:56:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3a9d0ecb-170b-4be4-b091-1586f437ac4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14789" + ], + "x-ms-correlation-request-id": [ + "65abdc37-1860-4ede-8430-7bd0f562e31e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005628Z:65abdc37-1860-4ede-8430-7bd0f562e31e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:56:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7fc89ecf-4c56-40ea-97e4-f66bf4a87133" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14788" + ], + "x-ms-correlation-request-id": [ + "261274c1-69a1-40ad-8729-4e7b36713806" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005638Z:261274c1-69a1-40ad-8729-4e7b36713806" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:56:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c27aa582-9b88-475a-97c8-19f85b4e2f85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14787" + ], + "x-ms-correlation-request-id": [ + "6a407263-0e99-4817-b986-1c3ba0b5c990" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005648Z:6a407263-0e99-4817-b986-1c3ba0b5c990" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:56:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7f682721-4817-4f0d-8787-c38774ed89d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14786" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4ac60847-293e-49d3-bfd6-4991ac9658aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005659Z:4ac60847-293e-49d3-bfd6-4991ac9658aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:56:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/58862454-dd3d-47c4-82b5-18087196bbe8?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzU4ODYyNDU0LWRkM2QtNDdjNC04MmI1LTE4MDg3MTk2YmJlOD9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "86f999aa-5af5-43c6-9c4d-989d09930f1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14785" + ], + "x-ms-correlation-request-id": [ + "605fd002-76bf-4843-8915-4280f41fdf99" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005709Z:605fd002-76bf-4843-8915-4280f41fdf99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:57:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/08616575-d8ab-4d11-b6ff-57e257f2fefa?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzA4NjE2NTc1LWQ4YWItNGQxMS1iNmZmLTU3ZTI1N2YyZmVmYT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ed5497ff-bd8f-4379-aba0-dd5a223dcf12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14780" + ], + "x-ms-correlation-request-id": [ + "8d89bda5-1289-4458-8204-0017b9d4553e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005724Z:8d89bda5-1289-4458-8204-0017b9d4553e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:57:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/08616575-d8ab-4d11-b6ff-57e257f2fefa?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzA4NjE2NTc1LWQ4YWItNGQxMS1iNmZmLTU3ZTI1N2YyZmVmYT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1fed7b94-9166-4b31-bc6f-4c8ab4763b7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14779" + ], + "x-ms-correlation-request-id": [ + "11e61bca-c5f8-4b0e-8745-d527ea0c14ab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005735Z:11e61bca-c5f8-4b0e-8745-d527ea0c14ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:57:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/08616575-d8ab-4d11-b6ff-57e257f2fefa?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzA4NjE2NTc1LWQ4YWItNGQxMS1iNmZmLTU3ZTI1N2YyZmVmYT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "75195318-6c20-432c-8a18-3ab2103a1674" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14778" + ], + "x-ms-correlation-request-id": [ + "7b739f63-17ea-4b20-a2fb-d635d92419bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005745Z:7b739f63-17ea-4b20-a2fb-d635d92419bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:57:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/08616575-d8ab-4d11-b6ff-57e257f2fefa?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzA4NjE2NTc1LWQ4YWItNGQxMS1iNmZmLTU3ZTI1N2YyZmVmYT9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4ec3b5dc-0719-4b09-9a67-e9bc69a2b6ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14777" + ], + "x-ms-correlation-request-id": [ + "bdbfef2c-f7db-447c-a55a-b2a687eaf7d7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005755Z:bdbfef2c-f7db-447c-a55a-b2a687eaf7d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:57:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/setvpnclientipsecparameters?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQvc2V0dnBuY2xpZW50aXBzZWNwYXJhbWV0ZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"saLifeTimeSeconds\": 86473,\r\n \"saDataSizeKilobytes\": 429498,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS2\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "239" + ], + "x-ms-client-request-id": [ + "a3756807-7dff-4258-9525-573689297902" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "030c9a6a-3cb8-4a79-994f-e1a1b71767ec" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/030c9a6a-3cb8-4a79-994f-e1a1b71767ec?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operationResults/030c9a6a-3cb8-4a79-994f-e1a1b71767ec?api-version=2018-04-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "a54f74e5-f1d8-414b-a96b-9f8dc32c07c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005756Z:a54f74e5-f1d8-414b-a96b-9f8dc32c07c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:57:56 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/030c9a6a-3cb8-4a79-994f-e1a1b71767ec?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzAzMGM5YTZhLTNjYjgtNGE3OS05OTRmLWUxYTFiNzE3NjdlYz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "00699604-a140-436e-aa8c-b90106eea332" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14773" + ], + "x-ms-correlation-request-id": [ + "760f0411-0b96-4e8c-9a2e-5c94e9af5a92" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005806Z:760f0411-0b96-4e8c-9a2e-5c94e9af5a92" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:58:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operationResults/030c9a6a-3cb8-4a79-994f-e1a1b71767ec?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzLzAzMGM5YTZhLTNjYjgtNGE3OS05OTRmLWUxYTFiNzE3NjdlYz9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "030c9a6a-3cb8-4a79-994f-e1a1b71767ec" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/030c9a6a-3cb8-4a79-994f-e1a1b71767ec?api-version=2018-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operationResults/030c9a6a-3cb8-4a79-994f-e1a1b71767ec?api-version=2018-04-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14772" + ], + "x-ms-correlation-request-id": [ + "b98d36a8-3ec1-4a42-9697-adecf9e937ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005806Z:b98d36a8-3ec1-4a42-9697-adecf9e937ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:58:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourceGroups/ps5339/providers/Microsoft.Network/virtualNetworkGateways/ps2084/getvpnclientipsecparameters?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlR3JvdXBzL3BzNTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9wczIwODQvZ2V0dnBuY2xpZW50aXBzZWNwYXJhbWV0ZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDQtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d091127e-54a8-45f8-8153-c36275494e83" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"saLifeTimeSeconds\": 86473,\r\n \"saDataSizeKilobytes\": 429498,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS2\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c122bb57-0422-4f1b-a497-7e790984b29d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "f30a3eae-3692-4b66-9322-c0684e3bf253" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005806Z:f30a3eae-3692-4b66-9322-c0684e3bf253" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:58:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/6ecf57bd-df0d-4b0a-8520-2b11defc9edb?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzZlY2Y1N2JkLWRmMGQtNGIwYS04NTIwLTJiMTFkZWZjOWVkYj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d583f2fb-511e-4b90-8719-0de45f0a7157" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14768" + ], + "x-ms-correlation-request-id": [ + "874e8d96-2362-4912-b701-da65cba56ccf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005817Z:874e8d96-2362-4912-b701-da65cba56ccf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:58:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/providers/Microsoft.Network/locations/centraluseuap/operations/6ecf57bd-df0d-4b0a-8520-2b11defc9edb?api-version=2018-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzZlY2Y1N2JkLWRmMGQtNGIwYS04NTIwLTJiMTFkZWZjOWVkYj9hcGktdmVyc2lvbj0yMDE4LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "daf30a5d-0583-4cfd-bb19-a0ab6a02a7f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14767" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "1dc9bf16-2544-4d9a-ba2b-cb6a06d24be8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005828Z:1dc9bf16-2544-4d9a-ba2b-cb6a06d24be8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 11 May 2018 00:58:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/resourcegroups/ps5339?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL3Jlc291cmNlZ3JvdXBzL3BzNTMzOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "9e84ed72-9096-40a8-8ecd-79b8520f6594" + ], + "x-ms-correlation-request-id": [ + "9e84ed72-9096-40a8-8ecd-79b8520f6594" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005830Z:9e84ed72-9096-40a8-8ecd-79b8520f6594" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 00:58:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "719b74ad-63e3-4904-9bb5-3c48b86991c8" + ], + "x-ms-correlation-request-id": [ + "719b74ad-63e3-4904-9bb5-3c48b86991c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005830Z:719b74ad-63e3-4904-9bb5-3c48b86991c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 00:58:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "d9c30788-219d-4772-b792-15a6a1765343" + ], + "x-ms-correlation-request-id": [ + "d9c30788-219d-4772-b792-15a6a1765343" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005845Z:d9c30788-219d-4772-b792-15a6a1765343" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 00:58:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "b746153b-5269-424a-b69a-54e8f5e2ab37" + ], + "x-ms-correlation-request-id": [ + "b746153b-5269-424a-b69a-54e8f5e2ab37" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005900Z:b746153b-5269-424a-b69a-54e8f5e2ab37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 00:59:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "ca4edaba-55e5-452d-baf7-8e43091db0e0" + ], + "x-ms-correlation-request-id": [ + "ca4edaba-55e5-452d-baf7-8e43091db0e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005915Z:ca4edaba-55e5-452d-baf7-8e43091db0e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 00:59:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "a5692e53-caaa-415b-adc0-34bc2dd845f2" + ], + "x-ms-correlation-request-id": [ + "a5692e53-caaa-415b-adc0-34bc2dd845f2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005930Z:a5692e53-caaa-415b-adc0-34bc2dd845f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 00:59:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "f2c610d3-b963-403d-bf87-178a2eefde9a" + ], + "x-ms-correlation-request-id": [ + "f2c610d3-b963-403d-bf87-178a2eefde9a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T005946Z:f2c610d3-b963-403d-bf87-178a2eefde9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 00:59:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "cda09f1e-387f-422e-a505-8092413d4491" + ], + "x-ms-correlation-request-id": [ + "cda09f1e-387f-422e-a505-8092413d4491" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010001Z:cda09f1e-387f-422e-a505-8092413d4491" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:00:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "1a374d79-944e-4761-82b5-32c4deee5f45" + ], + "x-ms-correlation-request-id": [ + "1a374d79-944e-4761-82b5-32c4deee5f45" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010016Z:1a374d79-944e-4761-82b5-32c4deee5f45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:00:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "44006c88-a8b0-44aa-aed0-0e210f6587ae" + ], + "x-ms-correlation-request-id": [ + "44006c88-a8b0-44aa-aed0-0e210f6587ae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010031Z:44006c88-a8b0-44aa-aed0-0e210f6587ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:00:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "ff090ee0-fbeb-4c15-a422-2bc6157d1b11" + ], + "x-ms-correlation-request-id": [ + "ff090ee0-fbeb-4c15-a422-2bc6157d1b11" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010046Z:ff090ee0-fbeb-4c15-a422-2bc6157d1b11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:00:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "80021f88-d7e8-412b-bfd3-7ecfe9810ca7" + ], + "x-ms-correlation-request-id": [ + "80021f88-d7e8-412b-bfd3-7ecfe9810ca7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010101Z:80021f88-d7e8-412b-bfd3-7ecfe9810ca7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:01:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "91df1fcc-904d-4b64-b94e-0e9deedf6e4b" + ], + "x-ms-correlation-request-id": [ + "91df1fcc-904d-4b64-b94e-0e9deedf6e4b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010116Z:91df1fcc-904d-4b64-b94e-0e9deedf6e4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:01:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "1e6387ac-4069-4920-a79f-0be24db0b6ab" + ], + "x-ms-correlation-request-id": [ + "1e6387ac-4069-4920-a79f-0be24db0b6ab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010131Z:1e6387ac-4069-4920-a79f-0be24db0b6ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:01:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "99ef844a-399e-4da6-9be6-f80a4451d71e" + ], + "x-ms-correlation-request-id": [ + "99ef844a-399e-4da6-9be6-f80a4451d71e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010146Z:99ef844a-399e-4da6-9be6-f80a4451d71e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:01:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "ee26b72b-52a6-4fd0-b7ea-f02ed049560e" + ], + "x-ms-correlation-request-id": [ + "ee26b72b-52a6-4fd0-b7ea-f02ed049560e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010201Z:ee26b72b-52a6-4fd0-b7ea-f02ed049560e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:02:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "c93dacfb-1c36-4df4-84ba-ef6fa6f7cb59" + ], + "x-ms-correlation-request-id": [ + "c93dacfb-1c36-4df4-84ba-ef6fa6f7cb59" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010217Z:c93dacfb-1c36-4df4-84ba-ef6fa6f7cb59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:02:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "618cf423-e91f-4f4a-a1e0-9523502ff53c" + ], + "x-ms-correlation-request-id": [ + "618cf423-e91f-4f4a-a1e0-9523502ff53c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010232Z:618cf423-e91f-4f4a-a1e0-9523502ff53c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:02:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "7e876195-5ba4-4045-8364-3f4b39f65eb0" + ], + "x-ms-correlation-request-id": [ + "7e876195-5ba4-4045-8364-3f4b39f65eb0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010247Z:7e876195-5ba4-4045-8364-3f4b39f65eb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:02:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "ca1acb77-0c7e-4a31-b2fc-a45141878d69" + ], + "x-ms-correlation-request-id": [ + "ca1acb77-0c7e-4a31-b2fc-a45141878d69" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010302Z:ca1acb77-0c7e-4a31-b2fc-a45141878d69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:03:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "4676e2eb-b0d0-44e5-bc00-f068a603480f" + ], + "x-ms-correlation-request-id": [ + "4676e2eb-b0d0-44e5-bc00-f068a603480f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010317Z:4676e2eb-b0d0-44e5-bc00-f068a603480f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:03:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "08938e10-e993-423e-8fec-d6bebddf4a7d" + ], + "x-ms-correlation-request-id": [ + "08938e10-e993-423e-8fec-d6bebddf4a7d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010332Z:08938e10-e993-423e-8fec-d6bebddf4a7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:03:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "909103b2-87fd-46fc-9d91-334616c18462" + ], + "x-ms-correlation-request-id": [ + "909103b2-87fd-46fc-9d91-334616c18462" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010347Z:909103b2-87fd-46fc-9d91-334616c18462" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:03:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "76064b5a-648c-46b5-8ac1-3010f27f206c" + ], + "x-ms-correlation-request-id": [ + "76064b5a-648c-46b5-8ac1-3010f27f206c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010402Z:76064b5a-648c-46b5-8ac1-3010f27f206c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:04:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "74d51dbe-b3c4-4839-8d0f-f27c465329e0" + ], + "x-ms-correlation-request-id": [ + "74d51dbe-b3c4-4839-8d0f-f27c465329e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010418Z:74d51dbe-b3c4-4839-8d0f-f27c465329e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:04:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-request-id": [ + "5fde1332-f1fc-402e-8fbf-4bbc05ce4927" + ], + "x-ms-correlation-request-id": [ + "5fde1332-f1fc-402e-8fbf-4bbc05ce4927" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010433Z:5fde1332-f1fc-402e-8fbf-4bbc05ce4927" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:04:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "3fad28b4-26cd-446d-ba28-d8f1f26bf103" + ], + "x-ms-correlation-request-id": [ + "3fad28b4-26cd-446d-ba28-d8f1f26bf103" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010448Z:3fad28b4-26cd-446d-ba28-d8f1f26bf103" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:04:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-request-id": [ + "9c84221e-fd7c-46b9-8373-7dd5a4b30659" + ], + "x-ms-correlation-request-id": [ + "9c84221e-fd7c-46b9-8373-7dd5a4b30659" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010503Z:9c84221e-fd7c-46b9-8373-7dd5a4b30659" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:05:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-request-id": [ + "cb964412-65c2-4939-9bc0-466f72f88d31" + ], + "x-ms-correlation-request-id": [ + "cb964412-65c2-4939-9bc0-466f72f88d31" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010518Z:cb964412-65c2-4939-9bc0-466f72f88d31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:05:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-request-id": [ + "17c6fc2e-d076-443d-927b-6e3b0cc0be21" + ], + "x-ms-correlation-request-id": [ + "17c6fc2e-d076-443d-927b-6e3b0cc0be21" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010533Z:17c6fc2e-d076-443d-927b-6e3b0cc0be21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:05:33 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-request-id": [ + "62549a80-05f7-4053-b01c-6a601ae36712" + ], + "x-ms-correlation-request-id": [ + "62549a80-05f7-4053-b01c-6a601ae36712" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010548Z:62549a80-05f7-4053-b01c-6a601ae36712" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:05:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-request-id": [ + "09406925-8d0e-450a-ac84-ff859acf7584" + ], + "x-ms-correlation-request-id": [ + "09406925-8d0e-450a-ac84-ff859acf7584" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010604Z:09406925-8d0e-450a-ac84-ff859acf7584" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:06:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-request-id": [ + "4889faba-e814-4fe1-a95e-ce244487c0cf" + ], + "x-ms-correlation-request-id": [ + "4889faba-e814-4fe1-a95e-ce244487c0cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010619Z:4889faba-e814-4fe1-a95e-ce244487c0cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:06:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-request-id": [ + "8c9bd242-4313-4f96-8b44-d75d34983c39" + ], + "x-ms-correlation-request-id": [ + "8c9bd242-4313-4f96-8b44-d75d34983c39" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010634Z:8c9bd242-4313-4f96-8b44-d75d34983c39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:06:33 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-request-id": [ + "1196deb4-9e6f-4ad6-909d-0593534a9908" + ], + "x-ms-correlation-request-id": [ + "1196deb4-9e6f-4ad6-909d-0593534a9908" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010649Z:1196deb4-9e6f-4ad6-909d-0593534a9908" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:06:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-request-id": [ + "758265fd-ae70-4063-bb35-4fd1b4ab3e98" + ], + "x-ms-correlation-request-id": [ + "758265fd-ae70-4063-bb35-4fd1b4ab3e98" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010704Z:758265fd-ae70-4063-bb35-4fd1b4ab3e98" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:07:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-request-id": [ + "b2fd65ca-a6e2-4f19-8435-c6b263758545" + ], + "x-ms-correlation-request-id": [ + "b2fd65ca-a6e2-4f19-8435-c6b263758545" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010719Z:b2fd65ca-a6e2-4f19-8435-c6b263758545" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:07:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-request-id": [ + "3ebcd7aa-571d-4ab5-951d-5dcf83bd9a27" + ], + "x-ms-correlation-request-id": [ + "3ebcd7aa-571d-4ab5-951d-5dcf83bd9a27" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010734Z:3ebcd7aa-571d-4ab5-951d-5dcf83bd9a27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:07:33 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-request-id": [ + "dc259fef-dcb5-4861-bc58-236a63510fbc" + ], + "x-ms-correlation-request-id": [ + "dc259fef-dcb5-4861-bc58-236a63510fbc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010749Z:dc259fef-dcb5-4861-bc58-236a63510fbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:07:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c886bc58-08de-4e01-993f-e01ba3702aaf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUzMzktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzg4NmJjNTgtMDhkZS00ZTAxLTk5M2YtZTAxYmEzNzAyYWFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVek16a3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "ba6d7129-d97e-4a81-96d8-e863193ac52b" + ], + "x-ms-correlation-request-id": [ + "ba6d7129-d97e-4a81-96d8-e863193ac52b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180511T010804Z:ba6d7129-d97e-4a81-96d8-e863193ac52b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 11 May 2018 01:08:04 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-VirtualNetworkGatewayVpnCustomIpsecPolicySet": [ + "ps5339", + "ps2084", + "ps8607", + "ps9704", + "ps2033", + "ps6937" + ] + }, + "Variables": { + "SubscriptionId": "c886bc58-08de-4e01-993f-e01ba3702aaf" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj index 6774484ae44c..bb5671205b1b 100644 --- a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj +++ b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj @@ -179,6 +179,7 @@ + @@ -452,12 +453,17 @@ + + + + + @@ -524,6 +530,7 @@ + diff --git a/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs b/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs index 7550a4e20390..43f260e978b4 100644 --- a/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs +++ b/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs @@ -549,6 +549,7 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); + cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); @@ -567,6 +568,7 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); + cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); diff --git a/src/ResourceManager/Network/Commands.Network/Common/ParameterSetNames.cs b/src/ResourceManager/Network/Commands.Network/Common/ParameterSetNames.cs new file mode 100644 index 000000000000..9c2eb4816d4e --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Common/ParameterSetNames.cs @@ -0,0 +1,35 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Network +{ + internal static class ParameterSetNames + { + internal const string ByFactoryObject = "ByFactoryObject"; + internal const string ByInputObject = "ByInputObject"; + internal const string ByResourceId = "ByResourceId"; + internal const string ByFactoryName = "ByFactoryName"; + internal const string BySubscriptionId = "BySubscriptionId"; + internal const string ByFactoryObjectByRunId = "ByFactoryObjectByRunId"; + internal const string ByFactoryNameByRunId = "ByFactoryNameByRunId"; + internal const string ByFactoryObjectByPipeline = "ByFactoryObjectByPipeline"; + internal const string ByFactoryNameByPipeline = "ByFactoryNameByPipeline"; + internal const string ByPipelineObjectByParameterFile = "ByPipelineObjectByParameterFile"; + internal const string ByPipelineObjectByParameterObject = "ByPipelineObjectByParameterObject"; + internal const string ByFactoryNameByParameterFile = "ByFactoryNameByParameterFile"; + internal const string ByFactoryNameByParameterObject = "ByFactoryNameByParameterObject"; + internal const string ByIntegrationRuntimeName = "ByIntegrationRuntimeName"; + internal const string ByIntegrationRuntimeObject = "ByIntegrationRuntimeObject"; + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml index aacf2f095ed4..c7ec791825cb 100644 --- a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml +++ b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml @@ -641,6 +641,10 @@ VpnClientRootCertificatesText + + + + VpnClientIpsecPoliciesText diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSIpsecPolicy.cs b/src/ResourceManager/Network/Commands.Network/Models/PSIpsecPolicy.cs index 39fcd885a1bb..ae2b01dcbf3f 100644 --- a/src/ResourceManager/Network/Commands.Network/Models/PSIpsecPolicy.cs +++ b/src/ResourceManager/Network/Commands.Network/Models/PSIpsecPolicy.cs @@ -52,7 +52,7 @@ public class PSIpsecPolicy public string DhGroup { get; set; } /// - /// IKE phase 2 DH Group for new child SA + /// IKE phase 2 Pfs Group for new child SA /// public string PfsGroup { get; set; } } diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSVpnClientConfiguration.cs b/src/ResourceManager/Network/Commands.Network/Models/PSVpnClientConfiguration.cs index 120889e26da0..75e3ec9ff4bf 100644 --- a/src/ResourceManager/Network/Commands.Network/Models/PSVpnClientConfiguration.cs +++ b/src/ResourceManager/Network/Commands.Network/Models/PSVpnClientConfiguration.cs @@ -24,6 +24,8 @@ public class PSVpnClientConfiguration public List VpnClientRootCertificates { get; set; } + public List VpnClientIpsecPolicies { get; set; } + public string RadiusServerAddress; public string RadiusServerSecret; @@ -47,5 +49,11 @@ public string VpnClientRootCertificatesText { get { return JsonConvert.SerializeObject(VpnClientRootCertificates, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } } + + [JsonIgnore] + public string VpnClientIpsecPoliciesText + { + get { return JsonConvert.SerializeObject(VpnClientIpsecPolicies, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } } } diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSVpnClientIPsecParameters.cs b/src/ResourceManager/Network/Commands.Network/Models/PSVpnClientIPsecParameters.cs new file mode 100644 index 000000000000..1852e14158dd --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSVpnClientIPsecParameters.cs @@ -0,0 +1,61 @@ +// ---------------------------------------------------------------------------------- +// +// 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 Newtonsoft.Json; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSVpnClientIPsecParameters + { + /// + /// Quick Mode / Phase 2 SA life time in seconds + /// + public int SaLifeTimeSeconds { get; set; } + + /// + /// Quick Mode / Phase 2 SA payload size in kilobytes + /// + public int SaDataSizeKilobytes { get; set; } + + /// + /// IKE phase 1 IPSec encryption algorithm + /// + public string IpsecEncryption { get; set; } + + /// + /// IKE phase 1 IPSec integrity algorithm + /// + public string IpsecIntegrity { get; set; } + + /// + /// IKE phase 2 IKE encryption algorithm + /// + public string IkeEncryption { get; set; } + + /// + /// IKE phase 2 IKE integrity algorithm + /// + public string IkeIntegrity { get; set; } + + /// + /// IKE phase 1 DH group for initial SA + /// + public string DhGroup { get; set; } + + /// + /// IKE phase 2 Pfs Group for new child SA + /// + public string PfsGroup { get; set; } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/Properties/Resources.Designer.cs b/src/ResourceManager/Network/Commands.Network/Properties/Resources.Designer.cs index 21316bf2cfeb..0be1ad75f142 100644 --- a/src/ResourceManager/Network/Commands.Network/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Network/Commands.Network/Properties/Resources.Designer.cs @@ -482,5 +482,16 @@ public static string VirtualNetworkGatewayNameNotSet { return ResourceManager.GetString("VirtualNetworkGatewayNameNotSet", resourceCulture); } } + + /// + /// Looks up a localized string similar to virtualNetworkGateway name. + /// + public static string VirtualNetworkGatewayName + { + get + { + return ResourceManager.GetString("VirtualNetworkGatewayName", resourceCulture); + } + } } } diff --git a/src/ResourceManager/Network/Commands.Network/Properties/Resources.resx b/src/ResourceManager/Network/Commands.Network/Properties/Resources.resx index 4fe12dbfe6f7..9775eb06cc1e 100644 --- a/src/ResourceManager/Network/Commands.Network/Properties/Resources.resx +++ b/src/ResourceManager/Network/Commands.Network/Properties/Resources.resx @@ -134,6 +134,9 @@ virtualNetworkGatewayIpConfiguration + + virtualNetworkGatewayName + inboundNatRules diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/GetAzureVpnClientIpsecParametersCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/GetAzureVpnClientIpsecParametersCommand.cs new file mode 100644 index 000000000000..5c1b59662e57 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/GetAzureVpnClientIpsecParametersCommand.cs @@ -0,0 +1,49 @@ +// ---------------------------------------------------------------------------------- +// +// 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.ResourceManager.Common.ArgumentCompleters; +using System.Management.Automation; +using MNM = Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network.VirtualNetworkGateway +{ + [Cmdlet(VerbsCommon.Get, "AzureRmVpnClientIpsecParameter"), OutputType(typeof(MNM.PSVpnClientIPsecParameters))] + public class GetAzureVpnClientIpsecParametersCommand : VirtualNetworkGatewayBaseCmdlet + { + [Alias("ResourceName")] + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource name.")] + [ValidateNotNullOrEmpty] + public virtual string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public virtual string ResourceGroupName { get; set; } + + public override void Execute() + { + base.Execute(); + + var vpnClientIpsecParameters = this.GetVpnClientIpsecParameters(this.ResourceGroupName, this.Name); + + WriteObject(vpnClientIpsecParameters); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/NewAzureRmVpnClientIpsecParametersCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/NewAzureRmVpnClientIpsecParametersCommand.cs new file mode 100644 index 000000000000..b5a9a85eed56 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/NewAzureRmVpnClientIpsecParametersCommand.cs @@ -0,0 +1,132 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Network.Models; +using System; +using System.Management.Automation; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, "AzureRmVpnClientIpsecParameter"), OutputType(typeof(PSVpnClientIPsecParameters))] + public class NewAzureRmVpnClientIpsecParametersCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds")] + [ValidateRange(300, 172799)] + public int SALifeTime { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB")] + [ValidateRange(1024, int.MaxValue)] + public int SADataSize { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient IPSec encryption algorithm (IKE Phase 1)")] + [ValidateNotNullOrEmpty] + [ValidateSet( + MNM.IpsecEncryption.GCMAES256, + MNM.IpsecEncryption.GCMAES128, + MNM.IpsecEncryption.AES256, + MNM.IpsecEncryption.AES128)] + public string IpsecEncryption { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient IPSec integrity algorithm (IKE Phase 1)")] + [ValidateNotNullOrEmpty] + [ValidateSet( + MNM.IpsecIntegrity.GCMAES256, + MNM.IpsecIntegrity.GCMAES128, + MNM.IpsecIntegrity.SHA256)] + public string IpsecIntegrity { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient IKE encryption algorithm (IKE Phase 2)")] + [ValidateNotNullOrEmpty] + [ValidateSet( + MNM.IkeEncryption.GCMAES256, + MNM.IkeEncryption.GCMAES128, + MNM.IkeEncryption.AES256, + MNM.IkeEncryption.AES128)] + public string IkeEncryption { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient IKE integrity algorithm (IKE Phase 2)")] + [ValidateNotNullOrEmpty] + [ValidateSet( + MNM.IkeIntegrity.SHA384, + MNM.IkeIntegrity.SHA256)] + public string IkeIntegrity { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient DH Groups used in IKE Phase 1 for initial SA")] + [ValidateNotNullOrEmpty] + [ValidateSet( + MNM.DhGroup.DHGroup24, + MNM.DhGroup.ECP384, + MNM.DhGroup.ECP256, + MNM.DhGroup.DHGroup14, + MNM.DhGroup.DHGroup2)] + public string DhGroup { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient PFS Groups used in IKE Phase 2 for new child SA")] + [ValidateNotNullOrEmpty] + [ValidateSet( + MNM.PfsGroup.PFS24, + MNM.PfsGroup.PFSMM, + MNM.PfsGroup.ECP384, + MNM.PfsGroup.ECP256, + MNM.PfsGroup.PFS14, + MNM.PfsGroup.PFS2, + MNM.PfsGroup.None)] + public string PfsGroup { get; set; } + + public override void Execute() + { + base.Execute(); + + var vpnclientIPsecParameters = new PSVpnClientIPsecParameters(); + + // default SA values + vpnclientIPsecParameters.SaLifeTimeSeconds = (!this.MyInvocation.BoundParameters.ContainsKey("SaLifeTime")) ? 7200 : this.SALifeTime; + vpnclientIPsecParameters.SaDataSizeKilobytes = (!this.MyInvocation.BoundParameters.ContainsKey("SaDataSize")) ? 104857600 : this.SADataSize; + + vpnclientIPsecParameters.IpsecEncryption = (!this.MyInvocation.BoundParameters.ContainsKey("IpsecEncryption")) ? MNM.IpsecEncryption.GCMAES256 : this.IpsecEncryption; + vpnclientIPsecParameters.IpsecIntegrity = (!this.MyInvocation.BoundParameters.ContainsKey("IpsecIntegrity")) ? MNM.IpsecIntegrity.GCMAES256 : this.IpsecIntegrity; + + // GCM matching check + if ((vpnclientIPsecParameters.IpsecEncryption.Contains("GCM") || vpnclientIPsecParameters.IpsecIntegrity.Contains("GCM")) + && vpnclientIPsecParameters.IpsecEncryption != vpnclientIPsecParameters.IpsecIntegrity) + { + throw new ArgumentException("Vpnclient IpsecEncryption and IpsecIntegrity must use matching GCM algorithms"); + } + + vpnclientIPsecParameters.IkeEncryption = (!this.MyInvocation.BoundParameters.ContainsKey("IkeEncryption")) ? MNM.IkeEncryption.AES256 : this.IkeEncryption; + vpnclientIPsecParameters.IkeIntegrity = (!this.MyInvocation.BoundParameters.ContainsKey("IkeIntegrity")) ? MNM.IkeIntegrity.SHA256 : this.IkeIntegrity; + vpnclientIPsecParameters.DhGroup = (!this.MyInvocation.BoundParameters.ContainsKey("DhGroup")) ? MNM.DhGroup.DHGroup24 : this.DhGroup; + vpnclientIPsecParameters.PfsGroup = (!this.MyInvocation.BoundParameters.ContainsKey("PfsGroup")) ? MNM.PfsGroup.PFS24 : this.PfsGroup; + + WriteObject(vpnclientIPsecParameters); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/NewAzureRmVpnClientIpsecPolicyCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/NewAzureRmVpnClientIpsecPolicyCommand.cs new file mode 100644 index 000000000000..76c3e76e3b7f --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/NewAzureRmVpnClientIpsecPolicyCommand.cs @@ -0,0 +1,132 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Network.Models; +using System; +using System.Management.Automation; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, "AzureRmVpnClientIpsecPolicy"), OutputType(typeof(PSIpsecPolicy))] + public class NewAzureRmVpnClientIpsecPolicyCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds")] + [ValidateRange(300, 172799)] + public int SALifeTime { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB")] + [ValidateRange(1024, int.MaxValue)] + public int SADataSize { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient IPSec encryption algorithm (IKE Phase 1)")] + [ValidateNotNullOrEmpty] + [ValidateSet( + MNM.IpsecEncryption.GCMAES256, + MNM.IpsecEncryption.GCMAES128, + MNM.IpsecEncryption.AES256, + MNM.IpsecEncryption.AES128)] + public string IpsecEncryption { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient IPSec integrity algorithm (IKE Phase 1)")] + [ValidateNotNullOrEmpty] + [ValidateSet( + MNM.IpsecIntegrity.GCMAES256, + MNM.IpsecIntegrity.GCMAES128, + MNM.IpsecIntegrity.SHA256)] + public string IpsecIntegrity { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient IKE encryption algorithm (IKE Phase 2)")] + [ValidateNotNullOrEmpty] + [ValidateSet( + MNM.IkeEncryption.GCMAES256, + MNM.IkeEncryption.GCMAES128, + MNM.IkeEncryption.AES256, + MNM.IkeEncryption.AES128)] + public string IkeEncryption { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient IKE integrity algorithm (IKE Phase 2)")] + [ValidateNotNullOrEmpty] + [ValidateSet( + MNM.IkeIntegrity.SHA384, + MNM.IkeIntegrity.SHA256)] + public string IkeIntegrity { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient DH Groups used in IKE Phase 1 for initial SA")] + [ValidateNotNullOrEmpty] + [ValidateSet( + MNM.DhGroup.DHGroup24, + MNM.DhGroup.ECP384, + MNM.DhGroup.ECP256, + MNM.DhGroup.DHGroup14, + MNM.DhGroup.DHGroup2)] + public string DhGroup { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Vpnclient PFS Groups used in IKE Phase 2 for new child SA")] + [ValidateNotNullOrEmpty] + [ValidateSet( + MNM.PfsGroup.PFS24, + MNM.PfsGroup.PFSMM, + MNM.PfsGroup.ECP384, + MNM.PfsGroup.ECP256, + MNM.PfsGroup.PFS14, + MNM.PfsGroup.PFS2, + MNM.PfsGroup.None)] + public string PfsGroup { get; set; } + + public override void Execute() + { + base.Execute(); + + var vpnclientIpsecPolicy = new PSIpsecPolicy(); + + // default SA values + vpnclientIpsecPolicy.SALifeTimeSeconds = (!this.MyInvocation.BoundParameters.ContainsKey("SALifeTime")) ? 7200 : this.SALifeTime; + vpnclientIpsecPolicy.SADataSizeKilobytes = (!this.MyInvocation.BoundParameters.ContainsKey("SADataSize")) ? 104857600 : this.SADataSize; + + vpnclientIpsecPolicy.IpsecEncryption = (!this.MyInvocation.BoundParameters.ContainsKey("IpsecEncryption")) ? MNM.IpsecEncryption.GCMAES256 : this.IpsecEncryption; + vpnclientIpsecPolicy.IpsecIntegrity = (!this.MyInvocation.BoundParameters.ContainsKey("IpsecIntegrity")) ? MNM.IpsecIntegrity.GCMAES256 : this.IpsecIntegrity; + + // GCM matching check + if ((vpnclientIpsecPolicy.IpsecEncryption.Contains("GCM") || vpnclientIpsecPolicy.IpsecIntegrity.Contains("GCM")) + && vpnclientIpsecPolicy.IpsecEncryption != vpnclientIpsecPolicy.IpsecIntegrity) + { + throw new ArgumentException("Vpnclient IpsecEncryption and IpsecIntegrity must use matching GCM algorithms"); + } + + vpnclientIpsecPolicy.IkeEncryption = (!this.MyInvocation.BoundParameters.ContainsKey("IkeEncryption")) ? MNM.IkeEncryption.AES256 : this.IkeEncryption; + vpnclientIpsecPolicy.IkeIntegrity = (!this.MyInvocation.BoundParameters.ContainsKey("IkeIntegrity")) ? MNM.IkeIntegrity.SHA256 : this.IkeIntegrity; + vpnclientIpsecPolicy.DhGroup = (!this.MyInvocation.BoundParameters.ContainsKey("DhGroup")) ? MNM.DhGroup.DHGroup24 : this.DhGroup; + vpnclientIpsecPolicy.PfsGroup = (!this.MyInvocation.BoundParameters.ContainsKey("PfsGroup")) ? MNM.PfsGroup.PFS24 : this.PfsGroup; + + WriteObject(vpnclientIpsecPolicy); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/NewAzureVirtualNetworkGatewayCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/NewAzureVirtualNetworkGatewayCommand.cs index 9f75f1642eb6..ae4bc8b28cea 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/NewAzureVirtualNetworkGatewayCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/NewAzureVirtualNetworkGatewayCommand.cs @@ -133,7 +133,6 @@ public class NewAzureVirtualNetworkGatewayCommand : VirtualNetworkGatewayBaseCmd [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, - ParameterSetName = "SetByResource", HelpMessage = "GatewayDefaultSite")] public PSLocalNetworkGateway GatewayDefaultSite { get; set; } @@ -166,6 +165,12 @@ public class NewAzureVirtualNetworkGatewayCommand : VirtualNetworkGatewayBaseCmd HelpMessage = "The list of VpnClientCertificates to be revoked.")] public List VpnClientRevokedCertificates { get; set; } + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "A list of IPSec policies for P2S VPN client tunneling protocols.")] + public List VpnClientIpsecPolicy { get; set; } + [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, @@ -324,7 +329,8 @@ private PSVirtualNetworkGateway CreateVirtualNetworkGateway() if (this.VpnClientAddressPool != null || this.VpnClientRootCertificates != null || this.VpnClientRevokedCertificates != null || - this.RadiusServerAddress != null) + this.RadiusServerAddress != null || + (this.VpnClientIpsecPolicy != null && this.VpnClientIpsecPolicy.Count != 0)) { vnetGateway.VpnClientConfiguration = new PSVpnClientConfiguration(); @@ -355,6 +361,11 @@ private PSVirtualNetworkGateway CreateVirtualNetworkGateway() vnetGateway.VpnClientConfiguration.VpnClientRevokedCertificates = this.VpnClientRevokedCertificates; } + if (this.VpnClientIpsecPolicy != null && this.VpnClientIpsecPolicy.Count != 0) + { + vnetGateway.VpnClientConfiguration.VpnClientIpsecPolicies = this.VpnClientIpsecPolicy; + } + if ((this.RadiusServerAddress != null && this.RadiusServerSecret == null) || (this.RadiusServerAddress == null && this.RadiusServerSecret != null)) { diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/RemoveAzureRmVpnClientIpsecParametersCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/RemoveAzureRmVpnClientIpsecParametersCommand.cs new file mode 100644 index 000000000000..792005517dff --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/RemoveAzureRmVpnClientIpsecParametersCommand.cs @@ -0,0 +1,111 @@ +// ---------------------------------------------------------------------------------- +// +// 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 AutoMapper; +using Microsoft.Azure.Commands.Network.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.Network; +using System; +using System.Management.Automation; +using MNM = Microsoft.Azure.Management.Network.Models; +using Microsoft.Azure.Commands.Network.VirtualNetworkGateway; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Remove, "AzureRmVpnClientIpsecParameter", DefaultParameterSetName = "ByFactoryName", SupportsShouldProcess = true), + OutputType(typeof(bool))] + public class RemoveAzureVpnClientIpsecParametersCommand : VirtualNetworkGatewayBaseCmdlet + { + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryName, + Mandatory = true, + HelpMessage = "The virtual network gateway name.")] + [ValidateNotNullOrEmpty] + public virtual string VirtualNetworkGatewayName { get; set; } + + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryName, + Mandatory = true, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public virtual string ResourceGroupName { get; set; } + + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryObject, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The virtual network gateaway object")] + [ValidateNotNullOrEmpty] + public PSVirtualNetworkGateway InputObject { get; set; } + + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceId, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Azure resource ID.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + public override void Execute() + { + if (ParameterSetName.Equals(ParameterSetNames.ByFactoryObject, StringComparison.OrdinalIgnoreCase)) + { + VirtualNetworkGatewayName = InputObject.Name; + ResourceGroupName = InputObject.ResourceGroupName; + } + else if (ParameterSetName.Equals(ParameterSetNames.ByResourceId, StringComparison.OrdinalIgnoreCase)) + { + var parsedResourceId = new ResourceIdentifier(ResourceId); + VirtualNetworkGatewayName = parsedResourceId.ResourceName; + ResourceGroupName = parsedResourceId.ResourceGroupName; + } + + base.Execute(); + + if (ShouldProcess(VirtualNetworkGatewayName, Properties.Resources.RemoveResourceMessage + Properties.Resources.VirtualNetworkGatewayName)) + { + if (!this.IsVirtualNetworkGatewayPresent(ResourceGroupName, VirtualNetworkGatewayName)) + { + throw new ArgumentException(Microsoft.Azure.Commands.Network.Properties.Resources.ResourceNotFound); + } + + var vnetGateway = this.GetVirtualNetworkGateway(this.ResourceGroupName, this.VirtualNetworkGatewayName); + + if (vnetGateway.VpnClientConfiguration == null || vnetGateway.VpnClientConfiguration.VpnClientIpsecPolicies == null) + { + throw new ArgumentException("There are no any vpn client ipsec parameters specified on Gateway!"); + } + + // Make sure the vpn client ipsec parameters are present on Gateway before calling to Remove it. + if (vnetGateway.VpnClientConfiguration.VpnClientIpsecPolicies.Count == 0) + { + throw new ArgumentException("There are no any vpn client ipsec parameters specified on Gateway! So, can not proceed with removing it!"); + } + + vnetGateway.VpnClientConfiguration.VpnClientIpsecPolicies.Clear(); + + // Map to the sdk object + var virtualnetGatewayModel = NetworkResourceManagerProfile.Mapper.Map(vnetGateway); + virtualnetGatewayModel.Tags = TagsConversionHelper.CreateTagDictionary(vnetGateway.Tag, validate: true); + + this.VirtualNetworkGatewayClient.CreateOrUpdate(ResourceGroupName, VirtualNetworkGatewayName, virtualnetGatewayModel); + + WriteObject(true); + } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/SetAzureVirtualNetworkGatewayVpnClientConfig.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/SetAzureVirtualNetworkGatewayVpnClientConfig.cs index 07d90fc7a5ac..c49b1da0e60a 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/SetAzureVirtualNetworkGatewayVpnClientConfig.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/SetAzureVirtualNetworkGatewayVpnClientConfig.cs @@ -31,6 +31,7 @@ namespace Microsoft.Azure.Commands.Network DefaultParameterSetName = VirtualNetworkGatewayParameterSets.Default, SupportsShouldProcess = true), OutputType(typeof(PSVirtualNetworkGateway))] + [Obsolete("Set-AzureRmVirtualNetworkGatewayVpnClientConfig command let will be removed in next release. Please use Set-AzureRmVirtualNetworkGateway command let instead.")] public class SetAzureVirtualNetworkGatewayVpnClientConfigCommand : VirtualNetworkGatewayBaseCmdlet { [Parameter( diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/SetAzureVpnClientIpsecParametersCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/SetAzureVpnClientIpsecParametersCommand.cs new file mode 100644 index 000000000000..7cbf4c93017d --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/SetAzureVpnClientIpsecParametersCommand.cs @@ -0,0 +1,103 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Network.Models; +using Microsoft.Azure.Commands.Network.VirtualNetworkGateway; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.Network; +using System; +using System.Management.Automation; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Set, + "AzureRmVpnClientIpsecParameter", + DefaultParameterSetName = "ByFactoryName", + SupportsShouldProcess = true), + OutputType(typeof(PSVpnClientIPsecParameters))] + public class SetAzureVpnClientIpsecParametersCommand : VirtualNetworkGatewayBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The virtual network gateway name.")] + [ValidateNotNullOrEmpty] + public virtual string VirtualNetworkGatewayName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public virtual string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "Vpn client ipsec parameters")] + [ValidateNotNull] + public PSVpnClientIPsecParameters VpnClientIPsecParameter { get; set; } + + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryObject, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The virtual network gateaway object")] + [ValidateNotNullOrEmpty] + public PSVirtualNetworkGateway InputObject { get; set; } + + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceId, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Azure resource ID.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + public override void Execute() + { + if (ParameterSetName.Equals(ParameterSetNames.ByFactoryObject, StringComparison.OrdinalIgnoreCase)) + { + VirtualNetworkGatewayName = InputObject.Name; + ResourceGroupName = InputObject.ResourceGroupName; + } + else if (ParameterSetName.Equals(ParameterSetNames.ByResourceId, StringComparison.OrdinalIgnoreCase)) + { + var parsedResourceId = new ResourceIdentifier(ResourceId); + VirtualNetworkGatewayName = parsedResourceId.ResourceName; + ResourceGroupName = parsedResourceId.ResourceGroupName; + } + + base.Execute(); + + if (!this.IsVirtualNetworkGatewayPresent(this.ResourceGroupName, this.VirtualNetworkGatewayName)) + { + throw new ArgumentException(Microsoft.Azure.Commands.Network.Properties.Resources.ResourceNotFound); + } + + // Map to the sdk object + var vpnClientIPsecParametersModel = NetworkResourceManagerProfile.Mapper.Map(this.VpnClientIPsecParameter); + + string shouldProcessMessage = string.Format("Execute Set-AzureRmVpnClientIpsecParameters for ResourceGroupName {0} VirtualNetworkGateway {1}", this.ResourceGroupName, this.VirtualNetworkGatewayName); + if (ShouldProcess(shouldProcessMessage, VerbsCommon.Set)) + { + var vpnClientIpsecParameters = this.VirtualNetworkGatewayClient.SetVpnclientIpsecParameters(this.ResourceGroupName, this.VirtualNetworkGatewayName, vpnClientIPsecParametersModel); + var psVpnClientIPsecParameters = NetworkResourceManagerProfile.Mapper.Map(vpnClientIpsecParameters); + + WriteObject(vpnClientIpsecParameters); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/UpdateAzureVirtualNetworkGatewayCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/UpdateAzureVirtualNetworkGatewayCommand.cs index 0309212d5205..fa3e72aab0ae 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/UpdateAzureVirtualNetworkGatewayCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/UpdateAzureVirtualNetworkGatewayCommand.cs @@ -94,6 +94,12 @@ public class SetAzureVirtualNetworkGatewayCommand : VirtualNetworkGatewayBaseCmd HelpMessage = "A list of revoked VPN client certificates. A VPN client presenting a certificate that matches one of these will be told to go away.")] public List VpnClientRevokedCertificates { get; set; } + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "A list of IPSec policies for P2S VPN client tunneling protocols.")] + public List VpnClientIpsecPolicy { get; set; } + [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, @@ -188,11 +194,13 @@ public override void Execute() this.VirtualNetworkGateway.GatewayDefaultSite.Id = this.GatewayDefaultSite.Id; } + if ((this.VpnClientAddressPool != null || this.VpnClientRootCertificates != null || this.VpnClientRevokedCertificates != null || this.RadiusServerAddress != null || - this.RadiusServerSecret != null) && + this.RadiusServerSecret != null || + (this.VpnClientIpsecPolicy != null && this.VpnClientIpsecPolicy.Count != 0)) && this.VirtualNetworkGateway.VpnClientConfiguration == null) { this.VirtualNetworkGateway.VpnClientConfiguration = new PSVpnClientConfiguration(); @@ -219,6 +227,11 @@ public override void Execute() this.VirtualNetworkGateway.VpnClientConfiguration.VpnClientRevokedCertificates = this.VpnClientRevokedCertificates; } + if (this.VpnClientIpsecPolicy != null && this.VpnClientIpsecPolicy.Count != 0) + { + this.VirtualNetworkGateway.VpnClientConfiguration.VpnClientIpsecPolicies = this.VpnClientIpsecPolicy; + } + if ((this.RadiusServerAddress != null && this.RadiusServerSecret == null) || (this.RadiusServerAddress == null && this.RadiusServerSecret != null)) { diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/VirtualNetworkGatewayBaseCmdlet.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/VirtualNetworkGatewayBaseCmdlet.cs index ec2c5795ee2f..98a0d8c740fb 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/VirtualNetworkGatewayBaseCmdlet.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/VirtualNetworkGatewayBaseCmdlet.cs @@ -68,5 +68,14 @@ public PSVirtualNetworkGateway ToPsVirtualNetworkGateway(Management.Network.Mode return psVirtualNetworkGateway; } + + public PSVpnClientIPsecParameters GetVpnClientIpsecParameters(string resourceGroupName, string name) + { + var vpnClientIPsecParameters = this.VirtualNetworkGatewayClient.GetVpnclientIpsecParameters(resourceGroupName, name); + + var psVpnClientIPsecParameters = NetworkResourceManagerProfile.Mapper.Map(vpnClientIPsecParameters); + + return psVpnClientIPsecParameters; + } } } \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayAuthenticationCertificate.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayAuthenticationCertificate.md index ae646e33d21f..857fe121c8f0 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayAuthenticationCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayAuthenticationCertificate.md @@ -32,7 +32,7 @@ Specifies the name of application gateway for which this cmdlet adds an authenti ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -47,7 +47,7 @@ Specifies the path of the authentication certificate that this cmdlet adds. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -77,7 +77,7 @@ Specifies the name of a certificate that this cmdlet adds to the application gat ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayBackendAddressPool.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayBackendAddressPool.md index 28a60095fa5b..f92d957a9899 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayBackendAddressPool.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayBackendAddressPool.md @@ -60,7 +60,7 @@ Specifies the application gateway to which this cmdlet adds a back-end address p ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -75,7 +75,7 @@ Specifies a list of backend FQDNs which this cmdlet adds as a back-end server po ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -90,7 +90,7 @@ Specifies a list of back-end IP addresses which this cmdlet adds as a back-end s ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -120,7 +120,7 @@ Specifies the name of the back-end server pool that this cmdlet adds. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayBackendHttpSettings.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayBackendHttpSettings.md index ed36cf767b05..e11740b05a04 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayBackendHttpSettings.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayBackendHttpSettings.md @@ -18,8 +18,8 @@ Add-AzureRmApplicationGatewayBackendHttpSettings -ApplicationGateway ] [-ProbeId ] [-Probe ] [-AuthenticationCertificates ] - [-PickHostNameFromBackendAddress] [-HostName ] [-AffinityCookieName ] - [-Path ] [-DefaultProfile ] [] + [-PickHostNameFromBackendAddress] [-HostName ] [-AffinityCookieName ] [-Path ] + [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -45,7 +45,7 @@ Cookie name to use for the affinity cookie ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -60,7 +60,7 @@ Specifies the name of application gateway for which this cmdlet adds settings. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -75,7 +75,7 @@ Specifies authentication certificates for the application gateway. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -90,7 +90,7 @@ Connection draining of the backend http settings resource. ```yaml Type: PSApplicationGatewayConnectionDraining Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -106,7 +106,7 @@ The acceptable values for this parameter are: Disabled, Enabled. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Enabled, Disabled Required: True @@ -137,7 +137,7 @@ Sets host header to be sent to the backend servers. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -152,7 +152,7 @@ Specifies the name of the back-end HTTP settings which this cmdlet adds. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -168,7 +168,7 @@ If no value is provided for this parameter, then no path will be prefixed. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -183,7 +183,7 @@ Flag if host header should be picked from the host name of the backend server. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -198,7 +198,7 @@ Specifies the port of the back-end server pool. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -213,7 +213,7 @@ Specifies a probe to associate with a back-end server. ```yaml Type: PSApplicationGatewayProbe Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -228,7 +228,7 @@ Specifies the ID of the probe to associate with the back-end server. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -244,7 +244,7 @@ The acceptable values for this parameter are: Http and Https. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Http, Https Required: True @@ -260,7 +260,7 @@ Specifies the request time-out value. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayFrontendIPConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayFrontendIPConfig.md index 7e180c8dfb90..68dc661f9701 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayFrontendIPConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayFrontendIPConfig.md @@ -84,7 +84,7 @@ Specifies the application gateway to which this cmdlet adds a front-end IP confi ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -114,7 +114,7 @@ Specifies the name of the front-end IP configuration to add. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -130,7 +130,7 @@ If specified, this IP is statically allocated from the subnet. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -145,7 +145,7 @@ Specifies the public IP address which this cmdlet adds as a front-end IP address ```yaml Type: PSPublicIpAddress Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -160,7 +160,7 @@ Specifies the ID of the public IP address which this cmdlet adds as a front-end ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -178,7 +178,7 @@ If *PrivateIPAddress* is not specified, one of the IP addresses from this subnet ```yaml Type: PSSubnet Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -196,7 +196,7 @@ Otherwise, one of the IP from this subnet is dynamically picked up as the front- ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayFrontendPort.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayFrontendPort.md index 05a284938eb9..19150f3529a6 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayFrontendPort.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayFrontendPort.md @@ -40,7 +40,7 @@ Specifies the application gateway to which this cmdlet adds a front-end port. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -70,7 +70,7 @@ Specifies the name of the front-end port. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -85,7 +85,7 @@ Specifies the port number. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayHttpListener.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayHttpListener.md index f4fa5e593d34..f84197ecb603 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayHttpListener.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayHttpListener.md @@ -60,7 +60,7 @@ Specifies the application gateway to which this cmdlet adds an HTTP listener. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -90,7 +90,7 @@ Specifies the application gateway front-end IP resource object. ```yaml Type: PSApplicationGatewayFrontendIPConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -105,7 +105,7 @@ Specifies the application gateway front-end IP ID. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -120,7 +120,7 @@ Specifies the application gateway front-end port object. ```yaml Type: PSApplicationGatewayFrontendPort Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -135,7 +135,7 @@ Specifies the application gateway front-end port ID. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -150,7 +150,7 @@ Specifies the host name that this cmdlet adds a HTTP listener to. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -165,7 +165,7 @@ Specifies the name of the front-end port that this command adds. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -181,7 +181,7 @@ Both HTTP and HTTPS are supported. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Http, Https Required: True @@ -195,7 +195,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: true, false Required: False @@ -212,7 +212,7 @@ Must be specified if HTTPS is chosen as listener protocol. ```yaml Type: PSApplicationGatewaySslCertificate Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -228,7 +228,7 @@ Must be specified if HTTPS is chosen as listener protocol. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayIPConfiguration.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayIPConfiguration.md index 47a20ad92901..e5406f811a33 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayIPConfiguration.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayIPConfiguration.md @@ -52,7 +52,7 @@ Specifies the application gateway to which this cmdlet adds an IP configuration. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -82,7 +82,7 @@ Specifies the name of the IP configuration to add. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -98,7 +98,7 @@ This is the subnet in which the application gateway is deployed. ```yaml Type: PSSubnet Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -114,7 +114,7 @@ This is the subnet in which the application gateway is deployed. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayProbeConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayProbeConfig.md index e76268871a56..e810e8941001 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayProbeConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayProbeConfig.md @@ -41,7 +41,7 @@ Specifies the application gateway to which this cmdlet adds a probe. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the host name that this cmdlet sends the probe to. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -88,7 +88,7 @@ This value is between 1 second and 86400 seconds. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -104,7 +104,7 @@ Default value is empty ```yaml Type: PSApplicationGatewayProbeHealthResponseMatch Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -120,7 +120,7 @@ Default value is 0 ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -135,7 +135,7 @@ Specifies the name of the probe. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -152,7 +152,7 @@ The probe is sent to \://\:\\. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -168,7 +168,7 @@ Default value is false ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -184,7 +184,7 @@ This cmdlet supports HTTP only. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Http, Https Required: True @@ -202,7 +202,7 @@ Valid values are between 1 second and 86400 seconds. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -219,7 +219,7 @@ Valid values are between 1 second and 20 seconds. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayRedirectConfiguration.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayRedirectConfiguration.md index f3855e1901db..095aee5d7d27 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayRedirectConfiguration.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayRedirectConfiguration.md @@ -55,7 +55,7 @@ The applicationGateway ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -86,7 +86,7 @@ Default is true. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -102,7 +102,7 @@ Default is true. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -117,7 +117,7 @@ The name of the Redirect Configuration ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -132,7 +132,7 @@ The type of redirect ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Permanent, Found, SeeOther, Temporary Required: True @@ -148,7 +148,7 @@ HTTPListener to redirect the request to ```yaml Type: PSApplicationGatewayHttpListener Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -163,7 +163,7 @@ ID of listener to redirect the request to ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -178,7 +178,7 @@ Target URL fo redirection ```yaml Type: String Parameter Sets: SetByURL -Aliases: +Aliases: Required: False Position: Named @@ -201,4 +201,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayRequestRoutingRule.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayRequestRoutingRule.md index 2c38ea5b388d..d4eac08e8fce 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayRequestRoutingRule.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayRequestRoutingRule.md @@ -53,7 +53,7 @@ Specifies an application gateway to which this cmdlet adds a request routing rul ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -68,7 +68,7 @@ Specifies an application gateway back-end address pool object. ```yaml Type: PSApplicationGatewayBackendAddressPool Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -83,7 +83,7 @@ Specifies an application gateway back-end address pool ID. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -98,7 +98,7 @@ Specifies a back-end HTTP settings object for an application gateway. ```yaml Type: PSApplicationGatewayBackendHttpSettings Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -113,7 +113,7 @@ Specifies a backend HTTP settings ID for an application gateway. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -143,7 +143,7 @@ Specifies application gateway HTTP listener object. ```yaml Type: PSApplicationGatewayHttpListener Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -158,7 +158,7 @@ Specifies application gateway HTTP listener ID. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -173,7 +173,7 @@ Specifies the name of request routing rule this cmdlet adds. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -188,7 +188,7 @@ Application gateway RedirectConfiguration ```yaml Type: PSApplicationGatewayRedirectConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -203,7 +203,7 @@ ID of the application gateway RedirectConfiguration ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -218,7 +218,7 @@ Specifies the type of request routing rule. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Basic, PathBasedRouting Required: True @@ -232,7 +232,7 @@ Accept wildcard characters: False ```yaml Type: PSApplicationGatewayUrlPathMap Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -247,7 +247,7 @@ Specifies the URL path map ID for the routing rule. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewaySslCertificate.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewaySslCertificate.md index 83c5d3857bab..419e88b65d08 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewaySslCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewaySslCertificate.md @@ -41,7 +41,7 @@ Specifies the name of application gateway to which this cmdlet adds an SSL certi ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -56,7 +56,7 @@ Specifies the .pfx file of an SSL certificate that this cmdlet adds. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -86,7 +86,7 @@ Specifies the name of the SSL certificate that this cmdlet adds. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -101,7 +101,7 @@ Specifies the password of the SSL certificate that this cmdlet adds. ```yaml Type: SecureString Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayUrlPathMapConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayUrlPathMapConfig.md index 241c83c5d23e..06e5b24f0369 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayUrlPathMapConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayUrlPathMapConfig.md @@ -44,7 +44,7 @@ Specifies the application gateway to which this cmdlet adds a URL path map confi ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -59,7 +59,7 @@ Specifies the default backend address pool to route in case none of the rules sp ```yaml Type: PSApplicationGatewayBackendAddressPool Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -74,7 +74,7 @@ Specifies the default backend address pool ID. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -89,7 +89,7 @@ Specifies the default backend HTTP settings to use in case none of the rules spe ```yaml Type: PSApplicationGatewayBackendHttpSettings Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -104,7 +104,7 @@ Specifies the default backend HTTP settings ID. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -134,7 +134,7 @@ Application gateway default RedirectConfiguration ```yaml Type: PSApplicationGatewayRedirectConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -149,7 +149,7 @@ ID of the application gateway default RedirectConfiguration ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -164,7 +164,7 @@ Specifies the URL path map name that this cmdlet adds to the backend server pool ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -180,7 +180,7 @@ The path rules are order sensitive, they are applied in order they are specified ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmExpressRouteCircuitAuthorization.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmExpressRouteCircuitAuthorization.md index 33391fae1ba5..7c1cd2d7d3db 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmExpressRouteCircuitAuthorization.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmExpressRouteCircuitAuthorization.md @@ -76,7 +76,7 @@ Specifies the ExpressRoute circuit that this cmdlet adds the authorization to. ```yaml Type: PSExpressRouteCircuit Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -91,7 +91,7 @@ Specifies the name of the circuit authorization to be added. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmExpressRouteCircuitConnectionConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmExpressRouteCircuitConnectionConfig.md index 9d662b8015c8..b5ba518d7ba9 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmExpressRouteCircuitConnectionConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmExpressRouteCircuitConnectionConfig.md @@ -8,9 +8,25 @@ schema: 2.0.0 # Add-AzureRmExpressRouteCircuitConnectionConfig -## SYNOPSIS +## SYNOPSIS Adds a circuit connection configuration to Private Peering of an Express Route Circuit. +## SYNTAX + +### SetByResource (Default) +``` +Add-AzureRmExpressRouteCircuitConnectionConfig [-Name] [-ExpressRouteCircuit] + [-AddressPrefix] [-AuthorizationKey ] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### SetByResourceId +``` +Add-AzureRmExpressRouteCircuitConnectionConfig [-Name] [-ExpressRouteCircuit] + [-PeerExpressRouteCircuitPeering] [-AddressPrefix] [-AuthorizationKey ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + ## DESCRIPTION The **Add-AzureRmExpressRouteCircuitConnectionConfig** cmdlet adds a circuit connection configuration to private peering for an ExpressRoute circuit. This allows peering two Express Route Circuits @@ -18,6 +34,7 @@ across regions or subscriptions.Note that, after running **Add-AzureRmExpressRou you must call the Set-AzureRmExpressRouteCircuit cmdlet to activate the configuration. ## EXAMPLES + ### Example 1: Add a circuit connection resource to an existing ExpressRoute circuit ``` $circuit_init = Get-AzureRmExpressRouteCircuit -Name $initiatingCircuitName -ResourceGroupName $rg @@ -26,6 +43,7 @@ $addressSpace = '60.0.0.0/29' Add-AzureRmExpressRouteCircuitConnectionConfig -Name $circuitConnectionName -ExpressRouteCircuit $circuit_init -PeerExpressRouteCircuitPeering $circuit_peer.Peerings[0].Id -AddressPrefix $addressSpace -AuthorizationKey $circuit_peer.Authorizations[0].AuthorizationKey Set-AzureRmExpressRouteCircuit -ExpressRouteCircuit $circuit_init ``` + ### Example 2: Add a circuit connection configuration using Piping to an existing ExpressRoute Circuit ``` $circuit_peer = Get-AzureRmExpressRouteCircuit -Name $peeringCircuitName -ResourceGroupName $rg @@ -35,6 +53,36 @@ Get-AzureRmExpressRouteCircuit -Name $initiatingCircuitName -ResourceGroupName $ ## PARAMETERS +### -AddressPrefix +A minimum /29 customer address space to create VxLan tunnels between Express Route Circuits + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AuthorizationKey +Authorization Key to peer Express Route Circuit in another subscription. Authorization on peer circuit can be created using existing commands. + +```yaml +Type: String +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. @@ -57,10 +105,10 @@ The ExpressRoute circuit being modified. This is Azure object returned by the ```yaml Type: PSExpressRouteCircuit Parameter Sets: (All) -Aliases: +Aliases: Required: True -Position: Named +Position: 1 Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False @@ -72,10 +120,10 @@ The name of the circuit connection resource to be added. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True -Position: Named +Position: 0 Default value: None Accept pipeline input: False Accept wildcard characters: False @@ -86,37 +134,37 @@ Resource Id for Private Peering of remote circuit which will be peered with the ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: -Required: False -Position: Named +Required: True +Position: 2 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -AddressPrefix -A minimum /29 customer address space to create VxLan tunnels between Express Route Circuits +### -Confirm +Prompts you for confirmation before running the cmdlet. ```yaml -Type: String +Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: cf -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -AuthorizationKey -Authorization Key to peer Express Route Circuit in another subscription. Authorization on peer circuit can be created using existing commands. +### -WhatIf +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: String +Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: wi Required: False Position: Named @@ -138,6 +186,7 @@ Parameter 'ExpressRouteCircuit' accepts value of type 'PSExpressRouteCircuit' fr ### Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit ## NOTES + ## RELATED LINKS [Get-AzureRmExpressRouteCircuit](Get-AzureRmExpressRouteCircuit.md) diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmExpressRouteCircuitPeeringConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmExpressRouteCircuitPeeringConfig.md index 42f7c1678d9b..c42e0c2bb29d 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmExpressRouteCircuitPeeringConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmExpressRouteCircuitPeeringConfig.md @@ -16,8 +16,8 @@ Adds a peering configuration to an ExpressRoute circuit. ### SetByResource (Default) ``` Add-AzureRmExpressRouteCircuitPeeringConfig -Name -ExpressRouteCircuit - -PeeringType -PeerASN -PrimaryPeerAddressPrefix -SecondaryPeerAddressPrefix - -VlanId [-SharedKey ] + -PeeringType -PeerASN -PrimaryPeerAddressPrefix + -SecondaryPeerAddressPrefix -VlanId [-SharedKey ] [-MicrosoftConfigAdvertisedPublicPrefixes ] [-MicrosoftConfigCustomerAsn ] [-MicrosoftConfigRoutingRegistryName ] [-PeerAddressType ] [-LegacyMode ] [-DefaultProfile ] @@ -27,8 +27,8 @@ Add-AzureRmExpressRouteCircuitPeeringConfig -Name -ExpressRouteCircuit ### MicrosoftPeeringConfigRoutFilterId ``` Add-AzureRmExpressRouteCircuitPeeringConfig -Name -ExpressRouteCircuit - -PeeringType -PeerASN -PrimaryPeerAddressPrefix -SecondaryPeerAddressPrefix - -VlanId [-SharedKey ] + -PeeringType -PeerASN -PrimaryPeerAddressPrefix + -SecondaryPeerAddressPrefix -VlanId [-SharedKey ] [-MicrosoftConfigAdvertisedPublicPrefixes ] [-MicrosoftConfigCustomerAsn ] [-MicrosoftConfigRoutingRegistryName ] -RouteFilterId [-PeerAddressType ] [-LegacyMode ] [-DefaultProfile ] @@ -38,8 +38,8 @@ Add-AzureRmExpressRouteCircuitPeeringConfig -Name -ExpressRouteCircuit ### MicrosoftPeeringConfigRoutFilter ``` Add-AzureRmExpressRouteCircuitPeeringConfig -Name -ExpressRouteCircuit - -PeeringType -PeerASN -PrimaryPeerAddressPrefix -SecondaryPeerAddressPrefix - -VlanId [-SharedKey ] + -PeeringType -PeerASN -PrimaryPeerAddressPrefix + -SecondaryPeerAddressPrefix -VlanId [-SharedKey ] [-MicrosoftConfigAdvertisedPublicPrefixes ] [-MicrosoftConfigCustomerAsn ] [-MicrosoftConfigRoutingRegistryName ] -RouteFilter [-PeerAddressType ] [-LegacyMode ] @@ -95,7 +95,7 @@ The ExpressRoute circuit being modified. This is Azure object returned by the ```yaml Type: PSExpressRouteCircuit Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -110,7 +110,7 @@ The legacy mode of the Peering ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -128,7 +128,7 @@ a Routing Registry Name (RIR / IRR). ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -144,7 +144,7 @@ the AS number to which they are registered. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -159,7 +159,7 @@ The Routing Registry Name (RIR / IRR) to which the AS number and prefixes are re ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -174,7 +174,7 @@ The name of the peering relationship to be added. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -189,7 +189,7 @@ PeerAddressType ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: IPv4, IPv6 Required: False @@ -206,7 +206,7 @@ AzurePublicPeering. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -222,7 +222,7 @@ The acceptable values for this parameter are: `AzurePrivatePeering`, `AzurePubli ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: AzurePrivatePeering, AzurePublicPeering, MicrosoftPeering Required: True @@ -240,7 +240,7 @@ router interface. Azure will configure the next even-numbered address to the Azu ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -255,7 +255,7 @@ This is an existing RouteFilter object. ```yaml Type: PSRouteFilter Parameter Sets: MicrosoftPeeringConfigRoutFilter -Aliases: +Aliases: Required: True Position: Named @@ -270,7 +270,7 @@ This is the resource Id of an existing RouteFilter object. ```yaml Type: String Parameter Sets: MicrosoftPeeringConfigRoutFilterId -Aliases: +Aliases: Required: True Position: Named @@ -287,7 +287,7 @@ router interface. Azure will configure the next even-numbered address to the Azu ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -302,7 +302,7 @@ This is an optional MD5 hash used as a pre-shared key for the peering configurat ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -317,7 +317,7 @@ This is the Id number of the VLAN assigned for this peering. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerBackendAddressPoolConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerBackendAddressPoolConfig.md index d3d1e901b69d..7833de76dc48 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerBackendAddressPoolConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerBackendAddressPoolConfig.md @@ -53,7 +53,7 @@ Specifies a **LoadBalancer** object. ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -68,7 +68,7 @@ Specifies the name of the backend address pool configuration to add. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerFrontendIpConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerFrontendIpConfig.md index d232238f2b5c..400fd36b0ed9 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerFrontendIpConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerFrontendIpConfig.md @@ -99,7 +99,7 @@ This cmdlet adds a front-end IP configuration to the load balancer that this par ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -114,7 +114,7 @@ Specifies the name of the front-end IP configuration to add. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -129,7 +129,7 @@ Specifies the private IP address to associate with a front-end IP configuration. ```yaml Type: String Parameter Sets: SetByResourceSubnet, SetByResourceIdSubnet -Aliases: +Aliases: Required: False Position: Named @@ -144,7 +144,7 @@ Specifies the public IP address to associate with a front-end IP configuration. ```yaml Type: PSPublicIpAddress Parameter Sets: SetByResourcePublicIpAddress -Aliases: +Aliases: Required: True Position: Named @@ -159,7 +159,7 @@ Specifes the ID of the public IP address in which to add a front-end IP configur ```yaml Type: String Parameter Sets: SetByResourceIdPublicIpAddress -Aliases: +Aliases: Required: True Position: Named @@ -174,7 +174,7 @@ Specifies the subnet object in which to add a front-end IP configuration. ```yaml Type: PSSubnet Parameter Sets: SetByResourceSubnet -Aliases: +Aliases: Required: True Position: Named @@ -189,7 +189,7 @@ Specifies the ID of the subnet in which to add a front-end IP configuration. ```yaml Type: String Parameter Sets: SetByResourceIdSubnet -Aliases: +Aliases: Required: True Position: Named @@ -204,7 +204,7 @@ A list of availability zones denoting the IP allocated for the resource needs to ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerInboundNatPoolConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerInboundNatPoolConfig.md index a0356f22a140..7708e02dbbf9 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerInboundNatPoolConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerInboundNatPoolConfig.md @@ -43,7 +43,7 @@ PS C:\> ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Accept wildcard characters: False ```yaml Type: PSFrontendIPConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -84,7 +84,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -97,7 +97,7 @@ Accept wildcard characters: False ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -110,7 +110,7 @@ Accept wildcard characters: False ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -123,7 +123,7 @@ Accept wildcard characters: False ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -136,7 +136,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -149,7 +149,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Tcp, Udp Required: True @@ -174,4 +174,3 @@ Parameter 'LoadBalancer' accepts value of type 'PSLoadBalancer' from the pipelin ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerInboundNatRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerInboundNatRuleConfig.md index 45633e17b615..9cf86d4c14a3 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerInboundNatRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerInboundNatRuleConfig.md @@ -52,7 +52,7 @@ Specifies the backend port for traffic matched by a rule configuration. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -82,7 +82,7 @@ Indicates that this cmdlet enables a floating IP address for a rule configuratio ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -97,7 +97,7 @@ Specifies a list of front-end IP addresses to associate with an inbound NAT rule ```yaml Type: PSFrontendIPConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -112,7 +112,7 @@ Specifies an ID for a front-end IP address configuration. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -127,7 +127,7 @@ Specifies the front-end port that is matched by a rule configuration. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -142,7 +142,7 @@ Specifies the length of time, in minutes, that the state of conversations is mai ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -158,7 +158,7 @@ This cmdlet adds an inbound NAT rule configuration to the load balancer that thi ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -173,7 +173,7 @@ Specifies the name of the inbound NAT rule configuration to add. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -189,7 +189,7 @@ The acceptable values for this parameter are: Tcp or Udp. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Tcp, Udp Required: False diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerProbeConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerProbeConfig.md index 3074527be567..c6c89fc12253 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerProbeConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerProbeConfig.md @@ -54,7 +54,7 @@ Specifies the interval, in seconds, between probes to each instance of the load- ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -70,7 +70,7 @@ This cmdlet adds a probe configuration to the load balancer that this parameter ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -85,7 +85,7 @@ Specifies the name of the probe configuration to add. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -100,7 +100,7 @@ Specifies the port on which probes should connect to a load-balanced service. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -115,7 +115,7 @@ Specifies the number of per-instance consecutive failures for an instance to be ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -131,7 +131,7 @@ The acceptable values for this parameter are: Tcp or Http. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Tcp, Http Required: False @@ -147,7 +147,7 @@ Specifies the path in the load-balanced service to probe to determine health. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerRuleConfig.md index abe4cbffcc4a..f17daa380b26 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmLoadBalancerRuleConfig.md @@ -54,7 +54,7 @@ Specifies the backend address pool to associate with a load balancer rule config ```yaml Type: PSBackendAddressPool Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -69,7 +69,7 @@ Specifies the ID of a **BackendAddressPool** object to associate with a load bal ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -84,7 +84,7 @@ Specifies the backend port for traffic that is matched by a load balancer rule c ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -114,7 +114,7 @@ Configures SNAT for the VMs in the backend pool to use the publicIP address spec ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -129,7 +129,7 @@ Indicates that this cmdlet enables a floating IP address for a rule configuratio ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -144,7 +144,7 @@ Specifies a list of front-end IP addresses to associate with a load balancer rul ```yaml Type: PSFrontendIPConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -159,7 +159,7 @@ Specifies the ID for a front-end IP address configuration. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -174,7 +174,7 @@ Specifies the front-end port that is matched by a load balancer rule configurati ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -189,7 +189,7 @@ Specifies the length of time, in minutes, that the state of conversations is mai ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -205,7 +205,7 @@ This cmdlet adds a rule configuration to the load balancer that this parameter s ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -220,7 +220,7 @@ Specifies a load distribution. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Default, SourceIP, SourceIPProtocol Required: False @@ -236,7 +236,7 @@ Specifies the name of the load balancer rule configuration. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -251,7 +251,7 @@ Specifies a probe to associate with a load balancer rule configuration. ```yaml Type: PSProbe Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -266,7 +266,7 @@ Specifies the ID of the probe to associate with a load balancer rule configurati ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -282,7 +282,7 @@ The acceptable values for this parameter are: Tcp or Udp. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Tcp, Udp, All Required: False diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmNetworkInterfaceIpConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmNetworkInterfaceIpConfig.md index 67866d5d240b..b533a4b10b76 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmNetworkInterfaceIpConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmNetworkInterfaceIpConfig.md @@ -66,7 +66,7 @@ Specifies a collection of application gateway backend address pool references to ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -81,7 +81,7 @@ Specifies a collection of application gateway backend address pool references to ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -96,7 +96,7 @@ Specifies a collection of application security group references to which this ne ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -111,7 +111,7 @@ Specifies a collection of application security group references to which this ne ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -141,7 +141,7 @@ Specifies a collection of load balancer backend address pool references to which ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -156,7 +156,7 @@ Specifies a collection of load balancer backend address pool references to which ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -171,7 +171,7 @@ Specifies a collection of load balancer inbound network address translation (NAT ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -186,7 +186,7 @@ Specifies a collection of load balancer inbound NAT rule references to which thi ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -201,7 +201,7 @@ Specifies the name of the network interface IP configuration. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -217,7 +217,7 @@ This cmdlet adds a network interface IP configuration to the object that this pa ```yaml Type: PSNetworkInterface Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -230,7 +230,7 @@ Accept wildcard characters: False ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -245,7 +245,7 @@ Specifies the static IP address of the network interface IP configuration. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -264,7 +264,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: IPv4, IPv6 Required: False @@ -281,7 +281,7 @@ This cmdlet creates a reference to a public IP Address to associate with this ne ```yaml Type: PSPublicIpAddress Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -296,7 +296,7 @@ This cmdlet creates a reference to a public IP Address to associate with this ne ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -312,7 +312,7 @@ This cmdlet creates a reference to a subnet in which this network interface IP c ```yaml Type: PSSubnet Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -327,7 +327,7 @@ This cmdlet creates a reference to a subnet in which this network interface IP c ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmNetworkSecurityRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmNetworkSecurityRuleConfig.md index 2bc1c6d82946..7b0a65e4f21b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmNetworkSecurityRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmNetworkSecurityRuleConfig.md @@ -79,7 +79,7 @@ The acceptable values for this parameter are: Allow and Deny. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Allow, Deny Required: False @@ -110,7 +110,7 @@ Specifies a description of a network security rule configuration. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -132,7 +132,7 @@ You can use tags such as VirtualNetwork, AzureLoadBalancer, and Internet. ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -147,7 +147,7 @@ The application security group set as destination for the rule. It cannot be use ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -162,7 +162,7 @@ The application security group set as destination for the rule. It cannot be use ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -182,7 +182,7 @@ The acceptable values for this parameter are: ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -198,7 +198,7 @@ The acceptable values for this parameter are: Inbound and Outbound. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Inbound, Outbound Required: False @@ -214,7 +214,7 @@ Specifies the name of a network security rule configuration. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -230,7 +230,7 @@ This cmdlet adds a network security rule configuration to the object that this p ```yaml Type: PSNetworkSecurityGroup Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -249,7 +249,7 @@ The lower the priority number, the higher the priority of the rule. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -269,7 +269,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Tcp, Udp, * Required: False @@ -292,7 +292,7 @@ You can also use tags such as VirtualNetwork, AzureLoadBalancer and Internet. ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -307,7 +307,7 @@ The application security group set as source for the rule. It cannot be used wit ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -322,7 +322,7 @@ The application security group set as source for the rule. It cannot be used wit ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -338,7 +338,7 @@ This value is expressed as an integer, as a range between 0 and 65535, or as a w ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmRouteConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmRouteConfig.md index 9aa54e22e2b9..7448b0621d22 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmRouteConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmRouteConfig.md @@ -93,7 +93,7 @@ Specifies the destination, in Classless Interdomain Routing (CIDR) format, to wh ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -123,7 +123,7 @@ Specifies a name of the route to add to the route table. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -140,7 +140,7 @@ Specify this parameter only if you specify a value of VirtualAppliance for the * ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -168,7 +168,7 @@ If you have two subnets, 10.1.0.0/16 and 10.2.0.0/16 in the same virtual network ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -183,7 +183,7 @@ Specifies the route table to which this cmdlet adds a route. ```yaml Type: PSRouteTable Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmRouteFilterRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmRouteFilterRuleConfig.md index ebc56473a425..0a20251c86c8 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmRouteFilterRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmRouteFilterRuleConfig.md @@ -23,7 +23,7 @@ The Add-AzureRmRouteFilterRuleConfig cmdlet adds a route filter rule to an Azure ## EXAMPLES -### -------------------------- Example 1: Add a route filter rule to a route filter -------------------------- +### Example 1: Add a route filter rule to a route filter ``` PS C:\>$RouteFilter = Get-AzureRmRouteFilter -ResourceGroupName "ResourceGroup11" -Name "routefilter01" PS C:\> Add-AzureRmRouteFilterRuleConfig -Name "rule13" -Access Allow -RouteFilterRuleType Community -RouteFilter $RouteFilter @@ -40,7 +40,7 @@ Specifies the access of the route filter rule, Valid values are Deny or Allow. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Allow, Deny Required: True @@ -56,7 +56,7 @@ The list of community value that route filter will filter on ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -86,7 +86,7 @@ Do not ask for confirmation if you want to overrite a resource ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -101,7 +101,7 @@ Specifies a name of the route filter rule to add to the route filter. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -116,7 +116,7 @@ Specifies the route filter to which this cmdlet adds a route filter rule. ```yaml Type: PSRouteFilter Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -132,7 +132,7 @@ Valid values are: Community ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Community Required: True diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkGatewayIpConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkGatewayIpConfig.md index a9ce2e3df5f4..25cd64322653 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkGatewayIpConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkGatewayIpConfig.md @@ -55,7 +55,7 @@ Specifies the name of the gateway IP configuration to add. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -70,7 +70,7 @@ Specifies the private IP address. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -85,7 +85,7 @@ Specifies the public IP address. ```yaml Type: PSPublicIpAddress Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -100,7 +100,7 @@ Specifies the ID of the public IP address. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -115,7 +115,7 @@ Specifies a **PSSubnet** object. ```yaml Type: PSSubnet Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -130,7 +130,7 @@ Specifies the ID of the subnet. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -147,7 +147,7 @@ You can use the Get-AzureRmVirtualNetworkGateway cmdlet to retrieve a **PSVirtua ```yaml Type: PSVirtualNetworkGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkPeering.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkPeering.md index 688ef8d323c5..1f77bb3e5e56 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkPeering.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkPeering.md @@ -79,7 +79,7 @@ Indicates that this cmdlet allows the forwarded traffic from the virtual machine ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -109,7 +109,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -124,7 +124,7 @@ Indicates that this cmdlet blocks the virtual machines in the linked virtual net ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -154,7 +154,7 @@ Specifies the name of the virtual network peering. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -169,7 +169,7 @@ Specifies the ID of the remote virtual network. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -184,7 +184,7 @@ Indicates that this cmdlet allows remote gateways on this virtual network. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -199,7 +199,7 @@ Specifies the parent virtual network. ```yaml Type: PSVirtualNetwork Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkSubnetConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkSubnetConfig.md index 9841948a2f95..608bfa7c9c5d 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkSubnetConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkSubnetConfig.md @@ -55,7 +55,7 @@ Specifies a range of IP addresses for a subnet configuration. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -85,7 +85,7 @@ Specifies the name of the subnet configuration to add. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -101,7 +101,7 @@ This cmdlet adds a virtual network subnet configuration to the object that this ```yaml Type: PSNetworkSecurityGroup Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -116,7 +116,7 @@ Specifies the ID of a network security group. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -129,7 +129,7 @@ Accept wildcard characters: False ```yaml Type: PSRouteTable Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -142,7 +142,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -157,7 +157,7 @@ Service Endpoint Value ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -172,7 +172,7 @@ Specifies the **VirtualNetwork** object in which to add a subnet configuration. ```yaml Type: PSVirtualNetwork Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVpnClientRevokedCertificate.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVpnClientRevokedCertificate.md index e6a6d769f402..0b5b69255d92 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVpnClientRevokedCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVpnClientRevokedCertificate.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 90FB7B88-844E-4783-A10F-04D7BA47C030 @@ -59,7 +59,7 @@ Resource groups categorize items to help simplify inventory management and gener ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -81,7 +81,7 @@ The preceding command gets information for all the local computer certificates f ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -96,7 +96,7 @@ Specifies the name of the virtual network gateway where the certificate should b ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVpnClientRootCertificate.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVpnClientRootCertificate.md index a1c270d800bc..516077d36665 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVpnClientRootCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVpnClientRootCertificate.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: B9153CA9-06D1-4EF3-9863-D649C2EBAEAA @@ -82,7 +82,7 @@ You can retrieve this data by using Windows PowerShell commands similar to this ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -99,7 +99,7 @@ Resource groups categorize items to help simplify inventory management and gener ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -114,7 +114,7 @@ Specifies the name of the virtual network gateway where the certificate is added ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/AzureRM.Network.md b/src/ResourceManager/Network/Commands.Network/help/AzureRM.Network.md index 5631ff5c6d7a..d667ffad2ccf 100644 --- a/src/ResourceManager/Network/Commands.Network/help/AzureRM.Network.md +++ b/src/ResourceManager/Network/Commands.Network/help/AzureRM.Network.md @@ -50,12 +50,12 @@ Adds an array of URL path mappings to a backend server pool. ### [Add-AzureRmExpressRouteCircuitAuthorization](Add-AzureRmExpressRouteCircuitAuthorization.md) Adds an ExpressRoute circuit authorization. +### [Add-AzureRmExpressRouteCircuitConnectionConfig](Add-AzureRmExpressRouteCircuitConnectionConfig.md) +Adds a circuit connection configuration to Private Peering of an Express Route Circuit. + ### [Add-AzureRmExpressRouteCircuitPeeringConfig](Add-AzureRmExpressRouteCircuitPeeringConfig.md) Adds a peering configuration to an ExpressRoute circuit. -### [Add-AzureRmExpressRouteCircuitConnectionConfig](Add-AzureRmExpressRouteCircuitConnectionConfig.md) -Adds a circuit connection configuration to Private Peering of an ExpressRoute circuit. - ### [Add-AzureRmLoadBalancerBackendAddressPoolConfig](Add-AzureRmLoadBalancerBackendAddressPoolConfig.md) Adds a backend address pool configuration to a load balancer. @@ -168,7 +168,7 @@ Gets the WAF configuration of an application gateway. Gets an application security group. ### [Get-AzureRmBgpServiceCommunity](Get-AzureRmBgpServiceCommunity.md) -Gets a BGP service community resource. + ### [Get-AzureRmDdosProtectionPlan](Get-AzureRmDdosProtectionPlan.md) Gets a DDoS protection plan. @@ -188,12 +188,12 @@ Gets the ARP table from an ExpressRoute circuit. ### [Get-AzureRmExpressRouteCircuitAuthorization](Get-AzureRmExpressRouteCircuitAuthorization.md) Gets information about ExpressRoute circuit authorizations. +### [Get-AzureRmExpressRouteCircuitConnectionConfig](Get-AzureRmExpressRouteCircuitConnectionConfig.md) +Gets an ExpressRoute circuit connection configuration associated with Private Peering of ExpressRouteCircuit. + ### [Get-AzureRmExpressRouteCircuitPeeringConfig](Get-AzureRmExpressRouteCircuitPeeringConfig.md) Gets an ExpressRoute circuit peering configuration. -### [Get-AzureRmExpressRouteCircuitConnectionConfig](Get-AzureRmExpressRouteCircuitConnectionConfig.md) -Gets an ExpressRoute circuit connection configuration. - ### [Get-AzureRmExpressRouteCircuitRouteTable](Get-AzureRmExpressRouteCircuitRouteTable.md) Gets a route table from an ExpressRoute circuit. @@ -249,10 +249,10 @@ Lists network usages for a subscription Gets the properties of a Network Watcher ### [Get-AzureRmNetworkWatcherConnectionMonitor](Get-AzureRmNetworkWatcherConnectionMonitor.md) -Gets a connection monitor +Returns connection monitor with specified name or the list of connection monitors ### [Get-AzureRmNetworkWatcherConnectionMonitorReport](Get-AzureRmNetworkWatcherConnectionMonitorReport.md) -Gets a snapshot of the most recent connection states +Query a snapshot of the most recent connection states. ### [Get-AzureRmNetworkWatcherFlowLogStatus](Get-AzureRmNetworkWatcherFlowLogStatus.md) Gets the status of flow logging on a resource. @@ -312,7 +312,7 @@ Lists an Azure virtual network gateway's BGP peers Gets a Virtual Network Gateway Connection ### [Get-AzureRmVirtualNetworkGatewayConnectionSharedKey](Get-AzureRmVirtualNetworkGatewayConnectionSharedKey.md) -{{Manually Enter Get-AzureRmVirtualNetworkGatewayConnectionSharedKey Description Here}} + ### [Get-AzureRmVirtualNetworkGatewayConnectionVpnDeviceConfigScript](Get-AzureRmVirtualNetworkGatewayConnectionVpnDeviceConfigScript.md) This commandlet takes the connection resource, VPN device brand, model, firmware version, and return the corresponding configuration script that customers can apply directly on their on-premises VPN devices. The script will follow the syntax of the selected device, and fill in the necessary parameters such as Azure gateway public IP addresses, virtual network address prefixes, VPN tunnel pre-shared key, etc. so customers can simply copy-paste to their VPN device configurations. @@ -335,6 +335,9 @@ Gets virtual network current usage. ### [Get-AzureRmVpnClientConfiguration](Get-AzureRmVpnClientConfiguration.md) Allows users to easily download the Vpn Profile package that was generated using the New-AzureRmVpnClientConfiguration commandlet. +### [Get-AzureRmVpnClientIpsecParameter](Get-AzureRmVpnClientIpsecParameter.md) +Gets the vpn Ipsec parameters set on Virtual Network Gateway for Point to site connections. + ### [Get-AzureRmVpnClientPackage](Get-AzureRmVpnClientPackage.md) Gets information about a VPN client package. @@ -465,7 +468,7 @@ Creates a network security rule configuration. Creates a new Network Watcher resource. ### [New-AzureRmNetworkWatcherConnectionMonitor](New-AzureRmNetworkWatcherConnectionMonitor.md) -Creates a new connection monitor resource. +Creates a connection monitor. ### [New-AzureRmNetworkWatcherPacketCapture](New-AzureRmNetworkWatcherPacketCapture.md) Creates a new packet capture resource and starts a packet capture session on a VM. @@ -476,6 +479,9 @@ Creates a new packet capture filter object. ### [New-AzureRmPublicIpAddress](New-AzureRmPublicIpAddress.md) Creates a public IP address. +### [New-AzureRmPublicIpTag](New-AzureRmPublicIpTag.md) +Creates an IP Tag. + ### [New-AzureRmRouteConfig](New-AzureRmRouteConfig.md) Creates a route for a route table. @@ -495,7 +501,7 @@ Creates a virtual network. Creates a Virtual Network Gateway ### [New-AzureRmVirtualNetworkGatewayConnection](New-AzureRmVirtualNetworkGatewayConnection.md) -{{Manually Enter New-AzureRmVirtualNetworkGatewayConnection Description Here}} + ### [New-AzureRmVirtualNetworkGatewayIpConfig](New-AzureRmVirtualNetworkGatewayIpConfig.md) Creates an IP Configuration for a Virtual Network Gateway @@ -506,6 +512,12 @@ Creates a virtual network subnet configuration. ### [New-AzureRmVpnClientConfiguration](New-AzureRmVpnClientConfiguration.md) This command allows the users to create the Vpn profile package based on pre-configured vpn settings on the VPN gateway, in addition to some additional settings that users may need to configure, for e.g. some root certificates. +### [New-AzureRmVpnClientIpsecParameter](New-AzureRmVpnClientIpsecParameter.md) +This command allows the users to create the Vpn ipsec parameters object specifying one or all values such as IpsecEncryption,IpsecIntegrity,IkeEncryption,IkeIntegrity,DhGroup,PfsGroup to set on the existing VPN gateway. + +### [New-AzureRmVpnClientIpsecPolicy](New-AzureRmVpnClientIpsecPolicy.md) +This command allows the users to create the Vpn ipsec policy object specifying one or all values such as IpsecEncryption,IpsecIntegrity,IkeEncryption,IkeIntegrity,DhGroup,PfsGroup to set on the VPN gateway. This command let output object is used to set vpn ipsec policy for both new / exisitng gateway. + ### [New-AzureRmVpnClientRevokedCertificate](New-AzureRmVpnClientRevokedCertificate.md) Creates a new VPN client-revocation certificate. @@ -569,12 +581,12 @@ Removes an ExpressRoute circuit. ### [Remove-AzureRmExpressRouteCircuitAuthorization](Remove-AzureRmExpressRouteCircuitAuthorization.md) Removes an existing ExpressRoute configuration authorization. +### [Remove-AzureRmExpressRouteCircuitConnectionConfig](Remove-AzureRmExpressRouteCircuitConnectionConfig.md) +Removes an ExpressRoute circuit connection configuration. + ### [Remove-AzureRmExpressRouteCircuitPeeringConfig](Remove-AzureRmExpressRouteCircuitPeeringConfig.md) Removes an ExpressRoute circuit peering configuration. -### [Remove-AzureRmExpressRouteCircuitConnectionConfig](Remove-AzureRmExpressRouteCircuitConnectionConfig.md) -Removes an ExpressRoute circuit connection configuration. - ### [Remove-AzureRmLoadBalancer](Remove-AzureRmLoadBalancer.md) Removes a load balancer. @@ -614,6 +626,9 @@ Removes a network security rule from a network security group. ### [Remove-AzureRmNetworkWatcher](Remove-AzureRmNetworkWatcher.md) Removes a Network Watcher. +### [Remove-AzureRmNetworkWatcherConnectionMonitor](Remove-AzureRmNetworkWatcherConnectionMonitor.md) +Remove connection monitor. + ### [Remove-AzureRmNetworkWatcherPacketCapture](Remove-AzureRmNetworkWatcherPacketCapture.md) Removes a packet capture resource. @@ -645,7 +660,7 @@ Deletes a Virtual Network Gateway Connection Removes the default site from a virtual network gateway. ### [Remove-AzureRmVirtualNetworkGatewayIpConfig](Remove-AzureRmVirtualNetworkGatewayIpConfig.md) -{{Manually Enter Remove-AzureRmVirtualNetworkGatewayIpConfig Description Here}} +Removes a virtual network gateway ip configuration. ### [Remove-AzureRmVirtualNetworkPeering](Remove-AzureRmVirtualNetworkPeering.md) Removes a virtual network peering. @@ -653,6 +668,9 @@ Removes a virtual network peering. ### [Remove-AzureRmVirtualNetworkSubnetConfig](Remove-AzureRmVirtualNetworkSubnetConfig.md) Removes a subnet configuration from a virtual network. +### [Remove-AzureRmVpnClientIpsecParameter](Remove-AzureRmVpnClientIpsecParameter.md) +Deletes the set vpn ipsec parameters set on the Virtual Network Gateway + ### [Remove-AzureRmVpnClientRevokedCertificate](Remove-AzureRmVpnClientRevokedCertificate.md) Removes a VPN client-revocation certificate. @@ -660,10 +678,10 @@ Removes a VPN client-revocation certificate. Removes an existing VPN client root certificate. ### [Reset-AzureRmVirtualNetworkGateway](Reset-AzureRmVirtualNetworkGateway.md) -{{Manually Enter Reset-AzureRmVirtualNetworkGateway Description Here}} +Resets Virtual network gateway instance. ### [Reset-AzureRmVirtualNetworkGatewayConnectionSharedKey](Reset-AzureRmVirtualNetworkGatewayConnectionSharedKey.md) -{{Manually Enter Reset-AzureRmVirtualNetworkGatewayConnectionSharedKey Description Here}} +Resets Virtual network gateway connection shared key. ### [Resize-AzureRmVirtualNetworkGateway](Resize-AzureRmVirtualNetworkGateway.md) Resizes an existing virtual network gateway. @@ -758,12 +776,12 @@ Sets the goal state for a network security group. ### [Set-AzureRmNetworkSecurityRuleConfig](Set-AzureRmNetworkSecurityRuleConfig.md) Sets the goal state for a network security rule configuration. -### [Set-AzureRmNetworkWatcherConnectionMonitor](Set-AzureRmNetworkWatcherConnectionMonitor.md) -Modifies a connection monitor. - ### [Set-AzureRmNetworkWatcherConfigFlowLog](Set-AzureRmNetworkWatcherConfigFlowLog.md) Configures flow logging for a target resource. +### [Set-AzureRmNetworkWatcherConnectionMonitor](Set-AzureRmNetworkWatcherConnectionMonitor.md) +Update a connection monitor. + ### [Set-AzureRmPublicIpAddress](Set-AzureRmPublicIpAddress.md) Sets the goal state for a public IP address. @@ -803,11 +821,14 @@ Configures a virtual network peering. ### [Set-AzureRmVirtualNetworkSubnetConfig](Set-AzureRmVirtualNetworkSubnetConfig.md) Configures the goal state for a subnet configuration in a virtual network. +### [Set-AzureRmVpnClientIpsecParameter](Set-AzureRmVpnClientIpsecParameter.md) +Sets the vpn ipsec parameters for existing virtual network gateway. + ### [Start-AzureRmApplicationGateway](Start-AzureRmApplicationGateway.md) Starts an application gateway. ### [Start-AzureRmNetworkWatcherConnectionMonitor](Start-AzureRmNetworkWatcherConnectionMonitor.md) -Starts a connection monitor. +Start a connection monitor ### [Start-AzureRmNetworkWatcherResourceTroubleshooting](Start-AzureRmNetworkWatcherResourceTroubleshooting.md) Starts troubleshooting on a Networking resource in Azure. @@ -816,13 +837,13 @@ Starts troubleshooting on a Networking resource in Azure. Stops an application gateway ### [Stop-AzureRmNetworkWatcherConnectionMonitor](Stop-AzureRmNetworkWatcherConnectionMonitor.md) -Stops a running connection monitor +Stop a connection monitor ### [Stop-AzureRmNetworkWatcherPacketCapture](Stop-AzureRmNetworkWatcherPacketCapture.md) Stops a running packet capture session ### [Test-AzureRmDnsAvailability](Test-AzureRmDnsAvailability.md) -{{Manually Enter Test-AzureRmDnsAvailability Description Here}} + ### [Test-AzureRmNetworkWatcherConnectivity](Test-AzureRmNetworkWatcherConnectivity.md) Returns connectivity information for a specified source VM and a destination. diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGateway.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGateway.md index 75853d269033..c49f2999ab5d 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGateway.md @@ -82,7 +82,7 @@ Specifies the name of the resource group that contains the application gateway. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayAuthenticationCertificate.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayAuthenticationCertificate.md index 0a01cbe23473..6f863d7de243 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayAuthenticationCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayAuthenticationCertificate.md @@ -31,7 +31,7 @@ Specifies the name of application gateway for which this cmdlet gets an authenti ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -61,7 +61,7 @@ Specifies the name of the authentication certificate that this cmdlet gets. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayAvailableSslOptions.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayAvailableSslOptions.md index d2e9b262fece..891c367f08f7 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayAvailableSslOptions.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayAvailableSslOptions.md @@ -60,4 +60,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayAvailableWafRuleSets.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayAvailableWafRuleSets.md index 18adea086606..8ef46cfb5816 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayAvailableWafRuleSets.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayAvailableWafRuleSets.md @@ -61,4 +61,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable **List-AzureRmApplicationGatewayAvailableWafRuleSets** is an alias for the **Get-AzureRmApplicationGatewayAvailableWafRuleSets** cmdlet. ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayBackendAddressPool.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayBackendAddressPool.md index af0ccc709ed5..106505db312b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayBackendAddressPool.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayBackendAddressPool.md @@ -48,7 +48,7 @@ The **Get-AzureRmApplicationGatewayBackendAddressPool** cmdlet gets a back-end a ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -78,7 +78,7 @@ Specifies the name of the back-end address pool that this cmdlet gets. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayBackendHealth.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayBackendHealth.md index f424c8475676..269821e69834 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayBackendHealth.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayBackendHealth.md @@ -23,14 +23,14 @@ The Get-AzureRmApplicationGatewayBackendHealth cmdlet gets application gateway b ## EXAMPLES -### -------------------------- Example 1: Gets backend health without expanded resources. -------------------------- +### Example 1: Gets backend health without expanded resources. ``` PS C:\>$BackendHealth = Get-AzureRmApplicationGatewayBackendHealth -Name ApplicationGateway01 -ResourceGroupName ResourceGroup01 ``` This command gets the backend health of application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the $BackendHealth variable. -### -------------------------- Example 1: Gets backend health with expanded resources. -------------------------- +### Example 1: Gets backend health with expanded resources. ``` PS C:\>$BackendHealth = Get-AzureRmApplicationGatewayBackendHealth -Name ApplicationGateway01 -ResourceGroupName ResourceGroup01 -ExpandResource "backendhealth/applicationgatewayresource" ``` @@ -45,7 +45,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -73,7 +73,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -103,7 +103,7 @@ Specifies the name of the resource group that contains the application gateway. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayBackendHttpSettings.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayBackendHttpSettings.md index 4e2545a1d570..1feb66605454 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayBackendHttpSettings.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayBackendHttpSettings.md @@ -46,7 +46,7 @@ Specifies an application gateway object that contains back-end HTTP settings. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -76,7 +76,7 @@ Specifies the name of the backend HTTP settings that this cmdlet gets. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayConnectionDraining.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayConnectionDraining.md index c615582e739b..83d1c2336963 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayConnectionDraining.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayConnectionDraining.md @@ -41,7 +41,7 @@ The backend http settings ```yaml Type: PSApplicationGatewayBackendHttpSettings Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayFrontendIPConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayFrontendIPConfig.md index d961f152afcf..6a5886f75ffb 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayFrontendIPConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayFrontendIPConfig.md @@ -47,7 +47,7 @@ Specifies the application gateway object that contains the front-end IP configur ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -77,7 +77,7 @@ Specifies the name of the front-end IP configuration that this cmdlet gets. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayFrontendPort.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayFrontendPort.md index e346339983ba..006b8ec77cc9 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayFrontendPort.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayFrontendPort.md @@ -49,7 +49,7 @@ Specifies the application gateway object that contains the front-end port. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -79,7 +79,7 @@ Specifies the name of the front-end port to get. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayHttpListener.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayHttpListener.md index 7c3c2af4ddbe..8b11986eec85 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayHttpListener.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayHttpListener.md @@ -47,7 +47,7 @@ Specifies the application gateway object that contains the HTTP listener. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -77,7 +77,7 @@ Specifies the name of the HTTP listener which this cmdlet gets. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayIPConfiguration.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayIPConfiguration.md index 9c4b547dd076..4dc2331c3a9a 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayIPConfiguration.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayIPConfiguration.md @@ -48,7 +48,7 @@ Specifies the application gateway object that contains IP configuration. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -78,7 +78,7 @@ Specifies the name of the IP configuration which this cmdlet gets. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayProbeConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayProbeConfig.md index 335cfdd5f346..b0be9f789463 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayProbeConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayProbeConfig.md @@ -37,7 +37,7 @@ Specifies the application gateway to which this cmdlet gets a probe configuratio ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -67,7 +67,7 @@ Specifies the name of the probe. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayRedirectConfiguration.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayRedirectConfiguration.md index b912b2acbdec..95d71cdc76d6 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayRedirectConfiguration.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayRedirectConfiguration.md @@ -39,7 +39,7 @@ The applicationGateway ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -69,7 +69,7 @@ The name of the request routing rule ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -93,4 +93,3 @@ System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Model ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayRequestRoutingRule.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayRequestRoutingRule.md index adc8f65db090..83191519b9f8 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayRequestRoutingRule.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayRequestRoutingRule.md @@ -49,7 +49,7 @@ Specifies the application gateway object that contains request routing rule. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -79,7 +79,7 @@ Specifies the name of the request routing rule which this cmdlet gets. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySku.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySku.md index d1cb27f53a4f..077d8f7ddf18 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySku.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySku.md @@ -40,7 +40,7 @@ Specifies the application gateway object. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySslCertificate.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySslCertificate.md index 3cddb5af7819..6a164afc57ec 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySslCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySslCertificate.md @@ -51,7 +51,7 @@ Specifies the application gateway object that contains the SSL certificate. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -81,7 +81,7 @@ Specifies the name of SSL certificate pool that this cmdlet gets. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySslPolicy.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySslPolicy.md index bfc01e148436..6e93f9d946d8 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySslPolicy.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySslPolicy.md @@ -40,7 +40,7 @@ Specifies the application gateway of the SSL policy that this cmdlet gets. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySslPredefinedPolicy.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySslPredefinedPolicy.md index 39d6c1d418aa..2bc601e0d754 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySslPredefinedPolicy.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewaySslPredefinedPolicy.md @@ -59,7 +59,7 @@ Name of the ssl predefined policy ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -83,4 +83,3 @@ System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Model ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayUrlPathMapConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayUrlPathMapConfig.md index e3e8887c4646..4506b1b846f4 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayUrlPathMapConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayUrlPathMapConfig.md @@ -38,7 +38,7 @@ Specifies the application gateway to which this cmdlet gets a URL path map confi ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -68,7 +68,7 @@ Specifies the URL path map name in which this cmdlet get the path map configurat ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayWebApplicationFirewallConfiguration.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayWebApplicationFirewallConfiguration.md index c0d35cc6d9e3..abe70dd9b8ec 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayWebApplicationFirewallConfiguration.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayWebApplicationFirewallConfiguration.md @@ -42,7 +42,7 @@ You can use the Get-AzureRmApplicationGateway cmdlet to get an application gatew ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationSecurityGroup.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationSecurityGroup.md index 597288f44c10..bca938b1c4af 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationSecurityGroup.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationSecurityGroup.md @@ -81,7 +81,7 @@ The resource group name. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmBgpServiceCommunity.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmBgpServiceCommunity.md index c71e5a08ee49..05237936cc67 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmBgpServiceCommunity.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmBgpServiceCommunity.md @@ -123,4 +123,4 @@ This cmdlet does not accept any input. [New-AzureRmRouteFilter](New-AzureRmRouteFilter.md) -[New-AzureRmRouteFilterRuleConfig](New-AzureRmRouteFilterRuleConfig.md) +[New-AzureRmRouteFilterRuleConfig](New-AzureRmRouteFilterRuleConfig.md) \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmEffectiveNetworkSecurityGroup.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmEffectiveNetworkSecurityGroup.md index af9e88c7a718..76da5b7e2798 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmEffectiveNetworkSecurityGroup.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmEffectiveNetworkSecurityGroup.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: B9409AD6-F761-4B80-8E08-DBB2356F567D @@ -53,7 +53,7 @@ Specified the name of a network interface. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -68,7 +68,7 @@ Specifies the resource group of a network interface. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmEffectiveRouteTable.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmEffectiveRouteTable.md index 26d21bf644f7..b4901c007b4b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmEffectiveRouteTable.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmEffectiveRouteTable.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 84FDB0F7-E6DE-4E1B-BD71-89535EDC6AA1 @@ -38,7 +38,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -68,7 +68,7 @@ Specified the name of a network interface. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -83,7 +83,7 @@ Specifies the resource group of a network interface. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuit.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuit.md index e8f99687cc52..23cafde01bb1 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuit.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuit.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: C9954E3D-8645-473E-A6D4-86278C2F6BC1 @@ -68,7 +68,7 @@ The name of the resource group that contains the ExpressRoute circuit. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitARPTable.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitARPTable.md index 56b65de7c4c2..1fbc53a87885 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitARPTable.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitARPTable.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: F0370845-13D9-4FB5-B30E-826A22EBC5E0 @@ -54,7 +54,7 @@ The acceptable values for this parameter are: `Primary` or `Secondary` ```yaml Type: DevicePathEnum Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Primary, Secondary Required: True @@ -86,7 +86,7 @@ The acceptable values for this parameter are: `AzurePrivatePeering`, `AzurePubli ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: AzurePrivatePeering, AzurePublicPeering, MicrosoftPeering Required: False @@ -102,7 +102,7 @@ The name of the resource group containing the ExpressRoute circuit. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitAuthorization.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitAuthorization.md index e28e7321a6f9..4cca0fab0b6c 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitAuthorization.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitAuthorization.md @@ -82,7 +82,7 @@ Specifies the ExpressRoute circuit authorization. ```yaml Type: PSExpressRouteCircuit Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -99,7 +99,7 @@ Specifies the name of the ExpressRoute circuit authorization that this cmdlet ge ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitConnectionConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitConnectionConfig.md index 6bbe81ae5fc0..6b557d88b100 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitConnectionConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitConnectionConfig.md @@ -5,21 +5,31 @@ ms.assetid: 59692f1f-9f1e-4a3c-8200-312c3806a9b7 online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.network/get-azurermexpressroutecircuitconnectionconfig schema: 2.0.0 --- + # Get-AzureRmExpressRouteCircuitConnectionConfig ## SYNOPSIS Gets an ExpressRoute circuit connection configuration associated with Private Peering of ExpressRouteCircuit. +## SYNTAX + +``` +Get-AzureRmExpressRouteCircuitConnectionConfig [-Name] [-ExpressRouteCircuit] + [-DefaultProfile ] [] +``` + ## DESCRIPTION The **Get-AzureRmExpressRouteCircuitConnectionConfig** cmdlet retrieves the configuration of a circuit connection associated with Private Peering for an ExpressRoute circuit. ## EXAMPLES + ### Example 1: Display the circuit connection configuration for an ExpressRoute circuit ``` $circuit_init = Get-AzureRmExpressRouteCircuit -Name $initiatingCircuitName -ResourceGroupName $rg Get-AzureRmExpressRouteCircuitConnectionConfig -Name $circuitConnectionName -ExpressRouteCircuit $circuit_init ``` + ### Example 2: Get circuit connection resource associated with an ExpressRoute Circuit using piping ``` Get-AzureRmExpressRouteCircuit -Name $initiatingCircuitName -ResourceGroupName $rg|Get-AzureRmExpressRouteCircuitConnectionConfig -Name $circuitConnectionName @@ -48,10 +58,10 @@ The ExpressRoute circuit object containing the circuit connection configuration. ```yaml Type: PSExpressRouteCircuit Parameter Sets: (All) -Aliases: +Aliases: Required: True -Position: Named +Position: 1 Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False @@ -63,10 +73,10 @@ The name of the circuit connection configuration to be retrieved. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: -Required: False -Position: Named +Required: True +Position: 0 Default value: None Accept pipeline input: False Accept wildcard characters: False @@ -85,6 +95,7 @@ Parameter 'ExpressRouteCircuit' accepts value of type 'PSExpressRouteCircuit' fr ### Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection ## NOTES + ## RELATED LINKS [Get-AzureRmExpressRouteCircuit](Get-AzureRmExpressRouteCircuit.md) diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitPeeringConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitPeeringConfig.md index 70ff25bb11f7..9041c1289563 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitPeeringConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitPeeringConfig.md @@ -53,7 +53,7 @@ The ExpressRoute circuit object containing the peering configuration. ```yaml Type: PSExpressRouteCircuit Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -68,7 +68,7 @@ The name of the peering configuration to be retrieved. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitRouteTable.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitRouteTable.md index 1a7700bca198..a2386f3f30a8 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitRouteTable.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitRouteTable.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: BA7F6BAC-6047-42B0-B8CA-0B36302951B0 @@ -55,7 +55,7 @@ The acceptable values for this parameter are: `Primary` or `Secondary` ```yaml Type: DevicePathEnum Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Primary, Secondary Required: True @@ -87,7 +87,7 @@ The acceptable values for this parameter are: `AzurePrivatePeering`, `AzurePubli ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: AzurePrivatePeering, AzurePublicPeering, MicrosoftPeering Required: False @@ -103,7 +103,7 @@ The name of the resource group containing the ExpressRoute circuit. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitRouteTableSummary.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitRouteTableSummary.md index 878e66a43dde..4e4fcb337b49 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitRouteTableSummary.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitRouteTableSummary.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 2C603E0E-A19F-4EA6-B918-945007BE22FF @@ -55,7 +55,7 @@ The acceptable values for this parameter are: `Primary` or `Secondary` ```yaml Type: DevicePathEnum Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Primary, Secondary Required: True @@ -87,7 +87,7 @@ The acceptable values for this parameter are: `AzurePrivatePeering`, `AzurePubli ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: AzurePrivatePeering, AzurePublicPeering, MicrosoftPeering Required: False @@ -103,7 +103,7 @@ The name of the resource group containing the ExpressRoute circuit. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitStats.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitStats.md index a5297842eb78..a02d3ad184e7 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitStats.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteCircuitStats.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: CFE184E2-6DEF-4E92-A9C3-E82F29BB4FB8 @@ -69,7 +69,7 @@ The acceptable values for this parameter are: `AzurePrivatePeering`, `AzurePubli ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: AzurePrivatePeering, AzurePublicPeering, MicrosoftPeering Required: False @@ -85,7 +85,7 @@ The name of the resource group containing the ExpressRoute circuit. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteServiceProvider.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteServiceProvider.md index 9ae411d4cacf..c96b920eac7e 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteServiceProvider.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmExpressRouteServiceProvider.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 009F6E65-0268-4505-AEC1-FF379CB96804 diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancer.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancer.md index f905492a70c5..476c8599455c 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancer.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancer.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 78F356F6-A621-4C27-B9CC-D103E74B3A33 @@ -59,7 +59,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: Expand -Aliases: +Aliases: Required: True Position: Named @@ -97,7 +97,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: NoExpand -Aliases: +Aliases: Required: False Position: Named @@ -109,7 +109,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: Expand -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerBackendAddressPoolConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerBackendAddressPoolConfig.md index 32bd2195df6f..88b0577bf45b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerBackendAddressPoolConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerBackendAddressPoolConfig.md @@ -56,7 +56,7 @@ Specifies the load balancer that is associated with the backend address pool to ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the name of the load balancer that contains the backend address pool t ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerFrontendIpConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerFrontendIpConfig.md index 655addc93d7c..69c3701784df 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerFrontendIpConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerFrontendIpConfig.md @@ -56,7 +56,7 @@ Specifies the load balancer that is associated with the front-end IP configurati ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the name of the load balancer that contains the front-end IP configura ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerInboundNatPoolConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerInboundNatPoolConfig.md index d9e27560fd28..bb1767467466 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerInboundNatPoolConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerInboundNatPoolConfig.md @@ -47,7 +47,7 @@ Accept wildcard characters: False ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -60,7 +60,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -84,4 +84,3 @@ Parameter 'LoadBalancer' accepts value of type 'PSLoadBalancer' from the pipelin ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerInboundNatRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerInboundNatRuleConfig.md index fe0f0c40c4c8..92430867f536 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerInboundNatRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerInboundNatRuleConfig.md @@ -56,7 +56,7 @@ Specifies the load balancer that is associated with the inbound NAT rule configu ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the name of the inbound NAT rule configuration to get. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerProbeConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerProbeConfig.md index b9bbc6bddc1b..88da9363ecfd 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerProbeConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerProbeConfig.md @@ -56,7 +56,7 @@ Specifies the load balancer that is associated with the probe configuration to g ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the name of the probe configuration to get. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerRuleConfig.md index 569e927e1f90..afa1c761a974 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLoadBalancerRuleConfig.md @@ -56,7 +56,7 @@ Specifies the load balancer that is associated with the rule configuration to ge ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the name of the rule configuration to get. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLocalNetworkGateway.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLocalNetworkGateway.md index 7338d8f133f3..cba72efd264c 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLocalNetworkGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmLocalNetworkGateway.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: F8756DA1-7BB9-4CD5-9D81-E11FF7A26125 @@ -66,7 +66,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -90,4 +90,3 @@ This cmdlet does not accept any input. ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkInterface.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkInterface.md index 8a3c26ce78b6..c18146fdf889 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkInterface.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkInterface.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: E066BBFA-2E03-431D-85D1-99F230B6AC59 @@ -78,7 +78,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: ExpandStandAloneNic, ExpandScaleSetNic -Aliases: +Aliases: Required: True Position: Named @@ -93,7 +93,7 @@ Specifies the name of the network interface that this cmdlet gets. ```yaml Type: String Parameter Sets: NoExpandStandAloneNic, NoExpandScaleSetNic -Aliases: +Aliases: Required: False Position: Named @@ -105,7 +105,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: ExpandStandAloneNic, ExpandScaleSetNic -Aliases: +Aliases: Required: True Position: Named @@ -120,7 +120,7 @@ Specifies the name of the resource group from which this cmdlet gets network int ```yaml Type: String Parameter Sets: NoExpandStandAloneNic -Aliases: +Aliases: Required: False Position: Named @@ -132,7 +132,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: ExpandStandAloneNic, NoExpandScaleSetNic, ExpandScaleSetNic -Aliases: +Aliases: Required: True Position: Named @@ -147,7 +147,7 @@ Specifies the virtual machine index of the virtual machine scale set from which ```yaml Type: String Parameter Sets: NoExpandScaleSetNic -Aliases: +Aliases: Required: False Position: Named @@ -159,7 +159,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: ExpandScaleSetNic -Aliases: +Aliases: Required: True Position: Named @@ -174,7 +174,7 @@ Specifies the name of the virtual machine scale set from which this cmdlet gets ```yaml Type: String Parameter Sets: NoExpandScaleSetNic -Aliases: +Aliases: Required: False Position: Named @@ -186,7 +186,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: ExpandScaleSetNic -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkInterfaceIpConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkInterfaceIpConfig.md index 33e32d365c9a..4f32a0076063 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkInterfaceIpConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkInterfaceIpConfig.md @@ -56,7 +56,7 @@ Specifies the name of the network IP configuration that this cmdlet gets. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -71,7 +71,7 @@ Specifies a **NetworkInterface** object that contains the network IP configurati ```yaml Type: PSNetworkInterface Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkSecurityGroup.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkSecurityGroup.md index 1829241523a4..3f641742b3d4 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkSecurityGroup.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkSecurityGroup.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 5AECCBD7-1FDE-4217-9F59-36328062E669 @@ -58,7 +58,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: Expand -Aliases: +Aliases: Required: True Position: Named @@ -100,7 +100,7 @@ Specifies the name of the resource group that the network security group belongs ```yaml Type: String Parameter Sets: NoExpand -Aliases: +Aliases: Required: False Position: Named @@ -112,7 +112,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: Expand -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkSecurityRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkSecurityRuleConfig.md index c55ce36833d7..0a8dfa8a2199 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkSecurityRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkSecurityRuleConfig.md @@ -62,7 +62,7 @@ Indicates whether this cmdlet gets a user-created rule configuration or a defaul ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -77,7 +77,7 @@ Specifies the name of the network security rule configuration to get. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -92,7 +92,7 @@ Specifies a **NetworkSecurityGroup** object that contains the network security r ```yaml Type: PSNetworkSecurityGroup Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkUsage.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkUsage.md index 2f7f5a05eee2..22cce4635bf9 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkUsage.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkUsage.md @@ -95,7 +95,7 @@ The location where resource usage is queried. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -118,4 +118,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkWatcherConnectionMonitor.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkWatcherConnectionMonitor.md index 15d8bd8b18d5..e58c9d7d3637 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkWatcherConnectionMonitor.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkWatcherConnectionMonitor.md @@ -183,8 +183,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. -For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkWatcherConnectionMonitorReport.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkWatcherConnectionMonitorReport.md index eba8bd31f740..181f77820c31 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkWatcherConnectionMonitorReport.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkWatcherConnectionMonitorReport.md @@ -350,8 +350,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. -For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmPublicIpAddress.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmPublicIpAddress.md index db13dd9387cf..c9bfc0716ce0 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmPublicIpAddress.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmPublicIpAddress.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 0CD03BF8-8DB6-44BC-91F0-D863949DBD17 @@ -72,7 +72,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: ExpandStandAloneIp, ExpandScaleSetIp -Aliases: +Aliases: Required: True Position: Named @@ -86,7 +86,7 @@ Network Interface IP Configuration Name. ```yaml Type: String Parameter Sets: NoExpandScaleSetIp -Aliases: +Aliases: Required: False Position: Named @@ -98,7 +98,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: ExpandScaleSetIp -Aliases: +Aliases: Required: True Position: Named @@ -139,7 +139,7 @@ Virtual Machine Network Interface Name. ```yaml Type: String Parameter Sets: NoExpandScaleSetIp -Aliases: +Aliases: Required: False Position: Named @@ -151,7 +151,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: ExpandScaleSetIp -Aliases: +Aliases: Required: True Position: Named @@ -166,7 +166,7 @@ Specifies the name of the resource group that contains the public IP address tha ```yaml Type: String Parameter Sets: NoExpandStandAloneIp -Aliases: +Aliases: Required: False Position: Named @@ -178,7 +178,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: ExpandStandAloneIp, NoExpandScaleSetIp, ExpandScaleSetIp -Aliases: +Aliases: Required: True Position: Named @@ -192,7 +192,7 @@ Virtual Machine Index. ```yaml Type: String Parameter Sets: NoExpandScaleSetIp -Aliases: +Aliases: Required: False Position: Named @@ -204,7 +204,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: ExpandScaleSetIp -Aliases: +Aliases: Required: True Position: Named @@ -218,7 +218,7 @@ Virtual Machine Scale Set Name. ```yaml Type: String Parameter Sets: NoExpandScaleSetIp -Aliases: +Aliases: Required: False Position: Named @@ -230,7 +230,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: ExpandScaleSetIp -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteConfig.md index 83931144d414..d14c04820fcd 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteConfig.md @@ -63,7 +63,7 @@ Specifies the name of the route that this cmdlet gets. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -78,7 +78,7 @@ Specifies the route table from which this cmdlet gets routes. ```yaml Type: PSRouteTable Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteFilter.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteFilter.md index df684dc8ecad..cf51c778f2da 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteFilter.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteFilter.md @@ -59,7 +59,7 @@ The resource reference to be expanded. ```yaml Type: String Parameter Sets: Expand -Aliases: +Aliases: Required: True Position: Named @@ -101,7 +101,7 @@ The resource group name. ```yaml Type: String Parameter Sets: NoExpand -Aliases: +Aliases: Required: False Position: Named @@ -113,7 +113,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: Expand -Aliases: +Aliases: Required: True Position: Named @@ -136,4 +136,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteFilterRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteFilterRuleConfig.md index 75fb48cc03ff..c1a3380c8136 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteFilterRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteFilterRuleConfig.md @@ -52,7 +52,7 @@ The name of the route filter rule ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -67,7 +67,7 @@ The RouteFilter ```yaml Type: PSRouteFilter Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -90,4 +90,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteTable.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteTable.md index 033ac36a9af5..60dcdeb593dc 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteTable.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmRouteTable.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 4F487FCA-930D-4D56-8D28-7693312E1A01 @@ -80,7 +80,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: Expand -Aliases: +Aliases: Required: True Position: Named @@ -122,7 +122,7 @@ Specifies the name of the resource group that contains the route tables that thi ```yaml Type: String Parameter Sets: Expand -Aliases: +Aliases: Required: True Position: Named @@ -134,7 +134,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: NoExpand -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetwork.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetwork.md index b7ca33cb6bda..6ea21c9e017e 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetwork.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetwork.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: CBDF4BCB-7EB3-4D64-B19C-1314D4AB84E4 @@ -58,7 +58,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: Expand -Aliases: +Aliases: Required: True Position: Named @@ -100,7 +100,7 @@ Specifies the name of the resource group that virtual network belongs to. ```yaml Type: String Parameter Sets: NoExpand -Aliases: +Aliases: Required: False Position: Named @@ -112,7 +112,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: Expand -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkAvailableEndpointService.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkAvailableEndpointService.md index 172487f512d9..be5ae335d640 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkAvailableEndpointService.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkAvailableEndpointService.md @@ -56,7 +56,7 @@ The location to retrieve the endpoint services from. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -79,4 +79,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGateway.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGateway.md index 94608292d01c..a304a85d8c39 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGateway.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 9CBF592E-734B-4A0C-A45D-358C226D08C7 @@ -66,7 +66,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -90,4 +90,3 @@ This cmdlet does not accept any input. ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayAdvertisedRoute.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayAdvertisedRoute.md index 1dbd72d65a70..bab0d8732e64 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayAdvertisedRoute.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayAdvertisedRoute.md @@ -45,7 +45,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -75,7 +75,7 @@ BGP peer's IP address. This should be an IP within the address space accessible ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -90,7 +90,7 @@ Virtual network gateway resource group's name ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -129,4 +129,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable This command is only applicable to Azure virtual network gateways with BGP enabled connections. ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayBGPPeerStatus.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayBGPPeerStatus.md index 1a6162931565..0e6be58aec17 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayBGPPeerStatus.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayBGPPeerStatus.md @@ -48,7 +48,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -78,7 +78,7 @@ IP of the peer to retrieve status for ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -93,7 +93,7 @@ Virtual network gateway resource group's name ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -131,4 +131,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayConnection.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayConnection.md index 4394ade68b7e..bc11bac63dca 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayConnection.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayConnection.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 617FB2F9-05EA-4224-B9A9-2F00A7599486 @@ -66,7 +66,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -90,4 +90,3 @@ This cmdlet does not accept any input. ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayConnectionSharedKey.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayConnectionSharedKey.md index 8431179478c1..651344a413a5 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayConnectionSharedKey.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayConnectionSharedKey.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: ECC5C079-C9A0-4159-A039-EE216897D686 @@ -55,7 +55,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -79,4 +79,3 @@ This cmdlet does not accept any input. ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayConnectionVpnDeviceConfigScript.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayConnectionVpnDeviceConfigScript.md index c97a63497381..daae8b3c5cc7 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayConnectionVpnDeviceConfigScript.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayConnectionVpnDeviceConfigScript.md @@ -55,7 +55,7 @@ Name of the VPN device model/family. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -70,7 +70,7 @@ Name of the VPN device vendor. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -85,7 +85,7 @@ Firmware version of the VPN device. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -115,7 +115,7 @@ The resource group name. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -169,4 +169,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayLearnedRoute.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayLearnedRoute.md index f5efe4abd3ed..a9de78bd2abc 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayLearnedRoute.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewayLearnedRoute.md @@ -63,7 +63,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -93,7 +93,7 @@ Virtual network gateway resource group's name ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -131,4 +131,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewaySupportedVpnDevice.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewaySupportedVpnDevice.md index 4845b729e194..ad8321fdbf15 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewaySupportedVpnDevice.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkGatewaySupportedVpnDevice.md @@ -83,7 +83,7 @@ The resource group name. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -106,4 +106,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkPeering.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkPeering.md index 5ed180343c8c..26b2c0510a2d 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkPeering.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkPeering.md @@ -53,7 +53,7 @@ Specifies the virtual network peering name. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -68,7 +68,7 @@ Specifies the resource group name that the virtual network peering belongs to. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -83,7 +83,7 @@ Specifies the virtual network name that this cmdlet gets. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkSubnetConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkSubnetConfig.md index ad4bb9635510..153b3237ec8b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkSubnetConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkSubnetConfig.md @@ -58,7 +58,7 @@ Specifies the name of the subnet configuration that this cmdlet gets. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -73,7 +73,7 @@ Specifies the **VirtualNetwork** object that contains the subnet configuration t ```yaml Type: PSVirtualNetwork Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkUsageList.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkUsageList.md index b3c0b43c0bae..1cacbadfcbdc 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkUsageList.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkUsageList.md @@ -66,7 +66,7 @@ Specifies the name of the virtual network to show usages for. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -81,7 +81,7 @@ Specifies the name of the resource group that virtual network belongs to. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -104,4 +104,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientConfiguration.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientConfiguration.md index ee45607838fd..dda1ef43d853 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientConfiguration.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientConfiguration.md @@ -68,7 +68,7 @@ The resource group name. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -121,4 +121,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientIpsecParameter.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientIpsecParameter.md new file mode 100644 index 000000000000..b7c2beb8a9a0 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientIpsecParameter.md @@ -0,0 +1,94 @@ +--- +external help file: Microsoft.Azure.Commands.Network.dll-Help.xml +Module Name: AzureRM.Network +online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.network/get-azurermvpnclientipsecparameter +schema: 2.0.0 +--- + +# Get-AzureRmVpnClientIpsecParameter + +## SYNOPSIS +Gets the vpn Ipsec parameters set on Virtual Network Gateway for Point to site connections. + +## SYNTAX + +``` +Get-AzureRmVpnClientIpsecParameter [-Name ] -ResourceGroupName + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The Virtual Network Gateway is the object representing your gateway in Azure. + +The **Get-AzureRmVpnClientIpsecParameter** cmdlet returns the object of your vpn ipsec parameters set on gateway in Azure based on Gateway Name and Resource Group Name. + +## EXAMPLES + +### 1: Gets the vpn Ipsec parameters set on Virtual Network Gateway for Point to site connections. +``` +PS C:\> $VpnClientIPsecParameters = Get-AzureRmVpnClientIpsecParameter -Name myGateway -ResourceGroupName myRG +``` + +Returns the object of the vpn ipsec parameters set on the Virtual Network Gateway with the name "myGateway" within the resource group "myRG" + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The resource name. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ResourceName + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters + +## NOTES + +## RELATED LINKS diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientPackage.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientPackage.md index 7349870da891..0aae40183db2 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientPackage.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientPackage.md @@ -58,7 +58,7 @@ Valid values are Amd64 and X86. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Amd64, X86 Required: True @@ -76,7 +76,7 @@ Resource groups categorize items to help simplify inventory management and gener ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -91,7 +91,7 @@ Specifies the name of the virtual network gateway where the client package infor ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientRevokedCertificate.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientRevokedCertificate.md index 8d40734b6918..29f82e043f4f 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientRevokedCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientRevokedCertificate.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 05626BF7-F886-4C76-8FC2-DDF783DEB539 @@ -66,7 +66,7 @@ Resource groups categorize items to help simplify inventory management and gener ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -81,7 +81,7 @@ Specifies the name of the virtual network gateway where the revoked certificate ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientRootCertificate.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientRootCertificate.md index f2fe0ed4a387..b2554f815880 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientRootCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVpnClientRootCertificate.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 16754F70-9619-4F68-86E9-5C8B27812707 @@ -68,7 +68,7 @@ Resource groups categorize items to help simplify inventory management and gener ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -83,7 +83,7 @@ Specifies the name of the virtual network gateway where the root certificate is ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Move-AzureRmExpressRouteCircuit.md b/src/ResourceManager/Network/Commands.Network/help/Move-AzureRmExpressRouteCircuit.md index cf365e3024e3..211b7e25d292 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Move-AzureRmExpressRouteCircuit.md +++ b/src/ResourceManager/Network/Commands.Network/help/Move-AzureRmExpressRouteCircuit.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: F845ED42-A7C1-4CCC-9AD8-E9A91C3EEC7A @@ -41,7 +41,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -71,7 +71,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -86,7 +86,7 @@ The name of the Azure location where the ExpressRoute circuit resides. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -116,7 +116,7 @@ The name of the resource group that will contain the ExpressRoute circuit being ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -131,7 +131,7 @@ The Service Key used by the ExpressRoute circuit in the classic deployment model ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -148,7 +148,7 @@ Key-value pairs in the form of a hash table. For example: ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGateway.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGateway.md index db92255c267c..5bd24500b4f5 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGateway.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 1F5066C6-9756-47B4-886C-C52755809926 @@ -29,8 +29,8 @@ New-AzureRmApplicationGateway -Name -ResourceGroupName -Locati -RequestRoutingRules [-RedirectConfigurations ] [-WebApplicationFirewallConfiguration ] - [-EnableHttp2] [-Tag ] [-Force] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-EnableHttp2] [-Tag ] [-Force] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION @@ -105,7 +105,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -120,7 +120,7 @@ Specifies authentication certificates for the application gateway. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -135,7 +135,7 @@ Specifies the list of back-end address pools for the application gateway. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -150,7 +150,7 @@ Specifies the list of back-end HTTP settings for the application gateway. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -180,12 +180,12 @@ Whether HTTP2 is enabled. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named Default value: None -Accept pipeline input: True (ByPropertyName) +Accept pipeline input: False Accept wildcard characters: False ``` @@ -195,7 +195,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -210,7 +210,7 @@ Specifies a list of front-end IP configurations for the application gateway. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -225,7 +225,7 @@ Specifies a list of front-end ports for the application gateway. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -240,7 +240,7 @@ Specifies a list of IP configurations for the application gateway. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -255,7 +255,7 @@ Specifies a list of HTTP listeners for the application gateway. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -270,7 +270,7 @@ Specifies the region in which to create the application gateway. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -300,7 +300,7 @@ Specifies probes for the application gateway. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -315,7 +315,7 @@ The list of redirect configuration ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -330,7 +330,7 @@ Specifies a list of request routing rules for the application gateway. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -345,7 +345,7 @@ Specifies the name of the resource group in which to create the application gate ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -360,7 +360,7 @@ Specifies the stock keeping unit (SKU) of the application gateway. ```yaml Type: PSApplicationGatewaySku Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -375,7 +375,7 @@ Specifies the list of Secure Sockets Layer (SSL) certificates for the applicatio ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -390,7 +390,7 @@ Specifies an SSL policy for the application gateway. ```yaml Type: PSApplicationGatewaySslPolicy Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -407,7 +407,7 @@ Key-value pairs in the form of a hash table. For example: ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -422,7 +422,7 @@ Specifies URL path maps for the application gateway. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -438,7 +438,7 @@ Get-AzureRmApplicationGatewayWebApplicationFirewallConfiguration cmdlet to get a ```yaml Type: PSApplicationGatewayWebApplicationFirewallConfiguration Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayAuthenticationCertificate.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayAuthenticationCertificate.md index ea8155a32d90..3b37ecc3e66b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayAuthenticationCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayAuthenticationCertificate.md @@ -31,7 +31,7 @@ Specifies the path of the authentication certificate. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -61,7 +61,7 @@ Specifies a name for the authentication certificate. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayBackendAddressPool.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayBackendAddressPool.md index 5ee28769d84f..0167736874a7 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayBackendAddressPool.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayBackendAddressPool.md @@ -48,7 +48,7 @@ Specifies a list of back-end FQDNs that this cmdlet associates with the back-end ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -63,7 +63,7 @@ Specifies a list of back-end IP addresses that this cmdlet associates with the b ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -93,7 +93,7 @@ Specifies the name of the back-end server pool that this cmdlet creates. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayBackendHttpSettings.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayBackendHttpSettings.md index 302a21ac60b2..79b14c0883e7 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayBackendHttpSettings.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayBackendHttpSettings.md @@ -18,8 +18,8 @@ New-AzureRmApplicationGatewayBackendHttpSettings -Name -Port -P [-ConnectionDraining ] [-ProbeId ] [-Probe ] [-AuthenticationCertificates ] - [-PickHostNameFromBackendAddress] [-HostName ] [-AffinityCookieName ] - [-Path ] [-DefaultProfile ] [] + [-PickHostNameFromBackendAddress] [-HostName ] [-AffinityCookieName ] [-Path ] + [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -44,7 +44,7 @@ Cookie name to use for the affinity cookie ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -59,7 +59,7 @@ Specifies authentication certificates for the application gateway. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -74,7 +74,7 @@ Connection draining of the backend http settings resource. ```yaml Type: PSApplicationGatewayConnectionDraining Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -89,7 +89,7 @@ Specifies whether cookie-based affinity should be enabled or disabled for the ba ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Enabled, Disabled Required: True @@ -120,7 +120,7 @@ Sets host header to be sent to the backend servers. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -135,7 +135,7 @@ Specifies the name of the back-end HTTP settings that this cmdlet creates. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -151,7 +151,7 @@ If no value is provided for this parameter, then no path will be prefixed. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -166,7 +166,7 @@ Flag if host header should be picked from the host name of the backend server. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -181,7 +181,7 @@ Specifies the port of the back-end server pool. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -196,7 +196,7 @@ Specifies a probe to associate with the back-end server pool. ```yaml Type: PSApplicationGatewayProbe Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -211,7 +211,7 @@ Specifies the ID of the probe to associate with the back-end server pool. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -227,7 +227,7 @@ The acceptable values for this parameter are: Http and Https. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Http, Https Required: True @@ -243,7 +243,7 @@ Specifies a request time-out value. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayConnectionDraining.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayConnectionDraining.md index b2ffd82be3c6..0a243c07cdf1 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayConnectionDraining.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayConnectionDraining.md @@ -53,7 +53,7 @@ Acceptable values are from 1 second to 3600 seconds. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -68,7 +68,7 @@ Whether connection draining is enabled or not. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayFirewallDisabledRuleGroupConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayFirewallDisabledRuleGroupConfig.md index 0389a9f4df83..da478fe024e3 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayFirewallDisabledRuleGroupConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayFirewallDisabledRuleGroupConfig.md @@ -53,7 +53,7 @@ The name of the rule group that will be disabled. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -69,7 +69,7 @@ If null, all rules of the rule group will be disabled. ```yaml Type: System.Collections.Generic.List`1[System.Int32] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayFrontendIPConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayFrontendIPConfig.md index 03cc495c474f..d9fa43febe3f 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayFrontendIPConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayFrontendIPConfig.md @@ -91,7 +91,7 @@ Specifies the name of the front-end IP configuration that this cmdlet creates. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -108,7 +108,7 @@ This IP is statically allocated from the subnet. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -123,7 +123,7 @@ Specifies the public IP address object which this cmdlet associates with the fro ```yaml Type: PSPublicIpAddress Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -138,7 +138,7 @@ Specifies the public IP address ID which this cmdlet associates with the front-e ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -156,7 +156,7 @@ If *PrivateIPAddress* is not specified, one of the IP addresses from this subnet ```yaml Type: PSSubnet Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -174,7 +174,7 @@ If *PrivateIPAddress* is not specified, one of the IP addresses from this subnet ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayFrontendPort.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayFrontendPort.md index d0598cc81dce..a9297de297ec 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayFrontendPort.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayFrontendPort.md @@ -53,7 +53,7 @@ Specifies the name of the front-end port that this cmdlet creates. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -68,7 +68,7 @@ Specifies the port number of the front-end port. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayHttpListener.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayHttpListener.md index cbad5e95149f..6ec9bda11ee9 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayHttpListener.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayHttpListener.md @@ -73,7 +73,7 @@ Specifies front-end IP configuration object for the HTTP listener. ```yaml Type: PSApplicationGatewayFrontendIPConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -88,7 +88,7 @@ Specifies the ID of the front-end IP configuration for the HTTP listener. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -103,7 +103,7 @@ Specifies the front-end port for the HTTP listener. ```yaml Type: PSApplicationGatewayFrontendPort Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -118,7 +118,7 @@ Specifies the ID of the front-end port object for the HTTP listener. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -133,7 +133,7 @@ Specifies the host name of the application gateway HTTP listener. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -148,7 +148,7 @@ Specifies the name of the HTTP listener that this cmdlet creates. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -163,7 +163,7 @@ Specifies the protocol that the HTTP listener uses. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Http, Https Required: True @@ -177,7 +177,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: true, false Required: False @@ -193,7 +193,7 @@ Specifies the SSL certificate object for the HTTP listener. ```yaml Type: PSApplicationGatewaySslCertificate Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -208,7 +208,7 @@ Specifies the ID of the SSL certificate for the HTTP listener. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayIPConfiguration.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayIPConfiguration.md index 906e7c8e5d00..ed704711cd3e 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayIPConfiguration.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayIPConfiguration.md @@ -67,7 +67,7 @@ Specifies the name of the IP configuration to create. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -83,7 +83,7 @@ This is the subnet in which the application gateway is deployed. ```yaml Type: PSSubnet Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -99,7 +99,7 @@ This is the subnet in which the application gateway would be deployed. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayPathRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayPathRuleConfig.md index 5f125e59f53c..d488399069e7 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayPathRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayPathRuleConfig.md @@ -78,7 +78,7 @@ If you use this parameter you cannot use the *DefaultBackendAddressPoolId* param ```yaml Type: PSApplicationGatewayBackendAddressPool Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -101,7 +101,7 @@ These IP addresses should either belong to the virtual network subnet or should ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -126,7 +126,7 @@ If you use this parameter you cannot use the *DefaultBackendHttpSettingsId* para ```yaml Type: PSApplicationGatewayBackendHttpSettings Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -149,7 +149,7 @@ If you use this parameter you cannot use the *DefaultBackendHttpSettings* parame ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -179,7 +179,7 @@ Specifies the name of the path rule configuration that this cmdlet creates. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -194,7 +194,7 @@ Specifies one or more application gateway path rules. ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -209,7 +209,7 @@ Application gateway RedirectConfiguration ```yaml Type: PSApplicationGatewayRedirectConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -224,7 +224,7 @@ ID of the application gateway RedirectConfiguration ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayProbeConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayProbeConfig.md index 03438b153cff..2c6b40d948f7 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayProbeConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayProbeConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.network/new-azurermapplicationgatewayprobeconfig @@ -54,7 +54,7 @@ Specifies the host name that this cmdlet sends the probe. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -71,7 +71,7 @@ This value is between 1 second and 86400 seconds. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -87,7 +87,7 @@ Default value is empty ```yaml Type: PSApplicationGatewayProbeHealthResponseMatch Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -103,7 +103,7 @@ Default value is 0 ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -118,7 +118,7 @@ Specifies the name of the probe. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -135,7 +135,7 @@ The probe is sent to \://\:\\. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -151,7 +151,7 @@ Default value is false ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -166,7 +166,7 @@ Specifies the protocol used to send probe. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Http, Https Required: True @@ -184,7 +184,7 @@ Valid values are between 1 second and 86400 seconds. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -201,7 +201,7 @@ Valid values are between 1 second and 20 seconds. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayProbeHealthResponseMatch.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayProbeHealthResponseMatch.md index 9add67957042..1829e543c299 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayProbeHealthResponseMatch.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayProbeHealthResponseMatch.md @@ -39,7 +39,7 @@ Default value is empty ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -69,7 +69,7 @@ Allowed ranges of healthy status codes.Default range of healthy status codes is ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -92,4 +92,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayRedirectConfiguration.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayRedirectConfiguration.md index b636b8735189..f97923d62a2e 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayRedirectConfiguration.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayRedirectConfiguration.md @@ -69,7 +69,7 @@ Default is true. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -85,7 +85,7 @@ Default is true. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -100,7 +100,7 @@ The name of the Redirect Configuration ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -115,7 +115,7 @@ The type of redirect ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Permanent, Found, SeeOther, Temporary Required: True @@ -131,7 +131,7 @@ HTTPListener to redirect the request to ```yaml Type: PSApplicationGatewayHttpListener Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -146,7 +146,7 @@ ID of listener to redirect the request to ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -161,7 +161,7 @@ Target URL fo redirection ```yaml Type: String Parameter Sets: SetByURL -Aliases: +Aliases: Required: False Position: Named @@ -184,4 +184,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayRequestRoutingRule.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayRequestRoutingRule.md index 455809dd5fe3..8e21709587b5 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayRequestRoutingRule.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayRequestRoutingRule.md @@ -51,7 +51,7 @@ Specifies the back-end address pool, as an object, for the request routing rule ```yaml Type: PSApplicationGatewayBackendAddressPool Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -66,7 +66,7 @@ Specifies the back-end address pool ID of the request routing rule to create. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -81,7 +81,7 @@ Specifies the back-end HTTP settings, as an object, for the request routing rule ```yaml Type: PSApplicationGatewayBackendHttpSettings Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -96,7 +96,7 @@ Specifies the back-end HTTP settings ID of the request routing rule to create. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -126,7 +126,7 @@ Specifies the back-end HTTP listener for the request routing rule to create. ```yaml Type: PSApplicationGatewayHttpListener Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -141,7 +141,7 @@ Specifies the backend HTTP listener ID for the request routing rule to create. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -156,7 +156,7 @@ Specifies the name of the request routing rule that this cmdlet creates. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -171,7 +171,7 @@ Application gateway RedirectConfiguration ```yaml Type: PSApplicationGatewayRedirectConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -186,7 +186,7 @@ ID of the application gateway RedirectConfiguration ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -201,7 +201,7 @@ Specifies type of the request routing rule. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Basic, PathBasedRouting Required: True @@ -215,7 +215,7 @@ Accept wildcard characters: False ```yaml Type: PSApplicationGatewayUrlPathMap Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -228,7 +228,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewaySku.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewaySku.md index 97cfe94a1c0c..033c0e357644 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewaySku.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewaySku.md @@ -38,7 +38,7 @@ Specifies the number of instances of an application gateway. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -76,7 +76,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Standard_Small, Standard_Medium, Standard_Large, WAF_Medium, WAF_Large Required: True @@ -96,7 +96,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Standard, WAF Required: True diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewaySslCertificate.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewaySslCertificate.md index fab6c0b27e90..e8d419eb7cec 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewaySslCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewaySslCertificate.md @@ -39,7 +39,7 @@ Specifies the path of the .pfx file of the SSL certificate that this cmdlet crea ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -69,7 +69,7 @@ Specifies the name of the SSL certificate that this cmdlet creates. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -84,7 +84,7 @@ Specifies the password of the SSL that this cmdlet creates. ```yaml Type: SecureString Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewaySslPolicy.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewaySslPolicy.md index e943b8f961ce..054615f3b4ea 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewaySslPolicy.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewaySslPolicy.md @@ -41,7 +41,7 @@ Ssl cipher suites to be enabled in the specified order to application gateway ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -76,7 +76,7 @@ The acceptable values for this parameter are: ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Accepted values: TLSv1_0, TLSv1_1, TLSv1_2 Required: False @@ -92,7 +92,7 @@ Minimum version of Ssl protocol to be supported on application gateway ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: TLSv1_0, TLSv1_1, TLSv1_2 Required: False @@ -108,7 +108,7 @@ Name of Ssl predefined policy ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -123,7 +123,7 @@ Type of Ssl Policy ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Predefined, Custom Required: False diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayUrlPathMapConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayUrlPathMapConfig.md index f6df920d543b..5ded2c4a3eab 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayUrlPathMapConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayUrlPathMapConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: F312FD6E-AF0F-4901-B763-741E1B46A654 @@ -51,7 +51,7 @@ Specifies the default backend address pool to route in case none of the rules sp ```yaml Type: PSApplicationGatewayBackendAddressPool Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -66,7 +66,7 @@ Specifies the default backend address pool ID. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -81,7 +81,7 @@ Specifies the default backend HTTP settings to use in case none of the rules spe ```yaml Type: PSApplicationGatewayBackendHttpSettings Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -96,7 +96,7 @@ Specifies the default backend HTTP settings ID. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -126,7 +126,7 @@ Application gateway default RedirectConfiguration ```yaml Type: PSApplicationGatewayRedirectConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -141,7 +141,7 @@ ID of the application gateway default RedirectConfiguration ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -156,7 +156,7 @@ Specifies the URL path map name that this cmdlet creates. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -172,7 +172,7 @@ Note that the path rules are order sensitive, they are applied in order they are ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayWebApplicationFirewallConfiguration.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayWebApplicationFirewallConfiguration.md index 01a81edb2939..59c74b36dd54 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayWebApplicationFirewallConfiguration.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationGatewayWebApplicationFirewallConfiguration.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 76DB6AF5-BF6F-436C-8500-626468F84466 @@ -59,7 +59,7 @@ The disabled rule groups. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -74,7 +74,7 @@ Indicates whether the WAF is enabled. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -93,7 +93,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Detection, Prevention Required: True @@ -112,7 +112,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: OWASP Required: False @@ -132,7 +132,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: 3.0, 2.2.9 Required: False diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationSecurityGroup.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationSecurityGroup.md index 22f93125008f..44b8ef3299a0 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationSecurityGroup.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmApplicationSecurityGroup.md @@ -38,7 +38,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -68,7 +68,7 @@ Do not ask for confirmation if you want to overwrite a resource. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -83,7 +83,7 @@ The location. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -113,7 +113,7 @@ The resource group name of the application security group. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -128,7 +128,7 @@ A hashtable which represents resource tags. ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmDdosProtectionPlan.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmDdosProtectionPlan.md index f0d2183f12ce..ecf796b1658d 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmDdosProtectionPlan.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmDdosProtectionPlan.md @@ -79,7 +79,6 @@ DdosProtectionPlan : { "Id": "/subscriptions/d1dbd366-9871-45ac-84b7-fb318152a9e0/resourceGroups/ResourceGroupName/providers/Microsoft.Network/ddosProtectionPlans/DdosProtectionPlanName" } EnableVmProtection : false - ``` First, we create a new DDoS Protection plan with the **New-AzureRmDdosProtectionPlan** command. diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmExpressRouteCircuit.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmExpressRouteCircuit.md index d51fc7a04a79..37a0a0a3309b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmExpressRouteCircuit.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmExpressRouteCircuit.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: E40CAF2F-ED57-4AC1-8B9A-E48042DD8F91 @@ -52,7 +52,7 @@ circuit. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -67,7 +67,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -82,7 +82,7 @@ A list of circuit authorizations. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -97,7 +97,7 @@ The bandwidth of the circuit. This must be a value that is supported by the serv ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -127,7 +127,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -142,7 +142,7 @@ The location of the circuit. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -172,7 +172,7 @@ A list peer configurations. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -187,7 +187,7 @@ The name of the peering location supported by the service provider. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -202,7 +202,7 @@ The resource group that will contain the circuit. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -218,7 +218,7 @@ Get-AzureRmExpressRouteServiceProvider cmdlet. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -235,7 +235,7 @@ you can't change the type from UnlimitedData to MeteredData. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: MeteredData, UnlimitedData Required: False @@ -251,7 +251,7 @@ The tier of service for the circuit. Possible values for this parameter are: `St ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Standard, Premium Required: False @@ -269,7 +269,7 @@ Key-value pairs in the form of a hash table. For example: ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmExpressRouteCircuitAuthorization.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmExpressRouteCircuitAuthorization.md index 6d1e80526d98..ebf409b45c61 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmExpressRouteCircuitAuthorization.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmExpressRouteCircuitAuthorization.md @@ -69,7 +69,7 @@ Specifies a unique name for the new ExpressRoute circuit authorization. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmExpressRouteCircuitPeeringConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmExpressRouteCircuitPeeringConfig.md index c31665dcb77b..aa0fad477b94 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmExpressRouteCircuitPeeringConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmExpressRouteCircuitPeeringConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 5E9C02BE-9DCC-4865-95D2-6B69D373BE77 @@ -100,7 +100,7 @@ The legacy mode of the Peering ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -118,7 +118,7 @@ a Routing Registry Name (RIR / IRR). ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -134,7 +134,7 @@ the AS number to which they are registered. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -149,7 +149,7 @@ The Routing Registry Name (RIR / IRR) to which the AS number and prefixes are re ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -164,7 +164,7 @@ The name of the peering configuration to be created. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -179,7 +179,7 @@ PeerAddressType ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: IPv4, IPv6 Required: False @@ -196,7 +196,7 @@ AzurePublicPeering. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -212,7 +212,7 @@ The acceptable values for this parameter are: `AzurePrivatePeering`, `AzurePubli ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: AzurePrivatePeering, AzurePublicPeering, MicrosoftPeering Required: True @@ -230,7 +230,7 @@ router interface. Azure will configure the next even-numbered address to the Azu ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -245,7 +245,7 @@ This is an existing RouteFilter object. ```yaml Type: PSRouteFilter Parameter Sets: MicrosoftPeeringConfigRoutFilter -Aliases: +Aliases: Required: True Position: Named @@ -260,7 +260,7 @@ This is the resource Id of an existing RouteFilter object. ```yaml Type: String Parameter Sets: MicrosoftPeeringConfigRoutFilterId -Aliases: +Aliases: Required: True Position: Named @@ -277,7 +277,7 @@ router interface. Azure will configure the next even-numbered address to the Azu ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -292,7 +292,7 @@ This is an optional MD5 hash used as a pre-shared key for the peering configurat ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -307,7 +307,7 @@ This is the Id number of the VLAN assigned for this peering. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmIpsecPolicy.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmIpsecPolicy.md index c40f57c4aac3..3d1ec7b7bcf8 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmIpsecPolicy.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmIpsecPolicy.md @@ -54,7 +54,7 @@ The DH Groups used in IKE Phase 1 for initial SA ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: None, DHGroup1, DHGroup14, DHGroup2, DHGroup2048, DHGroup24, ECP256, ECP384 Required: True @@ -70,7 +70,7 @@ The IKE encryption algorithm (IKE Phase 2) ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: DES, DES3, AES128, AES192, AES256 Required: True @@ -86,7 +86,7 @@ The IKE integrity algorithm (IKE Phase 2) ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: MD5, SHA1, SHA256, SHA384 Required: True @@ -102,7 +102,7 @@ The IPSec encryption algorithm (IKE Phase 1) ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: None, DES, DES3, AES128, AES192, AES256, GCMAES128, GCMAES192, GCMAES256 Required: True @@ -118,7 +118,7 @@ The IPSec integrity algorithm (IKE Phase 1) ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: MD5, SHA1, SHA256, GCMAES128, GCMAES192, GCMAES256 Required: True @@ -134,7 +134,7 @@ The DH Groups used in IKE Phase 2 for new child SA ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: None, PFS1, PFS2, PFS2048, PFS24, ECP256, ECP384 Required: True @@ -150,7 +150,7 @@ The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload si ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -165,7 +165,7 @@ The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime i ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -188,4 +188,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancer.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancer.md index e929f1cae670..48282b4423c6 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancer.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancer.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: F1522074-7EEA-4DCF-AC16-26FE8E654720 @@ -62,7 +62,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -77,7 +77,7 @@ Specifies a backend address pool to associate with a load balancer. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -107,7 +107,7 @@ Indicates that this cmdlet creates a load balancer even if a load balancer with ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -122,7 +122,7 @@ Specifies a list of front-end IP addresses to associate with a load balancer. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -135,7 +135,7 @@ Accept wildcard characters: False ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -150,7 +150,7 @@ Specifies a list of inbound network address translation (NAT) rules to associate ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -165,7 +165,7 @@ Specifies a list of load balancing rules to associate with a load balancer. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -180,7 +180,7 @@ Specifies the region in which to create a load balancer. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -210,7 +210,7 @@ Specifies a list of probes to associate with a load balancer. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -225,7 +225,7 @@ Specifies the name of the resource group in which to create a load balancer. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -240,7 +240,7 @@ The load balancer Sku name. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Basic, Standard Required: False @@ -258,7 +258,7 @@ Key-value pairs in the form of a hash table. For example: ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerBackendAddressPoolConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerBackendAddressPoolConfig.md index f0e5c60a4d2b..84d3886d578b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerBackendAddressPoolConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerBackendAddressPoolConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 67AD15B0-94EB-486F-8C17-606EA5F702D3 @@ -53,7 +53,7 @@ Specifies the name of the address pool configuration to create. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerFrontendIpConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerFrontendIpConfig.md index 53607669ad19..381b0c984e2e 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerFrontendIpConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerFrontendIpConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: D639E4F5-5AAD-4F13-9B48-70E90D2DFFCA @@ -79,7 +79,7 @@ Specifies the front-end IP configuration that this cmdlet creates. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -95,7 +95,7 @@ Specify this parameter only if you also specify the *Subnet* parameter. ```yaml Type: String Parameter Sets: SetByResourceSubnet, SetByResourceIdSubnet -Aliases: +Aliases: Required: False Position: Named @@ -110,7 +110,7 @@ Specifies the **PublicIpAddress** object to associate with a front-end IP config ```yaml Type: PSPublicIpAddress Parameter Sets: SetByResourcePublicIpAddress -Aliases: +Aliases: Required: True Position: Named @@ -125,7 +125,7 @@ Specifies the ID of the **PublicIpAddress** object to associate with a front-end ```yaml Type: String Parameter Sets: SetByResourceIdPublicIpAddress -Aliases: +Aliases: Required: True Position: Named @@ -140,7 +140,7 @@ Specifies the **Subnet** object in which to create a front-end IP configuration. ```yaml Type: PSSubnet Parameter Sets: SetByResourceSubnet -Aliases: +Aliases: Required: True Position: Named @@ -155,7 +155,7 @@ Specifies the ID of the subnet in which to create a front-end IP configuration. ```yaml Type: String Parameter Sets: SetByResourceIdSubnet -Aliases: +Aliases: Required: True Position: Named @@ -170,7 +170,7 @@ A list of availability zones denoting the IP allocated for the resource needs to ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerInboundNatPoolConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerInboundNatPoolConfig.md index 71c5887b166b..127536d55548 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerInboundNatPoolConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerInboundNatPoolConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 61C34433-A16A-4ACF-A318-1C7D9E49579F @@ -37,7 +37,7 @@ New-AzureRmLoadBalancerInboundNatPoolConfig -Name ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -65,7 +65,7 @@ Accept wildcard characters: False ```yaml Type: PSFrontendIPConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -78,7 +78,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -91,7 +91,7 @@ Accept wildcard characters: False ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -104,7 +104,7 @@ Accept wildcard characters: False ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -117,7 +117,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -130,7 +130,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Tcp, Udp Required: True @@ -155,4 +155,3 @@ This cmdlet does not accept any input. ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerInboundNatRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerInboundNatRuleConfig.md index 212f9be4a81e..049841d99dd5 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerInboundNatRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerInboundNatRuleConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 4AA587F8-4967-439D-84B6-EDC24235D3F5 @@ -56,7 +56,7 @@ Specifies the backend port for traffic that is matched by this rule configuratio ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -86,7 +86,7 @@ Indicates that this cmdlet enables a floating IP address for a rule configuratio ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -101,7 +101,7 @@ Specifies a list of front-end IP addresses to associate with a load balancer rul ```yaml Type: PSFrontendIPConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -116,7 +116,7 @@ Specifies the ID for a front-end IP address configuration. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -131,7 +131,7 @@ Specifies the front-end port that is matched by a load balancer rule configurati ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -146,7 +146,7 @@ Specifies the length of time, in minutes, for which the state of conversations i ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -161,7 +161,7 @@ Specifies the name of the rule configuration that this cmdlet creates. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -180,7 +180,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Tcp, Udp Required: False diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerProbeConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerProbeConfig.md index c5eaa8e65a13..cd1b27d003c9 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerProbeConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerProbeConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 2049CB74-E3CB-4294-B97C-B41E91209A1E @@ -54,7 +54,7 @@ Specifies the interval, in seconds, between probes to each instance of a load-ba ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -69,7 +69,7 @@ Specifies the name of the probe configuration to create. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -84,7 +84,7 @@ Specifies the port on which the new probe should connect to a load-balanced serv ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -99,7 +99,7 @@ Specifies the number of per-instance consecutive failures for an instance to be ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -115,7 +115,7 @@ The acceptable values for this parameter are: Tcp or Http. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Tcp, Http Required: False @@ -131,7 +131,7 @@ Specifies the path in a load-balanced service to probe to determine health. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerRuleConfig.md index 9f94f60c0ce7..704e2ac02b99 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerRuleConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: FD84D530-491B-4075-A6B4-2E1C46AD92D4 @@ -58,7 +58,7 @@ Specifies a **BackendAddressPool** object to associate with a load balancer rule ```yaml Type: PSBackendAddressPool Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -73,7 +73,7 @@ Specifies the ID of a **BackendAddressPool** object to associate with a load bal ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -88,7 +88,7 @@ Specifies the backend port for traffic that is matched by this load balancer rul ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -118,7 +118,7 @@ Configures SNAT for the VMs in the backend pool to use the publicIP address spec ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -133,7 +133,7 @@ Indicates that this cmdlet enables a floating IP address for a rule configuratio ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -148,7 +148,7 @@ Specifies a list of front-end IP addresses to associate with a load balancer rul ```yaml Type: PSFrontendIPConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -163,7 +163,7 @@ Specifies the ID for a front-end IP address configuration. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -178,7 +178,7 @@ Specifies the front-end port that is matched by a load balancer rule configurati ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -193,7 +193,7 @@ Specifies the length of time, in minutes, that the state of conversations is mai ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -213,7 +213,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Default, SourceIP, SourceIPProtocol Required: False @@ -229,7 +229,7 @@ Specifies the name of the load balancing rule that this cmdlet creates. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -244,7 +244,7 @@ Specifies a probe to associate with a load balancer rule configuration. ```yaml Type: PSProbe Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -259,7 +259,7 @@ Specifies the ID of the probe to associate with a load balancer rule configurati ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -275,7 +275,7 @@ The acceptable values for this parameter are: Tcp or Udp. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Tcp, Udp, All Required: False diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLocalNetworkGateway.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLocalNetworkGateway.md index 6b716c909bb7..858e0688b2dc 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLocalNetworkGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmLocalNetworkGateway.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 59BE802E-C061-4E25-A446-B00B0BA36019 @@ -44,7 +44,7 @@ Creates the object of the Local Network Gateway with the name "myLocalGW" within ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -59,7 +59,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -72,7 +72,7 @@ Accept wildcard characters: False ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -85,7 +85,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -115,7 +115,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -128,7 +128,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -141,7 +141,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -167,7 +167,7 @@ Accept wildcard characters: False ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -182,7 +182,7 @@ Specifies the resource group that the local network gateway belongs to. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -199,7 +199,7 @@ Key-value pairs in the form of a hash table. For example: ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkInterface.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkInterface.md index 0b2294529964..7568e1178452 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkInterface.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkInterface.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: B2F2082F-4BAA-4FBE-8846-2D436A433570 @@ -97,7 +97,7 @@ Specifies an **ApplicationGatewayBackendAddressPool** object. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -112,7 +112,7 @@ Specifies the ID of a **ApplicationGatewayBackendAddressPool** object. ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -127,7 +127,7 @@ Specifies a collection of application security group references to which the net ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -142,7 +142,7 @@ Specifies a collection of application security group references to which the net ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -157,7 +157,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -187,7 +187,7 @@ Specifies the DNS server for the network interface. ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -202,7 +202,7 @@ Enables accelerated networking. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -218,7 +218,7 @@ IP forwarding allows a virtual machine to receive traffic addressed to other des ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -233,7 +233,7 @@ Forces the creation of the network interface even if a network interface with th ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -248,7 +248,7 @@ Specifies the internal DNS name label for the new network interface. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -263,7 +263,7 @@ Specifies the IP configuration that this cmdlet uses for the network interface. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration] Parameter Sets: SetByIpConfigurationResource, SetByIpConfigurationResourceId -Aliases: +Aliases: Required: True Position: Named @@ -278,7 +278,7 @@ Specifies the name of an IP configuration. ```yaml Type: String Parameter Sets: SetByResourceId, SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -293,7 +293,7 @@ Specifies a **BackendAddressPool** object. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -308,7 +308,7 @@ Specifies the ID of a **BackendAddressPool** object. ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -323,7 +323,7 @@ Specifies an inbound NAT rule configuration for a load balancer. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -338,7 +338,7 @@ Specifies the ID of an inbound NAT rule configuration for a load balancer. ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -353,7 +353,7 @@ Specifies the region for a network interface. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -383,7 +383,7 @@ Specifies a **NetworkSecurityGroup** object. ```yaml Type: PSNetworkSecurityGroup Parameter Sets: SetByIpConfigurationResourceId, SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -398,7 +398,7 @@ Specifies the ID of a network security group. ```yaml Type: String Parameter Sets: SetByIpConfigurationResourceId, SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -413,7 +413,7 @@ Specifies a static IPv4 IP address to assign to this network interface. ```yaml Type: String Parameter Sets: SetByResourceId, SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -428,7 +428,7 @@ Specifies a **PublicIPAddress** object to assign to a network interface. ```yaml Type: PSPublicIpAddress Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -443,7 +443,7 @@ Specifies the ID of a **PublicIPAddress** object to assign to a network interfac ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -458,7 +458,7 @@ Specifies the name of a resource group that the network interface belongs to. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -474,7 +474,7 @@ This cmdlet creates a network interface for the subnet that this parameter speci ```yaml Type: PSSubnet Parameter Sets: SetByResource -Aliases: +Aliases: Required: True Position: Named @@ -489,7 +489,7 @@ Specifies the ID of the subnet for which to create a network interface. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: True Position: Named @@ -506,7 +506,7 @@ Key-value pairs in the form of a hash table. For example: ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkInterfaceIpConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkInterfaceIpConfig.md index 6f0fb8549da3..1250b4c012d9 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkInterfaceIpConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkInterfaceIpConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: D29C82CC-2080-48DA-880A-1AA83007E552 @@ -84,7 +84,7 @@ Specifies a collection of application gateway backend address pool references to ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -99,7 +99,7 @@ Specifies a collection of application gateway backend address pool references to ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -114,7 +114,7 @@ Specifies a collection of application security group references to which this ne ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -129,7 +129,7 @@ Specifies a collection of application security group references to which this ne ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -159,7 +159,7 @@ Specifies a collection of load balancer backend address pool references to which ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -174,7 +174,7 @@ Specifies a collection of load balancer backend address pool references to which ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -189,7 +189,7 @@ Specifies a collection of load balancer inbound Nat Rule references to which thi ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -204,7 +204,7 @@ Specifies a collection of load balancer inbound network address translation (NAT ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -219,7 +219,7 @@ Specifies the name of the network interface IP configuration. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -232,7 +232,7 @@ Accept wildcard characters: False ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -247,7 +247,7 @@ Specifies the static IP address of the network interface IP configuration. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -267,7 +267,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: IPv4, IPv6 Required: False @@ -284,7 +284,7 @@ This cmdlet creates a reference to a public IP Address to associate with this ne ```yaml Type: PSPublicIpAddress Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -299,7 +299,7 @@ This cmdlet creates a reference to a public IP Address to associate with this ne ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -315,7 +315,7 @@ This cmdlet creates a reference to a subnet in which this network interface IP c ```yaml Type: PSSubnet Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -330,7 +330,7 @@ Specifies a reference to a subnet in which this network interface IP configurati ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkSecurityGroup.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkSecurityGroup.md index 92b6f69be9e2..349a7a3bd6d9 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkSecurityGroup.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkSecurityGroup.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: A420B3E7-2FE9-4D0B-803E-AC28E5F23C59 @@ -58,7 +58,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -88,7 +88,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -103,7 +103,7 @@ Specifies the region for which to create a network security group. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -134,7 +134,7 @@ This cmdlet creates a network security group in the resource group that this par ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -149,7 +149,7 @@ Specifies a list of network security rule objects to create in a network securit ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -166,7 +166,7 @@ Key-value pairs in the form of a hash table. For example: ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkSecurityRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkSecurityRuleConfig.md index 770a15983856..b92108e8bdd6 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkSecurityRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkSecurityRuleConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 633FB5C9-BEB3-42A3-AF4F-A54CC3F9E0F7 @@ -70,7 +70,7 @@ The acceptable values for this parameter are: Allow and Deny. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Allow, Deny Required: False @@ -101,7 +101,7 @@ Specifies a description of the network security rule configuration to create. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -123,7 +123,7 @@ You can use tags such as VirtualNetwork, AzureLoadBalancer, and Internet. ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -138,7 +138,7 @@ The application security group set as destination for the rule. It cannot be use ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -153,7 +153,7 @@ The application security group set as destination for the rule. It cannot be use ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -173,7 +173,7 @@ The acceptable values for this parameter are: ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -189,7 +189,7 @@ The acceptable values for this parameter are: Inbound and Outbound. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Inbound, Outbound Required: False @@ -205,7 +205,7 @@ Specifies the name of the network security rule configuration that this cmdlet c ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -224,7 +224,7 @@ The lower the priority number, the higher the priority of the rule. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -244,7 +244,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Tcp, Udp, * Required: False @@ -267,7 +267,7 @@ You can also use tags such as VirtualNetwork, AzureLoadBalancer and Internet. ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -282,7 +282,7 @@ The application security group set as source for the rule. It cannot be used wit ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -297,7 +297,7 @@ The application security group set as source for the rule. It cannot be used wit ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -317,7 +317,7 @@ The acceptable values for this parameter are: ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkWatcher.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkWatcher.md index 5738b82701e6..546017575ff9 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkWatcher.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkWatcher.md @@ -61,7 +61,7 @@ Location. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -91,7 +91,7 @@ The resource group name. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -108,7 +108,7 @@ Key-value pairs in the form of a hash table. For example: ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkWatcherConnectionMonitor.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkWatcherConnectionMonitor.md index 1fcccb5e7604..c697a90a9367 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkWatcherConnectionMonitor.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkWatcherConnectionMonitor.md @@ -91,17 +91,17 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Confirm -Prompts you for confirmation before running the cmdlet. +### -ConfigureOnly +Configure connection monitor, but do not start it ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: cf +Aliases: Required: False Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` @@ -316,14 +316,13 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +### -Confirm +Prompts you for confirmation before running the cmdlet. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: wi +Aliases: cf Required: False Position: Named @@ -332,24 +331,24 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ConfigureOnly -Configure connection monitor, but do not start it +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: wi Required: False Position: Named -Default value: None +Default value: False 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). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkWatcherPacketCapture.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkWatcherPacketCapture.md index e0ff7946edfc..9a23f6fba720 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkWatcherPacketCapture.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkWatcherPacketCapture.md @@ -49,7 +49,7 @@ Filters can be applied to a given packet capture session, allowing you to custom ## EXAMPLES -### --- Example 1: Create a Packet Capture with multiple filters --- +### Example 1: Create a Packet Capture with multiple filters ``` $nw = Get-AzurermResource | Where {$_.ResourceType -eq "Microsoft.Network/networkWatchers" -and $_.Location -eq "WestCentralUS" } $networkWatcher = Get-AzureRmNetworkWatcher -Name $nw.Name -ResourceGroupName $nw.ResourceGroupName diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmPacketCaptureFilterConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmPacketCaptureFilterConfig.md index 90e2306830c6..908cb30c0d16 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmPacketCaptureFilterConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmPacketCaptureFilterConfig.md @@ -25,7 +25,7 @@ The New-AzureRmNetworkWatcherPacketCapture cmdlet can accept multiple filter obj ## EXAMPLES -### --- Example 1: Create a Packet Capture with multiple filters --- +### Example 1: Create a Packet Capture with multiple filters ``` $nw = Get-AzurermResource | Where {$_.ResourceType -eq "Microsoft.Network/networkWatchers" -and $_.Location -eq "WestCentralUS" } $networkWatcher = Get-AzureRmNetworkWatcher -Name $nw.Name -ResourceGroupName $nw.ResourceGroupName diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmPublicIpAddress.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmPublicIpAddress.md index a625827b1af0..e7a3c21163ec 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmPublicIpAddress.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmPublicIpAddress.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 8D84F81A-F6B5-413D-B349-50947FCD5CFC @@ -15,10 +15,11 @@ Creates a public IP address. ``` New-AzureRmPublicIpAddress [-Name ] -ResourceGroupName [-Location ] [-Sku ] - -AllocationMethod [-IpAddressVersion ] [-DomainNameLabel ] [-ReverseFqdn ] + -AllocationMethod [-IpAddressVersion ] [-DomainNameLabel ] [-IpTag ] - [-IdleTimeoutInMinutes ] [-Zone ] [-Tag ] - [-Force] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ReverseFqdn ] [-IdleTimeoutInMinutes ] + [-Zone ] [-Tag ] [-Force] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -71,7 +72,7 @@ The acceptable values for this parameter are: Static or Dynamic. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Dynamic, Static Required: True @@ -87,7 +88,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -117,7 +118,7 @@ Specifies the relative DNS name for a public IP address. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -132,7 +133,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -147,7 +148,7 @@ Specifies the idle time-out, in minutes. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -162,7 +163,7 @@ Specifies the version of the IP address. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: IPv4, IPv6 Required: False @@ -178,7 +179,7 @@ IpTag List. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -193,7 +194,7 @@ Specifies the region in which to create a public IP address. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -223,7 +224,7 @@ Specifies the name of the resource group in which to create a public IP address. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -238,7 +239,7 @@ Specifies a reverse fully qualified domain name (FQDN). ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -253,7 +254,7 @@ The public IP Sku name. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Basic, Standard Required: False @@ -271,7 +272,7 @@ Key-value pairs in the form of a hash table. For example: ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -286,7 +287,7 @@ A list of availability zones denoting the IP allocated for the resource needs to ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmPublicIpTag.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmPublicIpTag.md index 9810744bc003..cfde6012a69d 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmPublicIpTag.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmPublicIpTag.md @@ -13,8 +13,8 @@ Creates an IP Tag. ## SYNTAX ``` -New-AzureRmPublicIpTag -IpTagType -Tag [-DefaultProfile ] - [-WhatIf] [-Confirm] +New-AzureRmPublicIpTag -IpTagType -Tag [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION @@ -54,7 +54,7 @@ IpTag type Example:FirstPartyUsage ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: FirstPartyUsage, NetworkDomain Required: True @@ -70,7 +70,7 @@ IpTag value Example:/Sql ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -110,17 +110,17 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + ## INPUTS ### System.String - ## OUTPUTS ### Microsoft.Azure.Commands.Network.Models.PSPublicIpTag - ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteConfig.md index fe92815d587a..ce8ee8cd1789 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 356764CF-A860-432A-907A-9058CEB2BF8E @@ -49,7 +49,7 @@ Specifies the destination, in Classless Interdomain Routing (CIDR) format, to wh ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -79,7 +79,7 @@ Specifies a name for the route. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -96,7 +96,7 @@ Specify this parameter only if you specify a value of VirtualAppliance for the * ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -124,7 +124,7 @@ If you have two subnets, 10.1.0.0/16 and 10.2.0.0/16 in the same virtual network ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteFilter.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteFilter.md index c5ed79800004..36fb9ce5cba0 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteFilter.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteFilter.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.network/new-azurermroutefilter @@ -40,7 +40,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -70,7 +70,7 @@ Indicates that this cmdlet creates a route table even if a route filter that has ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -85,7 +85,7 @@ Specifies the Azure region in which this cmdlet creates a route filter. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -115,7 +115,7 @@ Specifies the name of the resource group in which this cmdlet creates a route fi ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -130,7 +130,7 @@ Specifies an array of Route Filter Rule objects to associate with the route filt ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -147,7 +147,7 @@ Key-value pairs in the form of a hash table. For example: ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteFilterRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteFilterRuleConfig.md index 312b43e21731..5294cec671ec 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteFilterRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteFilterRuleConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.network/new-azurermroutefilterruleconfig @@ -39,7 +39,7 @@ Valid values are Allow or Deny. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Allow, Deny Required: True @@ -55,7 +55,7 @@ The list of community value that route filter will filter on ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -85,7 +85,7 @@ Do not ask for confirmation if you want to overrite a resource ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -100,7 +100,7 @@ Specifies a name for the route filter rule. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -116,7 +116,7 @@ Valid values are: Community ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Community Required: True diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteTable.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteTable.md index bda56a88871d..827b2aebc63b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteTable.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmRouteTable.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 6A278F91-C078-4DD4-82D0-2E4FA549A089 @@ -67,7 +67,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -97,7 +97,7 @@ Disable BGP Route auto propagation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -112,7 +112,7 @@ Indicates that this cmdlet creates a route table even if a route table that has ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -128,7 +128,7 @@ For more information, see [Azure Regions](http://azure.microsoft.com/en-us/regio ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -158,7 +158,7 @@ Specifies the name of the resource group in which this cmdlet creates a route ta ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -173,7 +173,7 @@ Specifies an array of **Route** objects to associate with the route table. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -190,7 +190,7 @@ Key-value pairs in the form of a hash table. For example: ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetwork.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetwork.md index e1d0e386eb5a..be9f9c94592b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetwork.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetwork.md @@ -161,7 +161,7 @@ Aliases: Required: False Position: Named Default value: False -Accept pipeline input: True (ByPropertyName) +Accept pipeline input: False Accept wildcard characters: False ``` diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkGateway.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkGateway.md index d58c83d99b79..b256d018e431 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkGateway.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 5784FD44-91D4-4537-84F3-4F03CCBA355F @@ -18,10 +18,12 @@ Creates a Virtual Network Gateway New-AzureRmVirtualNetworkGateway -Name -ResourceGroupName -Location [-IpConfigurations ] [-GatewayType ] [-VpnType ] [-EnableBgp ] [-EnableActiveActiveFeature] - [-GatewaySku ] [-VpnClientAddressPool ] + [-GatewaySku ] [-GatewayDefaultSite ] + [-VpnClientAddressPool ] [-VpnClientProtocol ] [-VpnClientRootCertificates ] [-VpnClientRevokedCertificates ] + [-VpnClientIpsecPolicy ] [-Asn ] [-PeerWeight ] [-Tag ] [-Force] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -31,29 +33,17 @@ New-AzureRmVirtualNetworkGateway -Name -ResourceGroupName -Loc New-AzureRmVirtualNetworkGateway -Name -ResourceGroupName -Location [-IpConfigurations ] [-GatewayType ] [-VpnType ] [-EnableBgp ] [-EnableActiveActiveFeature] - [-GatewaySku ] [-VpnClientAddressPool ] + [-GatewaySku ] [-GatewayDefaultSite ] + [-VpnClientAddressPool ] [-VpnClientProtocol ] [-VpnClientRootCertificates ] [-VpnClientRevokedCertificates ] + [-VpnClientIpsecPolicy ] [-Asn ] [-PeerWeight ] [-Tag ] [-Force] -RadiusServerAddress -RadiusServerSecret [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` -### SetByResource -``` -New-AzureRmVirtualNetworkGateway - [-IpConfigurations ] - [-GatewayType ] [-VpnType ] [-EnableBgp ] [-EnableActiveActiveFeature] - [-GatewaySku ] [-GatewayDefaultSite ] - [-VpnClientAddressPool ] - [-VpnClientProtocol ] - [-VpnClientRootCertificates ] - [-VpnClientRevokedCertificates ] - [-Asn ] [-PeerWeight ] [-Tag ] [-Force] [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - ## DESCRIPTION The Virtual Network Gateway is the object representing your gateway in Azure. @@ -108,6 +98,26 @@ subnet and create a Virtual Network Gateway in Azure. The gateway will be called "myNGW" within the resource group "vnet-gateway" in the location "UK West" with the previously created IP configurations saved in the variable "ngwIPConfig," the gateway type of "VPN," the vpn type "RouteBased," and the sku "Basic." It also adds an external radius server with address "TestRadiusServer" +### 1: Create a Virtual Network Gateway with P2S settings +``` +New-AzureRmResourceGroup -Location "UK West" -Name "vnet-gateway" +$subnet = New-AzureRMVirtualNetworkSubnetConfig -Name 'gatewaysubnet' -AddressPrefix '10.254.0.0/27' + +$ngwpip = New-AzureRMPublicIpAddress -Name ngwpip -ResourceGroupName "vnet-gateway" -Location "UK West" -AllocationMethod Dynamic +$vnet = New-AzureRmVirtualNetwork -AddressPrefix "10.254.0.0/27" -Location "UK West" -Name vnet-gateway -ResourceGroupName "vnet-gateway" -Subnet $subnet +$subnet = Get-AzureRmVirtualNetworkSubnetConfig -name 'gatewaysubnet' -VirtualNetwork $vnet +$ngwipconfig = New-AzureRMVirtualNetworkGatewayIpConfig -Name ngwipconfig -SubnetId $subnet.Id -PublicIpAddressId $ngwpip.Id +$rootCert = New-AzureRmVpnClientRootCertificate -Name $clientRootCertName -PublicCertData $samplePublicCertData +$vpnclientipsecpolicy = New-AzureRmVpnClientIpsecPolicy -IpsecEncryption AES256 -IpsecIntegrity SHA256 -SALifeTimeSeconds 86471 -SADataSizeKilobytes 429496 -IkeEncryption AES256 -IkeIntegrity SHA384 -DhGroup DHGroup2 -PfsGroup PFS2 + +New-AzureRmVirtualNetworkGateway -Name myNGW -ResourceGroupName vnet-gateway -Location "UK West" -IpConfigurations $ngwIpConfig -GatewayType "Vpn" -VpnType "RouteBased" -GatewaySku "VpnGw1" -VpnClientProtocol IkeV2 -VpnClientAddressPool 201.169.0.0/16 -VpnClientRootCertificates $rootCert -VpnClientIpsecPolicy $vpnclientipsecpolicy +``` + +The above will create a resource group, request a Public IP Address, create a Virtual Network and +subnet and create a Virtual Network Gateway with P2S settings e.g. VpnProtocol,VpnClientAddressPool,VpnClientRootCertificates,VpnClientIpsecPolicy etc. in Azure. + +The gateway will be called "myNGW" within the resource group "vnet-gateway" in the location "UK West" with the previously created IP configurations saved in the variable "ngwIPConfig," the gateway type of "VPN," the vpn type "RouteBased," and the sku "VpnGw1." Vpn settings will be set on Gateway such as VpnProtocol set as Ikev2, VpnClientAddressPool as "201.169.0.0/16", VpnClientRootCertificate set as passed one: clientRootCertName and custom vpn ipsec policy passed in object:$vpnclientipsecpolicy + ## PARAMETERS ### -AsJob @@ -116,7 +126,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -129,7 +139,7 @@ Accept wildcard characters: False ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -158,7 +168,7 @@ Enables the active-active feature. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -171,7 +181,7 @@ Accept wildcard characters: False ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -186,7 +196,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -198,8 +208,8 @@ Accept wildcard characters: False ### -GatewayDefaultSite ```yaml Type: PSLocalNetworkGateway -Parameter Sets: SetByResource -Aliases: +Parameter Sets: (All) +Aliases: Required: False Position: Named @@ -212,7 +222,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Basic, Standard, HighPerformance, UltraPerformance, VpnGw1, VpnGw2, VpnGw3 Required: False @@ -226,7 +236,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Vpn, ExpressRoute Required: False @@ -240,7 +250,7 @@ Accept wildcard characters: False ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -252,8 +262,8 @@ Accept wildcard characters: False ### -Location ```yaml Type: String -Parameter Sets: Default, RadiusServerConfiguration -Aliases: +Parameter Sets: (All) +Aliases: Required: True Position: Named @@ -265,7 +275,7 @@ Accept wildcard characters: False ### -Name ```yaml Type: String -Parameter Sets: Default, RadiusServerConfiguration +Parameter Sets: (All) Aliases: ResourceName Required: True @@ -279,7 +289,7 @@ Accept wildcard characters: False ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -293,7 +303,7 @@ P2S External Radius server address. ```yaml Type: String Parameter Sets: RadiusServerConfiguration -Aliases: +Aliases: Required: True Position: Named @@ -307,7 +317,7 @@ P2S External Radius server secret. ```yaml Type: SecureString Parameter Sets: RadiusServerConfiguration -Aliases: +Aliases: Required: True Position: Named @@ -319,8 +329,8 @@ Accept wildcard characters: False ### -ResourceGroupName ```yaml Type: String -Parameter Sets: Default, RadiusServerConfiguration -Aliases: +Parameter Sets: (All) +Aliases: Required: True Position: Named @@ -337,7 +347,7 @@ Key-value pairs in the form of a hash table. For example: ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -350,7 +360,21 @@ Accept wildcard characters: False ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -VpnClientIpsecPolicy +A list of IPSec policies for P2S VPN client tunneling protocols. +```yaml +Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy] +Parameter Sets: (All) +Aliases: Required: False Position: Named @@ -364,7 +388,7 @@ The list of P2S VPN client tunneling protocols ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Accepted values: SSTP, IkeV2 Required: False @@ -378,7 +402,7 @@ Accept wildcard characters: False ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -391,7 +415,7 @@ Accept wildcard characters: False ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -404,7 +428,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: PolicyBased, RouteBased Required: False diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkGatewayConnection.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkGatewayConnection.md index 4bbe2696409a..58284790b16e 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkGatewayConnection.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkGatewayConnection.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 0F141A92-4994-45B3-AE94-09865BC691C4 @@ -51,7 +51,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -64,7 +64,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -77,7 +77,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: IPsec, Vnet2Vnet, ExpressRoute, VPNClient Required: True @@ -106,7 +106,7 @@ Accept wildcard characters: False ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -119,7 +119,7 @@ Accept wildcard characters: False ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -133,7 +133,7 @@ A list of IPSec policies. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -146,7 +146,7 @@ Accept wildcard characters: False ```yaml Type: PSLocalNetworkGateway Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -159,7 +159,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -185,7 +185,7 @@ Accept wildcard characters: False ```yaml Type: PSPeering Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -198,7 +198,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -211,7 +211,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -224,7 +224,7 @@ Accept wildcard characters: False ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -237,7 +237,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -254,7 +254,7 @@ Key-value pairs in the form of a hash table. For example: ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -269,7 +269,7 @@ Use policy-based traffic selectors for a S2S connection ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -282,7 +282,7 @@ Accept wildcard characters: False ```yaml Type: PSVirtualNetworkGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -295,7 +295,7 @@ Accept wildcard characters: False ```yaml Type: PSVirtualNetworkGateway Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkGatewayIpConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkGatewayIpConfig.md index 317a644695bb..bf4b82ec22fe 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkGatewayIpConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkGatewayIpConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: C6E65138-CD14-4A54-A901-8E944201F2AE @@ -58,7 +58,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -84,7 +84,7 @@ Accept wildcard characters: False ```yaml Type: PSPublicIpAddress Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -97,7 +97,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -110,7 +110,7 @@ Accept wildcard characters: False ```yaml Type: PSSubnet Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -123,7 +123,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -147,4 +147,3 @@ This cmdlet does not accept any input. ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkSubnetConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkSubnetConfig.md index 20a9080a0f95..f3bf6a28a368 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkSubnetConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkSubnetConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 901FD38B-67FA-40D5-8D23-51E5544C25D8 @@ -70,7 +70,7 @@ Specifies a range of IP addresses for a subnet configuration. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -100,7 +100,7 @@ Specifies the name of the subnet configuration to create. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -115,7 +115,7 @@ Specifies a NetworkSecurityGroup object. ```yaml Type: PSNetworkSecurityGroup Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -130,7 +130,7 @@ Specifies the ID of a network security group. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -145,7 +145,7 @@ Specifies the route table associated with the subnet configuration. ```yaml Type: PSRouteTable Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -160,7 +160,7 @@ Specifies the ID of the route table associated with the subnet configuration. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -175,7 +175,7 @@ Service Endpoint Value ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientConfiguration.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientConfiguration.md index 782ac8b4931b..4e7ff27597bf 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientConfiguration.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientConfiguration.md @@ -40,7 +40,7 @@ Can take values EAPMSCHAPv2 or EAPTLS. When EAPMSCHAPv2 is specified then the cm ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: EAPTLS, EAPMSCHAPv2 Required: True @@ -55,7 +55,7 @@ A list of client root certificate paths ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -99,7 +99,7 @@ ProcessorArchitecture ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Amd64, X86 Required: False @@ -115,7 +115,7 @@ Radius server root certificate path. This is a mandatory parameter that has to b ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -130,7 +130,7 @@ The resource group name. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -184,4 +184,3 @@ System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Cul ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientIpsecParameter.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientIpsecParameter.md new file mode 100644 index 000000000000..8b9840a1f52a --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientIpsecParameter.md @@ -0,0 +1,220 @@ +--- +external help file: Microsoft.Azure.Commands.Network.dll-Help.xml +Module Name: AzureRM.Network +online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.network/new-azurermvpnclientipsecparameter +schema: 2.0.0 +--- + +# New-AzureRmVpnClientIpsecParameter + +## SYNOPSIS +This command allows the users to create the Vpn ipsec parameters object specifying one or all values such as IpsecEncryption,IpsecIntegrity,IkeEncryption,IkeIntegrity,DhGroup,PfsGroup to set on the existing VPN gateway. + +## SYNTAX + +``` +New-AzureRmVpnClientIpsecParameter [-SALifeTime ] [-SADataSize ] [-IpsecEncryption ] + [-IpsecIntegrity ] [-IkeEncryption ] [-IkeIntegrity ] [-DhGroup ] + [-PfsGroup ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This command allows the users to create the Vpn ipsec parameters object specifying one or all values such as IpsecEncryption,IpsecIntegrity,IkeEncryption,IkeIntegrity,DhGroup,PfsGroup to set on the existing VPN gateway. + +## EXAMPLES + +### Example 1 +``` +PS C:\> $vpnclientipsecparams1 = New-AzureRmVpnClientIpsecParameter -IpsecEncryption AES256 -IpsecIntegrity SHA256 -SALifeTime 86473 -SADataSize 429498 -IkeEncryption AES256 -IkeIntegrity SHA384 -DhGroup DHGroup2 -PfsGroup PFS2 +PS C:\> $setvpnIpsecParams = Set-AzureRmVpnClientIpsecParameter -VirtualNetworkGatewayName $rname -ResourceGroupName $rgname -VpnClientIPsecParameter $vpnclientipsecparams1 +``` +New-AzureRmVpnClientIpsecParameter cmdlet is used to create the vpn ipsec parameters object of using the passed one or all parameters' values which user can set for any existing Virtual network gateway in ResourceGroup. +This created VpnClientIPsecParameters object is passed to Set-AzureRmVpnClientIpsecParameter command to set the specified Vpn ipsec custom policy on Virtual network gateway as shown in above example. This command returns object of VpnClientIPsecParameters which shows set parameters. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DhGroup +The Vpnclient DH Groups used in IKE Phase 1 for initial SA. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: DHGroup24, ECP384, ECP256, DHGroup14, DHGroup2 + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IkeEncryption +The Vpnclient IKE encryption algorithm (IKE Phase 2) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: GCMAES256, GCMAES128, AES256, AES128 + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IkeIntegrity +The Vpnclient IKE integrity algorithm (IKE Phase 2) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: SHA384, SHA256 + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IpsecEncryption +The Vpnclient IPSec encryption algorithm (IKE Phase 1) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: GCMAES256, GCMAES128, AES256, AES128 + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IpsecIntegrity +The Vpnclient IPSec integrity algorithm (IKE Phase 1) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: GCMAES256, GCMAES128, SHA256 + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PfsGroup +The Vpnclient PFS Groups used in IKE Phase 2 for new child SA + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: PFS24, PFSMM, ECP384, ECP256, PFS14, PFS2, None + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SADataSize +The Vpnclient IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SALifeTime +The Vpnclient IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: 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: 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 + +### None + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters + +## NOTES + +## RELATED LINKS diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientIpsecPolicy.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientIpsecPolicy.md new file mode 100644 index 000000000000..e1e7951a3f76 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientIpsecPolicy.md @@ -0,0 +1,239 @@ +--- +external help file: Microsoft.Azure.Commands.Network.dll-Help.xml +Module Name: AzureRM.Network +online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.network/new-azurermvpnclientipsecpolicy +schema: 2.0.0 +--- + +# New-AzureRmVpnClientIpsecPolicy + +## SYNOPSIS +This command allows the users to create the Vpn ipsec policy object specifying one or all values such as IpsecEncryption,IpsecIntegrity,IkeEncryption,IkeIntegrity,DhGroup,PfsGroup to set on the VPN gateway. This command let output object is used to set vpn ipsec policy for both new / exisitng gateway. + +## SYNTAX + +``` +New-AzureRmVpnClientIpsecPolicy [-SALifeTime ] [-SADataSize ] [-IpsecEncryption ] + [-IpsecIntegrity ] [-IkeEncryption ] [-IkeIntegrity ] [-DhGroup ] + [-PfsGroup ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This command allows the users to create the Vpn ipsec policy object specifying one or all values such as IpsecEncryption,IpsecIntegrity,IkeEncryption,IkeIntegrity,DhGroup,PfsGroup to set on the VPN gateway. This command let output object is used to set vpn ipsec policy for both new / exisitng gateway. + +## EXAMPLES + +### Define vpn ipsec policy object: +``` +PS C:\>$vpnclientipsecpolicy = New-AzureRmVpnClientIpsecPolicy -IpsecEncryption AES256 -IpsecIntegrity SHA256 -SALifeTime 86472 -SADataSize 429497 -IkeEncryption AES256 -IkeIntegrity SHA256 -DhGroup DHGroup2 -PfsGroup None +``` + +This cmdlet is used to create the vpn ipsec policy object using the passed one or all parameters' values which user can pass to param:VpnClientIpsecPolicy of PS command let: New-AzureRmVirtualNetworkGateway (New VPN Gateway creation) / Set-AzureRmVirtualNetworkGateway (existing VPN Gateway update) in ResourceGroup : + +### Create new virtual network gateway with setting vpn custom ipsec policy: +``` +PS C:\> $vnetGateway = New-AzureRmVirtualNetworkGateway -ResourceGroupName vnet-gateway -name myNGW -location $location -IpConfigurations $vnetIpConfig -GatewayType Vpn -VpnType RouteBased -GatewaySku VpnGw1 -VpnClientIpsecPolicy $vpnclientipsecpolicy +``` + +This cmdlet returns virtual network gateway object after creation. + +### Set vpn custom ipsec policy on existing virtual network gateway: +``` +PS C:\> $vnetGateway = Set-AzureRmVirtualNetworkGateway -VirtualNetworkGateway $gateway -VpnClientIpsecPolicy $vpnclientipsecpolicy +``` + +This cmdlet returns virtual network gateway object after setting vpn custom ipsec policy. + +### Get virtual network gateway to see if vpn custom policy is set correctly: +``` +PS C:\> $gateway = Get-AzureRmVirtualNetworkGateway -ResourceGroupName vnet-gateway -name myNGW +``` +This cmdlet returns virtual network gateway object. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DhGroup +The Vpnclient DH Groups used in IKE Phase 1 for initial SA + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: DHGroup24, ECP384, ECP256, DHGroup14, DHGroup2 + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IkeEncryption +The Vpnclient IKE encryption algorithm (IKE Phase 2) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: GCMAES256, GCMAES128, AES256, AES128 + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IkeIntegrity +The Vpnclient IKE integrity algorithm (IKE Phase 2) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: SHA384, SHA256 + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IpsecEncryption +The Vpnclient IPSec encryption algorithm (IKE Phase 1) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: GCMAES256, GCMAES128, AES256, AES128 + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IpsecIntegrity +The Vpnclient IPSec integrity algorithm (IKE Phase 1) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: GCMAES256, GCMAES128, SHA256 + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PfsGroup +The Vpnclient PFS Groups used in IKE Phase 2 for new child SA + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: PFS24, PFSMM, ECP384, ECP256, PFS14, PFS2, None + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SADataSize +The Vpnclient IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SALifeTime +The Vpnclient IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: 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: 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 + +### None + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy + +## NOTES + +## RELATED LINKS diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientRevokedCertificate.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientRevokedCertificate.md index 4df1fcfa9d55..60f68ed68a90 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientRevokedCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientRevokedCertificate.md @@ -65,7 +65,7 @@ Specifies a unique name for the new client-revocation certificate. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -86,7 +86,7 @@ The preceding command returns information for all the Local Computer certificate ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientRootCertificate.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientRootCertificate.md index 598a6f61f89f..99ce2ca33fb9 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientRootCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVpnClientRootCertificate.md @@ -73,7 +73,7 @@ Specifies a name for the new client root certificate. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -100,7 +100,7 @@ $CertificateText = for ($i=1; $i -lt $Text.Length -1 ; $i++){$Text\[$i\]} ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGateway.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGateway.md index 47548caa9544..199a47953494 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGateway.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: E9390015-FD5C-4015-BA81-3445ADF8F8BF @@ -53,7 +53,7 @@ Indicates that the cmdlet forces the deletion of the application gateway regardl ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -84,7 +84,7 @@ By default, this cmdlet does not generate any output. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -99,7 +99,7 @@ Specifies the name of the resource group name that the application gateway belon ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayAuthenticationCertificate.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayAuthenticationCertificate.md index c69d2e582c3d..ab9077b1a8ac 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayAuthenticationCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayAuthenticationCertificate.md @@ -32,7 +32,7 @@ Specifies the name of application gateway from which this cmdlet removes an auth ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -62,7 +62,7 @@ Specifies the name of the authentication certificate that this cmdlet removes. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayBackendAddressPool.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayBackendAddressPool.md index 2b211e9ca512..5a9bdfff2026 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayBackendAddressPool.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayBackendAddressPool.md @@ -41,7 +41,7 @@ Specifies the application gateway from which this cmdlet removes a back-end addr ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the name of the back-end address pool that this cmdlet removes. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayBackendHttpSettings.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayBackendHttpSettings.md index a6b05f0c7b9a..bece1dfa9187 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayBackendHttpSettings.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayBackendHttpSettings.md @@ -40,7 +40,7 @@ Specifies the application gateway from which this cmdlet removes back-end HTTP s ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -70,7 +70,7 @@ Specifies the name of the back-end HTTP settings that this cmdlet removes. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayConnectionDraining.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayConnectionDraining.md index 001e47a4f370..ad5134150f3e 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayConnectionDraining.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayConnectionDraining.md @@ -42,7 +42,7 @@ The backend http settings ```yaml Type: PSApplicationGatewayBackendHttpSettings Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayFrontendIPConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayFrontendIPConfig.md index a266e5f85294..f72fb59d7f3f 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayFrontendIPConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayFrontendIPConfig.md @@ -41,7 +41,7 @@ Specifies an application gateway from which to remove a front-end IP configurati ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the name of a front-end IP configuration to remove. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayFrontendPort.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayFrontendPort.md index b6f5f2dfc681..812a5f4db1de 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayFrontendPort.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayFrontendPort.md @@ -41,7 +41,7 @@ Specifies the application gateway from which to remove a front-end port. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies name of the frontend port to remove. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayHttpListener.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayHttpListener.md index 8550ee138016..d47f8bf54542 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayHttpListener.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayHttpListener.md @@ -41,7 +41,7 @@ Specifies the application gateway from which to remove an HTTP listener. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the name of the HTTP listener that this cmdlet removes. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayIPConfiguration.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayIPConfiguration.md index fcdfc83862a6..d0652d124679 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayIPConfiguration.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayIPConfiguration.md @@ -41,7 +41,7 @@ Specifies the application gateway from which to remove an IP configuration. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the name of the IP configuration to remove. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayProbeConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayProbeConfig.md index 9c403a7e34c1..229641235737 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayProbeConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayProbeConfig.md @@ -37,7 +37,7 @@ Specifies the application gateway to which this cmdlet removes a probe. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -67,7 +67,7 @@ Specifies the name of the probe for which this cmdlet removes. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayRedirectConfiguration.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayRedirectConfiguration.md index 2f88d7cb7a61..3206e19a1c62 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayRedirectConfiguration.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayRedirectConfiguration.md @@ -40,7 +40,7 @@ The applicationGateway ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -70,7 +70,7 @@ The name of the redirect configuration ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -93,4 +93,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayRequestRoutingRule.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayRequestRoutingRule.md index b0bc71130380..8484b205c6a7 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayRequestRoutingRule.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayRequestRoutingRule.md @@ -41,7 +41,7 @@ Specifies the application gateway from which to remove a request routing rule. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the name of the request routing rule for which this cmdlet removes. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewaySslCertificate.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewaySslCertificate.md index 366a3a6dee0c..73462368bc00 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewaySslCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewaySslCertificate.md @@ -41,7 +41,7 @@ Specifies the application gateway from which this cmdlet removes an SSL certific ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the name of an SSL certificate that this cmdlet removes. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewaySslPolicy.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewaySslPolicy.md index 35fa9f41032c..6b0344f3b472 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewaySslPolicy.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewaySslPolicy.md @@ -39,7 +39,7 @@ Specifies the application gateway from which this cmdlet removes SSL policy. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -69,7 +69,7 @@ Do not ask for confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayUrlPathMapConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayUrlPathMapConfig.md index bdf458f01cec..e9a41e14f618 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayUrlPathMapConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationGatewayUrlPathMapConfig.md @@ -31,7 +31,7 @@ Specifies the application gateway to which this cmdlet removes URL path map conf ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -61,7 +61,7 @@ Specifies the URL path map name that this cmdlet removes from the backend server ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationSecurityGroup.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationSecurityGroup.md index 9845b9277f03..d69a8fbc042d 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationSecurityGroup.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmApplicationSecurityGroup.md @@ -52,7 +52,7 @@ Do not ask for confirmation if you want to delete resource ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -82,7 +82,7 @@ Returns an object representing the item with which you are working. By default, ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -97,7 +97,7 @@ The resource group name of the application security group. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuit.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuit.md index da38537d78cd..7979c6606400 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuit.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuit.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: EDB94194-650C-4892-8DDC-E67D435522DD @@ -41,7 +41,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -71,7 +71,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -102,7 +102,7 @@ not generate any output. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -117,7 +117,7 @@ Specifies the name of the resource group that this ExpressRoute circuit belongs ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuitAuthorization.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuitAuthorization.md index 867a1750bf49..293879f373d4 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuitAuthorization.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuitAuthorization.md @@ -70,7 +70,7 @@ Specifies the ExpressRouteCircuit object that this cmdlet removes. ```yaml Type: PSExpressRouteCircuit Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -85,7 +85,7 @@ Specifies the name of the circuit authorization that this cmdlet removes. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuitConnectionConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuitConnectionConfig.md index 6d345d64d3fa..0b5710291d48 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuitConnectionConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuitConnectionConfig.md @@ -5,22 +5,33 @@ ms.assetid: cc944e06-4fa0-4ce5-88e9-ea6454b41d55 online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.network/remove-azurermexpressroutecircuitconnectionconfig schema: 2.0.0 --- + # Remove-AzureRmExpressRouteCircuitConnectionConfig ## SYNOPSIS Removes an ExpressRoute circuit connection configuration. +## SYNTAX + +``` +Remove-AzureRmExpressRouteCircuitConnectionConfig [-Name] + [-ExpressRouteCircuit] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + ## DESCRIPTION The **Remove-AzureRmExpressRouteCircuitConnectionConfig** cmdlet removes an ExpressRoute circuit connection configuration associated with a given Express Route Circuit. ## EXAMPLES + ### Example 1: Remove a circuit connection configuration from an ExpressRoute circuit ``` $circuit_init = Get-AzureRmExpressRouteCircuit -Name $initiatingCircuitName -ResourceGroupName $rg Remove-AzureRmExpressRouteCircuitConnectionConfig -Name $circuitConnectionName -ExpressRouteCircuit $circuit_init Set-AzureRmExpressRouteCircuit -ExpressRouteCircuit $circuit_init ``` + ### Example 2: Remove a circuit connection configuration using Piping from an ExpressRoute Circuit ``` Get-AzureRmExpressRouteCircuit -Name $initiatingCircuitName -ResourceGroupName $rg|Remove-AzureRmExpressRouteCircuitConnectionConfig -Name $circuitConnectionName|Set-AzureRmExpressRouteCircuit @@ -49,10 +60,10 @@ The ExpressRoute circuit containing the peering configuration to be removed. ```yaml Type: PSExpressRouteCircuit Parameter Sets: (All) -Aliases: +Aliases: Required: True -Position: Named +Position: 1 Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False @@ -64,7 +75,37 @@ The name of the circuit connection configuration to be removed. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: 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: SwitchParameter +Parameter Sets: (All) +Aliases: wi Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuitPeeringConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuitPeeringConfig.md index a502dacdd573..cdd55db11570 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuitPeeringConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmExpressRouteCircuitPeeringConfig.md @@ -54,7 +54,7 @@ The ExpressRoute circuit containing the peering configuration to be removed. ```yaml Type: PSExpressRouteCircuit Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -69,7 +69,7 @@ The name of the peering configuration to be removed. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -84,7 +84,7 @@ The Address family of the peering ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: IPv4, IPv6, All Required: False diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancer.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancer.md index 132392ce6e01..f2e1cc6731ac 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancer.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancer.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 31B0FBEF-366A-41AF-9182-2EB087019F36 @@ -38,7 +38,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -68,7 +68,7 @@ Indicates that this cmdlet removes the load balancer regardless of whether resou ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -99,7 +99,7 @@ By default, this cmdlet does not generate any output. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -114,7 +114,7 @@ Specifies the name of the resource group that contains the load balancer to remo ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerBackendAddressPoolConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerBackendAddressPoolConfig.md index 11192d5dbf07..ea9441b6c27f 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerBackendAddressPoolConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerBackendAddressPoolConfig.md @@ -55,7 +55,7 @@ Specifies the load balancer that contains the backend address pool to remove. ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -70,7 +70,7 @@ Specifies the name of the backend address pool that this cmdlet removes. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerFrontendIpConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerFrontendIpConfig.md index 1ca833196c06..ed63e10f3807 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerFrontendIpConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerFrontendIpConfig.md @@ -56,7 +56,7 @@ Specifies the load balancer that contains the front-end IP configuration to remo ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the name of the front-end IP address configuration to remove. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerInboundNatPoolConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerInboundNatPoolConfig.md index 58ab839288dc..65347b35a9ea 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerInboundNatPoolConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerInboundNatPoolConfig.md @@ -47,7 +47,7 @@ Accept wildcard characters: False ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -60,7 +60,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -84,4 +84,3 @@ Parameter 'LoadBalancer' accepts value of type 'PSLoadBalancer' from the pipelin ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerInboundNatRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerInboundNatRuleConfig.md index dbfe986f73c2..fcb94fdecc27 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerInboundNatRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerInboundNatRuleConfig.md @@ -56,7 +56,7 @@ Specifies the **LoadBalancer** object that contains the inbound NAT rule configu ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the name of the inbound NAT rule configuration that this cmdlet remove ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerProbeConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerProbeConfig.md index a3c2dfa3cbb5..1f560b6c37a4 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerProbeConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerProbeConfig.md @@ -56,7 +56,7 @@ Specifies the load balancer that contains the probe configuration that this cmdl ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the name of the probe configuration that this cmdlet removes. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerRuleConfig.md index cf396998b72e..307efc91f1e7 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLoadBalancerRuleConfig.md @@ -56,7 +56,7 @@ Specifies the **LoadBalancer** object that contains the rule configuration that ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the name of the load balancer rule configuration that this cmdlet remo ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLocalNetworkGateway.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLocalNetworkGateway.md index df38c3b9072b..cba78316d566 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLocalNetworkGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmLocalNetworkGateway.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 75E30205-97AD-44E3-A61F-62B81ADB532C @@ -42,7 +42,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -72,7 +72,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -103,7 +103,7 @@ By default, this cmdlet does not generate any output. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -118,7 +118,7 @@ Specifies the name of the resource group that contains the local network gateway ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkInterface.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkInterface.md index 0f6c9b852948..5d27b2f5ba64 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkInterface.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkInterface.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: C83A0465-45EF-4FCC-B706-D5DF819664F0 @@ -47,7 +47,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -77,7 +77,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -108,7 +108,7 @@ By default, this cmdlet does not generate any output. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -123,7 +123,7 @@ Specifies the name of a resource group that contains the network interface that ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkInterfaceIpConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkInterfaceIpConfig.md index c0a1533b6dc9..b50526cccdf7 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkInterfaceIpConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkInterfaceIpConfig.md @@ -56,7 +56,7 @@ Specifies the name of the network interface IP configuration to remove. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -72,7 +72,7 @@ This object contains the network interface IP configuration to remove. ```yaml Type: PSNetworkInterface Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkSecurityGroup.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkSecurityGroup.md index e5f6f460239d..b0edbbd52682 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkSecurityGroup.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkSecurityGroup.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 01F56553-1685-43D4-89E6-DDCDF17D1E00 @@ -38,7 +38,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -68,7 +68,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -99,7 +99,7 @@ By default, this cmdlet does not generate any output. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -114,7 +114,7 @@ Specifies the name of a resource group that this cmdlet removes a network securi ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkSecurityRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkSecurityRuleConfig.md index 3ba5ccd2b1f3..ac54dff6f04d 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkSecurityRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkSecurityRuleConfig.md @@ -59,7 +59,7 @@ Specifies the name of the network security rule configuration that this cmdlet r ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -75,7 +75,7 @@ This object contains the network security rule configuration to remove. ```yaml Type: PSNetworkSecurityGroup Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkWatcherConnectionMonitor.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkWatcherConnectionMonitor.md index 304de55e7afd..8f2b35b890e8 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkWatcherConnectionMonitor.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkWatcherConnectionMonitor.md @@ -72,21 +72,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -222,6 +207,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -WhatIf Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -239,8 +239,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. -For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmPublicIpAddress.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmPublicIpAddress.md index 84504f364dc8..5166abf99456 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmPublicIpAddress.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmPublicIpAddress.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 00236BC2-61D8-49C2-91BE-923C567153F3 @@ -38,7 +38,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -68,7 +68,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -99,7 +99,7 @@ By default, this cmdlet does not generate any output. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -114,7 +114,7 @@ Specifies the name of the resource group that contains the public IP address tha ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteConfig.md index c87645df44ca..dfbf0db06074 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteConfig.md @@ -77,7 +77,7 @@ Specifies the name of the route that this cmdlet removes. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -92,7 +92,7 @@ Specifies the route table that contains the route that this cmdlet deletes. ```yaml Type: PSRouteTable Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteFilter.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteFilter.md index 8bd481352477..1e430bb63e2f 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteFilter.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteFilter.md @@ -52,7 +52,7 @@ Do not ask for confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -82,7 +82,7 @@ Accept wildcard characters: False ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -97,7 +97,7 @@ The resource group name. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -151,4 +151,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteFilterRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteFilterRuleConfig.md index d12aa73eb6e6..4c86879b2e42 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteFilterRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteFilterRuleConfig.md @@ -52,7 +52,7 @@ Do not ask for confirmation if you want to overrite a resource ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -67,7 +67,7 @@ The name of the route filter rule ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -82,7 +82,7 @@ The RouteFilter ```yaml Type: PSRouteFilter Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -135,4 +135,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteTable.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteTable.md index bcc0ae8d0ea7..622f0fee5780 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteTable.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmRouteTable.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: FDA33633-EB2E-4095-8498-DF8910F1D434 @@ -14,7 +14,7 @@ Removes a route table. ## SYNTAX ``` -Remove-AzureRmRouteTable -ResourceGroupName -Name [-Force] [-PassThru] [-AsJob] +Remove-AzureRmRouteTable -ResourceGroupName -Name [-Force] [-AsJob] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -42,7 +42,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -72,7 +72,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -103,7 +103,7 @@ By default, this cmdlet does not generate any output. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -118,7 +118,7 @@ Specifies the name of the resource group that contains the route table that this ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetwork.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetwork.md index 7bde311ca9fb..da66281175f3 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetwork.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetwork.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: C48E204D-D7EC-4EFD-ADC5-C6F593313B9B @@ -47,7 +47,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -77,7 +77,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -108,7 +108,7 @@ By default, this cmdlet does not generate any output. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -123,7 +123,7 @@ Specifies the name of the resource group that contains the virtual network that ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGateway.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGateway.md index fd2f6fbd85bd..52249314df6b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGateway.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: A35BB728-A7EF-4ADF-B1A9-25A156434E99 @@ -42,7 +42,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -72,7 +72,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -103,7 +103,7 @@ By default, this cmdlet does not generate any output. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -118,7 +118,7 @@ Specifies the name of the resource group that contains the virtual network gatew ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -171,4 +171,3 @@ This cmdlet does not accept any input. ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGatewayConnection.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGatewayConnection.md index 75b47c81689e..6874098d90d2 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGatewayConnection.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGatewayConnection.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 15958F3D-291A-4E49-A667-9792E9A1577A @@ -55,7 +55,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -86,7 +86,7 @@ By default, this cmdlet does not generate any output. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -101,7 +101,7 @@ Specifies the name of the resource group that contains the virtual network gatew ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGatewayDefaultSite.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGatewayDefaultSite.md index 0ce2e5d452db..d188ecde2f4a 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGatewayDefaultSite.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGatewayDefaultSite.md @@ -64,7 +64,7 @@ You can create an object reference to a virtual network gateway by using the Get ```yaml Type: PSVirtualNetworkGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGatewayIpConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGatewayIpConfig.md index 947c335b6331..a935a88606f8 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGatewayIpConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkGatewayIpConfig.md @@ -47,7 +47,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -60,7 +60,7 @@ Accept wildcard characters: False ```yaml Type: PSVirtualNetworkGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -115,4 +115,3 @@ Parameter 'VirtualNetworkGateway' accepts value of type 'PSVirtualNetworkGateway ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkPeering.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkPeering.md index f94a6aa4d661..5ef503be1eb6 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkPeering.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkPeering.md @@ -39,7 +39,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -69,7 +69,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -84,7 +84,7 @@ The virtual network peering name. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -100,7 +100,7 @@ By default, this cmdlet does not generate any output. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -115,7 +115,7 @@ The resource group name ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -130,7 +130,7 @@ The virtual network name. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -183,4 +183,3 @@ This cmdlet does not accept any input. ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkSubnetConfig.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkSubnetConfig.md index 1589dc8a90e2..2fb5b89283bb 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkSubnetConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkSubnetConfig.md @@ -69,7 +69,7 @@ Specifies the name of the subnet configuration to remove. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -84,7 +84,7 @@ Specifies the **VirtualNetwork** object that contains the subnet configuration t ```yaml Type: PSVirtualNetwork Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVpnClientIpsecParameter.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVpnClientIpsecParameter.md new file mode 100644 index 000000000000..1c11aba8fa6c --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVpnClientIpsecParameter.md @@ -0,0 +1,186 @@ +--- +external help file: Microsoft.Azure.Commands.Network.dll-Help.xml +Module Name: AzureRM.Network +online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.network/remove-azurermvpnclientipsecparameter +schema: 2.0.0 +--- + +# Remove-AzureRmVpnClientIpsecParameter + +## SYNOPSIS +Removes Vpn custom ipsec policy set on Virtual Network Gateway resource. + +## SYNTAX + +### ByFactoryName (Default) +``` +Remove-AzureRmVpnClientIpsecParameter -VirtualNetworkGatewayName -ResourceGroupName [-Force] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByFactoryObject +``` +Remove-AzureRmVpnClientIpsecParameter -InputObject [-Force] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceId +``` +Remove-AzureRmVpnClientIpsecParameter -ResourceId [-Force] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The Virtual Network Gateway is the object representing your gateway in Azure. + +The **Remove-AzureRmVpnClientIpsecParameter** cmdlet removes the vpn custom ipsec parameters set on your Virtual Network Gateway, which in turn sets default vpn ipsec policy on VPN gateway based on VirtualNetworkGateway Name and Resource Group Name passed. + +## EXAMPLES + +### 1: Deletes the set vpn ipsec parameters set on the Virtual Network Gateway +``` +PS C:\> $delete = Remove-AzureRmVpnClientIpsecParameter -VirtualNetworkGatewayName myGateway -ResourceGroupName myRG +``` + +Deletes the vpn custom ipsec parameters set on your Virtual Network Gateway with the name "myGateway" within the resource group "myRG". This command returns bool object showing if removal was successful or failed. + +Note: This will result in setting default vpn ipsec policy on your Virtual Network Gateway. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Don't ask for confirmation. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The virtual network gateaway object + +```yaml +Type: PSVirtualNetworkGateway +Parameter Sets: ByFactoryObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: String +Parameter Sets: ByFactoryName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +The Azure resource ID. + +```yaml +Type: String +Parameter Sets: ByResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -VirtualNetworkGatewayName +The virtual network gateway name. + +```yaml +Type: String +Parameter Sets: ByFactoryName +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: 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: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String +Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVpnClientRevokedCertificate.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVpnClientRevokedCertificate.md index 8408a2cc013d..407d7f51ad38 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVpnClientRevokedCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVpnClientRevokedCertificate.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 818C2250-DE43-409E-AC68-B4A7E945401E @@ -59,7 +59,7 @@ Resource groups categorize items to help simplify inventory management and gener ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -80,7 +80,7 @@ The preceding command returns information for all the Local Computer certificate ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -95,7 +95,7 @@ Specifies the name of the virtual network gateway that the certificate is assign ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVpnClientRootCertificate.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVpnClientRootCertificate.md index 7b31334dc774..550efe8f33b3 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVpnClientRootCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVpnClientRootCertificate.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 5D857FF6-A27D-4031-948D-8A69D24B4AD4 @@ -80,7 +80,7 @@ $CertificateText = for ($i=1; $i -lt $Text.Length -1 ; $i++){$Text\[$i\]} ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -97,7 +97,7 @@ Resource groups categorize items to help simplify inventory management and gener ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -112,7 +112,7 @@ Specifies the name of the virtual network gateway that the certificate is remove ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Reset-AzureRmVirtualNetworkGateway.md b/src/ResourceManager/Network/Commands.Network/help/Reset-AzureRmVirtualNetworkGateway.md index 7351e6e29c7e..150b21d79185 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Reset-AzureRmVirtualNetworkGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/Reset-AzureRmVirtualNetworkGateway.md @@ -29,7 +29,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -59,7 +59,7 @@ The gateway vip in order to reset particular gateway instance (e.g. in case of A ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -72,7 +72,7 @@ Accept wildcard characters: False ```yaml Type: PSVirtualNetworkGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Reset-AzureRmVirtualNetworkGatewayConnectionSharedKey.md b/src/ResourceManager/Network/Commands.Network/help/Reset-AzureRmVirtualNetworkGatewayConnectionSharedKey.md index 88b39c9ff451..93829c0b6607 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Reset-AzureRmVirtualNetworkGatewayConnectionSharedKey.md +++ b/src/ResourceManager/Network/Commands.Network/help/Reset-AzureRmVirtualNetworkGatewayConnectionSharedKey.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: AB370DAD-CED9-479D-BE08-B32EFF924A37 @@ -43,7 +43,7 @@ Accept wildcard characters: False ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -56,7 +56,7 @@ Accept wildcard characters: False ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -82,7 +82,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Resize-AzureRmVirtualNetworkGateway.md b/src/ResourceManager/Network/Commands.Network/help/Resize-AzureRmVirtualNetworkGateway.md index 527685ce35ad..5da175057303 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Resize-AzureRmVirtualNetworkGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/Resize-AzureRmVirtualNetworkGateway.md @@ -72,7 +72,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Basic, Standard, HighPerformance, UltraPerformance, VpnGw1, VpnGw2, VpnGw3 Required: True @@ -89,7 +89,7 @@ You can create this object reference by using the Get-AzureRmVirtualNetworkGatew ```yaml Type: PSVirtualNetworkGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGateway.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGateway.md index ebbdea918b29..170a214cb1ef 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGateway.md @@ -38,7 +38,7 @@ Specifies an application gateway object representing the state to which the appl ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -53,7 +53,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayAuthenticationCertificate.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayAuthenticationCertificate.md index 093d7e00aceb..532f1c4cd7cf 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayAuthenticationCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayAuthenticationCertificate.md @@ -32,7 +32,7 @@ Specifies the name of application gateway for which this cmdlet updates an authe ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -47,7 +47,7 @@ Specifies the path of the authentication certificate file with which this cmdlet ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -77,7 +77,7 @@ Specifies the name of the authentication certificate that this cmdlet updates. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayBackendAddressPool.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayBackendAddressPool.md index 2726acc26b12..87c60c555feb 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayBackendAddressPool.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayBackendAddressPool.md @@ -54,7 +54,7 @@ Specifies the application gateway with which this cmdlet associates the back-end ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -69,7 +69,7 @@ Specifies a list of back-end IP addresses to use as a back-end server pool. ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -82,7 +82,7 @@ Accept wildcard characters: False ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -113,7 +113,7 @@ This back-end address pool must exist in the application gateway. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayBackendHttpSettings.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayBackendHttpSettings.md index 1d7e2bd8b524..db58f1ea0a6f 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayBackendHttpSettings.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayBackendHttpSettings.md @@ -18,8 +18,8 @@ Set-AzureRmApplicationGatewayBackendHttpSettings -ApplicationGateway ] [-ProbeId ] [-Probe ] [-AuthenticationCertificates ] - [-PickHostNameFromBackendAddress] [-HostName ] [-AffinityCookieName ] - [-Path ] [-DefaultProfile ] [] + [-PickHostNameFromBackendAddress] [-HostName ] [-AffinityCookieName ] [-Path ] + [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -46,7 +46,7 @@ Cookie name to use for the affinity cookie ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -61,7 +61,7 @@ Specifies an application gateway object with which this cmdlet associates back-e ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -76,7 +76,7 @@ Specifies authentication certificates for the application gateway. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -91,7 +91,7 @@ Connection draining of the backend http settings resource. ```yaml Type: PSApplicationGatewayConnectionDraining Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -107,7 +107,7 @@ The acceptable values for this parameter are: Disabled or Enabled. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Enabled, Disabled Required: True @@ -138,7 +138,7 @@ Sets host header to be sent to the backend servers. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -153,7 +153,7 @@ Specifies the name of the back-end HTTP settings object. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -169,7 +169,7 @@ If no value is provided for this parameter, then no path will be prefixed. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -184,7 +184,7 @@ Flag if host header should be picked from the host name of the backend server. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -199,7 +199,7 @@ Specifies the port to use for each server in the back-end server pool. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -214,7 +214,7 @@ Specifies a probe to associate with the back-end HTTP settings. ```yaml Type: PSApplicationGatewayProbe Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -229,7 +229,7 @@ Specifies the ID of the probe to associate with the back-end HTTP settings. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -246,7 +246,7 @@ This parameter is case-sensitive. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Http, Https Required: True @@ -262,7 +262,7 @@ Specifies a request time-out value. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayConnectionDraining.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayConnectionDraining.md index d77534ade3a6..bb908e2d03ed 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayConnectionDraining.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayConnectionDraining.md @@ -41,7 +41,7 @@ The backend http settings ```yaml Type: PSApplicationGatewayBackendHttpSettings Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -72,7 +72,7 @@ Acceptable values are from 1 second to 3600 seconds. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -87,7 +87,7 @@ Whether connection draining is enabled or not. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayFrontendIPConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayFrontendIPConfig.md index ae1716019cd7..0d0325542e50 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayFrontendIPConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayFrontendIPConfig.md @@ -93,7 +93,7 @@ Specifies an application gateway object in which to modify the front-end IP conf ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -123,7 +123,7 @@ Specifies the name of the front-end IP configuration that this cmdlet modifies. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -139,7 +139,7 @@ If specified, this IP is statically allocated from the subnet. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -154,7 +154,7 @@ Specifies the public IP address. ```yaml Type: PSPublicIpAddress Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -169,7 +169,7 @@ Specifies the ID of the public IP address. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -187,7 +187,7 @@ If *PrivateIPAddress* is not specified, one of the IP addresses from this subnet ```yaml Type: PSSubnet Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -205,7 +205,7 @@ If *PrivateIPAddress* is not specified, one of the IP addresses from this subnet ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayFrontendPort.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayFrontendPort.md index 0895b5c93462..388299bfa832 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayFrontendPort.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayFrontendPort.md @@ -44,7 +44,7 @@ Specifies the application gateway object with which this cmdlet associates the f ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -74,7 +74,7 @@ Specifies the name of the front-end port to modify. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -89,7 +89,7 @@ Specifies the port number to use for the front-end port. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayHttpListener.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayHttpListener.md index 65f39ca2982e..c629fe4984df 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayHttpListener.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayHttpListener.md @@ -53,7 +53,7 @@ Specifies the application gateway with which this cmdlet associates the HTTP lis ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -83,7 +83,7 @@ Specifies the front-end IP address of the application gateway. ```yaml Type: PSApplicationGatewayFrontendIPConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -98,7 +98,7 @@ Specifies the ID of the front-end IP address of the application gateway. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -113,7 +113,7 @@ Specifies the application gateway front-end port. ```yaml Type: PSApplicationGatewayFrontendPort Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -128,7 +128,7 @@ Specifies the application gateway front-end port ID. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -143,7 +143,7 @@ Specifies the host name that this cmdlet sends the HTTP listener to. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -158,7 +158,7 @@ Specifies the name of the HTTP listener. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -177,7 +177,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Http, Https Required: True @@ -194,7 +194,7 @@ The acceptable values for this parameter are: true or false. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: true, false Required: False @@ -210,7 +210,7 @@ Specifies the SSL certificate of the HTTP listener. ```yaml Type: PSApplicationGatewaySslCertificate Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -225,7 +225,7 @@ Specifies the Secure Socket Layer (SSL) certificate ID of the HTTP listener. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayIPConfiguration.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayIPConfiguration.md index 389edf95d148..2e2bdd3f643b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayIPConfiguration.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayIPConfiguration.md @@ -55,7 +55,7 @@ Specifies an application gateway object with which this cmdlet associates an IP ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -85,7 +85,7 @@ Specifies the name of the IP configuration. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -101,7 +101,7 @@ This is the subnet in which the application gateway is deployed. ```yaml Type: PSSubnet Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -117,7 +117,7 @@ This is the subnet in which the application gateway is deployed. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayProbeConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayProbeConfig.md index 44462a7bd6fd..327416da8194 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayProbeConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayProbeConfig.md @@ -41,7 +41,7 @@ Specifies the application gateway to which this cmdlet sends a probe. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Specifies the host name that this cmdlet sends the probe to. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -88,7 +88,7 @@ This value is between 1 second and 86400 seconds. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -104,7 +104,7 @@ Default value is empty ```yaml Type: PSApplicationGatewayProbeHealthResponseMatch Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -120,7 +120,7 @@ Default value is 0 ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -135,7 +135,7 @@ Specifies the name of the probe. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -152,7 +152,7 @@ The probe is sent to \://\:\\. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -168,7 +168,7 @@ Default value is false ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -183,7 +183,7 @@ Specifies the protocol used to send probe. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Http, Https Required: True @@ -201,7 +201,7 @@ Valid values are between 1 second and 86400 seconds. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -218,7 +218,7 @@ Valid values are between 1 second and 20 seconds. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayRedirectConfiguration.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayRedirectConfiguration.md index 9cf29a8ff604..c55a74b698b9 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayRedirectConfiguration.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayRedirectConfiguration.md @@ -56,7 +56,7 @@ The applicationGateway ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -87,7 +87,7 @@ Default is true. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -103,7 +103,7 @@ Default is true. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -118,7 +118,7 @@ The name of the Redirect Configuration ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -133,7 +133,7 @@ The type of redirect ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Permanent, Found, SeeOther, Temporary Required: True @@ -149,7 +149,7 @@ HTTPListener to redirect the request to ```yaml Type: PSApplicationGatewayHttpListener Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -164,7 +164,7 @@ ID of listener to redirect the request to ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -179,7 +179,7 @@ Target URL fo redirection ```yaml Type: String Parameter Sets: SetByURL -Aliases: +Aliases: Required: False Position: Named @@ -202,4 +202,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayRequestRoutingRule.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayRequestRoutingRule.md index f0ca0863a9c0..d6641769e7f8 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayRequestRoutingRule.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayRequestRoutingRule.md @@ -54,7 +54,7 @@ Specifies the application gateway object with which this cmdlet associates a req ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -69,7 +69,7 @@ Specifies the application gateway back-end address pool. ```yaml Type: PSApplicationGatewayBackendAddressPool Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -84,7 +84,7 @@ Specifies the application gateway back-end address pool ID. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -99,7 +99,7 @@ Specifies the application gateway backend HTTP settings. ```yaml Type: PSApplicationGatewayBackendHttpSettings Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -114,7 +114,7 @@ Specifies the application gateway back-end HTTP settings ID. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -144,7 +144,7 @@ Specifies the application gateway HTTP listener. ```yaml Type: PSApplicationGatewayHttpListener Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -159,7 +159,7 @@ Specifies the application gateway HTTP listener ID. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -174,7 +174,7 @@ Specifies the name of the request routing rule that this cmdlet modifies. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -189,7 +189,7 @@ Application gateway RedirectConfiguration ```yaml Type: PSApplicationGatewayRedirectConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -204,7 +204,7 @@ ID of the application gateway RedirectConfiguration ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -219,7 +219,7 @@ Specifies the type of request routing rule. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Basic, PathBasedRouting Required: True @@ -233,7 +233,7 @@ Accept wildcard characters: False ```yaml Type: PSApplicationGatewayUrlPathMap Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -246,7 +246,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewaySku.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewaySku.md index adc947985523..456977cc4e85 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewaySku.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewaySku.md @@ -41,7 +41,7 @@ Specifies the application gateway object with which this cmdlet associates the S ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -56,7 +56,7 @@ Specifies the instance count of the application gateway. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -93,7 +93,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Standard_Small, Standard_Medium, Standard_Large, WAF_Medium, WAF_Large Required: True @@ -113,7 +113,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Standard, WAF Required: True diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewaySslCertificate.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewaySslCertificate.md index 3ec905280e74..d565210651fd 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewaySslCertificate.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewaySslCertificate.md @@ -41,7 +41,7 @@ Specifies the application gateway with which the Secure Socket Layer (SSL) certi ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -56,7 +56,7 @@ Specifies the path of the SSL certificate. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -86,7 +86,7 @@ Specifies the name of the SSL certificate. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -101,7 +101,7 @@ Specifies the password of the SSL certificate. ```yaml Type: SecureString Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewaySslPolicy.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewaySslPolicy.md index b9ad2c038132..8346cd53db8b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewaySslPolicy.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewaySslPolicy.md @@ -44,7 +44,7 @@ Specifies the application gateway of the SSL policy that this cmdlet modifies. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -59,7 +59,7 @@ Ssl cipher suites to be enabled in the specified order to application gateway ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -94,7 +94,7 @@ The acceptable values for this parameter are: ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Accepted values: TLSv1_0, TLSv1_1, TLSv1_2 Required: False @@ -110,7 +110,7 @@ Minimum version of Ssl protocol to be supported on application gateway ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: TLSv1_0, TLSv1_1, TLSv1_2 Required: False @@ -126,7 +126,7 @@ Name of Ssl predefined policy ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -141,7 +141,7 @@ Type of Ssl Policy ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Predefined, Custom Required: False diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayUrlPathMapConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayUrlPathMapConfig.md index 49f6d9ea1178..d175668e2288 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayUrlPathMapConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayUrlPathMapConfig.md @@ -44,7 +44,7 @@ Specifies the application gateway to which this cmdlet sets a URL path map confi ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -59,7 +59,7 @@ Specifies the default backend address pool to route in case none of the rules sp ```yaml Type: PSApplicationGatewayBackendAddressPool Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -74,7 +74,7 @@ Specifies the default backend address pool ID. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -89,7 +89,7 @@ Specifies the default backend HTTP settings to use in case none of the rules spe ```yaml Type: PSApplicationGatewayBackendHttpSettings Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -104,7 +104,7 @@ Specifies the default backend HTTP settings ID. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -134,7 +134,7 @@ Application gateway default RedirectConfiguration ```yaml Type: PSApplicationGatewayRedirectConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -149,7 +149,7 @@ ID of the application gateway default RedirectConfiguration ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -164,7 +164,7 @@ Specifies the URL path map name in which this cmdlet sets configuration for. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -180,7 +180,7 @@ Note that the path rules are order sensitive, they are applied in order they are ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayWebApplicationFirewallConfiguration.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayWebApplicationFirewallConfiguration.md index 2e726b801f8f..a6743d9d7e2e 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayWebApplicationFirewallConfiguration.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmApplicationGatewayWebApplicationFirewallConfiguration.md @@ -44,7 +44,7 @@ You can use the Get-AzureRmApplicationGateway cmdlet to get an application gatew ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -74,7 +74,7 @@ The disabled rule groups. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -89,7 +89,7 @@ Indicates whether the web application firewall is enabled. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -108,7 +108,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Detection, Prevention Required: True @@ -127,7 +127,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: OWASP Required: False @@ -147,7 +147,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: 3.0, 2.2.9 Required: False diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmExpressRouteCircuit.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmExpressRouteCircuit.md index bbfd38f261bd..f00cb6e9429c 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmExpressRouteCircuit.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmExpressRouteCircuit.md @@ -38,7 +38,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -68,7 +68,7 @@ Specifies the **ExpressRouteCircuit** object that this cmdlet modifies. ```yaml Type: PSExpressRouteCircuit Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmExpressRouteCircuitPeeringConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmExpressRouteCircuitPeeringConfig.md index d1554b58a886..c598389cdd30 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmExpressRouteCircuitPeeringConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmExpressRouteCircuitPeeringConfig.md @@ -16,8 +16,8 @@ Saves a modified ExpressRoute peering configuration. ### SetByResource (Default) ``` Set-AzureRmExpressRouteCircuitPeeringConfig -Name -ExpressRouteCircuit - -PeeringType -PeerASN -PrimaryPeerAddressPrefix -SecondaryPeerAddressPrefix - -VlanId [-SharedKey ] + -PeeringType -PeerASN -PrimaryPeerAddressPrefix + -SecondaryPeerAddressPrefix -VlanId [-SharedKey ] [-MicrosoftConfigAdvertisedPublicPrefixes ] [-MicrosoftConfigCustomerAsn ] [-MicrosoftConfigRoutingRegistryName ] [-PeerAddressType ] [-LegacyMode ] [-DefaultProfile ] @@ -27,8 +27,8 @@ Set-AzureRmExpressRouteCircuitPeeringConfig -Name -ExpressRouteCircuit ### MicrosoftPeeringConfigRoutFilterId ``` Set-AzureRmExpressRouteCircuitPeeringConfig -Name -ExpressRouteCircuit - -PeeringType -PeerASN -PrimaryPeerAddressPrefix -SecondaryPeerAddressPrefix - -VlanId [-SharedKey ] + -PeeringType -PeerASN -PrimaryPeerAddressPrefix + -SecondaryPeerAddressPrefix -VlanId [-SharedKey ] [-MicrosoftConfigAdvertisedPublicPrefixes ] [-MicrosoftConfigCustomerAsn ] [-MicrosoftConfigRoutingRegistryName ] -RouteFilterId [-PeerAddressType ] [-LegacyMode ] [-DefaultProfile ] @@ -38,8 +38,8 @@ Set-AzureRmExpressRouteCircuitPeeringConfig -Name -ExpressRouteCircuit ### MicrosoftPeeringConfigRoutFilter ``` Set-AzureRmExpressRouteCircuitPeeringConfig -Name -ExpressRouteCircuit - -PeeringType -PeerASN -PrimaryPeerAddressPrefix -SecondaryPeerAddressPrefix - -VlanId [-SharedKey ] + -PeeringType -PeerASN -PrimaryPeerAddressPrefix + -SecondaryPeerAddressPrefix -VlanId [-SharedKey ] [-MicrosoftConfigAdvertisedPublicPrefixes ] [-MicrosoftConfigCustomerAsn ] [-MicrosoftConfigRoutingRegistryName ] -RouteFilter [-PeerAddressType ] [-LegacyMode ] @@ -91,7 +91,7 @@ The ExpressRoute circuit object containing the peering configuration to be modif ```yaml Type: PSExpressRouteCircuit Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -106,7 +106,7 @@ The legacy mode of the Peering ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -124,7 +124,7 @@ a Routing Registry Name (RIR / IRR). ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -140,7 +140,7 @@ the AS number to which they are registered. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -155,7 +155,7 @@ The Routing Registry Name (RIR / IRR) to which the AS number and prefixes are re ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -170,7 +170,7 @@ The name of the peering configuration to be modified. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -185,7 +185,7 @@ PeerAddressType ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: IPv4, IPv6 Required: False @@ -202,7 +202,7 @@ AzurePublicPeering. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -218,7 +218,7 @@ The acceptable values for this parameter are: `AzurePrivatePeering`, `AzurePubli ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: AzurePrivatePeering, AzurePublicPeering, MicrosoftPeering Required: True @@ -236,7 +236,7 @@ router interface. Azure will configure the next even-numbered address to the Azu ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -251,7 +251,7 @@ This is an existing RouteFilter object. ```yaml Type: PSRouteFilter Parameter Sets: MicrosoftPeeringConfigRoutFilter -Aliases: +Aliases: Required: True Position: Named @@ -266,7 +266,7 @@ This is the resource Id of an existing RouteFilter object. ```yaml Type: String Parameter Sets: MicrosoftPeeringConfigRoutFilterId -Aliases: +Aliases: Required: True Position: Named @@ -283,7 +283,7 @@ router interface. Azure will configure the next even-numbered address to the Azu ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -298,7 +298,7 @@ This is an optional MD5 hash used as a pre-shared key for the peering configurat ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -313,7 +313,7 @@ This is the Id number of the VLAN assigned for this peering. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancer.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancer.md index c1e228f53359..1c6848110175 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancer.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancer.md @@ -44,7 +44,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -75,7 +75,7 @@ This cmdlet sets the goal state for the load balancer that this parameter specif ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerFrontendIpConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerFrontendIpConfig.md index b0d455c1d7e7..b09045bcf6e8 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerFrontendIpConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerFrontendIpConfig.md @@ -86,7 +86,7 @@ This cmdlet sets the goal state for a front-end configuration for the load balan ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -101,7 +101,7 @@ Specifies the name of the front-end IP configuration to set. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -117,7 +117,7 @@ Specify this parameter only if you also specify the *Subnet* parameter. ```yaml Type: String Parameter Sets: SetByResourceSubnet, SetByResourceIdSubnet -Aliases: +Aliases: Required: False Position: Named @@ -132,7 +132,7 @@ Specifies the **PublicIpAddress** object that is associated with the front-end I ```yaml Type: PSPublicIpAddress Parameter Sets: SetByResourcePublicIpAddress -Aliases: +Aliases: Required: True Position: Named @@ -147,7 +147,7 @@ Specifies the ID of the **PublicIpAddress** object that is associated with the f ```yaml Type: String Parameter Sets: SetByResourceIdPublicIpAddress -Aliases: +Aliases: Required: True Position: Named @@ -162,7 +162,7 @@ Specifies the **Subnet** object that contains the front-end IP configuration tha ```yaml Type: PSSubnet Parameter Sets: SetByResourceSubnet -Aliases: +Aliases: Required: True Position: Named @@ -177,7 +177,7 @@ Specifies the ID of the subnet that contains the front-end IP configuration that ```yaml Type: String Parameter Sets: SetByResourceIdSubnet -Aliases: +Aliases: Required: True Position: Named @@ -192,7 +192,7 @@ A list of availability zones denoting the IP allocated for the resource needs to ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerInboundNatPoolConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerInboundNatPoolConfig.md index 984050880601..08da84973fad 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerInboundNatPoolConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerInboundNatPoolConfig.md @@ -43,7 +43,7 @@ PS C:\> ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -71,7 +71,7 @@ Accept wildcard characters: False ```yaml Type: PSFrontendIPConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -84,7 +84,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -97,7 +97,7 @@ Accept wildcard characters: False ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -110,7 +110,7 @@ Accept wildcard characters: False ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -123,7 +123,7 @@ Accept wildcard characters: False ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -136,7 +136,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -149,7 +149,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Tcp, Udp Required: True diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerInboundNatRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerInboundNatRuleConfig.md index 1af4909164cd..1a70e3d63825 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerInboundNatRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerInboundNatRuleConfig.md @@ -56,7 +56,7 @@ Specifies the backend port for traffic that is matched by this rule configuratio ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -86,7 +86,7 @@ Indicates that this cmdlet enables a floating IP address for a rule configuratio ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -101,7 +101,7 @@ Specifies a list of front-end IP addresses to associate with an inbound NAT rule ```yaml Type: PSFrontendIPConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -116,7 +116,7 @@ Specifies the ID for a front-end IP address configuration. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -131,7 +131,7 @@ Specifies the front-end port that is matched by a load balancer rule configurati ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -146,7 +146,7 @@ Specifies the length of time, in minutes, that the state of conversations is mai ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -162,7 +162,7 @@ This cmdlet sets an inbound NAT rule configuration for the load balancer that th ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -177,7 +177,7 @@ Specifies the name of an inbound NAT rule configuration. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -193,7 +193,7 @@ The acceptable values for this parameter are: Tcp or Udp. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Tcp, Udp Required: False diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerProbeConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerProbeConfig.md index 8a8e4923ca09..9699ac8a3a19 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerProbeConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerProbeConfig.md @@ -61,7 +61,7 @@ Specifies the interval, in seconds, between probes to each instance of the load- ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -77,7 +77,7 @@ This cmdlet sets the goal state for a probe configuration for the load balancer ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -92,7 +92,7 @@ Specifies the name of the probe configuration that this cmdlet sets. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -107,7 +107,7 @@ Specifies the port on which probes should connect to a load-balanced service. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -122,7 +122,7 @@ Specifies the number of per-instance consecutive failures for an instance to be ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -138,7 +138,7 @@ The acceptable values for this parameter are: Tcp or Http. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Tcp, Http Required: False @@ -154,7 +154,7 @@ Specifies the path in the load-balanced service to probe to determine health. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerRuleConfig.md index 062e06a6667d..d6e9ac9354ee 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLoadBalancerRuleConfig.md @@ -58,7 +58,7 @@ Specifies a **BackendAddressPool** object to associate with a load balancer rule ```yaml Type: PSBackendAddressPool Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -73,7 +73,7 @@ Specifies the ID of a **BackendAddressPool** object to associate with a load bal ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -88,7 +88,7 @@ Specifies the backend port for traffic that is matched by this rule configuratio ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -118,7 +118,7 @@ Configures SNAT for the VMs in the backend pool to use the publicIP address spec ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -133,7 +133,7 @@ Indicates that this cmdlet enables a floating IP address for a rule configuratio ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -148,7 +148,7 @@ Specifies a list of front-end IP addresses to associate with a load balancer rul ```yaml Type: PSFrontendIPConfiguration Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -163,7 +163,7 @@ Specifies the ID for a front-end IP address configuration. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -178,7 +178,7 @@ Specifies the front-end port that is matched by a load balancer rule configurati ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -193,7 +193,7 @@ Specifies the length of time, in minutes, for which the state of conversations i ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -209,7 +209,7 @@ This cmdlet sets the goal state rule configuration for the load balancer that th ```yaml Type: PSLoadBalancer Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -225,7 +225,7 @@ The acceptable values for this parameter are: SourceIP and SourceIPProtocol. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Default, SourceIP, SourceIPProtocol Required: False @@ -241,7 +241,7 @@ Specifies the name of a load balancer. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -256,7 +256,7 @@ Specifies a probe to associate with a load balancer rule configuration. ```yaml Type: PSProbe Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -271,7 +271,7 @@ Specifies the ID of the probe to associate with a load balancer rule configurati ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -287,7 +287,7 @@ The acceptable values for this parameter are: Tcp or Udp. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Tcp, Udp, All Required: False diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLocalNetworkGateway.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLocalNetworkGateway.md index 9ea2e283119d..f04183a565c3 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLocalNetworkGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmLocalNetworkGateway.md @@ -31,7 +31,7 @@ The **Set-AzureRmLocalNetworkGateway** cmdlet modifies a local network gateway. ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -46,7 +46,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -59,7 +59,7 @@ Accept wildcard characters: False ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -72,7 +72,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -100,7 +100,7 @@ Accept wildcard characters: False ```yaml Type: PSLocalNetworkGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -113,7 +113,7 @@ Accept wildcard characters: False ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkInterface.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkInterface.md index 79791029026e..f4b61f96973b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkInterface.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkInterface.md @@ -92,7 +92,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -122,7 +122,7 @@ Specifies a **NetworkInterface** object that represents the goal state for a net ```yaml Type: PSNetworkInterface Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkInterfaceIpConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkInterfaceIpConfig.md index 6d2e881856fc..802d53d27907 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkInterfaceIpConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkInterfaceIpConfig.md @@ -91,7 +91,7 @@ Specifies a collection of application gateway backend address pool references to ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -106,7 +106,7 @@ Specifies a collection of application gateway backend address pool references to ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -121,7 +121,7 @@ Specifies a collection of application security group references to which this ne ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -136,7 +136,7 @@ Specifies a collection of application security group references to which this ne ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -166,7 +166,7 @@ Specifies a collection of load balancer backend address pool references to which ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -181,7 +181,7 @@ Specifies a collection of load balancer backend address pool references to which ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -196,7 +196,7 @@ Specifies a collection of load balancer inbound network address translation (NAT ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -211,7 +211,7 @@ Specifies a collection of load balancer inbound NAT rule references to which thi ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -226,7 +226,7 @@ Specifies the name of the network IP configuration for which this cmdlet sets. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -242,7 +242,7 @@ This cmdlet adds a network interface IP configuration to the object that this pa ```yaml Type: PSNetworkInterface Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -255,7 +255,7 @@ Accept wildcard characters: False ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -270,7 +270,7 @@ Specifies the static IP address of the network interface IP configuration. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -289,7 +289,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: IPv4, IPv6 Required: False @@ -306,7 +306,7 @@ This cmdlet creates a reference to a public IP Address to associate with this ne ```yaml Type: PSPublicIpAddress Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -321,7 +321,7 @@ This cmdlet creates a reference to a public IP Address to associate with this ne ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -337,7 +337,7 @@ This cmdlet creates a reference to a subnet in which this network interface IP c ```yaml Type: PSSubnet Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -352,7 +352,7 @@ This cmdlet creates a reference to a subnet in which this network interface IP c ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkSecurityGroup.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkSecurityGroup.md index 52758d11b594..4deab1d8434e 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkSecurityGroup.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkSecurityGroup.md @@ -39,7 +39,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -69,7 +69,7 @@ A network security group object representing the goal state to which the cmdlet ```yaml Type: PSNetworkSecurityGroup Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkSecurityRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkSecurityRuleConfig.md index 31c2c894b07d..fa6d366910d0 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkSecurityRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkSecurityRuleConfig.md @@ -67,7 +67,7 @@ The acceptable values for this parameter are: Allow and Deny. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Allow, Deny Required: False @@ -99,7 +99,7 @@ The maximum size is 140 characters. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -121,7 +121,7 @@ You can use tags such as VirtualNetwork, AzureLoadBalancer, and Internet. ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -136,7 +136,7 @@ The application security group set as destination for the rule. It cannot be use ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -151,7 +151,7 @@ The application security group set as destination for the rule. It cannot be use ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -171,7 +171,7 @@ The acceptable values for this parameter are: ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -187,7 +187,7 @@ The acceptable values for this parameter are: Inbound and Outbound. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Inbound, Outbound Required: False @@ -203,7 +203,7 @@ Specifies the name of the network security rule configuration that this cmdlet s ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -218,7 +218,7 @@ Specifies the **NetworkSecurityGroup** object that contains the network security ```yaml Type: PSNetworkSecurityGroup Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -237,7 +237,7 @@ The lower the priority number, the higher the priority of the rule. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -257,7 +257,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Tcp, Udp, * Required: False @@ -280,7 +280,7 @@ You can also use tags such as VirtualNetwork, AzureLoadBalancer and Internet. ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -295,7 +295,7 @@ The application security group set as source for the rule. It cannot be used wit ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup] Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -310,7 +310,7 @@ The application security group set as source for the rule. It cannot be used wit ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -330,7 +330,7 @@ The acceptable values for this parameter are: ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkWatcherConnectionMonitor.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkWatcherConnectionMonitor.md index ca279341bde9..71404449a8ad 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkWatcherConnectionMonitor.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmNetworkWatcherConnectionMonitor.md @@ -110,17 +110,17 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Confirm -Prompts you for confirmation before running the cmdlet. +### -ConfigureOnly +Configure connection monitor, but do not start it ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: cf +Aliases: Required: False Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` @@ -331,7 +331,7 @@ Aliases: Required: True Position: Named Default value: None -Accept pipeline input: True (ByPropertyName) +Accept pipeline input: False Accept wildcard characters: False ``` @@ -350,14 +350,13 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +### -Confirm +Prompts you for confirmation before running the cmdlet. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: wi +Aliases: cf Required: False Position: Named @@ -366,24 +365,24 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ConfigureOnly -Configure connection monitor, but do not start it +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: wi Required: False Position: Named -Default value: None +Default value: False 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). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmPublicIpAddress.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmPublicIpAddress.md index 46803fcbe89a..8e9e4683b0be 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmPublicIpAddress.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmPublicIpAddress.md @@ -66,7 +66,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -96,7 +96,7 @@ Specifies a **PublicIpAddress** object that represents the goal state to which t ```yaml Type: PSPublicIpAddress Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteConfig.md index 977ab7331614..0bf9fabe44b6 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteConfig.md @@ -72,7 +72,7 @@ Specifies the destination, in Classless Interdomain Routing (CIDR) format, to wh ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -102,7 +102,7 @@ Specifies the name of the route that this cmdlet modifies. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -119,7 +119,7 @@ Specify this parameter only if you specify a value of VirtualAppliance for the * ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -147,7 +147,7 @@ If you have two subnets, 10.1.0.0/16 and 10.2.0.0/16 in the same virtual network ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -162,7 +162,7 @@ Specifies the route table with which this route is associated. ```yaml Type: PSRouteTable Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteFilter.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteFilter.md index 826bd4f61ad6..46ab0371bf44 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteFilter.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteFilter.md @@ -37,7 +37,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -67,7 +67,7 @@ Do not ask for confirmation if you want to overrite a resource ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -82,7 +82,7 @@ The RouteFilter ```yaml Type: PSRouteFilter Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -135,4 +135,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteFilterRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteFilterRuleConfig.md index 50ff249e5f80..8020c7f1f243 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteFilterRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteFilterRuleConfig.md @@ -39,7 +39,7 @@ Possible values are: 'Allow', 'Deny' ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Allow, Deny Required: True @@ -55,7 +55,7 @@ The list of community value that route filter will filter on ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -85,7 +85,7 @@ Do not ask for confirmation if you want to overrite a resource ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -100,7 +100,7 @@ The name of the route filter rule ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -115,7 +115,7 @@ The RouteFilter ```yaml Type: PSRouteFilter Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -131,7 +131,7 @@ Possible values are: 'Community' ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Community Required: True @@ -185,4 +185,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteTable.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteTable.md index 7a9d65c30b1d..1778079f690b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteTable.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmRouteTable.md @@ -80,7 +80,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -110,7 +110,7 @@ Specifies a route table object that represents the goal state to which this cmdl ```yaml Type: PSRouteTable Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetwork.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetwork.md index e7bb06474107..144bc30522ba 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetwork.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetwork.md @@ -47,7 +47,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -77,7 +77,7 @@ Specifies a **VirtualNetwork** object that represents the goal state. ```yaml Type: PSVirtualNetwork Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGateway.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGateway.md index 07e4b41144d6..18159cac9175 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGateway.md @@ -21,6 +21,7 @@ Set-AzureRmVirtualNetworkGateway -VirtualNetworkGateway ] [-VpnClientRootCertificates ] [-VpnClientRevokedCertificates ] + [-VpnClientIpsecPolicy ] [-Asn ] [-PeerWeight ] [-EnableActiveActiveFeature] [-DisableActiveActiveFeature] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -33,6 +34,7 @@ Set-AzureRmVirtualNetworkGateway -VirtualNetworkGateway ] [-VpnClientRootCertificates ] [-VpnClientRevokedCertificates ] + [-VpnClientIpsecPolicy ] [-Asn ] [-PeerWeight ] [-EnableActiveActiveFeature] [-DisableActiveActiveFeature] -RadiusServerAddress -RadiusServerSecret [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -54,6 +56,20 @@ The first command gets a virtual network gateway named Gateway01 that belongs to The second command sets the goal state for the virtual network gateway stored in variable $Gateway. The command also sets the ASN to 1337. +### Example 2: Set the goal state a virtual network gateway +``` +PS C:\>$Gateway = Get-AzureRmVirtualNetworkGateway -ResourceGroupName "ResourceGroup001" -Name "Gateway001" +PS C:\> $vpnclientipsecpolicy = New-AzureRmVpnClientIpsecPolicy -IpsecEncryption AES256 -IpsecIntegrity SHA256 -SALifeTimeSeconds 86472 -SADataSizeKilobytes 429497 -IkeEncryption AES256 -IkeIntegrity SHA256 -DhGroup DHGroup2 -PfsGroup None +PS C:\> $gateway = Set-AzureRmVirtualNetworkGateway -VirtualNetworkGateway $Gateway -VpnClientIpsecPolicy $vpnclientipsecpolicy +``` + +The first command gets a virtual network gateway named Gateway01 that belongs to resource group ResourceGroup001 and stores it to the variable named $Gateway + +The second command creates the Vpn ipsec policy object as per specified ipsec parameters. + +The third command sets the goal state for the virtual network gateway stored in variable $Gateway. +The command also sets the custom vpn ipsec policy specified in the $vpnclientipsecpolicy object on Virtual network gateway. + ## PARAMETERS ### -AsJob @@ -62,7 +78,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -77,7 +93,7 @@ Specifies the virtual network gateway Autonomous System Number (ASN) that is use ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -106,7 +122,7 @@ Disables the active-active feature. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -121,7 +137,7 @@ Enables the active-active feature. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -137,7 +153,7 @@ If a default site is specified, all internet traffic from the gateway's Virtual ```yaml Type: PSLocalNetworkGateway Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -160,7 +176,7 @@ The acceptable values for this parameter are: ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Basic, Standard, HighPerformance, UltraPerformance, VpnGw1, VpnGw2, VpnGw3 Required: False @@ -176,7 +192,7 @@ Specifies the weight added to routes learned over BGP from this virtual network ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -190,7 +206,7 @@ P2S External Radius server address. ```yaml Type: String Parameter Sets: RadiusServerConfiguration -Aliases: +Aliases: Required: True Position: Named @@ -204,7 +220,7 @@ P2S External Radius server secret. ```yaml Type: SecureString Parameter Sets: RadiusServerConfiguration -Aliases: +Aliases: Required: True Position: Named @@ -220,7 +236,7 @@ You can use the Get-AzureRmVirtualNetworkGateway cmdlet to get the virtual netwo ```yaml Type: PSVirtualNetworkGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -236,7 +252,21 @@ This should not overlap with virtual network or on-premise ranges. ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -VpnClientIpsecPolicy +A list of IPSec policies for P2S VPN client tunneling protocols. +```yaml +Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy] +Parameter Sets: (All) +Aliases: Required: False Position: Named @@ -250,7 +280,7 @@ A list of P2S VPN client tunneling protocols ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Accepted values: SSTP, IkeV2 Required: False @@ -267,7 +297,7 @@ A VPN client presenting a certificate that matches one of these is removed. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -283,7 +313,7 @@ Connecting VPN clients must present certificates generated from one of these roo ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayConnection.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayConnection.md index f0741d866cdd..e6548fed2601 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayConnection.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayConnection.md @@ -33,7 +33,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -63,7 +63,7 @@ Whether to use a BGP session over a S2S VPN tunnel ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -78,7 +78,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -93,7 +93,7 @@ A list of IPSec policies. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -108,7 +108,7 @@ Whether to use policy-based traffic selectors for a S2S connection ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -123,7 +123,7 @@ Specifies the PSVirtualNetworkGatewayConnection object that this cmdlet uses to ```yaml Type: PSVirtualNetworkGatewayConnection Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayConnectionSharedKey.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayConnectionSharedKey.md index 3bc0719c9430..05c284fe5227 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayConnectionSharedKey.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayConnectionSharedKey.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.Commands.Network.dll-Help.xml Module Name: AzureRM.Network ms.assetid: 78BADAF3-6001-4A25-A74D-F6B50079FCB4 @@ -46,7 +46,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -76,7 +76,7 @@ Specifies the name of the resource group that the virtual network gateway belong ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -91,7 +91,7 @@ Specifies the value of the shared key. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayDefaultSite.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayDefaultSite.md index 50dc4c2de765..4862049eadd4 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayDefaultSite.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayDefaultSite.md @@ -67,7 +67,7 @@ You can use the Get-AzureRmLocalNetworkGateway cmdlet to create an object refere ```yaml Type: PSLocalNetworkGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -85,7 +85,7 @@ The variable $VirtualGateway can then be used as the parameter value for the *Vi ```yaml Type: PSVirtualNetworkGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayVpnClientConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayVpnClientConfig.md index d7eeb99abdfc..9ae15569a3e6 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayVpnClientConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkGatewayVpnClientConfig.md @@ -82,7 +82,7 @@ P2S External Radius server address. ```yaml Type: String Parameter Sets: RadiusServerConfiguration -Aliases: +Aliases: Required: True Position: Named @@ -97,7 +97,7 @@ P2S External Radius server secret. ```yaml Type: SecureString Parameter Sets: RadiusServerConfiguration -Aliases: +Aliases: Required: True Position: Named @@ -113,7 +113,7 @@ You can create an object reference to a virtual network gateway by using the Get ```yaml Type: PSVirtualNetworkGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -128,7 +128,7 @@ Specifies the IP addresses to be assigned to clients connecting to this gateway ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkPeering.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkPeering.md index 9085aa79083e..4c13db322b49 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkPeering.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkPeering.md @@ -84,7 +84,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -114,7 +114,7 @@ Specifies the virtual network peering. ```yaml Type: PSVirtualNetworkPeering Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkSubnetConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkSubnetConfig.md index 8999ea279fe8..8ab18263f679 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkSubnetConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkSubnetConfig.md @@ -89,7 +89,7 @@ Specifies a range of IP addresses for a subnet configuration. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -119,7 +119,7 @@ Specifies the name of a subnet configuration that this cmdlet configures. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -134,7 +134,7 @@ Specifies a **NetworkSecurityGroup** object. ```yaml Type: PSNetworkSecurityGroup Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -149,7 +149,7 @@ Specifies the ID of a network security group. ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -164,7 +164,7 @@ Specifies the route table object that is associated with the network security gr ```yaml Type: PSRouteTable Parameter Sets: SetByResource -Aliases: +Aliases: Required: False Position: Named @@ -179,7 +179,7 @@ Specifies the ID of the route table object that is associated with the network s ```yaml Type: String Parameter Sets: SetByResourceId -Aliases: +Aliases: Required: False Position: Named @@ -194,7 +194,7 @@ Service Endpoint Value ```yaml Type: System.Collections.Generic.List`1[System.String] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -209,7 +209,7 @@ Specifies the **VirtualNetwork** object that contains the subnet configuration. ```yaml Type: PSVirtualNetwork Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVpnClientIpsecParameter.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVpnClientIpsecParameter.md new file mode 100644 index 000000000000..dcd2de290966 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVpnClientIpsecParameter.md @@ -0,0 +1,147 @@ +--- +external help file: Microsoft.Azure.Commands.Network.dll-Help.xml +Module Name: AzureRM.Network +online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.network/set-azurermvpnclientipsecparameter +schema: 2.0.0 +--- + +# Set-AzureRmVpnClientIpsecParameter + +## SYNOPSIS +Sets the vpn ipsec parameters for existing virtual network gateway. + +## SYNTAX + +``` +Set-AzureRmVpnClientIpsecParameter -VirtualNetworkGatewayName -ResourceGroupName + -VpnClientIPsecParameter [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +The **Set-AzureRmVpnClientIpsecParameter** cmdlet sets the vpn ipsec parameters for existing virtual network gateway. +When Virtual network gateway is created, it sets the set of default vpn ipsec policies on Gateway. In case, Point to site user wants to use certain custom ipsec policy to connect to VPN Gateway, user has to set that ipsec policy on VPN Gateway first. **Set-AzureRmVpnClientIpsecParameter** provides a way to do that. + +## EXAMPLES + +### Example 1 : Sets a custom vpn ipsec policy to existing virtual network gateway. +```powershell +PS C:\>$vpnclientipsecparams = New-AzureRmVpnClientIpsecParameter -IpsecEncryption AES256 -IpsecIntegrity SHA256 -SALifeTime 86473 -SADataSize 429498 -IkeEncryption AES256 -IkeIntegrity SHA384 -DhGroup DHGroup2 -PfsGroup PFS2 +PS C:\> $setvpnIpsecParams = Set-AzureRmVpnClientIpsecParameter -VirtualNetworkGatewayName "ContosoLocalGateway" -ResourceGroupName "ContosoResourceGroup" -VpnClientIPsecParameter $vpnclientipsecparams +``` + +This example sets custom vpn ipsec policy to existing virtual network gateway named ContosoVirtualGateway from Resource group named ContosoResourceGroup. +New-AzureRmVpnClientIpsecParameter cmdlet is used to create the vpn ipsec parameters object of using the passed one or all parameters' values which user can set for any existing Virtual network gateway in ResourceGroup. +This created VpnClientIPsecParameters object is passed to Set-AzureRmVpnClientIpsecParameter command to set the specified Vpn ipsec custom policy on Virtual network gateway as shown in above example. This command returns object of VpnClientIPsecParameters which shows set parameters. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -VirtualNetworkGatewayName +The virtual network gateway name. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -VpnClientIPsecParameter +Vpn client ipsec parameters. This parameter value can be constructed using PS command let:New-AzureRmVpnClientIpsecParameter + +```yaml +Type: PSVpnClientIPsecParameters +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: 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: 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 + +### +This cmdlet accepts pipelined instances of the **Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters** object. + +## OUTPUTS + +### +This cmdlet modifies existing instances of the **Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters** object. + +## NOTES + +## RELATED LINKS + +[New-AzureRmVpnClientIpsecParameters](./New-AzureRmVpnClientIpsecParameters.md) diff --git a/src/ResourceManager/Network/Commands.Network/help/Start-AzureRmApplicationGateway.md b/src/ResourceManager/Network/Commands.Network/help/Start-AzureRmApplicationGateway.md index 331ea9098b14..9609ad5066ef 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Start-AzureRmApplicationGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/Start-AzureRmApplicationGateway.md @@ -38,7 +38,7 @@ Specifies the application gateway that this cmdlet starts. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Start-AzureRmNetworkWatcherConnectionMonitor.md b/src/ResourceManager/Network/Commands.Network/help/Start-AzureRmNetworkWatcherConnectionMonitor.md index 68828e90cc04..2d65282ef64c 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Start-AzureRmNetworkWatcherConnectionMonitor.md +++ b/src/ResourceManager/Network/Commands.Network/help/Start-AzureRmNetworkWatcherConnectionMonitor.md @@ -72,21 +72,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -222,6 +207,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -WhatIf Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -239,8 +239,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. -For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/ResourceManager/Network/Commands.Network/help/Stop-AzureRmApplicationGateway.md b/src/ResourceManager/Network/Commands.Network/help/Stop-AzureRmApplicationGateway.md index eb3eb738317b..0c2553df478d 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Stop-AzureRmApplicationGateway.md +++ b/src/ResourceManager/Network/Commands.Network/help/Stop-AzureRmApplicationGateway.md @@ -38,7 +38,7 @@ Specifies the application gateway that this cmdlet stops. ```yaml Type: PSApplicationGateway Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -53,7 +53,7 @@ Run cmdlet in the background ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/src/ResourceManager/Network/Commands.Network/help/Stop-AzureRmNetworkWatcherConnectionMonitor.md b/src/ResourceManager/Network/Commands.Network/help/Stop-AzureRmNetworkWatcherConnectionMonitor.md index 4a6675f838bb..3c2294a9a8f8 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Stop-AzureRmNetworkWatcherConnectionMonitor.md +++ b/src/ResourceManager/Network/Commands.Network/help/Stop-AzureRmNetworkWatcherConnectionMonitor.md @@ -72,21 +72,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -222,6 +207,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -WhatIf Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -239,8 +239,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. -For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/ResourceManager/Network/Commands.Network/help/Test-AzureRmDnsAvailability.md b/src/ResourceManager/Network/Commands.Network/help/Test-AzureRmDnsAvailability.md index 9d79f3ffff65..b788a8fab09b 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Test-AzureRmDnsAvailability.md +++ b/src/ResourceManager/Network/Commands.Network/help/Test-AzureRmDnsAvailability.md @@ -62,7 +62,7 @@ Accept wildcard characters: False ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -86,4 +86,3 @@ This cmdlet does not accept any input. ## NOTES ## RELATED LINKS - diff --git a/src/ResourceManager/Network/Commands.Network/help/Test-AzureRmNetworkWatcherConnectivity.md b/src/ResourceManager/Network/Commands.Network/help/Test-AzureRmNetworkWatcherConnectivity.md index 3b6e9c79a03a..5bba142131ee 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Test-AzureRmNetworkWatcherConnectivity.md +++ b/src/ResourceManager/Network/Commands.Network/help/Test-AzureRmNetworkWatcherConnectivity.md @@ -41,7 +41,7 @@ The Test-AzureRmNetworkWatcherConnectivity cmdlet returns connectivity informati ## EXAMPLES -### --------------- Example 1: Test Network Watcher Connectivity from a VM to a website --------------- +### Example 1: Test Network Watcher Connectivity from a VM to a website ``` Test-AzureRmNetworkWatcherConnectivity -NetworkWatcherName NetworkWatcher -ResourceGroupName NetworkWatcherRG -SourceId "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.Compute/virtualMachines/MultiTierApp0" -DestinationAddress "bing.com" -DestinationPort 80 diff --git a/src/ResourceManager/Network/Commands.Network/help/Test-AzureRmPrivateIPAddressAvailability.md b/src/ResourceManager/Network/Commands.Network/help/Test-AzureRmPrivateIPAddressAvailability.md index bb74900d395f..f3d1ceb51acc 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Test-AzureRmPrivateIPAddressAvailability.md +++ b/src/ResourceManager/Network/Commands.Network/help/Test-AzureRmPrivateIPAddressAvailability.md @@ -61,7 +61,7 @@ Specifies the IP address to test. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -76,7 +76,7 @@ Specifies the name of the resource group for the virtual network. ```yaml Type: String Parameter Sets: TestByResourceId -Aliases: +Aliases: Required: True Position: Named @@ -91,7 +91,7 @@ Specifies a **PSVirtualNetwork** object. ```yaml Type: PSVirtualNetwork Parameter Sets: TestByResource -Aliases: +Aliases: Required: True Position: Named @@ -106,7 +106,7 @@ Specifies the name of the virtual network. ```yaml Type: String Parameter Sets: TestByResourceId -Aliases: +Aliases: Required: True Position: Named diff --git a/tools/StaticAnalysis/Exceptions/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/SignatureIssues.csv index ecf35fd2e977..ef412b2da89f 100644 --- a/tools/StaticAnalysis/Exceptions/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/SignatureIssues.csv @@ -3256,3 +3256,5 @@ "C:\azure-powershell\src\Package\Debug\Storage\Azure.Storage\Microsoft.WindowsAzure.Commands.Storage.dll","Microsoft.WindowsAzure.Commands.Storage.Blob.Cmdlet.NewAzureStorageContainerSasTokenCommand","New-AzureStorageContainerSASToken","1","8100","New-AzureStorageContainerSASToken Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\Storage\Azure.Storage\Microsoft.WindowsAzure.Commands.Storage.dll","Microsoft.WindowsAzure.Commands.Storage.Blob.Cmdlet.NewAzureStorageContainerSasTokenCommand","New-AzureStorageContainerSASToken","1","8510","Cmdlet 'New-AzureStorageContainerSASToken' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "C:\azure-powershell\src\Package\Debug\Storage\Azure.Storage\Microsoft.WindowsAzure.Commands.Storage.dll","Microsoft.WindowsAzure.Commands.Storage.Blob.Cmdlet.NewAzureStorageContainerStoredAccessPolicyCommand","New-AzureStorageContainerStoredAccessPolicy","1","8100","New-AzureStorageContainerStoredAccessPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecPolicyCommand","New-AzureRmVpnClientIpsecPolicy","1","8100","New-AzureRmVpnClientIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecParametersCommand","New-AzureRmVpnClientIpsecParameter","1","8100","New-AzureRmVpnClientIpsecParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" \ No newline at end of file